/* ==========================================
   VARIÁVEIS E RESET
========================================== */

:root {
    --primary: #FFAF33;         /* Cor principal de ação (Laranja/Dourado) */
    --primary-hover: #e69c24;   /* Tom levemente mais escuro para o hover do botão */
    --bg-dark: #051932;         /* Azul Marinho Profundo (Fundo principal) */
    --bg-card: #0a2448;         /* Azul levemente mais claro para criar caixas/cards */
    --accent: #FFAF33;          /* Destaques (mesmo do primary para manter unidade) */
    --text-white: #ffffff;
    --text-dim: #b0c4de;        /* Azul bem clarinho/cinza para textos secundários */
    --border: rgba(255, 175, 51, 0.15); /* Bordas com um toque do dourado */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HERO SECTION & BACKGROUND
========================================== */
#hero {
    /* O img/hero.jpg entra aqui com um gradiente escuro por cima */
    background: linear-gradient(90deg, #0f172a 45%, rgba(15, 23, 42, 0.4) 100%), url('img/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0; 
}

.hero-grid {
    display: grid;
    /* Deixei o formulário um pouco mais estreito e o texto maior */
    grid-template-columns: 1.1fr 0.8fr; 
    gap: 80px; /* AUMENTEI AQUI: afasta bem o texto do formulário */
    align-items: center;
}

/* ==========================================
   LADO ESQUERDO: CONTEÚDO
========================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.15);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem; /* Tamanho normal para telas grandes */
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 15px;
}

.highlight {
    color: var(--primary);
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 25px;
}

.aviso-exclusividade {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(250, 204, 21, 0.05);
    border-left: 4px solid var(--accent);
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.icon-accent {
    color: var(--accent);
    flex-shrink: 0;
}

/* Prova Social (Autor) */
.prova-social {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.autor-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.autor-img img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.autor-info p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.autor-info strong {
    color: var(--text-white);
}

/* ==========================================
   LADO DIREITO: FORMULÁRIO
========================================== */
.form-box {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.form-box h3 {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.3;
}

.form-subtitle {
    text-align: center;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 8px 0 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
    color: var(--text-dim);
}

.input-group input {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: white;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.form-security {
    margin-top: 20px;
    text-align: center;
}

.form-security p {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 6px;
}

/* ==========================================
   RESPONSIVIDADE
========================================== */

/* Notebooks (Telas menores de PC) */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 40px; /* Reduz o espaço um pouco para caber na tela menor */
    }
    
    h1 {
        font-size: 2.2rem; /* Texto menor */
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .form-box {
        padding: 25px; /* Deixa o formulário menor */
    }

    .input-group input {
        padding: 10px; /* Campos do formulário mais finos */
        font-size: 0.9rem;
    }

    .btn-submit {
        padding: 12px;
        font-size: 1rem;
    }
}

/* Tablets */
@media (max-width: 968px) {
    #hero {
        background: linear-gradient(0deg, #0f172a 10%, rgba(15, 23, 42, 0.85) 100%), url('img/hero.jpg');
        background-size: cover;
        background-position: center;
        padding: 60px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .badge, .aviso-exclusividade, .autor-info {
        justify-content: center;
        text-align: left;
    }

    .aviso-exclusividade {
        text-align: center;
    }

    h1 {
        font-size: 2rem;
    }
    
    .hero-form {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    .form-box {
        padding: 20px;
    }
    .autor-info {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   SEÇÃO 2 UNIFICADA: DOR + INIMIGO (ATUALIZADA)
========================================== */
#diagnostico {
    /* Novo background: Gradiente escuro premium para criar profundidade */
    background: linear-gradient(135deg, #020b17 0%, #051932 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Brilho de fundo mais sutil */
#diagnostico::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 175, 51, 0.04) 0%, transparent 60%);
    z-index: 1;
}

.diagnostico-grid {
    position: relative;
    z-index: 2;
    max-width: 950px; 
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px; 
}

/* Estilo Base dos Cards (Menores e mais compactos) */
.diag-card {
    background-color: var(--bg-card); /* #0a2448 */
    border: 1px solid var(--border); 
    border-radius: 12px;
    padding: 30px; /* Reduzido de 40px para 30px */
    flex: 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.diag-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.inimigo-card {
    border-top: 3px solid var(--primary); /* #FFAF33 */
    background: linear-gradient(180deg, rgba(255, 175, 51, 0.05) 0%, var(--bg-card) 100%);
}

.dor-card {
    border-top: 3px solid #ff4757; 
    background: linear-gradient(180deg, rgba(255, 71, 87, 0.05) 0%, var(--bg-card) 100%);
}

/* Ícones menores */
.diag-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.dor-card .diag-icon {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

.inimigo-card .diag-icon {
    background: rgba(255, 175, 51, 0.1);
    color: var(--primary);
}

/* Tipografia ajustada para os cards menores */
.texto-intro {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.destaque-texto {
    font-size: 1.5rem; /* Menor e mais direto */
    color: var(--primary); 
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 15px;
}

.texto-base {
    font-size: 1rem;
    color: var(--text-white);
    line-height: 1.5;
}

.texto-base strong {
    color: var(--primary);
}

/* Alert Box */
.alert-box {
    margin-top: 25px;
    background: rgba(255, 71, 87, 0.1);
    border-left: 3px solid #ff4757;
    padding: 12px 15px;
    border-radius: 0 6px 6px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.alert-box i {
    color: #ff4757;
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
}

.alert-box p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-white);
}

/* Conector */
.diag-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 175, 51, 0.3); /* Setinha dourada com transparência */
}

.icon-mobile {
    display: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--primary); /* Puxa o seu Laranja/Dourado #FFAF33 */
    filter: blur(120px); /* Esse é o segredo para espalhar a luz */
    z-index: 1; /* Fica atrás dos cards */
    pointer-events: none; /* Garante que não atrapalhe cliques ou seleções de texto */
    opacity: 0.15; /* Intensidade da luz (aumente se quiser mais forte) */
}

/* Posicionamento de cada bola de luz */
.orb-1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    bottom: -20%;
    right: -10%;
    opacity: 0.12; /* Um pouco mais fraca */
}

.orb-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.08; /* Bem fraca, só para dar volume no centro */
}


/* Forçando o tamanho dos ícones dos cards */
.diag-icon svg {
    width: 32px;
    height: 32px;
}

/* Forçando o tamanho e a cor da setinha de conexão */
.diag-connector svg {
    width: 40px;
    height: 40px;
    color: var(--primary); /* Coloquei a cor primária para ficar bem visível */
    opacity: 0.8; /* Dá uma leve transparência para não roubar a atenção */
}

/* ==========================================
   RESPONSIVIDADE
========================================== */

/* Notebooks (Telas menores) */
@media (max-width: 1200px) {
    #diagnostico {
        padding: 60px 0;
    }
    
    .diagnostico-grid {
        max-width: 850px; /* Cards ainda menores */
        gap: 20px; /* Menos espaço entre eles */
    }

    .diag-card {
        padding: 25px;
    }

    .destaque-texto {
        font-size: 1.35rem;
    }
}

/* Tablets / Telas na Vertical */
@media (max-width: 850px) {
    .diagnostico-grid {
        flex-direction: column;
        align-items: center;
    }

    .diag-card {
        width: 100%;
        max-width: 500px; /* Limite legal para mobile/tablet */
    }

    .diag-connector {
        padding: 15px 0;
    }

    .icon-desktop {
        display: none;
    }

    .icon-mobile {
        display: block;
        color: var(--primary);
        opacity: 0.6;
    }
}

/* Mobile Pequeno */
@media (max-width: 600px) {
    #diagnostico { padding: 50px 0; }
    .diag-card { padding: 20px; }
    .destaque-texto { font-size: 1.25rem; }
    .texto-intro, .texto-base { font-size: 0.95rem; }
}


/* ==========================================
   SEÇÃO 4: A PROMESSA
========================================== */
#promessa {
    background-color: var(--bg-dark); 
    padding: 80px 0; /* Padronizado com a Seção 5 */
    border-top: 1px solid var(--border);
}

.promessa-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr; 
    gap: 80px; /* Ajustado para encaixar bem na nova largura */
    align-items: center;
    max-width: 1050px; /* Padronizado com a Seção 5 */
    margin: 0 auto;
}

/* --- Coluna Esquerda --- */
.promessa-lista h2 {
    font-size: 2.2rem; /* Padronizado com a Seção 5 */
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 30px;
    font-weight: 400; 
}

.promessa-lista .highlight {
    color: var(--primary); 
    font-weight: 800;
    display: block;
    margin-top: 5px;
}

.lista-promessa {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

.lista-promessa li {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Círculos numerados */
.lista-promessa .numero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: rgba(255, 175, 51, 0.1);
    color: var(--primary);
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 175, 51, 0.3);
}

.lista-promessa p {
    font-size: 1.1rem; /* Padronizado com a Seção 5 */
    color: var(--text-dim);
}

/* --- Coluna Direita (Card) --- */
.promessa-card {
    background-color: var(--bg-card); 
    padding: 40px 30px; 
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.icon-destaque {
    color: var(--primary);
    width: 30px;
    height: 30px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.promessa-card .card-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 600;
}

.promessa-card .card-texto {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.promessa-card .card-texto strong {
    color: var(--primary);
}


/* ==========================================
   SEÇÃO 5: O QUE VOCÊ VAI APRENDER (CARDS)
========================================== */
#aprendizado {
    background-color: var(--bg-card); 
    padding: 80px 0; /* Padronizado */
    border-top: 1px solid var(--border);
}

.aprendizado-header {
    text-align: center;
    margin-bottom: 50px;
}

.aprendizado-header h2 {
    font-size: 2.2rem; /* Padronizado */
    color: var(--text-white);
    font-weight: 400;
    margin-bottom: 10px;
}

.aprendizado-header h2 span {
    color: var(--primary); 
    font-weight: 800;
}

.aprendizado-header p {
    color: var(--text-dim);
    font-size: 1.1rem;
}

/* Grid 2x2 */
.aprendizado-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    max-width: 1050px; /* Padronizado com a Seção 4 */
    margin: 0 auto;
}

.ap-card {
    background: var(--bg-dark); 
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ap-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 175, 51, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ap-icon {
    background: rgba(255, 175, 51, 0.1);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.ap-card p {
    font-size: 1.1rem; /* Padronizado com a Seção 4 */
    color: var(--text-dim);
    line-height: 1.5;
    margin-top: 2px; 
}

.ap-card p strong {
    color: var(--text-white);
    font-weight: 600;
}


/* ==========================================
   RESPONSIVIDADE UNIFICADA (SEÇÃO 4 E 5)
========================================== */

/* Notebooks Menores */
@media (max-width: 1024px) {
    .promessa-grid { gap: 50px; }
    .promessa-lista h2, .aprendizado-header h2 { font-size: 1.8rem; }
    .aprendizado-grid-cards { gap: 20px; padding: 0 20px; }
}

/* Tablets (Grids viram 1 coluna) */
@media (max-width: 850px) {
    .promessa-grid, .aprendizado-grid-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    .promessa-grid { gap: 40px; }
}

/* Mobile pequeno */
@media (max-width: 600px) {
    #promessa, #aprendizado { padding: 60px 0; }
    .promessa-lista h2, .aprendizado-header h2 { font-size: 1.6rem; }
    .lista-promessa p, .ap-card p { font-size: 1rem; }
    .promessa-card .card-quote { font-size: 1.2rem; }
    .ap-card { padding: 20px; gap: 15px; }
    .ap-icon { width: 40px; height: 40px; }
}
/* ==========================================
   SEÇÃO 6: AUTORIDADE
========================================== */
/* ==========================================
   SEÇÃO 6: AUTORIDADE
========================================== */
#autoridade {
    background-color: #031225; 
    padding: 100px 0; /* Aumentado aqui para ficar exatamente do tamanho do CTA */
    position: relative; 
    overflow: hidden; 
}

/* --- Efeito das Bolas de Luz (Orbs) --- */
#autoridade .glow-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--primary); /* Puxa o Dourado/Laranja */
    filter: blur(120px); /* Deixa bem esfumaçado */
    z-index: 1; /* Fica no fundo */
    pointer-events: none; /* Não atrapalha o mouse */
    opacity: 0.15;
}

#autoridade .orb-1 { width: 400px; height: 400px; top: -10%; left: -10%; }
#autoridade .orb-2 { width: 500px; height: 500px; bottom: -20%; right: -10%; opacity: 0.12; }
#autoridade .orb-3 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.08; }

/* --- Grid Principal --- */
.autoridade-grid {
    display: grid;
    /* Reduzi a coluna da esquerda para a foto não ficar tão larga (e consequentemente, tão alta) */
    grid-template-columns: 0.6fr 1.4fr; 
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2; 
}

/* --- Lado da Imagem --- */
.autoridade-imagem {
    position: relative;
    display: flex;
    justify-content: center; /* Mantém a foto alinhada caso a tela mude de tamanho */
}

.img-wrapper {
    position: relative;
    border-radius: 12px;
    border: 2px solid rgba(255, 175, 51, 0.3);
    width: 100%;
    max-width: 380px; /* Trava o tamanho máximo para nunca ficar gigante no desktop */
}

.img-wrapper img {
    width: 100%;
    /* O SEGREDO ESTÁ AQUI: */
    aspect-ratio: 4 / 5; /* Força uma proporção de retrato clássica e elegante */
    object-fit: cover; /* Preenche a moldura cortando os excessos sem amassar a imagem */
    object-position: top center; /* Garante que o rosto dele não seja cortado */
    border-radius: 10px;
    display: block;
}

/* Selo flutuante de 26 anos (Ajustei a posição para o novo tamanho) */
.selo-experiencia {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--primary); 
    color: var(--bg-dark); 
    padding: 12px 18px; /* Deixei o selo um pouquinho mais delicado */
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.selo-numero {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.selo-texto {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

/* --- Lado do Texto --- */
.autoridade-conteudo h2 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 800;
}

.autoridade-subtitulo {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.4;
}

.autoridade-bio p {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 15px;
}

.autoridade-bio strong {
    color: var(--text-white);
}

/* ==========================================
   RESPONSIVIDADE
========================================== */
@media (max-width: 968px) {
    .autoridade-grid {
        gap: 50px;
        max-width: 800px;
    }
    .autoridade-conteudo h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .autoridade-grid {
        grid-template-columns: 1fr;
        text-align: center;
        max-width: 500px;
    }
    
    .img-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .selo-experiencia {
        right: 50%;
        transform: translateX(50%);
        bottom: -25px;
    }
}

@media (max-width: 600px) {
    #autoridade { padding: 60px 0; }
    .autoridade-conteudo h2 { font-size: 1.8rem; }
    .autoridade-bio p { font-size: 1rem; }
}
/* ==========================================
   SEÇÃO 7: CTA FINAL
========================================== */
#cta-final {
    background-color: var(--bg-card); /* Fundo um pouco mais claro */
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    position: relative; /* Necessário para as luzinhas não vazarem */
    overflow: hidden;
}

/* Garante que o texto fique por cima das luzes */
.cta-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2; 
}

/* --- Ícone Animado (Efeito 3D + Tremor) --- */
.alerta-animado {
    color: var(--primary); /* Amarelo/Dourado */
    margin-bottom: 20px;
    display: inline-block;
    
    /* Efeito 3D: Projeta uma sombra sólida para baixo e para a direita */
    filter: drop-shadow(4px 4px 0px rgba(180, 110, 0, 0.8));
    
    /* Aplica a animação do tremor */
    animation: tremerAlerta 2s infinite; 
}

.alerta-animado svg {
    width: 60px; /* Deixei um pouquinho maior para dar mais destaque */
    height: 60px;
}

/* Animação: Ele treme loucamente por um instante e depois faz uma pausa */
@keyframes tremerAlerta {
    0%, 100% { transform: translate(0, 0) rotate(0); }
    5%, 15%, 25%, 35% { transform: translate(-3px, 0) rotate(-8deg); }
    10%, 20%, 30% { transform: translate(3px, 0) rotate(8deg); }
    40% { transform: translate(0, 0) rotate(0); }
}
/* --- Textos e Botão --- */
#cta-final h2 {
    font-size: 2.8rem;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 800;
}

#cta-final .highlight {
    color: var(--primary);
}

.cta-texto {
    font-size: 1.2rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-texto strong {
    color: var(--text-white);
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary);
    color: #000;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, background-color 0.3s;
    margin-bottom: 30px;
}

.btn-cta-final:hover {
    transform: translateY(-3px);
    background-color: var(--primary-hover);
}

.cta-aviso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.cta-aviso i {
    color: var(--primary);
    width: 18px;
    height: 18px;
}

/* ==========================================
   EFEITO DAS LUZINHAS SUBINDO
========================================== */
.luzes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Para não bugar o clique no botão */
    z-index: 1;
}

.luz {
    position: absolute;
    bottom: -20px;
    background-color: var(--primary);
    border-radius: 50%;
    /* Criando um brilho em volta da bolinha */
    box-shadow: 0 0 10px var(--primary), 0 0 20px var(--primary);
    opacity: 0;
    animation: subirLuz infinite ease-in;
}

/* Configurando posições, tamanhos e velocidades diferentes para cada luz */
.luz:nth-child(1) { left: 15%; width: 8px; height: 8px; animation-duration: 5s; animation-delay: 0s; }
.luz:nth-child(2) { left: 35%; width: 12px; height: 12px; animation-duration: 7s; animation-delay: 1s; }
.luz:nth-child(3) { left: 55%; width: 6px; height: 6px; animation-duration: 4s; animation-delay: 2s; }
.luz:nth-child(4) { left: 75%; width: 10px; height: 10px; animation-duration: 6s; animation-delay: 0.5s; }
.luz:nth-child(5) { left: 85%; width: 7px; height: 7px; animation-duration: 5.5s; animation-delay: 3s; }
.luz:nth-child(6) { left: 25%; width: 9px; height: 9px; animation-duration: 4.5s; animation-delay: 1.5s; }

@keyframes subirLuz {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.6; }
    100% { transform: translateY(-300px) scale(0.5); opacity: 0; }
}

/* ==========================================
   RESPONSIVIDADE
========================================== */
@media (max-width: 768px) {
    #cta-final { padding: 80px 0; }
    #cta-final h2 { font-size: 2.2rem; }
    .btn-cta-final { width: 100%; padding: 18px 20px; font-size: 1.1rem; }
}

@media (max-width: 600px) {
    #cta-final { padding: 60px 20px; }
    #cta-final h2 { font-size: 1.8rem; }
    .cta-texto { font-size: 1rem; }
    .cta-aviso { flex-direction: column; gap: 5px; }
}

/* ==========================================
   FOOTER
========================================== */
#footer {
    background-color: #020b17; /* Um azul ainda mais escuro para "fechar" a página */
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Linha divisória bem sutil */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Link do Instagram */
.social-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    color: var(--primary); /* Fica dourado ao passar o mouse */
}

/* Créditos da Agência */
.footer-dev {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-dev a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-dev a:hover {
    color: var(--primary);
}

/* ==========================================
   RESPONSIVIDADE DO FOOTER
========================================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 10px;
    }
}


/* ==========================================
   PÁGINA DE OBRIGADO
========================================== */
/* Centraliza a caixa na tela inteira */
body.bg-obrigado {
    background-color: #020b17; /* Fundo bem escuro */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#obrigado {
    width: 100%;
    padding: 20px;
}

.obrigado-container {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--bg-card);
    padding: 60px 50px;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.obrigado-icon {
    color: #10b981; /* Verde de sucesso */
    margin-bottom: 20px;
    display: inline-block;
}

.obrigado-icon svg {
    width: 80px;
    height: 80px;
}

.obrigado-container h1 {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 10px;
    font-weight: 800;
}

.obrigado-alerta {
    font-size: 1.2rem;
    color: #ff4757; /* Vermelho para prender a atenção */
    margin-bottom: 30px;
}

.obrigado-box {
    background: rgba(5, 25, 50, 0.4);
    border: 1px dashed var(--primary); /* Borda dourada tracejada */
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 35px;
}

.obrigado-box p {
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.obrigado-box p:last-child {
    margin-bottom: 0;
}

.obrigado-box strong {
    color: var(--primary);
}

/* Botão do WhatsApp */
.btn-wpp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #25D366; /* Cor oficial do WhatsApp */
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    padding: 22px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    width: 100%;
}

.btn-wpp:hover {
    transform: translateY(-3px);
    background-color: #20bd5a;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Responsividade da Página de Obrigado */
@media (max-width: 600px) {
    .obrigado-container { padding: 40px 20px; }
    .obrigado-container h1 { font-size: 2rem; }
    .obrigado-alerta { font-size: 1.1rem; }
    .obrigado-box p { font-size: 1rem; }
    .btn-wpp { font-size: 1.1rem; padding: 18px 20px; }
}

/* Aviso de Redirecionamento na Página de Obrigado */
.texto-redirecionamento {
    margin-top: 20px;
    color: var(--text-dim);
    font-size: 0.95rem;
}