:root {
    /* Tom 'Ameixa Imperial' - O ajuste final de 2% para puxar levemente ao roxo */
    --vinho-profundo: #2a0020; 
    --gold: #ffcc00;
    --white: #FFFFFF;
    --green-wpp: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000000; /* Fundo agora é Preto como no exemplo */
    color: var(--white);
    overflow-x: hidden;
}

/* Container ajustado para ficar mais à esquerda nas telas grandes */
.container-full {
    max-width: 100%;
    padding: 0 5%; /* Isso garante que o texto comece perto da borda esquerda */
}

/* --- HEADER E MENU (Desktop e Mobile Corrigido) --- */
header {
    position: fixed; 
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 25px 0;
    background: transparent; /* Inicia transparente integrado à Hero */
    box-shadow: none;
    transition: all 0.4s ease-in-out; /* Transição suave para a cor entrar */
}

/* Esta classe será adicionada via JS ao rolar a página */
header.header-active {
    background: var(--vinho-profundo); 
    padding: 15px 0; /* Dá uma leve encolhida elegante ao rolar */
    box-shadow: 0 5px 25px rgba(0,0,0,0.6);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- LOGO PREFERENCIAL PREMIUM (CORREÇÃO DE FONTE E PROPORÇÃO) --- */
.logo { 
    display: flex;
    align-items: center;
    gap: 12px; /* Espaço entre o ícone e o texto */
    position: relative; 
    z-index: 2500;
    text-decoration: none;
}

.logo-img {
    height: 75px; /* Aumentado para equilibrar com as duas linhas de texto */
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 0.8; /* Aproxima as linhas como no original */
}

.main-name {
    font-family: 'Outfit', sans-serif; /* Fonte arredondada idêntica à da cliente */
    font-size: 2.4rem; /* Tamanho robusto */
    font-weight: 800; 
    color: var(--white);
    letter-spacing: -1px; /* Ajuste fino de proximidade das letras */
}

.sub-name {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--white);
    text-transform: lowercase;
    letter-spacing: 7.2px; /* Espaçamento amplo característico da marca */
    margin-top: 6px;
    display: block;
    width: 100%;
}

/* Responsividade da Logo */
@media (max-width: 768px) {
    .logo-img { height: 55px; }
    .main-name { font-size: 1.8rem; letter-spacing: -0.5px; }
    .sub-name { font-size: 0.68rem; letter-spacing: 4.8px; margin-top: 4px; }
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none; color: var(--white);
    font-weight: 600; font-size: 0.9rem; transition: 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.btn-top-wpp {
    background: var(--green-wpp); color: white !important;
    padding: 10px 20px; border-radius: 50px; font-weight: 800 !important;
}

.hamburger {
    display: none; cursor: pointer; background: none; border: none;
    z-index: 2000; padding: 10px;
}

.hamburger span {
    display: block; width: 28px; height: 3px; background: var(--white);
    margin: 5px 0; transition: 0.4s; border-radius: 2px;
}

/* MENU MOBILE COM EFEITO VIDRO REAL */
@media (max-width: 768px) {
    .hamburger { display: block; }

    .nav-links {
        position: fixed; top: 0; right: -100%; 
        width: 100%; height: 100vh;
        /* EFEITO GLASS: Transparência + Desfoque Pesado */
        background: rgba(45, 6, 6, 0.45); 
        backdrop-filter: blur(25px) saturate(180%);
        -webkit-backdrop-filter: blur(25px) saturate(180%);
        
        flex-direction: column; justify-content: center;
        align-items: center; gap: 35px;
        transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1500; /* Abaixo da logo (2000) mas acima do site */
    }

    .nav-links.active { right: 0; }

    .nav-links a { 
        font-size: 1.6rem; font-weight: 900; 
        letter-spacing: 3px; text-transform: uppercase;
        text-shadow: 0 4px 10px rgba(0,0,0,0.4);
    }

    .nav-links .btn-top-wpp {
        padding: 15px 45px; font-size: 1.1rem;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    }

    .menu-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.3); opacity: 0; visibility: hidden;
        transition: 0.5s; z-index: 1400;
    }
    .menu-overlay.active { opacity: 1; visibility: visible; }

    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('hero-aluno.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* Degradê com o tom de roxo ajustado na opacidade correta */
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, 
        rgba(42, 0, 32, 0.9) 0%, 
        rgba(42, 0, 32, 0.4) 60%, 
        transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin-left: 0; /* Garante que não está centralizado */
}

/* EFEITO CARTAZ DE CINEMA - REFINADO */
.main-title {
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    line-height: 0.82; /* Aumentado levemente para não encavalar */
    font-weight: 900;
    margin-bottom: 30px;
    max-width: 650px; /* Limita a largura para o texto não invadir o carro */
}

/* Ajuste de espaçamento exclusivo para Desktop (Windows) */
@media (min-width: 769px) {
    .main-title {
        margin-top: 100px;
    }
}

.main-title span { display: block; }

.txt-white { color: var(--white); }
.txt-gold { color: #f37021; } 

.txt-small { font-size: clamp(1.2rem, 2vw, 1.8rem); letter-spacing: 3px; }
.txt-massive { 
    font-size: clamp(4.5rem, 10vw, 8.5rem); /* Reduzido levemente para enquadrar */
    letter-spacing: -4px; 
    margin-left: -4px; 
}
.txt-medium { font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: -1px; }
.txt-large { font-size: clamp(3rem, 7vw, 5.8rem); letter-spacing: -2px; }

/* Ajuste específico para o Mobile */
@media (max-width: 768px) {
    .main-title { 
        line-height: 0.9; /* Um pouco mais de respiro para não encavalar no celular */
        max-width: 60%; /* Força o texto a ficar bem recuado na esquerda */
        margin-bottom: 10px;
    }
    .txt-small { font-size: 0.75rem; letter-spacing: 1px; }
    .txt-massive { font-size: 2.4rem; letter-spacing: -1px; }
    .txt-medium { font-size: 0.9rem; }
    .txt-large { font-size: 1.8rem; letter-spacing: -1px; }
    
    /* Garante que o bloco de conteúdo do hero não centralize no mobile */
    .hero-content {
        align-items: flex-start;
        text-align: left;
        padding-left: 15px;
    }
    
    /* Tagline ajustada para mobile */
    .hero-content .tagline { font-size: 0.85rem; max-width: 70%; line-height: 1.2; }
}
/* Tagline Desktop - Ajustada para não conflitar com Mobile */
.hero-content .tagline { 
    font-size: 1.1rem; 
    color: var(--gold); 
    margin-top: 15px; 
    margin-bottom: 30px; 
    font-weight: 600;
    opacity: 0.95;
}

/* NOVO PAINEL DE PREÇOS (ESTILO IMAGEM CLIENTE) */
.pricing-bar-wrapper {
    margin-top: 40px;
}

.pricing-bar {
    display: inline-flex;
    align-items: center;
    background: rgba(45, 6, 6, 0.8); /* Vinho bem escuro com transparência */
    border: 1.5px solid #7a1a1a; /* Borda vinho um pouco mais clara */
    border-radius: 25px; /* Bordas arredondadas estilo pílula */
    padding: 20px 40px;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-decoration: none;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s;
}

.price-item:hover {
    transform: translateY(-5px);
}

.price-icon img {
    width: 45px;
    filter: invert(1); /* Deixa os ícones brancos */
}

.price-info {
    display: flex;
    flex-direction: column;
}

/* NOVO: Estilo do mini botão de CTA */
.btn-mini-cta {
    background: var(--white);
    color: var(--vinho-profundo);
    font-size: 0.65rem;
    font-weight: 900;
    padding: 5px 12px;
    border-radius: 5px;
    margin-top: 10px;
    text-align: center;
    display: inline-block;
    width: fit-content;
    transition: 0.3s;
}

.price-item:hover .btn-mini-cta {
    background: var(--gold);
    color: #000;
}

.price-info .label {
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
}

.price-info .sub-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 2px 0;
}

.price-value {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.price-value span {
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Divisória vertical no meio */
.divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #7a1a1a, transparent);
}

/* Ajuste Mobile para a barra não quebrar */
@media (max-width: 768px) {
    .pricing-bar {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        width: 100%;
    }
    .divider {
        width: 80%;
        height: 1px;
    }
}

/* DOBRA 2: SOCIAL PROOF PREMIUM - AJUSTE DE FLUXO */
.social-proof {
    background: #000000; 
    padding: 30px 0 0 0; /* 30px no topo e 0 na base para colar na próxima */
    border-top: 1px solid rgba(250, 201, 0, 0.1);
    border-bottom: 1px solid rgba(250, 201, 0, 0.1);
    position: relative;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    align-items: center;
    text-align: center;
}

.proof-item {
    background: var(--vinho-profundo); /* Cor Ameixa dentro do Card */
    border: 1px solid rgba(250, 201, 0, 0.3);
    border-radius: 15px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-height: 180px;
}

.proof-item:hover { transform: translateY(-5px); }

.proof-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }

.proof-number {
    font-size: 2.2rem; /* Fonte menor e mais elegante */
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}

.proof-item p {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
}

/* Estilo Especial Google (Ajuste de respiro interno) */
.google-stars {
    padding: 30px 20px !important;
}

.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.google-logo span { font-weight: 600; font-size: 0.8rem; opacity: 0.8; }

.stars {
    color: #ffc107;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
}

.google-stars small {
    display: block;
    margin-top: 10px;
    font-size: 0.65rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

/* DOBRA 3: DIFERENCIAIS PREMIUM (IMPACTO) */
.why-premium {
    padding: 30px 0 0 0; /* 30px no topo e 0 na base para manter o padrão */
    background: #000000; 
    position: relative;
}

/* SUPER CARD DA SESSÃO (COR AMEIXA) */
.premium-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--vinho-profundo); 
    padding: 60px 5%;
    border-radius: 40px; 
    border: 1px solid rgba(255, 255, 255, 0.05); /* Borda muito sutil */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.premium-text-side { flex: 1.2; }
.premium-image-side { flex: 0.8; }

.top-tag {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 10px;
}

.premium-text-side h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

.premium-text-side h2 span { color: var(--gold); }

.premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* MINI CARDS INTERNOS (TAMBÉM AMEIXA, MAS COM DESTAQUE DE BORDA) */
.premium-card {
    background: rgba(255, 255, 255, 0.03); /* Leve transparência sobre o Ameixa */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda que separa do fundo */
    padding: 25px;
    border-radius: 20px;
    transition: 0.3s;
}

.premium-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.card-icon { font-size: 2rem; margin-bottom: 15px; }

.premium-card h4 {
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.premium-card p { font-size: 0.9rem; opacity: 0.7; line-height: 1.4; }

.image-container { position: relative; width: 100%; }

.main-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(250, 201, 0, 0.3);
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--gold);
    color: #000;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    z-index: 10;
}

.experience-badge strong { font-size: 2rem; display: block; line-height: 1; }
.experience-badge span { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }

/* DOBRA 4: ROADMAP DA CNH */
.roadmap {
    padding: 30px 0 10px 0; /* Reduzido para 10px para aproximar da próxima sessão */
    background: #000000; 
}

.roadmap-header { text-align: center; margin-bottom: 40px; }
.step-tag { color: var(--gold); font-weight: 800; letter-spacing: 2px; font-size: 0.8rem; }
.roadmap-header h2 { font-size: 2.8rem; font-family: 'Outfit', sans-serif; font-weight: 900; margin-top: 10px; }
.roadmap-header h2 span { color: var(--gold); }

/* SUPER CARD ROADMAP (COR AMEIXA) */
.roadmap-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--vinho-profundo); /* Nossa cor de elite */
    padding: 60px 5%;
    border-radius: 40px; 
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.roadmap-image { flex: 1; }
.img-road {
    width: 100%;
    border-radius: 30px;
    border-left: 5px solid var(--gold); /* Detalhe lateral elegante */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.roadmap-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

/* Linha vertical que conecta os passos */
.roadmap-steps::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 10px;
    width: 2px;
    height: 90%;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.3;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: center;
    position: relative;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
    box-shadow: 0 0 15px rgba(250, 201, 0, 0.4);
}

.step-info h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.step-info p { opacity: 0.8; font-size: 1rem; }

/* WHATSAPP FIXO */
.wpp-fixed { position: fixed; bottom: 30px; right: 30px; z-index: 1000; width: 60px; height: 60px; }
.wpp-fixed img { width: 100%; position: relative; z-index: 2; }
.pulse { position: absolute; width: 100%; height: 100%; background: var(--green-wpp); border-radius: 50%; animation: pulse 2s infinite; z-index: 1; }

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================================
   SISTEMA DE ANIMAÇÕES (SÓ FUNCIONA SE O JS ESTIVER RODANDO)
   ============================================================ */

/* Estado inicial (escondido) */
.reveal-left { opacity: 0; transform: translateX(-100px); transition: 1.2s ease-out; }
.reveal-bottom { opacity: 0; transform: translateY(80px); transition: 1s ease-out; }

/* Adiciona um atraso para o segundo card subir depois do primeiro */
.pricing-cards .card:nth-child(2) { transition-delay: 0.3s; }

/* Estado final (quando a classe .active for adicionada pelo JS) */
.active { opacity: 1 !important; transform: translate(0, 0) !important; }

/* ============================================================
   AJUSTES EXCLUSIVOS PARA MOBILE (CELULAR)
   ============================================================ */
@media (max-width: 768px) {
    
    /* 1. Troca a imagem de fundo para a versão mobile */
    .hero {
        background-image: url('hero-mobile.png');
        background-position: center top; /* Foca no topo da imagem onde está o rosto */
        padding-top: 120px; /* Dá espaço para o cabeçalho não cobrir o texto */
        align-items: flex-start; /* Joga o conteúdo para o topo no mobile */
    }

    /* 2. Degradê mobile com o ajuste fino para o roxo */
    .hero::before {
        background: linear-gradient(to bottom, 
            rgba(42, 0, 32, 0.8) 0%, 
            rgba(42, 0, 32, 0.3) 50%, 
            rgba(42, 0, 32, 0.8) 100%
        );
    }

    /* 3. Ajuste do Cabeçalho (Logo e Botão) */
    header { padding: 15px 0; }
    nav { flex-direction: row; justify-content: space-between; }
    
    .logo { font-size: 1.1rem; max-width: 150px; } /* Logo menor */
    .btn-top-wpp { 
        padding: 8px 15px; 
        font-size: 0.7rem; 
        text-align: center;
    }

    /* 4. Ajuste dos Textos (Mantendo à esquerda como pedido) */
    .hero-content {
        padding: 0 10px;
        text-align: left; /* Garante alinhamento à esquerda */
    }

    /* Escala Premium Mobile - Impacto Máximo */
    .main-title { 
        line-height: 0.82 !important; 
        max-width: 85% !important; /* Aumentado para comportar o texto maior sem quebras indesejadas */
        margin-bottom: 12px !important;
    }
    
    .txt-small { font-size: 1.3rem !important; letter-spacing: 1px !important; }
    .txt-massive { 
        font-size: 4.8rem !important; /* Aumentado para impacto máximo no CNH */
        letter-spacing: -2px !important; 
    }
    .txt-medium { font-size: 1.7rem !important; }
    .txt-large { 
        font-size: 3.8rem !important; /* Aumentado para impacto máximo no APROVA */
        letter-spacing: -1px !important; 
    }

    .hero-content .tagline { 
        font-size: 0.85rem !important; 
        max-width: 65% !important; 
        line-height: 1.2 !important;
        margin-bottom: 25px !important;
    }

    /* 5. Ajuste do Painel de Preços (Agora Quadradinho e Compacto) */
    .pricing-bar-wrapper {
        margin-top: 180px; /* Aumentado para empurrar o card mais para baixo na tela do celular */
    }

    .pricing-bar {
        flex-direction: column; 
        padding: 20px; /* Reduzi o espaço interno */
        gap: 20px;
        width: fit-content; /* A MÁGICA: O fundo só ocupa o espaço do texto */
        display: inline-flex; 
        align-items: flex-start;
        border-radius: 30px; /* Bordas mais arredondadas como na imagem */
        margin-left: 0; /* Garante que fique colado na esquerda */
    }

    /* Diminuindo um pouco os ícones no mobile para caber melhor */
    .price-icon img {
        width: 35px;
    }

    /* Ajuste no valor e no CTA para o celular */
    .price-value {
        font-size: 1.6rem;
    }

    .btn-mini-cta {
        font-size: 0.6rem;
        padding: 4px 10px;
        margin-top: 8px;
    }

    .price-item { width: 100%; }

    .price-value { font-size: 1.8rem; } /* Preço um pouco menor no celular */

    .divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, #7a1a1a, transparent);
    }

    /* 6. Dobra 2 Mobile - Espaço reduzido para encostar na Hero e na Dobra 3 */
    .social-proof { padding: 20px 0 0 0; }
    
    .proof-grid {
        grid-template-columns: 1fr 1fr; /* Mágica: 2 colunas no celular */
        gap: 12px; /* Espaço pequeno entre os cards */
    }

    .proof-item {
        min-height: 150px;
        padding: 15px 10px;
    }

    .proof-number { font-size: 1.8rem; }
    .proof-item p { font-size: 0.65rem; }
    .stars { font-size: 1.2rem; }
    .google-stars small { display: none; } /* Esconde o texto pequeno pra ganhar espaço */

    /* Ajustes Dobra 3 Mobile - Padronizado e colado na Dobra 4 */
    .why-premium { padding: 20px 0 0 0; }
    .premium-layout { flex-direction: column; gap: 25px; }
    .premium-text-side h2 { font-size: 1.8rem; text-align: center; margin-bottom: 25px; }
    
    .premium-grid { 
        grid-template-columns: 1fr 1fr; /* Força 2 colunas no celular */
        gap: 12px; 
    }

    .premium-card {
        padding: 15px 10px;
        text-align: center;
    }

    .card-icon { font-size: 1.5rem; margin-bottom: 10px; }
    .premium-card h4 { font-size: 0.9rem; }
    .premium-card p { font-size: 0.75rem; }

    .premium-image-side { order: -1; width: 100%; }
    .main-img { height: 280px; }
    .experience-badge { right: 10px; top: -15px; padding: 10px; }
    .experience-badge strong { font-size: 1.2rem; }
    
    /* Ajustes Dobra 4 Mobile - Padronizado com as anteriores */
    .roadmap { padding: 20px 0 10px 0; }
    .roadmap-header h2 { font-size: 1.8rem; }
    .roadmap-container { flex-direction: column; gap: 40px; }
    .roadmap-steps::before { left: 20px; }
    .step-number { min-width: 40px; height: 40px; font-size: 1rem; }
    .step-item { gap: 15px; }
    .step-info h3 { font-size: 1.1rem; }
    .step-info p { font-size: 0.85rem; }
}
/* DOBRA 5: DEPOIMENTOS (ESTILO FIEL AO MODELO) */
.testimonials {
    padding: 10px 0 0 0; 
    background: #000000; 
}

.testimonials-card-main {
    background: var(--vinho-profundo);
    padding: 30px 5%;
    border-radius: 40px; 
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-header h2 {
    font-size: 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.testimonials-header h2 span { color: #f37021; }

.carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.testimonial-slide {
    min-width: calc(33.33% - 14px); /* 3 cards no desktop */
}

/* O CARD EXATO DO PRINT */
.depo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depo-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.depo-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 204, 0, 0.3);
}

.depo-name-stars {
    display: flex;
    flex-direction: column;
}

.depo-name-stars .stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 2px;
}

.depo-name-stars .author {
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.depo-txt {
    font-size: 0.88rem;
    line-height: 1.4;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}



/* AJUSTE MOBILE - CARDS LINEARES */
@media (max-width: 768px) {
    .carousel-container { 
        overflow-x: auto; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
    }
    .carousel-container::-webkit-scrollbar { display: none; }
    
    .carousel-track { 
        display: flex; 
        gap: 15px; 
    }
    
    .testimonial-slide { 
        min-width: 85%; 
        scroll-snap-align: center;
    }

    .depo-card { padding: 25px; }
    .depo-img { width: 70px; height: 70px; }
    .depo-name-stars .author { font-size: 1rem; }
    .depo-txt { font-size: 0.85rem; }
}

/* ============================================================
   SESSÃO ESPECIALIDADES (AMEIXA COM BORDAS DOURADAS)
   ============================================================ */
.specialties {
    padding: 20px 0 60px 0; /* Reduzido de 100px para 20px para eliminar o espaço excessivo no topo */
    background: #000000;
}

.specialties-header {
    text-align: center;
    margin-bottom: 60px;
}

.special-tag {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 0.8rem;
}

.specialties-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-top: 10px;
}

.specialties-header h2 span { color: var(--gold); }

.specialties-header p {
    opacity: 0.7;
    max-width: 600px;
    margin: 20px auto 0;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.special-card {
    background: var(--vinho-profundo); /* Cor padrão do site */
    border: 2px solid var(--gold);    /* Borda dourada em destaque */
    padding: 90px 30px 40px;          /* Aumentado para 90px para o ícone não colar no badge superior */
    border-radius: 40px;              /* Mantendo o padrão de 40px do site */
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 204, 0, 0.15);
}

.card-badge {
    position: absolute;
    top: 25px;
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.card-icon-wrap {
    width: 85px;
    height: 85px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;             /* Aumentado para 35px para não colar no título abaixo */
    transform: rotate(0deg);         /* Corrigido: Ícone agora fica reto */
    transition: 0.3s;
}

.special-card:hover .card-icon-wrap {
    transform: scale(1.1);           /* Removido o rotate(0deg) desnecessário */
    background: var(--gold);
}

.card-icon-wrap img {
    width: 45px;
    filter: invert(1);
}

.special-card:hover .card-icon-wrap img {
    filter: invert(0);
}

.special-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 15px;
}

.special-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.btn-special {
    text-decoration: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
    font-size: 0.85rem;
    border: 1.5px solid var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-special:hover {
    background: var(--gold);
    color: #000;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 992px) {
    .specialties-grid { grid-template-columns: 1fr; gap: 40px; }
    .special-card { max-width: 100%; }
    .specialties-header h2 { font-size: 2.2rem; }
}

/* ============================================================
   FOOTER PREMIUM DEFINITIVO
   ============================================================ */
.main-footer {
    background: var(--vinho-profundo);
    padding: 80px 0 30px 0;
    margin-top: 50px;
    border-top: 2px solid var(--gold);
    border-radius: 50px 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-desc {
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 300px;
}

.footer-social { margin-top: 20px; }
.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
    transition: 0.3s;
}
.footer-social a img { width: 24px; filter: invert(1); }
.footer-social a:hover { color: var(--gold); }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.7;
    transition: 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; opacity: 1; }

.contact-info p { font-size: 0.9rem; margin-bottom: 15px; opacity: 0.8; line-height: 1.5; }
.contact-info strong { color: var(--gold); display: block; margin-bottom: 2px; }

/* RODAPÉ FINAL - CENTRALIZADO PARA TODAS AS TELAS */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    gap: 8px;
}

.dev-credits a {
    color: var(--gold) !important;
    text-decoration: none;
    font-weight: 800;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
    .main-footer { padding: 60px 0 30px 0; border-radius: 30px 30px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; justify-items: center; }
    .footer-col { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .footer-col .logo { justify-content: center; margin: 0 auto; }
    .footer-col .logo-text { text-align: left; }
    .footer-desc { max-width: 85%; margin: 20px auto 0 auto; }
    .footer-social a { justify-content: center; }
    .footer-col ul li a:hover { padding-left: 0; }
}