/* =========================================
   1. VARIÁVEIS & CONFIGURAÇÕES GERAIS
   ========================================= */
:root {
    /* Paleta Velox Liderança */
    --bg-navy: #0A192F;       /* Azul Profundo Principal */
    --bg-darker: #050d1a;     /* Azul Quase Preto (Profundidade) */
    --gold: #CCB695;          /* Dourado Principal */
    --gold-light: #decbb0;    /* Dourado Claro (Brilho) */
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    
    /* Tipografia */
    --font-title: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-navy);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
}

/* =========================================
   2. HERO SECTION (ESTRUTURA & FUNDO)
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--bg-navy);
}

/* Container absoluto para os efeitos de fundo (atrás de tudo) */
.hero-bg-elements {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 2.1 Grade Tecnológica (Blueprint Effect) */
/* 2.1 Imagem de Fundo (Substitui a Grade) */
.bg-grid {
    position: absolute;
    width: 100%; height: 100%;
    
    /* COLOQUE O NOME DA SUA IMAGEM AQUI */
    background: url('img/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    
    /* Ajuste a opacidade para a imagem não "estourar" o texto */
    opacity: 0.4; 
    
    /* Isso faz a imagem preto e branco assumir a cor azul do fundo (#0A192F) */
    mix-blend-mode: luminosity; 
}

/* 2.2 Glow Central (Spotlight Azulado) */
.bg-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120vw; height: 120vw;
    background: radial-gradient(circle, rgba(20, 50, 90, 0.4) 0%, rgba(10, 25, 47, 0) 70%);
    pointer-events: none;
}

/* 2.3 Vinheta (Escurece as bordas) */
.bg-vignette {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, var(--bg-navy) 100%);
    opacity: 0.9;
}

/* =========================================
   3. PARTÍCULAS FLUTUANTES (ANIMAÇÃO)
   ========================================= */
.floating-particles {
    position: absolute;
    width: 100%; height: 100%;
    z-index: 1; /* Acima do fundo, abaixo do texto */
    overflow: hidden;
    pointer-events: none;
}

.floating-particles span {
    position: absolute;
    bottom: -50px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp 15s infinite linear;
    box-shadow: 0 0 10px var(--gold);
}

/* Configuração aleatória das partículas */
.p1 { width: 4px; height: 4px; left: 10%; animation-delay: 0s; animation-duration: 25s; }
.p2 { width: 6px; height: 6px; left: 35%; animation-delay: 4s; animation-duration: 30s; opacity: 0.2; }
.p3 { width: 3px; height: 3px; left: 70%; animation-delay: 2s; animation-duration: 20s; }
.p4 { width: 5px; height: 5px; left: 90%; animation-delay: 8s; animation-duration: 35s; }

@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    20% { opacity: 0.4; }
    80% { opacity: 0.2; }
    100% { transform: translateY(-110vh) scale(1.5); opacity: 0; }
}

/* =========================================
   4. CONTEÚDO DO HERO (TEXTOS & INTERFACE)
   ========================================= */
.container {
    position: relative;
    z-index: 10; /* Garante que o texto fique acima de tudo */
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Sombra suave no texto para separar da grade */
    text-shadow: 0 10px 30px rgba(0,0,0,0.6); 
}

/* Ícone de Estrela */
.hero-star {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

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

/* Título Principal */
.hero-title {
    font-family: var(--font-title);
    font-size: clamp(3rem, 6vw, 5.5rem); /* Responsivo fluido */
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.gold-text {
    color: var(--gold);
    /* Leve brilho no dourado */
    text-shadow: 0 0 20px rgba(204, 182, 149, 0.4);
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.hero-subtitle strong { font-weight: 600; color: #fff; }

/* Badge de Data (Estilo Vidro) */
.date-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    
    background: rgba(10, 25, 47, 0.4); /* Translúcido */
    backdrop-filter: blur(8px);       /* Desfoque do fundo */
    -webkit-backdrop-filter: blur(8px);
    
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.dot {
    width: 6px; height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
}

/* Botão CTA Principal */
.btn-gold {
    display: inline-block;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #081425; /* Texto escuro para contraste máximo */
    padding: 18px 54px;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    
    /* Glow dourado suave */
    box-shadow: 0 10px 30px rgba(204, 182, 149, 0.2);
}

.btn-gold:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(204, 182, 149, 0.45);
    filter: brightness(1.1);
}

/* Rodapé do Hero */
.hero-footer-info {
    margin-top: 3.5rem;
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.separator { color: rgba(255,255,255,0.15); }

/* =======================================================
   RESPONSIVIDADE PARA NOTEBOOKS & LAPTOPS (1024px - 1440px)
   ======================================================= */
@media (max-width: 1440px) {
    
    /* 1. Ajuste do Container para não ficar muito largo */
    .container {
        max-width: 700px; /* Texto mais compacto */
        padding: 0 30px;
    }

    /* 2. Título um pouco menor para não quebrar linha errada */
    .hero-title {
        font-size: 4.0rem; /* Reduzido de 5.5rem */
        margin-bottom: 1rem;
    }

    /* 3. Subtítulo mais próximo */
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem; /* Reduzido o espaço */
    }

    /* 4. Badge de data mais compacta */
    .date-badge {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 1.8rem;
    }

    /* 5. Botão levemente menor */
    .btn-gold {
        padding: 14px 40px;
        font-size: 1rem;
    }

    /* 6. Rodapé do Hero mais próximo do botão */
    .hero-footer-info {
        margin-top: 2rem; /* Reduzido de 3.5rem */
        font-size: 0.75rem;
    }
}




/* =========================================
   5. RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem; /* Título menor no celular */
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%; /* Garante margem lateral */
    }

    .btn-gold {
        width: 100%; /* Botão full width no mobile */
        max-width: 320px;
        padding: 16px 30px;
    }

    .hero-footer-info {
        flex-direction: column; /* Empilha as infos */
        gap: 8px;
        margin-top: 2.5rem;
    }
    
    .separator { display: none; }
}



/* ================= DEGRADÊ DE TRANSIÇÃO (HERO -> AUTHORITY) ================= */

/* Adiciona uma camada extra no final da Hero Section */
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px; /* Altura do degradê (quanto maior, mais suave) */
    
    /* O Segredo: Começa transparente e termina na cor exata do fundo (Navy) */
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0) 0%, var(--bg-navy) 100%);
    
    z-index: 5; /* Fica acima da imagem de fundo, mas abaixo do texto (z-index 10) */
    pointer-events: none; /* Garante que não atrapalhe cliques */
}

/* ================= SEÇÃO: AUTORIDADE (SOBRE) ================= */

/* 1. Container Principal da Section */
.authority-section {
    position: relative; /* Necessário para posicionar os feixes de luz */
    width: 100%;
    padding: 50px 20px;
    background-color: var(--bg-navy); /* Mantém o azul escuro */
    
    /* CENTRALIZAÇÃO FLEXBOX (O Segredo para corrigir o alinhamento) */
    display: flex;
    flex-direction: column;
    align-items: center;   /* Centraliza horizontalmente */
    justify-content: center;
    text-align: center;    /* Garante que o texto dentro quebre no meio */
}

.section-title {
        font-size: 2.5rem; /* Título mais imponente */
        margin-bottom: 30px;
    }

/* 2. Container Interno (Limita a largura do texto) */
.container-authority {
    width: 100%;
    max-width: 900px; /* Largura máxima para não esticar demais em telas grandes */
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5; /* Garante que fique acima dos efeitos de fundo */
}

/* 3. Badge Superior (Círculo com Medalha) */
.authority-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    
    /* Estilo Vidro/Premium */
    border-radius: 50%;
    border: 1px solid rgba(204, 182, 149, 0.4); /* Borda Dourada Suave */
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%);
    box-shadow: 0 0 25px rgba(204, 182, 149, 0.15); /* Glow */
    
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 1.5rem;
}

/* 4. Ajustes de Texto Específicos desta Section */
.authority-text {
    max-width: 800px;
    margin: 0 auto 40px auto; /* Margem auto ajuda a centralizar blocos de texto */
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.text-white {
    color: #fff;
    font-weight: 600;
}

/* 5. Tags (Varejo, Corporate, Agro) */
.market-tags-wrapper {
    display: flex;
    justify-content: center; /* Centraliza as tags na linha */
    align-items: center;
    gap: 15px;
    flex-wrap: wrap; /* Permite quebrar linha no mobile */
    width: 100%;
}

.market-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    
    border: 1px solid rgba(204, 182, 149, 0.25);
    border-radius: 8px;
    background: rgba(10, 25, 47, 0.4); /* Fundo leve */
    
    color: var(--text-gray);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.market-tag i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* Efeito Hover nas Tags */
.market-tag:hover {
    border-color: var(--gold);
    background: rgba(204, 182, 149, 0.1);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* 6. FEIXES DE LUZ (Linhas Brilhantes Topo e Base) */
.light-beam {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Centraliza geometricamente */
    width: 100%;
    height: 1px;
    
    /* Gradiente transparente nas pontas e sólido no meio */
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(204, 182, 149, 0) 10%, 
        rgba(204, 182, 149, 0.8) 50%, 
        rgba(204, 182, 149, 0) 90%, 
        transparent 100%
    );
    
    /* Brilho intenso (Glow) */
    box-shadow: 0 0 15px rgba(204, 182, 149, 0.6), 
                0 0 30px rgba(204, 182, 149, 0.2);
    opacity: 0.9;
    z-index: 10;
}

/* Posicionamento dos Feixes */
.light-beam.top { top: 0; }
.light-beam.bottom { bottom: 0; }


/* ================= RESPONSIVIDADE (MOBILE) ================= */
@media (max-width: 768px) {
    .authority-section {
        padding: 60px 20px;
    }
    
    .authority-text {
        font-size: 1rem;
    }
    
    .market-tags-wrapper {
        gap: 10px;
    }
    
    /* No celular, as tags ocupam a largura disponível para facilitar o clique */
    .market-tag {
        width: 100%;
        max-width: 280px; 
    }
}


/* ================= AJUSTE COMPACTO - AUTHORITY (NOTEBOOK) ================= */
/* Aplica somente em telas entre 992px e 1440px */
@media (min-width: 992px) and (max-width: 1440px) {
    
    /* 1. Reduz o padding vertical drasticamente */
    /* O !important garante que sobrescreva o tamanho grande do desktop */
    .authority-section {
        padding: 60px 20px !important; 
        min-height: auto !important; /* Remove altura mínima se houver */
    }

    /* 2. Diminui o Badge (Medalha) */
    .authority-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    /* 3. Título menor */
    .section-title {
        font-size: 2rem !important; /* Reduzido para caber melhor */
        margin-bottom: 15px;
    }

    /* 4. Texto descritivo mais compacto */
    .authority-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 700px; /* Texto fica menos largo */
        line-height: 1.5;
    }

    /* 5. Tags menores e mais juntas */
    .market-tag {
        padding: 8px 24px;
        font-size: 0.85rem;
    }
    
    .market-tags-wrapper {
        gap: 10px;
    }
}




/* =========================================
   SEÇÃO LEARNING (O QUE VOCÊ VAI APRENDER)
   ========================================= */

.learning-section {
    padding: 100px 20px;
    background-color: var(--bg-navy); /* Fundo Azul Navy */
    position: relative;
    overflow: hidden; /* Essencial para conter as partículas */
}

/* Garante que o conteúdo fique acima das partículas */
.container-learning {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* --- CABEÇALHO DA SEÇÃO --- */
.learning-header {
    text-align: center;
    margin-bottom: 70px;
}

.learning-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.learning-title {
    font-family: var(--font-title); /* Oswald */
    font-size: 3.5rem;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.1;
}

/* --- GRID LAYOUT --- */
.learning-grid {
    display: grid;
    /* Padrão Desktop: 3 Colunas */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    width: 100%;
}

/* --- ESTILO DO CARD (REPLICANDO O PRINT) --- */
.learning-card {
    /* Fundo escuro translúcido, estilo "vidro escuro" */
    background-color: rgba(8, 20, 37, 0.7); 
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda sutil */
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    backdrop-filter: blur(10px); /* Opcional: melhora o efeito vidro se tiver algo atrás */
}

/* Efeito Hover */
.learning-card:hover {
    transform: translateY(-7px);
    border-color: rgba(204, 182, 149, 0.6); /* Borda fica dourada */
    background-color: rgba(8, 20, 37, 0.95); /* Fica mais sólido */
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Box do Ícone (Quadrado no topo esquerdo) */
.icon-box {
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.05); 
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.icon-box i {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Hover no card afeta o ícone */
.learning-card:hover .icon-box {
    border-color: var(--gold);
    background-color: rgba(204, 182, 149, 0.15);
    box-shadow: 0 0 15px rgba(204, 182, 149, 0.2);
}

/* Textos do Card */
.learning-card h3 {
    font-family: var(--font-title); /* Oswald */
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.learning-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7); /* Texto cinza claro para contraste */
    line-height: 1.7;
    margin: 0;
}

/* --- BOTÃO CTA DA SEÇÃO LEARNING --- */
.learning-cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px; /* Espaço entre os cards e o botão */
    position: relative;
    z-index: 5;
}

.btn-learning-cta {
    background: linear-gradient(90deg, #e3cfb4 0%, #ccb695 50%, #bfa785 100%);
    color: #050d1a;
    font-family: var(--font-title, 'Oswald', sans-serif); /* Fallback font */
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    
    padding: 18px 50px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(204, 182, 149, 0.2);
}

.btn-learning-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(204, 182, 149, 0.4);
    filter: brightness(1.1);
}

.btn-learning-cta i {
    font-size: 1rem;
}

/* ================= AJUSTE ULTRA COMPACTO - LEARNING (NOTEBOOK) ================= */
/* Aplica em telas entre 992px e 1440px */
@media (min-width: 992px) and (max-width: 1440px) {
    
    /* ... (Mantenha as regras anteriores de compactação aqui) ... */

    /* Novo ajuste para o botão no notebook */
    .learning-cta-container {
        margin-top: 30px !important; /* Menos margem */
    }

    .btn-learning-cta {
        padding: 14px 40px !important;
        font-size: 0.95rem !important;
    }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .learning-cta-container {
        margin-top: 40px;
    }
    
    .btn-learning-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 1rem;
    }
}

/* ================= RESPONSIVIDADE ================= */

/* AJUSTE PARA NOTEBOOK (Abaixo de 1200px) */
/* Muda para 2 colunas para ficar visualmente menor e mais organizado */
@media (max-width: 1200px) {
    .learning-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Colunas */
        gap: 25px;
        max-width: 900px; /* Limita a largura total */
        margin: 0 auto;
    }

    .learning-title {
        font-size: 3rem;
    }
    
    .learning-card {
        padding: 35px 25px; /* Leve redução no padding interno */
    }
}

/* AJUSTE PARA TABLET/MOBILE (Abaixo de 768px) */
@media (max-width: 768px) {
    .learning-header {
        margin-bottom: 50px;
    }

    .learning-title {
        font-size: 2.5rem;
    }

    .learning-grid {
        grid-template-columns: 1fr; /* 1 Coluna empilhada */
        gap: 20px;
    }
    
    /* Centraliza o conteúdo do card no mobile (opcional, fica bom) */
    .learning-card {
        align-items: center;
        text-align: center;
    }
}

/* ================= AJUSTE ULTRA COMPACTO - LEARNING (NOTEBOOK) ================= */
/* Aplica em telas entre 992px e 1440px */
@media (min-width: 992px) and (max-width: 1440px) {
    
    /* 1. Reduz altura da seção */
    .learning-section {
        padding: 50px 20px !important; /* Era 100px */
    }

    /* 2. Aproxima o título do grid */
    .learning-header {
        margin-bottom: 30px !important; /* Era 70px */
    }

    /* 3. Título menor */
    .learning-title {
        font-size: 2.2rem !important; /* Era 3.5rem */
    }
    
    .learning-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 5px !important;
    }

    /* 4. Grid mais apertado */
    .learning-grid {
        /* Força 3 colunas para ocupar menos altura (2 linhas apenas) */
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 20px !important;
    }

    /* 5. Cards Compactos */
    .learning-card {
        padding: 20px 20px !important; /* Card bem mais fino */
        border-radius: 12px !important;
    }

    /* 6. Ícone Pequeno */
    .icon-box {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 15px !important;
        border-radius: 8px !important;
    }
    
    .icon-box i {
        font-size: 1.1rem !important;
    }

    /* 7. Textos Internos Menores */
    .learning-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }
    
    .learning-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
}







/* =========================================
   SEÇÃO SPEAKERS (AJUSTE FINO: TÍTULO GRANDE & CARDS MENORES)
   ========================================= */

.speakers-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    
    background-color: var(--bg-navy);
    background-image: 
        radial-gradient(circle at center, #132d52 0%, var(--bg-navy) 75%),
        repeating-linear-gradient(
            45deg, 
            rgba(204, 182, 149, 0.03) 0px, 
            rgba(204, 182, 149, 0.03) 1px, 
            transparent 1px, 
            transparent 20px
        );
    background-size: cover; 
    background-position: center center;
}

/* --- NOVO TÍTULO ESPECÍFICO (MAIOR) --- */
.section-title-speakers {
    font-family: var(--font-title); /* Oswald */
    font-size: 4rem; /* Bem maior que o padrão */
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.1;
    text-align: center;
}

.speakers-section .section-header {
    text-align: center;
    margin-bottom: 70px; /* Mais espaço abaixo do título gigante */
    position: relative;
    z-index: 2;
}

/* --- CONTAINER & GRID --- */
.container-speakers {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speakers-grid {
    display: grid;
    /* AJUSTE DESKTOP: Reduzi o max de 460px para 380px */
    grid-template-columns: repeat(2, minmax(300px, 380px));
    justify-content: center;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* --- ESTILO DO CARD --- */
.speaker-card {
    background-color: #081425;
    border: 1px solid rgba(204, 182, 149, 0.25);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(204, 182, 149, 0.15);
}

/* --- FOTO --- */
.speaker-photo {
    position: relative;
    width: 100%;
    /* Altura proporcionalmente menor já que o card diminuiu a largura */
    height: 420px; 
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
    filter: brightness(0.9) contrast(1.1);
}

.speaker-card:hover .speaker-photo img {
    transform: scale(1.08);
    filter: brightness(1);
}

/* --- OVERLAY DO NOME --- */
.name-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 140px;
    background: linear-gradient(to top, rgba(5,13,26,1) 20%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    z-index: 2;
}

.name-overlay h3 {
    font-family: var(--font-title);
    font-size: 2rem; /* Leve ajuste para caber no card menor */
    color: #fff;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    letter-spacing: 1px;
}

/* --- CORPO DO CARD --- */
.speaker-body {
    padding: 25px; /* Padding levemente reduzido */
    background-color: #081425;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- BOTÃO CONHECER --- */
.btn-conhecer {
    background: linear-gradient(135deg, var(--gold) 0%, #bfa785 100%);
    color: #050d1a;
    width: 100%;
    padding: 14px 0;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.btn-conhecer:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(204, 182, 149, 0.3);
}

.btn-icon { font-weight: 900; margin-top: -2px; }

/* --- ACCORDION (BIO) --- */
.speaker-bio {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    width: 100%;
}

.bio-content { padding-top: 20px; }
.bio-list { list-style: none; padding: 0; margin: 0; }

.bio-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-body);
    font-size: 0.9rem; /* Fonte um pouco menor para caber melhor */
    line-height: 1.5;
    margin-bottom: 12px;
    text-align: left;
}

.bio-list i {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.separator-line {
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 182, 149, 0.5), transparent);
    margin: 15px 0 !important;
}

.speaker-card.active .speaker-bio { max-height: 800px; opacity: 1; }
.speaker-card.active .btn-conhecer { background: #bfa785; box-shadow: inset 0 2px 5px rgba(0,0,0,0.2); }


/* ================= RESPONSIVIDADE ================= */

/* /* ================= AJUSTE ULTRA COMPACTO PARA NOTEBOOK (CORRIGIDO) ================= */
/* Aplica em telas de 992px até 1440px */
@media (min-width: 992px) and (max-width: 1440px) {
    
    /* 1. Reduz o padding vertical da seção inteira */
    .speakers-section {
        padding: 40px 20px !important; /* Reduzido de 100px para 40px */
    }

    /* 2. Diminui o Título da Seção */
    .section-title-speakers {
        font-size: 2.5rem !important; /* Reduzido de 4rem para 2.5rem */
        margin-bottom: 20px;
    }

    .speakers-section .section-header {
        margin-bottom: 30px !important; /* Menos espaço entre título e cards */
    }

    /* 3. Grid e Cards mais estreitos */
    .speakers-grid {
        /* Cards bem menores: máx 320px */
        grid-template-columns: repeat(2, minmax(250px, 320px)) !important;
        gap: 20px !important;
        max-width: 700px;
    }

    /* 4. AQUI ESTÁ O SEGREDO: Altura da Foto */
    .speaker-photo {
        height: 280px !important; /* Reduzido drasticamente de 420px para 280px */
    }

    /* 5. Nome do Professor menor */
    .name-overlay h3 {
        font-size: 1.5rem !important;
        padding-bottom: 10px;
    }
    
    .name-overlay {
        height: 80px !important; /* Gradiente menor */
    }

    /* 6. Corpo do Card compacto */
    .speaker-body {
        padding: 15px !important;
    }
    
    .btn-conhecer {
        padding: 10px 0 !important;
        font-size: 0.9rem !important;
    }
}
/* 2. TABLET E MOBILE (Abaixo de 950px) */
@media (max-width: 950px) {
    .speakers-section {
        padding: 60px 20px;
        background-position: center top; 
    }

    .section-title-speakers {
        font-size: 2.5rem; /* Título no mobile */
    }

    .speakers-grid {
        /* Vira 1 coluna */
        grid-template-columns: minmax(300px, 450px); 
        gap: 30px;
    }
    
    .speaker-photo {
        height: 400px;
    }
}


/* =========================================
   SEÇÃO FINAL CTA (VISUAL PREMIUM GALAXY)
   ========================================= */

.final-cta-section {
    position: relative;
    padding: 140px 20px;
    background-color: var(--bg-navy);
    overflow: hidden;
    text-align: center;
}

/* --- CAMADAS DE FUNDO (A Mágica) --- */
.cta-premium-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 1. Profundidade (Spotlight Azul) */
.bg-depth {
    position: absolute;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top center, #1a3a66 0%, var(--bg-navy) 60%, #000000 100%);
    opacity: 0.9;
}

/* 2. Malha Tecnológica (Sutil) */
.bg-mesh {
    position: absolute;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    opacity: 0.6;
}

/* 3. Poeira de Ouro (Partículas Animadas) */
.gold-dust span {
    position: absolute;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    opacity: 0;
    animation: twinkle 4s infinite ease-in-out;
}

/* Posicionamento aleatório das estrelas */
.gold-dust span:nth-child(1) { top: 10%; left: 20%; width: 3px; height: 3px; animation-delay: 0s; }
.gold-dust span:nth-child(2) { top: 30%; left: 80%; width: 4px; height: 4px; animation-delay: 1s; }
.gold-dust span:nth-child(3) { top: 70%; left: 10%; width: 2px; height: 2px; animation-delay: 2s; }
.gold-dust span:nth-child(4) { top: 60%; left: 90%; width: 5px; height: 5px; animation-delay: 0.5s; }
.gold-dust span:nth-child(5) { top: 20%; left: 50%; width: 3px; height: 3px; animation-delay: 3s; }
.gold-dust span:nth-child(6) { top: 85%; left: 30%; width: 4px; height: 4px; animation-delay: 1.5s; }
.gold-dust span:nth-child(7) { top: 40%; left: 15%; width: 2px; height: 2px; animation-delay: 2.5s; }
.gold-dust span:nth-child(8) { top: 50%; left: 70%; width: 3px; height: 3px; animation-delay: 1s; }

@keyframes twinkle {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* --- CONTAINER CENTRAL --- */
.container-cta {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5; /* Garante que o texto fique acima do fundo */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- ÍCONE FLUTUANTE --- */
.cta-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    /* Vidro Fosco Premium */
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(204, 182, 149, 0.4);
    backdrop-filter: blur(10px);
    
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    
    /* Brilho pulsante */
    box-shadow: 0 0 30px rgba(204, 182, 149, 0.2);
    animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cta-icon-box i {
    font-size: 2rem;
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold);
}

/* --- TÍTULO COM GRADIENTE DE TEXTO --- */
.cta-title {
    font-family: var(--font-title);
    font-size: 3.8rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gold-text-gradient {
    /* Gradiente direto no texto */
    background: linear-gradient(135deg, #decbb0 0%, #bfa785 50%, #8c7350 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* --- SUBTÍTULO --- */
.cta-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    line-height: 1.6;
}

.cta-subtitle strong {
    color: #fff;
    font-weight: 600;
}

/* --- DATE BADGE --- */
.cta-date-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px; /* Borda redonda completa */
    font-family: var(--font-body);
    font-size: 1rem;
    color: #fff;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.cta-date-box:hover {
    border-color: var(--gold);
    background: rgba(204, 182, 149, 0.1);
}

.cta-date-box i { color: var(--gold); }

/* --- BOTÃO GIGANTE (CTA) --- */
.btn-cta-large {
    background: linear-gradient(90deg, #e3cfb4 0%, #ccb695 50%, #bfa785 100%);
    color: #050d1a;
    font-family: var(--font-title);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.3rem; /* Fonte maior */
    letter-spacing: 1px;
    
    padding: 24px 70px; /* Botão bem gordo */
    border-radius: 8px;
    width: 100%;
    max-width: 550px;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    
    transition: all 0.3s ease;
    /* Super Glow Dourado */
    box-shadow: 0 0 40px rgba(204, 182, 149, 0.3), inset 0 0 10px rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho passando pelo botão */
.btn-cta-large::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(204, 182, 149, 0.5);
    filter: brightness(1.1);
}

/* --- NOTA DE SEGURANÇA --- */
.security-note {
    margin-top: 25px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 768px) {
    .final-cta-section { padding: 80px 20px; }
    
    .cta-title { font-size: 2.5rem; }
    
    .btn-cta-large {
        padding: 20px 20px;
        font-size: 1.1rem;
        width: 100%;
    }
}

/* ================= AJUSTE SUPER COMPACTO PARA NOTEBOOK ================= */
/* Aplica em telas entre 992px e 1440px */
@media (min-width: 992px) and (max-width: 1440px) {
    
    .final-cta-section {
        /* Reduzido drasticamente o padding vertical */
        padding: 100px 20px; 
    }

    /* Ícone bem menor */
    .cta-icon-box {
        width: 45px;
        height: 45px;
        margin-bottom: 15px; /* Menos espaço abaixo */
    }
    .cta-icon-box i { font-size: 1.2rem; }

    /* Título bem mais compacto */
    .cta-title {
        font-size: 2rem; /* Era 3.8rem no desktop, caiu quase pela metade */
        margin-bottom: 10px;
    }

    /* Subtítulo mais discreto */
    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.4;
    }

    /* Caixa de data pequena */
    .cta-date-box {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 20px;
        border-radius: 30px;
    }

    /* Botão mais fino e elegante */
    .btn-cta-large {
        padding: 14px 30px; /* Botão bem menos "gordo" */
        font-size: 1rem;
        max-width: 400px;
        gap: 10px;
    }

    /* Nota de segurança colada no botão */
    .security-note {
        margin-top: 15px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   SEÇÃO DE INSCRIÇÃO (PREMIUM GLASS + CARD DE COMPRA)
   ========================================================================== */

.registration-section {
    position: relative;
    padding: 80px 20px;
    background-color: #050d1a;
    overflow: hidden;
    border-top: 1px solid rgba(204, 182, 149, 0.1);
}

/* --- Elementos de Fundo (Glow) --- */
.reg-bg-elements {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}

.reg-glow-corner {
    position: absolute;
    top: -20%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(204, 182, 149, 0.15) 0%, transparent 70%);
    filter: blur(50px);
}

/* --- Container Principal (Grid) --- */
.container-reg {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   COLUNA ESQUERDA (Informações e Benefícios)
   ========================================================================== */
.reg-info {
    text-align: left;
}

.reg-tag {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid var(--gold); /* Borda Dourada */
    color: var(--gold); /* Texto Dourado */
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.reg-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Classe para o texto "Evolução Agora" */
.gold-text {
    color: var(--gold); /* DOURADO AQUI */
}

.reg-desc {
    font-family: 'Poppins', sans-serif;
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Lista de Benefícios */
.reg-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.reg-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.check-icon {
    width: 32px; height: 32px;
    background: rgba(204, 182, 149, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold); /* ÍCONES DOURADOS AQUI */
    flex-shrink: 0;
}

.reg-benefits li div strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.reg-benefits li div span {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

/* Prova Social (Avatares) */
.reg-trust {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.trust-avatars { display: flex; }

.trust-avatars span {
    width: 35px; height: 35px;
    border-radius: 50%;
    background-color: #333;
    border: 2px solid #050d1a;
    margin-left: -10px;
    background-size: cover; /* Garante que a foto cubra o círculo */
    background-position: center;
}
.trust-avatars span:first-child { margin-left: 0; }

.reg-trust p {
    color: #fff;
    font-size: 0.9rem;
}

/* ==========================================================================
   COLUNA DIREITA (Card de Compra)
   ========================================================================== */
.reg-form-wrapper {
    position: relative;
}

.premium-form.pricing-card {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(204, 182, 149, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.premium-form.pricing-card:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(204, 182, 149, 0.15);
    transform: translateY(-5px);
}

.price-header-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.price-header-card p {
    color: var(--gold); /* Subtítulo Dourado */
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Área do Valor */
.price-display-card {
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-display-card small {
    display: block;
    color: var(--text-grey);
    font-size: 1rem;
    margin-bottom: 5px;
}

.price-display-card .big-value {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(204, 182, 149, 0.3);
}

.price-display-card .cash-value {
    display: block;
    color: var(--gold); /* Valor à vista Dourado */
    font-weight: 600;
    font-size: 1.1rem;
}

/* Ícones de Pagamento */
.payment-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
    color: var(--text-grey);
    opacity: 0.7;
}

/* Botão de Compra Dourado */
a.btn-submit-reg {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    background-color: var(--gold); /* Fundo Dourado */
    color: var(--primary-blue); /* Texto Escuro */
    font-weight: 800;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid var(--gold);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

a.btn-submit-reg:hover {
    background-color: transparent;
    color: var(--gold); /* Texto Dourado no Hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 182, 149, 0.2);
}

.form-footer-text {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-top: 15px;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & NOTEBOOK)
   ========================================================================== */
@media (max-width: 992px) {
    .container-reg {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .reg-info { text-align: center; }
    .reg-benefits li { justify-content: center; text-align: left; }
    .reg-trust { justify-content: center; }
    .reg-title { font-size: 2.5rem; }
    .price-display-card .big-value { font-size: 2.8rem; }
}

@media (max-width: 600px) {
    .premium-form.pricing-card { padding: 25px 20px; }
}

@media (min-width: 992px) and (max-width: 1440px) {
    .registration-section { padding: 50px 20px; }
    .container-reg { gap: 30px; max-width: 950px; align-items: flex-start; }
    .reg-title { font-size: 2.2rem; }
    .reg-desc { font-size: 0.95rem; }
    .premium-form.pricing-card { padding: 2rem; }
    .price-display-card .big-value { font-size: 2.8rem; }
    a.btn-submit-reg { padding: 14px; font-size: 1rem; }
}

/* ================= FOOTER PREMIUM ================= */

.site-footer {
    background-color: #02060b; /* Quase preto para finalizar */
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
    font-family: var(--font-body);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container-footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    display: grid;
    /* 3 Colunas: A primeira é maior (2fr), as outras normais (1fr) */
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* --- COLUNA 1: LOGO & DESC --- */
.footer-logo {
    max-width: 180px; /* Ajuste conforme tamanho da sua logo */
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 350px;
}

/* --- TÍTULOS DAS COLUNAS --- */
.footer-title {
    font-family: var(--font-title);
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

/* Detalhe dourado abaixo do título */
.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -8px;
    width: 30px; height: 2px;
    background-color: var(--gold);
}

/* --- LINKS E LISTAS --- */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a, .footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--gold);
    padding-left: 5px; /* Efeitozinho de slide */
}

.footer-contact i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* --- REDES SOCIAIS --- */
.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 182, 149, 0.3);
}

/* --- BARRA INFERIOR (COPYRIGHT) --- */
.footer-bottom {
    background-color: #000;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container-bottom {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Crédito Grow Fast */
.grow-fast-credit {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    transition: 0.3s;
    font-weight: 500;
}

.grow-highlight {
    color: var(--gold); /* Destaque na marca */
    font-weight: 700;
}

.grow-fast-credit:hover {
    color: #fff;
}

/* ================= RESPONSIVIDADE FOOTER ================= */
@media (max-width: 900px) {
    .container-footer {
        grid-template-columns: 1fr; /* 1 Coluna */
        gap: 40px;
        text-align: center;
    }

    .footer-logo { margin: 0 auto 20px auto; }
    .footer-desc { margin: 0 auto; }
    
    /* Centraliza título e detalhe dourado */
    .footer-title::after {
        left: 50%; transform: translateX(-50%);
    }

    .footer-social { justify-content: center; }
    
    .container-bottom {
        flex-direction: column;
        text-align: center;
    }
}


/* ================= BOTÃO WHATSAPP FLUTUANTE ================= */

.btn-whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Garante que fique acima de tudo */
    
    width: 64px;
    height: 64px;
    border-radius: 50%;
    
    /* Gradiente Verde Premium */
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Ícone */
.btn-whatsapp-float i {
    font-size: 32px;
    color: #fff;
    z-index: 2; /* Fica acima do anel de pulsação */
}

/* Efeito Hover (Cresce e brilha) */
.btn-whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

/* --- ANIMAÇÃO DE PULSAÇÃO (Pulse Ring) --- */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25d366;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.7;
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.5); /* Cresce 50% maior que o botão */
        opacity: 0; /* Desaparece */
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ================= RESPONSIVIDADE ================= */
@media (max-width: 768px) {
    .btn-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px; /* Um pouco menor no celular */
        height: 55px;
    }

    .btn-whatsapp-float i {
        font-size: 28px;
    }
}


/* ================= PÁGINA DE OBRIGADO (CORRIGIDO) ================= */

/* Configuração do Corpo da Página */
.thank-you-body {
    margin: 0;
    padding: 0;
    width: 100%;
    /* MIN-HEIGHT é o segredo: garante altura mínima da tela, mas cresce se precisar rolar */
    min-height: 100vh; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
    background-color: var(--bg-navy);
    font-family: var(--font-body);
    
    /* Permite rolagem se necessário */
    overflow-y: auto;
    overflow-x: hidden;
    
    /* Garante que o background (se aplicado aqui) fique bonito no mobile */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Fundo fixo para não distorcer ao rolar */
}

/* Container do Conteúdo */
.thank-you-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
}

/* O Cartão Central (Vidro) */
.container-ty {
    
    width: 100%;
    max-width: 600px;
    margin: 20px auto; /* Margem vertical para não colar nas bordas ao rolar */
    text-align: center;
    
    /* Efeito Glassmorphism */
    background: rgba(8, 20, 37, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Safari */
    
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* Ícone de Sucesso */
.success-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    position: relative;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.success-icon i {
    font-size: 2.5rem;
    color: #fff;
    z-index: 2;
}

/* Efeito de pulso no ícone */
.pulse-green {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pulse-ring 2s infinite;
    z-index: 1;
}

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

/* Textos */
.ty-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.ty-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Botão WhatsApp Grande */
.btn-whatsapp-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(90deg, #25d366 0%, #075e54 100%);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
    margin-bottom: 25px;
}

.btn-whatsapp-group:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.btn-whatsapp-group i { font-size: 1.5rem; }

/* Texto de Redirect */
.redirect-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
}

.back-link {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}
.back-link:hover { color: #fff; }

/* ================================================================= */
/* 📱 CORREÇÃO FINAL MOBILE - PÁGINA OBRIGADO                      */
/* Cole isso no FINAL do seu style.css, substituindo o anterior      */
/* ================================================================= */

@media (max-width: 768px) {

    .thank-you-body {
        /* MUDANÇA CRUCIAL: Tira do centro e joga para o topo */
        align-items: flex-start !important; 
        
        /* Adiciona espaço em cima e EMBAIXO para a sombra não cortar */
        padding: 40px 20px 80px 20px !important; 
        
        height: auto !important;
        min-height: 100vh !important;
        
        /* Garante que o fundo role junto com a página até o infinito */
        background-attachment: scroll !important; 
        background-position: center top !important;
        background-size: cover !important;
        
        /* Remove a cor vermelha de teste e volta pro Navy */
        background-color: var(--bg-navy) !important;
    }

    .container-ty {
        width: 100% !important;
        /* Remove margens automáticas verticais para respeitar o padding do body */
        margin: 0 auto !important; 
        
        /* Garante que a sombra apareça inteira */
        box-shadow: 0 10px 40px rgba(0,0,0,0.8) !important;
    }
    
    /* Ajustes de Texto */
    .ty-title { font-size: 2rem !important; }
    .ty-desc { font-size: 1rem !important; }
    .btn-whatsapp-group { padding: 16px !important; font-size: 1rem !important; }
    .success-icon { width: 60px !important; height: 60px !important; }
    .success-icon i { font-size: 2rem !important; }
}

/* =========================================
   SEÇÃO TRIPÉ ESTRATÉGICO (CARDS MAIS LARGOS E EQUILIBRADOS)
   ========================================= */

#strategic-tripod {
    position: relative;
    padding: 40px 20px 80px 20px;
    background-color: var(--bg-navy);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* --- Background (Mantido) --- */
.tripod-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0;
}

.glow-spot {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw; height: 80vh;
    background: radial-gradient(circle, rgba(204, 182, 149, 0.06) 0%, rgba(10, 25, 47, 0) 70%);
}

.grid-texture {
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.5;
}

/* --- Cabeçalho --- */
.tripod-header {
    text-align: center; position: relative; z-index: 2;
    margin-bottom: 60px;
    max-width: 900px; width: 100%;
}

.tripod-subtitle {
    font-family: var(--font-body); color: var(--text-gray);
    margin-top: 10px; font-size: 1.1rem; letter-spacing: 0.5px;
}

/* --- GRID LAYOUT (Ajuste para maior largura) --- */
.tripod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    
    /* Aumentado para 1400px para dar mais espaço horizontal aos cards */
    max-width: 1400px; 
    
    margin: 0 auto;
    position: relative; z-index: 2;
}

/* --- Linhas Conectoras --- */
@media (min-width: 1100px) {
    .tripod-grid::before, .tripod-grid::after {
        content: ''; position: absolute; top: 110px; 
        width: 10%; height: 1px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0.4;
    }
    .tripod-grid::before { left: 22%; transform: rotate(15deg); }
    .tripod-grid::after { right: 22%; transform: rotate(-15deg); }
}

/* --- CARDS (Mais robustos e alinhados) --- */
.tripod-card {
    background: rgba(13, 28, 56, 0.6); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    
    /* Padding lateral aumentado para 35px para uma aparência mais larga */
    padding: 30px 35px; 
    
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex; flex-direction: column; min-width: 0;
    /* Garante que todos os cards tenham a mesma altura mínima */
    height: 100%;
}

.tripod-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    background: rgba(13, 28, 56, 0.9);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}



/* --- Elementos Internos --- */
.card-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #233550, #0A192F);
    border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(204, 182, 149, 0.1);
}
.card-icon i { color: var(--gold); font-size: 1.3rem; }

.tripod-card h3 {
    font-family: var(--font-title); color: #fff;
    font-size: 1.4rem; margin: 0; text-transform: uppercase;
}

.separator {
    width: 40px; height: 3px; background: var(--gold);
    margin: 12px 0 15px 0;
}

.highlight {
    font-weight: 500; color: var(--gold-light);
    margin-bottom: 15px;
    line-height: 1.3; font-style: italic; font-size: 0.95rem;
    min-height: 40px;
}

.tripod-card ul { list-style: none; padding: 0; margin: 0; }
.tripod-card ul li {
    position: relative; padding-left: 18px;
    margin-bottom: 8px;
    color: #cccccc; font-size: 0.85rem; line-height: 1.4;
}
.tripod-card ul li::before {
    content: '›'; position: absolute; left: 0; top: -4px;
    color: var(--gold); font-weight: bold; font-size: 1.2rem;
}

.container-strategic-tripod {
    width: 100%;
    /* Permite que essa seção seja mais larga que o resto do site */
    max-width: 1600px; 
    
    margin: 0 auto; /* Centraliza na tela */
    padding: 0 20px; /* Margem de segurança para não colar na borda */
    position: relative;
    z-index: 2;
    
    /* Garante que tudo dentro fique centralizado */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =======================================================
   RESPONSIVIDADE ESPECÍFICA PARA NOTEBOOK (1024px - 1440px)
   ======================================================= */
@media (max-width: 1440px) {
    .tripod-grid {
        /* Aumentado para 1200px para evitar que os cards fiquem muito estreitos em notebooks */
        max-width: 1200px; 
        gap: 25px;
    }
    
    .tripod-card {
        padding: 30px 30px;
    }
    
    .tripod-card h3 { font-size: 1.3rem; }
    .highlight { font-size: 0.9rem; min-height: auto; }
    
    .tripod-grid::before, .tripod-grid::after {
        width: 8%; top: 100px;
    }
}

/* Mobile (Mantido) */
@media (max-width: 991px) {
    .tripod-grid { grid-template-columns: 1fr; max-width: 450px; }
    
    .tripod-grid::before, .tripod-grid::after { display: none; }
    .tripod-card { padding: 30px; }
}





