:root {
    --bg-dark: #122e35;
    --text-white: #ffffff;
    --gold: #d4af37;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
}

.visual-hero {
    display: flex;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* --- LADO ESQUERDO: TEXTO + BACKGROUND --- */
.content-side {
    width: 45%;
    padding: 40px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; /* Necessário para o overlay */
    z-index: 2;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    
    /* IMAGEM DE FUNDO DA SESSÃO */
    background-image: url('https://via.placeholder.com/1920x1080/122e35/ffffff?text=TEXTURE+BACKGROUND'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* CAMADA DE CONTROLE DE TRANSPARÊNCIA (OVERLAY) */
.content-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark); /* Cor da "máscara" escura */
    
    /* --- CONTROLE DE TRANSPARÊNCIA AQUI --- */
    /* 1.0 = Fundo sólido (cor) | 0.0 = Imagem pura */
    opacity: 0.92; 
    
    z-index: -1; /* Fica atrás do texto */
}

/* Garante que o texto fique acima do overlay */
.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin-left: auto;
    margin-right: 40px;
}

/* --- TIPOGRAFIA --- */
.headline {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.gold-text {
    color: var(--gold);
    display: block;
    margin-top: 5px;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.75);
    max-width: 95%;
}
.description strong { color: #fff; }

.benefit-list {
    list-style: none;
    margin-bottom: 40px;
}
.benefit-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}
.benefit-list i {
    color: var(--gold);
    font-size: 0.75rem;
}

/* --- BOTÃO --- */
.cta-container { margin-top: 10px; }

.btn-gold {
    display: inline-block;
    padding: 18px 35px;
    background: var(--gold);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.15);
}
.btn-gold:hover {
    background: #eac762;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
}
.pulsing-effect { animation: pulse 3s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* --- LADO DIREITO (PLAYERS) --- */
.visual-side {
    width: 55%;
    display: flex;
    height: 100vh;
    background-color: #000;
}

.player-card {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.player-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center top;
    filter: grayscale(100%) brightness(70%);
    transition: all 0.6s ease;
}

.player-card:hover .player-bg,
.player-card.active .player-bg {
    filter: grayscale(0%) brightness(100%);
    transform: scale(1.03);
}

.player-info {
    position: absolute; bottom: 100px; left: 25px; z-index: 2; pointer-events: none;
}
.player-name { display: block; font-size: 0.8rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.player-role { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: #fff; text-transform: uppercase; }

/* --- SELO GIRATÓRIO --- */
.rotating-badge {
    position: absolute; left: 45%; top: 50%; transform: translate(-50%, -50%);
    width: 110px; height: 110px; z-index: 10;
    background: var(--bg-dark); border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}
.rotating-badge svg { animation: rotate 20s linear infinite; width: 100%; height: 100%; }
.rotating-badge text { fill: var(--gold); font-family: var(--font-display); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.badge-icon { position: absolute; color: #fff; font-size: 1.2rem; }
@keyframes rotate { 100% { transform: rotate(360deg); } }

/* --- MARQUEE --- */
.footer-marquee {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,0.05); padding: 12px 0; z-index: 5;
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 25s linear infinite; gap: 4rem; }
.marquee-track span { color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; display: flex; align-items: center; gap: 8px;}
.marquee-track i { font-size: 0.7rem; color: var(--gold); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .visual-hero { flex-direction: column; height: auto; }
    
    .content-side { 
        width: 100%; padding: 50px 20px; text-align: center;
        order: 2; border-right: none;
    }
    .content-wrapper { margin: 0 auto; max-width: 100%; }
    
    .visual-side { 
        width: 100%; height: 50vh; order: 1;
    }
    
    .rotating-badge {
        top: 50vh; left: 50%; width: 80px; height: 80px;
    }
    .rotating-badge text { font-size: 13px; }

    .benefit-list li { justify-content: center; }
    .player-info { bottom: 20px; left: 15px; }
}

/* ========================
   SESSÃO QUEM SOMOS (BENTO GRID) COM BACKGROUND
   ======================== */
.about-section {
    padding: 120px 20px;
    position: relative;
    z-index: 1; /* Garante que o conteúdo fique acima do overlay */

    /* CONFIGURAÇÃO DA IMAGEM DE FUNDO */
    /* Substitua a URL abaixo pela sua imagem de textura/fundo */
    background-image: url('img/bk-sessao-01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Opcional: Cria um efeito parallax suave ao rolar */
}

/* CAMADA DE OVERLAY (CONTROLE DE TRANSPARÊNCIA) */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cor escura para o overlay (baseada na paleta) */
    background-color: rgba(15, 38, 44, 0.92); 
    /* AJUSTE A OPACIDADE ACIMA: Quanto mais próximo de 1, menos a imagem aparece */
    z-index: -1; /* Fica atrás do conteúdo da sessão */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    line-height: 1;
}

.outline-gold {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
}

/* Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

/* Estilo Base dos Cards */
.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.1);
    width: 50px; height: 50px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

.bento-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.bento-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}
.bento-card strong { color: #fff; font-weight: 600; }

/* Configuração das Áreas do Grid */
.main-desc {
    grid-column: 1 / 3; /* Ocupa 2 colunas */
}

.differential {
    grid-column: 1 / 2;
}

.impact {
    grid-column: 2 / 3;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(0,0,0,0));
    border-color: rgba(212, 175, 55, 0.2);
    justify-content: center;
}
.impact p { font-size: 1.2rem; font-family: var(--font-display); color: #fff; }
.gold-highlight { color: var(--gold); display: block; }

.pillars {
    grid-column: 3 / 4;
    grid-row: 1 / 3; /* Ocupa altura total (2 linhas) */
    background: #0b1d22;
}

/* Lista de Pilares */
.pillar-list { list-style: none; margin-top: 10px; }
.pillar-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list span {
    color: var(--gold);
    font-size: 0.8rem;
    margin-right: 15px;
    opacity: 0.7;
    font-family: var(--font-body);
}

/* Responsividade */
@media (max-width: 992px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .main-desc, .differential, .impact, .pillars {
        grid-column: auto;
        grid-row: auto;
    }
}



/* ========================
   SESSÃO DORES (PAIN POINTS) - VERSÃO LIGHT/BRANCA
   ======================== */
.pain-section {
    position: relative;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 1;

    /* FUNDO BRANCO / CLARO */
    background-color: #ffffff; 
    /* Opcional: Textura sutil cinza ao fundo */
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'); 
    background-size: auto;
    color: #122e35; /* Cor do texto base agora é escura */
}

/* REMOVIDO O OVERLAY ESCURO (Não é mais necessário no fundo branco) */
.pain-section::before {
    display: none; 
}

.pain-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Tipografia (Adaptada para fundo claro) */
.pain-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 40px;
    color: #122e35; /* Título Escuro */
}

/* Mantém o dourado, que funciona bem no branco */
.pain-headline .gold-text {
    color: var(--gold);
}

.pain-intro {
    font-size: 1.1rem;
    color: #666666; /* Cinza médio */
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Grid de Itens (Cards Claros) */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}

.pain-item {
    /* Fundo Cinza muito claro para destacar do branco puro */
    background: #f8f9fa; 
    border: 1px solid #e9ecef; /* Borda cinza sutil */
    padding: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.pain-item:hover {
    background: #ffffff;
    border-color: var(--gold);
    transform: translateY(-5px);
    /* Sombra mais forte no hover */
    box-shadow: 0 15px 30px rgba(18, 46, 53, 0.1); 
}

.pain-item i {
    color: #d93025; /* Vermelho mais sólido */
    font-size: 1.2rem;
    background: rgba(217, 48, 37, 0.1);
    width: 35px; height: 35px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.pain-item span {
    color: #333333; /* Texto do item escuro */
    font-size: 1rem;
    font-weight: 600;
}

/* Conclusão */
.conclusion-intro {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.conclusion-text {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.4;
    color: #555; /* Cinza escuro */
}

/* Destaque que antes era branco, agora vira escuro */
.white-highlight {
    color: #122e35; /* Cor da marca escura */
    font-weight: 800;
    border-bottom: 3px solid var(--gold);
}

.faded-highlight {
    color: #999;
    font-style: italic;
    text-decoration: line-through;
    text-decoration-color: #ff4d4d;
}

/* Responsividade */
@media (max-width: 768px) {
    .pain-grid {
        grid-template-columns: 1fr;
    }
    .pain-headline {
        font-size: 1.8rem;
    }
}



/* ========================
   SESSÃO DESTRAVA SISTEMA (GLASS CARD)
   ======================== */
.system-unlock-section {
    position: relative;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;

    /* CONFIGURAÇÃO DE BACKGROUND (Padrão Escuro com opção de imagem) */
    background-color: var(--bg-dark); /* Cor base */
    /* Substitua a URL para colocar sua imagem de fundo, se quiser */
    background-image: url('img/bk-sessao-01.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* Mistura a cor com a imagem */
}

/* O Grande Cartão de Vidro (Container Principal) */
.unlock-glass-card {
    background: rgba(18, 46, 53, 0.6); /* Fundo escuro semitransparente */
    backdrop-filter: blur(15px); /* Efeito de desfoque atrás */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Borda sutil */
    border-radius: 20px; /* Cantos arredondados como na referência */
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Sombra profunda */
    max-width: 1200px;
    width: 100%;
}

/* --- LADO ESQUERDO (TEXTO) --- */
.unlock-left {
    flex: 1.2; /* Ocupa um pouco mais de espaço */
}

.unlock-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.gold-gradient-text {
    background: linear-gradient(90deg, #d4af37, #fceda8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-top: 5px;
}

.unlock-description {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}
.unlock-description strong { color: #fff; font-weight: 600; }

/* --- LADO DIREITO (LISTAS) --- */
.unlock-right {
    flex: 1;
    display: flex;
    gap: 30px;
    background: rgba(0, 0, 0, 0.2); /* Fundo ainda mais escuro para destacar as listas */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
}

.vertical-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.list-group {
    flex: 1;
}

.list-group h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-display);
}

.text-red { color: #ff5f5f; }
.text-gold { color: var(--gold); }

.list-group ul {
    list-style: none;
}

.list-group li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Ícones Específicos */
.negative i { color: #ff5f5f; margin-top: 3px; }
.positive i { color: var(--gold); margin-top: 3px; }

/* Responsividade */
@media (max-width: 992px) {
    .unlock-glass-card {
        flex-direction: column;
        padding: 30px;
        gap: 40px;
    }
    
    .unlock-right {
        flex-direction: column;
        width: 100%;
    }
    
    .vertical-divider {
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
        margin: 10px 0;
    }
}

/* ========================
   SESSÃO MENTORES (ESTILO APEX)
   ======================== */
.mentors-apex-section {
    padding: 120px 20px;
    background-color: var(--bg-dark);
    overflow: hidden; /* Evita scroll horizontal indesejado */
    position: relative;
}

/* Cabeçalho */
.mentors-header {
    text-align: center;
    margin-bottom: 70px;
}
.gold-tag {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}
.mentors-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #fff;
    line-height: 1;
}
.outline-gold {
    -webkit-text-stroke: 1px var(--gold);
    color: transparent;
}

/* --- WRAPPER E CARD APEX --- */
.apex-cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Centraliza o conjunto de cards */
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0; /* Espaço para o efeito hover não cortar */
}

.apex-card {
    position: relative;
    width: 380px; /* Largura fixa para manter proporção */
    height: 600px; /* Altura imponente */
    background-color: #000;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Transição suave "Apple" style */
    
    /* BORDA SUTIL PREMIUM */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    
    /* A MÁGICA DA SOBREPOSIÇÃO (APEX) */
    margin-left: -40px; /* Faz o card entrar no da esquerda */
    z-index: 1; /* Nível base */
}

/* O primeiro card não precisa de margem negativa */
.apex-card:first-child {
    margin-left: 0;
}

/* --- INTERAÇÃO HOVER (O Card salta para frente) --- */
.apex-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(1deg); /* Sobe, cresce e gira levemente */
    z-index: 10; /* Fica acima de todos */
    margin-right: 20px; /* Empurra levemente os outros */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--gold); /* Sombra + Borda Dourada */
}

/* Imagem de Fundo */
.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 0.6s ease;
    filter: grayscale(100%); /* P&B Inicial */

}

.apex-card:hover .card-image {
    transform: scale(1.1); /* Zoom na imagem interno */
    filter: grayscale(0%); /* Fica colorido */
}

/* Gradiente Preto na parte inferior para o texto */
.card-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 70%;
    background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.6) 50%, transparent 100%);
    z-index: 2;
}

/* Conteúdo */
.card-content {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px;
    z-index: 3;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.apex-card:hover .card-content {
    transform: translateY(0);
}

.mentor-role {
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
}

.mentor-name {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.card-divider {
    width: 40px; height: 3px; background-color: var(--gold); margin-bottom: 15px;
    transition: width 0.3s ease;
}
.apex-card:hover .card-divider { width: 80px; }

.mentor-desc {
    background-image: url('img/bk-sessao-01.png');

    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    opacity: 0; /* Escondido inicialmente */
    transform: translateY(20px);
    transition: all 0.3s ease;
    height: 0;
}

/* Mostra descrição no hover */
.apex-card:hover .mentor-desc {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .apex-cards-wrapper {
        flex-direction: column; /* Empilha verticalmente */
        align-items: center;
        gap: 30px;
    }
    
    .apex-card {
        width: 100%;
        max-width: 400px;
        height: 500px;
        margin-left: 0; /* Remove sobreposição no mobile */
        margin-bottom: 0;
    }

    .apex-card:hover {
        transform: translateY(-5px); /* Efeito mais simples no mobile */
        margin-right: 0;
        z-index: 1;
    }
    
    .mentor-desc {
        opacity: 1; height: auto; transform: none; /* Descrição sempre visível no mobile */
    }
    
    .card-image { filter: grayscale(0%); } /* Sempre colorido no mobile */
}


/* ========================
   SESSÃO POR QUE FUNCIONA (TEMA BRANCO + GRID)
   ======================== */
.why-it-works-section {
    padding: 120px 20px;
    position: relative;
    z-index: 1;
    color: #122e35;

    /* FUNDO BRANCO COM GRID DE QUADRADOS (CSS PURO) */
    background-color: #ffffff;
    background-image: 
        /* Linhas Horizontais */
        linear-gradient(rgba(18, 46, 53, 0.05) 1px, transparent 1px),
        /* Linhas Verticais */
        linear-gradient(90deg, rgba(18, 46, 53, 0.05) 1px, transparent 1px);
    
    /* Tamanho dos quadrados (30px x 30px) */
    background-size: 30px 30px; 
    
    /* Pequena sombra interna nas bordas da sessão para acabamento */
    box-shadow: inset 0 0 50px rgba(0,0,0,0.02);
}

/* Opcional: Efeito de vinheta suave para focar no centro */
.why-it-works-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(255,255,255,0.8) 100%);
    pointer-events: none; /* Deixa clicar através */
    z-index: -1;
}

/* --- CABEÇALHO --- */
.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative; 
    z-index: 2; /* Garante que fique acima da vinheta */
}

/* Título adaptado para fundo claro */
.section-title.dark-mode {
    color: #122e35;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.outline-dark-gold {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    background: linear-gradient(90deg, var(--gold), #eac762);
    -webkit-background-clip: text;
}

.why-subtitle {
    margin: 30px 0;
    font-size: 1.2rem;
}

.highlight-intro {
    font-family: var(--font-display);
    color: var(--gold);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-lead {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    display: inline-block;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 5px;
}

/* --- GRID DE PILARES (CARDS CLAROS) --- */
.pillars-white-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    position: relative; z-index: 2;
}

.pillar-white-card {
    /* Fundo branco sólido para cobrir as linhas do grid atrás do texto */
    background: #ffffff; 
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-white-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(18, 46, 53, 0.1);
}

.card-icon-gold {
    width: 70px; height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
}

.card-icon-gold i {
    font-size: 2rem;
    color: var(--gold);
}

.pillar-white-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #122e35;
}

.pillar-white-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* --- RODAPÉ DA SESSÃO --- */
.why-footer {
    text-align: center;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background: #fff; /* Fundo branco para cobrir o grid */
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative; z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.gold-arrow {
    font-size: 1.5rem;
    margin-right: 10px;
    vertical-align: middle;
}
.why-footer strong {
    color: #122e35;
    font-weight: 800;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .pillars-white-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title.dark-mode {
        font-size: 2rem;
    }
    
    .why-footer {
        font-size: 1.1rem;
    }
}


/* ========================
   SESSÃO AUTORIDADE
   ======================== */
.authority-section {
    position: relative;
    padding: 120px 20px;
    z-index: 1;
    color: #fff;
    
    /* BACKGROUND COM TRANSPARÊNCIA */
    background-color: var(--bg-dark); /* Cor base */
    /* Substitua a URL */
    background-image: url('https://via.placeholder.com/1920x1080/0a1a20/ffffff?text=AUTHORITY+BG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply; /* Mistura sutil */
}

/* Camada extra de escurecimento para garantir leitura */
.authority-section::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(18, 46, 53, 0.95) 0%, rgba(18, 46, 53, 0.8) 100%);
    z-index: -1;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Texto um pouco maior que imagem */
    gap: 60px;
    align-items: center;
}

/* --- LADO ESQUERDO (TEXTO) --- */
.auth-tag {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.auth-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}

.gold-gradient-text {
    background: linear-gradient(90deg, #d4af37, #fceda8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.auth-checklist {
    list-style: none;
    margin-bottom: 40px;
}

.auth-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.check-icon {
    width: 25px; height: 25px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.auth-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
    margin: 30px 0;
}

.auth-conclusion {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--gold);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 40px;
}

.auth-conclusion p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #fff;
}

.cta-box-left {
    text-align: left;
}

/* --- LADO DIREITO (IMAGEM) --- */
.auth-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-card-glass {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.auth-image-bg {
    width: 100%; height: 100%;
    background-size: cover; background-position: center;
    transition: transform 0.5s ease;
}
.visual-card-glass:hover .auth-image-bg {
    transform: scale(1.05);
}

/* Selo Flutuante */
.floating-stat {
    position: absolute;
    bottom: 30px;
    right: -20px; /* Sai um pouco para fora para efeito 3D */
    background: var(--bg-dark);
    border: 1px solid var(--gold);
    padding: 20px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .authority-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auth-visual {
        height: 400px; /* Menor no mobile */
        order: -1; /* Imagem acima no mobile? Ou deixe abaixo removendo esta linha */
    }
    
    .floating-stat {
        right: 20px; /* Ajuste para não sair da tela no mobile */
        bottom: -20px;
    }
    
    .cta-box-left { text-align: center; }
}


/* ========================
   SESSÃO CTA FINAL (PADRÃO VISUAL CORRIGIDO)
   ======================== */
.final-cta-section {
    position: relative;
    padding: 140px 20px; /* Mais espaço vertical para imponência */
    text-align: center;
    color: #fff;
    z-index: 1;

    /* 1. COR DA MARCA COMO BASE */
    background-color: var(--bg-dark); 

    /* 2. IMAGEM DE FUNDO (Substitua a URL) */
    background-image: url('https://via.placeholder.com/1920x1080/122e35/000000?text=CTA+BACKGROUND');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 3. OVERLAY DE TRANSPARÊNCIA (Igual às outras sessões) */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Mistura da cor da marca com preto para dar profundidade */
    background: linear-gradient(to bottom, var(--bg-dark), #0a1a20);
    
    /* CONTROLE DE TRANSPARÊNCIA: 
       0.5 = Imagem bem visível 
       0.95 = Quase sólida (Foco total no texto) */
    opacity: 0.92; 
    
    z-index: -1;
}

/* Elemento decorativo: Glow Dourado Central (Sutil) */
.final-cta-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.final-cta-content {
    max-width: 850px;
    margin: 0 auto;
}

/* Tipografia */
.final-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.gold-gradient-text {
    background: linear-gradient(90deg, #d4af37, #fceda8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-context-box {
    margin-bottom: 50px;
}

.cta-lead {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
}

/* Checklist Centralizado */
.cta-checklist-center {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    
    /* Fundo sutil usando a cor da marca */
    background: rgba(18, 46, 53, 0.4); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    padding: 30px 40px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.cta-checklist-center li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.9);
}

.cta-checklist-center i {
    color: var(--gold);
    font-size: 1.2rem;
    min-width: 25px;
    text-align: center;
}

/* Botão Grande */
.btn-large {
    font-size: 1.05rem;
    padding: 22px 60px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3); /* Sombra mais forte para destaque final */
}

.scarcity-text {
    margin-top: 25px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-checklist-center {
        width: 100%;
        padding: 25px;
    }
    .cta-checklist-center li { font-size: 1rem; }
    .btn-large { padding: 20px; white-space: normal; line-height: 1.4; }
}


/* ========================
   RODAPÉ (FOOTER)
   ======================== */
.main-footer {
    background-color: #020608; /* Um tom quase preto, mais escuro que o site */
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Linha sutil no topo */
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Permite quebrar linha no mobile */
    gap: 30px;
}

/* --- MARCA --- */
.footer-logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
}

.footer-slogan {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    margin-top: 5px;
}

/* --- COPYRIGHT --- */
.footer-copy {
    text-align: center;
}

.footer-legal {
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s;
}
.footer-legal:hover { opacity: 1; }

/* --- BOTÃO WHATSAPP --- */
.btn-whatsapp-footer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    
    /* Estilo Outline (Borda) para não brigar com o CTA principal */
    background-color: transparent;
    border: 1px solid #25D366; /* Verde WhatsApp oficial */
    color: #25D366;
    
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.btn-whatsapp-footer i {
    font-size: 1.2rem;
}

/* Efeito Hover */
.btn-whatsapp-footer:hover {
    background-color: #25D366;
    color: #fff; /* Texto fica branco */
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3); /* Glow verde */
    transform: translateY(-2px);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .footer-copy {
        order: 3; /* Joga o copyright para o final no mobile */
    }
}


/* ========================
   SESSÃO IMPACTO GLOBAL
   ======================== */
.global-impact-section {
    padding: 80px 20px;
    background-color: var(--bg-dark); /* Fundo escuro padrão */
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

/* --- ESTATÍSTICAS (TOPO) --- */
.stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 3rem; /* Ícone grande */
    color: var(--gold);
    /* Efeito de brilho sutil no ícone */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: #fff; /* Texto branco como na referência */
    line-height: 1.1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.6); /* Texto secundário cinza/transparente */
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    display: block;
}

/* --- BANDEIRAS (BASE) --- */
.locations-row {
    text-align: center;
}

.locations-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.flags-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    
    /* Moldura estilo pílula como na referência */
    border: 1px solid var(--gold);
    border-radius: 50px;
    padding: 20px 40px;
    
    /* Fundo sutil dentro da borda */
    background: rgba(255,255,255,0.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.flag-img {
    height: 30px; /* Altura fixa para alinhar */
    width: auto;
    border-radius: 4px; /* Leve arredondamento nas bandeiras */
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(30%); /* Leve desaturação para uniformizar */
}

.flag-img:hover {
    transform: scale(1.2);
    filter: grayscale(0%);
    cursor: pointer;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .stat-item {
        flex-direction: column; /* Ícone em cima do texto no mobile */
        gap: 10px;
    }
    
    .stat-divider {
        display: none; /* Remove divisor no mobile */
    }
    
    .flags-container {
        padding: 15px 20px;
        border-radius: 20px; /* Borda menos arredondada no mobile para caber melhor */
        gap: 15px;
    }
    
    .flag-img {
        height: 24px;
    }
}

/* ========================
   BOTÃO FLUTUANTE WHATSAPP
   ======================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Verde Oficial WhatsApp */
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999; /* Garante que fique acima de tudo */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    
    /* Animação de Pulso Constante */
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E; /* Verde mais escuro no hover */
    transform: scale(1.1); /* Cresce levemente */
}

/* Ícone */
.whatsapp-float i {
    margin-top: 2px; /* Ajuste fino de alinhamento vertical */
}

/* Tooltip (Texto "Fale Conosco") */
.tooltip-text {
    visibility: hidden;
    width: 120px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 110%; /* Posiciona à esquerda do botão */
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    font-family: var(--font-body);
}

/* Seta do Tooltip */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%; /* Seta apontando para o botão */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

/* Mostra o texto no hover */
.whatsapp-float:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ANIMAÇÃO DE PULSO (Ondas) */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsividade: Ajuste para mobile para não cobrir conteúdo */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* No mobile, removemos o tooltip para não atrapalhar o toque */
    .tooltip-text {
        display: none;
    }
}