/* ============================================= */
/* ESTILOS GLOBAIS E ESTRUTURA BASE              */
/* ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    background: #000;
    color: #fff;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: 
        linear-gradient(45deg, rgba(212, 175, 55, 0.4), rgba(0, 0, 0, 0.8)),
        url('/assets/images/dai-onca_tesoura.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    opacity: 0.2; /* Controla a transparência geral */
    z-index: -2;
}

/* About Section */
.about {
    padding: 100px 30px;
    background: rgba(212, 175, 55, 0.1);
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #d4af37, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0f0f0;
    margin-bottom: 20px;
}

.about-image {
    text-align: center;
}

.profile-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.profile-image i {
    font-size: 8rem;
    color: #000;
}

.profile-image img {
    width: 500px;
}
/* Animações e Utilitários */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================= */
/* HEADER E NAVEGAÇÃO                            */
/* ============================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}
.header-scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}
.header-logo {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    height: 120px;
    width: 120px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.header-logo img {
    height: 90%;
    width: 90%;
    object-fit: contain;
}
.header-scrolled .header-logo {
    height: 60px;
    width: 60px;
}
.nav-links-container {
    margin: 0 auto;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a:hover {
    color: #d4af37;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}
.cta-button {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* ============================================= */
/* SEÇÕES DA HOME PAGE                           */
/* ============================================= */
.cta-button {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 30px;
    animation: fadeInUp 1.5s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #d4af37, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #f0f0f0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: #000;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border: 2px solid #d4af37;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
}
.services, .about {
    padding: 100px 30px;
    position: relative;
    z-index: 1;
}
.services { max-width: 1400px; margin: 0 auto; }
.about { background: rgba(212, 175, 55, 0.1); }

.services h2, .about-text h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    background: linear-gradient(45deg, #d4af37, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}
.services .service-card { /* ESTILO ESPECÍFICO PARA OS CARDS DA HOME */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}
.services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}
.services .service-card i {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}
.services .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.services .service-card p {
    color: #ccc;
    line-height: 1.6;
}

/* ============================================= */
/* PÁGINA DE AGENDAMENTO                         */
/* ============================================= */
.agendamento-container {
    max-width: 1000px; margin: 50px auto;
    background-color: rgba(0, 0, 0, 0.5); backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    padding: 30px 40px;
}
/* LAYOUT DA GRADE DE SERVIÇOS NO AGENDAMENTO */
#servicos-list.row { display: flex; flex-wrap: wrap; }
#servicos-list > .col-md-6 { display: flex; margin-bottom: 1.5rem; }

/* CARDS ESPECÍFICOS DO AGENDAMENTO */
#servicos-list .service-card {
    width: 100%; height: 100%; position: relative; background-color: #fff; border: 2px solid #f2f2f2;
    border-radius: 8px; padding: 10px; cursor: pointer; transition: all 0.2s ease-in-out;
    display: flex; flex-direction: column; box-shadow: 0 4px 15px rgba(0,0,0,0.05); color: #333;
}
#servicos-list .service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
#servicos-list .service-card.selected { border-color: #d4af37; box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2); background-color:#d4af37; }
#servicos-list .service-card .service-title { font-size: 1.1rem; font-weight: 600; color: #343a40; margin-bottom: 8px; }
#servicos-list .service-card .service-desc { font-size: 0.9rem; color: #6c757d; line-height: 1.5; flex-grow: 1; }
#servicos-list .service-card .service-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; border-top: 1px solid #f1f1f1; padding-top: 15px; margin-top: auto; }
#servicos-list .service-card .service-price { font-weight: 700; color: #343a40; }
#servicos-list .service-card .service-duration { color: #6c757d; }

/* ... (Aqui continuam os outros estilos do agendamento que já funcionam: datepicker, botões de horário, etc.) ... */
/* --- Botões de Filtro --- */
.filter-btn { background-color: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 175, 55, 0.5); color: #d4af37; font-weight: 500; border-radius: 20px; padding: 5px 15px; transition: all 0.3s ease; }
.filter-btn:hover { background-color: rgba(212, 175, 55, 0.2); color: #fff; }
.filter-btn.active { background-color: #d4af37; color: #000; font-weight: bold; box-shadow: 0 0 10px rgba(212, 175, 55, 0.5); }

/* ============================================= */
/* OUTROS COMPONENTES E PÁGINAS                  */
/* ============================================= */
/* ============================================= */
/* ESTILOS PARA A VITRINE DE CURSOS E OFICINAS   */
/* ============================================= */
.section-title {
    color: #fff;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    display: inline-block;
}
.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    border-color: rgba(212, 175, 55, 0.7);
}
.product-card h4 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 15px;
}
.product-card .product-date {
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}
.product-card .product-desc {
    color: #ccc;
    font-size: 0.95rem;
    flex-grow: 1; /* Empurra o rodapé para baixo */
}
.product-card .product-footer {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 15px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-card .product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
}

/* ============================================= */
/* ESTILOS PARA A PÁGINA DE VENDAS (PAPO DE ONÇA) */
/* ============================================= */

/* Estilos gerais dos boxes */
.box-title {
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 25px;
}
.box-title i {
    color: #d4af37;
    margin-right: 10px;
}

/* Bloco de Investimento */
.investment-box {
    background: linear-gradient(135deg, #d4af37, #b89b3c);
    color: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-bottom: 30px;
}
.investment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.investment-price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}
.investment-price .price-cents {
    font-size: 1.5rem;
    font-weight: 400;
}
.investment-note {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}
.investment-includes {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    font-size: 0.95rem;
}
.investment-includes li {
    margin-bottom: 5px;
}
.investment-includes i {
    color: #fff;
    margin-right: 8px;
}

/* Bloco "Sobre o Projeto" */
.about-project-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.features-grid {
    display: grid;
  
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}
.feature-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}
.feature-item i {
    display: block;
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 10px;
}

/* Bloco do Formulário */
.form-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
}
.form-box .form-control,
.form-box .form-select {
    padding: 12px;
    border-radius: 8px;
}

/* Ajustes Mobile */
@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Bloco da Palestrante Convidada */
.speaker-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}
.speaker-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.speaker-photo {
    flex-shrink: 0;
}
.speaker-photo img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #d4af37;
}
.speaker-info h4 {
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}
.speaker-info h5 {
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 1rem;
}
.speaker-info p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Ajuste Mobile para o Bloco da Palestrante */
@media (max-width: 576px) {
    .speaker-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================================== */
/* Correção para o botão 'Voltar' no Agendamento      */
/* ================================================== */

/* Define o estilo padrão do botão 'Voltar' para fundos claros */
.agendamento-container .btn-prev-step {
    background-color: #fff;       /* Fundo branco */
    color: #6c757d;             /* Cor do texto cinza escuro, para ser visível */
    border-color: #ced4da;       /* Cor da borda cinza claro */
    font-weight: 500;
}

/* Efeito ao passar o mouse sobre o botão 'Voltar' */
.agendamento-container .btn-prev-step:hover {
    background-color: #f8f9fa;   /* Fundo cinza bem claro ao passar o mouse */
    color: #212529;             /* Texto fica preto para dar destaque */
    border-color: #adb5bd;       /* Borda fica um pouco mais escura */
}
/* Ajuste para telas de celular (uma coluna) */
@media (max-width: 768px) {
    .agendamento-container #servicos-list {
        grid-template-columns: 1fr;
    }
}


/* AJUSTE BÔNUS PARA TABLETS */
@media (max-width: 992px) and (min-width: 768px) {
    .agendamento-container #servicos-list {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
    }
}

/* Ajuste para telas de celular (uma coluna) */
@media (max-width: 768px) {
    .agendamento-container #servicos-list {
        grid-template-columns: 1fr;
    }
}
/* ============================================= */
/* ESTILOS PARA O MENU RESPONSIVO (HAMBÚRGUER)   */
/* ============================================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}
.hamburger .bar {
    width: 2rem;
    height: 0.25rem;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
}
@media (max-width: 768px) {
    .nav-links-container {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease-in-out;
        z-index: 5;
    }
    .nav-links-container.nav-active {
        right: 0;
    }
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
    .nav-links a {
        font-size: 1.5rem;
    }
    nav .cta-button {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .header-logo {
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ============================================= */
/* CORREÇÃO PARA BOTÕES FLUTUANTES (WHATSAPP & SOCIAL) */
/* ============================================= */

/* Barra Lateral de Redes Sociais */
.social-float {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex; /* Adicionado para garantir o layout */
    flex-direction: column; /* Adicionado para garantir o layout */
    gap: 10px; /* Adicionado para espaçamento */
}

.social-float a {
    /* Usando Flexbox para uma centralização perfeita */
    display: flex;
    align-items: center;    /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    font-size: 1.2rem; /* Ajuste leve no tamanho do ícone */
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none; /* Garante que não haja sublinhado */
}

.social-float a:hover {
    transform: scale(1.1);
    background: #d4af37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Botão Flutuante do WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: pulse 2s infinite;
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ============================================= */
/* ESTILOS PARA O NOVO RODAPÉ (FOOTER)           */
/* ============================================= */
.site-footer {
    background-color: #111;
    color: #aaa;
    padding: 50px 0;
    position: relative;
    z-index: 1; /* Garante que fique atrás dos botões flutuantes se necessário */
    border-top: 3px solid #d4af37;
}
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.site-footer .footer-col {
    margin-bottom: 30px;
}
.site-footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.site-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #d4af37;
}
.site-footer p {
    line-height: 1.8;
}
.site-footer .footer-links {
    list-style: none;
    padding: 0;
}
.site-footer .footer-links li {
    margin-bottom: 10px;
}
.site-footer .footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}
.site-footer .footer-links a:hover {
    color: #d4af37;
    padding-left: 5px;
}
.site-footer .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* ======================================================= */
/* ===== REFINAMENTO VISUAL COMPLETO DO AGENDAMENTO ===== */
/* ======================================================= */

/* --- 1. Campos de Formulário (Dropdown, etc) --- */
.agendamento-container .form-control,
.agendamento-container .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    padding: 12px;
}
.agendamento-container .form-control:focus,
.agendamento-container .form-select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    color: #fff;
}
.agendamento-container .form-select option {
    background-color: #333;
    color: #fff;
}
.agendamento-container label {
    color: #ccc;
    font-weight: 500;
}

/* --- 2. Calendário (Datepicker) --- */
.datepicker {
    border-radius: 8px !important;
    background-color: #2b2b2b !important;
    border: 1px solid #d4af37 !important;
}
.datepicker-dropdown:after {
    border-bottom-color: #d4af37 !important;
}
.datepicker table tr td, 
.datepicker table tr th {
    color: #fff !important;
}
.datepicker table tr th.prev:hover,
.datepicker table tr th.next:hover,
.datepicker table tr th.datepicker-switch:hover {
    background-color: rgba(212, 175, 55, 0.2) !important;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
    background: rgba(212, 175, 55, 0.3) !important;
    border-radius: 4px;
}
.datepicker table tr td.today {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
}
/* A DATA SELECIONADA AGORA FICA DOURADA */
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    background-color: #d4af37 !important;
    background-image: none !important;
    color: #000 !important;
    font-weight: bold;
    box-shadow: none;
    border-radius: 4px;
}

/* --- 3. Botões de Horários Disponíveis --- */
/* O mais importante: deixar os horários visíveis */
.agendamento-container .time-slot-btn {
    background-color: transparent;
    border: 2px solid rgba(212, 175, 55, 0.7);
    color: #d4af37;
    font-weight: 500;
    margin: 5px;
    transition: all 0.2s ease-in-out;
}
.agendamento-container .time-slot-btn:hover {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
}
.agendamento-container .time-slot-btn.selected {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* --- 4. Navegação e Tela Final --- */
/* Botão "Próximo Passo" e "Confirmar" agora têm o estilo dourado principal */
.agendamento-container .btn-next-step,
.agendamento-container .btn-finish-agendamento {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: #000;
    border: none;
    font-weight: bold;
}
.agendamento-container .btn-next-step:hover,
.agendamento-container .btn-finish-agendamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.agendamento-container .btn-next-step:disabled {
    background: #555;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Deixa a caixa de Resumo mais bonita e integrada */
.agendamento-container .total-summary {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
}
.agendamento-container .total-summary h4 {
    color: #d4af37;
}

/* ======================================================= */
/* ===== REFINAMENTO VISUAL COMPLETO DO AGENDAMENTO ===== */
/* ======================================================= */

/* --- 1. Campos de Formulário (Dropdown, etc) --- */
.agendamento-container .form-control,
.agendamento-container .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    padding: 12px;
}
.agendamento-container .form-control:focus,
.agendamento-container .form-select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
    color: #fff;
}
.agendamento-container .form-select option {
    background-color: #333;
    color: #fff;
}
.agendamento-container label {
    color: #ccc;
    font-weight: 500;
}

/* --- 2. Calendário (Datepicker) --- */
.datepicker {
    border-radius: 8px !important;
    background-color: #2b2b2b !important;
    border: 1px solid #d4af37 !important;
}
.datepicker-dropdown:after {
    border-bottom-color: #d4af37 !important;
}
.datepicker table tr td, 
.datepicker table tr th {
    color: #fff !important;
}
.datepicker table tr th.prev:hover,
.datepicker table tr th.next:hover,
.datepicker table tr th.datepicker-switch:hover {
    background-color: rgba(212, 175, 55, 0.2) !important;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused {
    background: rgba(212, 175, 55, 0.3) !important;
    border-radius: 4px;
}
.datepicker table tr td.today {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px;
}
/* A DATA SELECIONADA AGORA FICA DOURADA */
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    background-color: #d4af37 !important;
    background-image: none !important;
    color: #000 !important;
    font-weight: bold;
    box-shadow: none;
    border-radius: 4px;
}

/* --- 3. Botões de Horários Disponíveis --- */
/* O mais importante: deixar os horários visíveis */
.agendamento-container .time-slot-btn {
    background-color: transparent;
    border: 2px solid rgba(212, 175, 55, 0.7);
    color: #d4af37;
    font-weight: 500;
    margin: 5px;
    transition: all 0.2s ease-in-out;
}
.agendamento-container .time-slot-btn:hover {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
}
.agendamento-container .time-slot-btn.selected {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* --- 4. Navegação e Tela Final --- */
/* Botão "Próximo Passo" e "Confirmar" agora têm o estilo dourado principal */
.agendamento-container .btn-next-step,
.agendamento-container .btn-finish-agendamento {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: #000;
    border: none;
    font-weight: bold;
}
.agendamento-container .btn-next-step:hover,
.agendamento-container .btn-finish-agendamento:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}
.agendamento-container .btn-next-step:disabled {
    background: #555;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Deixa a caixa de Resumo mais bonita e integrada */
.agendamento-container .total-summary {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
}
.agendamento-container .total-summary h4 {
    color: #d4af37;
}


/* ======================================================= */
/* ===== AJUSTES FINAIS DE DESIGN NO AGENDAMENTO      ===== */
/* ======================================================= */

/* --- 1. Melhorando o Resumo dos Serviços --- */

/* Adiciona mais espaço acima da caixa de resumo */
.agendamento-container .total-summary {
    margin-top: 30px; 
    padding: 20px; /* Adiciona um padding interno para o texto não colar nas bordas */
}

/* Garante que o último card de serviço tenha um espaço antes do resumo */
.agendamento-container #servicos-list {
    margin-bottom: 20px;
}


/* --- 2. Melhorando a Visibilidade dos Horários --- */

/* Deixa o fundo dos botões de horário branco, como você sugeriu */
.agendamento-container .time-slot-btn {
    background-color: #ffffff; /* Fundo branco */
    border: 2px solid #ddd;    /* Borda cinza clara */
    color: #333;              /* Texto escuro para contraste */
    font-weight: 600;
}

/* Efeito hover para os botões de horário */
.agendamento-container .time-slot-btn:hover {
    background-color: #d4af37; /* Fica dourado ao passar o mouse */
    color: #000;              /* Texto preto */
    border-color: #d4af37;
}

/* Mantém o estilo de seleção dourado que já tínhamos */
.agendamento-container .time-slot-btn.selected {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Correção final para garantir o posicionamento dos botões flutuantes */
body > .social-float,
body > .whatsapp-btn {
    position: fixed !important;
}

/* ======================================================= */
/* AJUSTE FINAL PARA O LIGHTBOX (GALERIA DE IMAGENS)       */
/* ======================================================= */

.lb-outerContainer {
    max-width: 90vw;  /* Largura máxima da caixa da imagem = 90% da largura da tela */
    max-height: 90vh; /* Altura máxima da caixa da imagem = 90% da altura da tela */
}

.lb-image {
    /* Define a largura e altura máximas da imagem como 100% do seu container */
    max-width: 100%;
    max-height: 100%;
    
    /* Um toque extra para deixar as bordas da foto suavemente arredondadas */
    border-radius: 8px;
    object-fit: contain; /* Garante que a imagem inteira apareça sem distorcer */
}

/* ======================================================= */
/* CORREÇÃO FINAL E AGRESSIVA: Conflito (Modal vs Lightbox) */
/* ======================================================= */

/* * Quando um pop-up do Bootstrap estiver aberto, o Bootstrap adiciona a classe "modal-open" ao <body>.
 * Usamos isso para forçar TUDO da galeria a ficar completamente para trás e invisível.
*/
body.modal-open #lightboxOverlay,
body.modal-open #lightbox {
    z-index: -1 !important;      /* Joga para a camada mais baixa possível */
    display: none !important;    /* Garante que o elemento desapareça e não bloqueie cliques */
}

/* ======================================================= */
/* CORREÇÃO FINAL: Texto branco no Pop-up de Sucesso      */
/* ======================================================= */

#successModal .modal-body p {
    color: #495057; /* Um cinza escuro para boa legibilidade */
}
/* ============================================= */
/* RESPONSIVIDADE E UTILITÁRIOS                  */
/* ============================================= */
@media (max-width: 768px) {
    nav .cta-button { display: none; }
    .hamburger { display: flex; }
    .nav-links-container { position: fixed; top: 0; right: -100%; width: 70%; height: 100vh; background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(5px); display: flex; align-items: center; justify-content: center; transition: right 0.4s ease-in-out; z-index: 5; }
    .nav-links-container.nav-active { right: 0; }
    .nav-links { flex-direction: column; text-align: center; }
    .nav-links a { font-size: 1.5rem; }
}

/* ============================================= */
/* EM BREVE - CURSOS E OFICINAS ( ALTERACAO      */
/* ============================================= */
.em-breve-notice {
    background: linear-gradient(45deg, #d4af37, #f4e4a6);
    color: #000;
    border: none;
    font-weight: bold;
    padding: 3px;
}

/* ======================================================= */
/* PADRÃO DE ESTILO PARA CONTEÚDO DAS PÁGINAS DINÂMICAS    */
/* ======================================================= */

/* Estilo para a 'div' que envolve o conteúdo do editor */
.page-content {
    font-size: 1.1rem; /* Tamanho base do texto */
    line-height: 1.8;  /* Espaçamento entre as linhas */
}

/* Estilo para o Título 2 (H2) */
.page-content h2 {
    color: #d4af37; /* Dourado */
    font-size: 2.5rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center; /* Centraliza os títulos de seção */
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); /* Linha sutil abaixo */
    display: inline-block;
}

/* Centraliza o container do título */
.page-content h2 {
    display: block;
    text-align: center;
    border-bottom: none; /* Remove a borda para um look mais limpo se preferir */
}


/* Estilo para o Título 3 (H3) */
.page-content h3 {
    color: #e0e0e0; /* Branco suave */
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
}

/* Estilo para Parágrafos (P) */
.page-content p {
    color: #ccc; /* Cinza claro para leitura confortável */
    margin-bottom: 1.2rem;
}

/* Estilo para Links dentro do texto */
.page-content a {
    color: #d4af37;
    text-decoration: underline;
    transition: color 0.3s ease;
}
.page-content a:hover {
    color: #fff;
}

/* Estilo para Listas (ul, ol) */
.page-content ul, 
.page-content ol {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
}
.page-content li {
    margin-bottom: 0.5rem;
}
