/* css/style.css */

:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-gray: #a1a1aa;
    --primary-gold: #Eebb44; 
    --gold-glow: rgba(238, 187, 68, 0.2);
    --gold-gradient: linear-gradient(135deg, #Eebb44 0%, #Ffd700 100%);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 3;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px; /* Garante altura em telas pequenas */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Fundo */
.hero__background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

    .hero__bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 100%;
    }

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.95) 90%);
    z-index: 1;
}

/* Horizonte Glow */
.hero__horizon-glow {
    position: absolute;
    bottom: -60%;
    left: -25%;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    border-top: 1px solid rgba(238, 187, 68, 0.3);
    box-shadow: 0 -50px 150px var(--gold-glow), inset 0 50px 100px rgba(0,0,0,0.9);
    z-index: 2;
    pointer-events: none;
}

/* --- CONTEÚDO --- */
.hero__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Aumentamos a margem para 120px para garantir que o botão fique longe do rodapé */
    margin-bottom: 120px; 
    width: 100%;
    /* Garante que o conteúdo (e o botão) fique acima de elementos decorativos */
    position: relative; 
    z-index: 10; 
}

/* Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    opacity: 0;
}
.badge-icon { color: var(--primary-gold); }

/* --- LOGO CENTRALIZADA (AJUSTADA) --- */
.apex-logo-centered {
    position: relative;
    display: block;
    /* Tamanhos Responsivos */
    width: 180px; /* Mobile (tamanho inicial) */
    max-width: 80%; 
    height: auto;
    margin-bottom: 1.5rem;
    opacity: 0;
}
.apex-logo-wrapper {
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 300px;
    max-width: 80vw;
    height: auto;
    
    /* MUDANÇA AQUI: Margem negativa puxa o texto de cima e de baixo */
    margin: -15px 0; 
}

.apex-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Efeito de Luz na Logo */
.apex-logo-centered::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: skewX(-25deg);
    
    /* Máscara atualizada para o caminho correto */
    -webkit-mask-image: url('../img/x.png');
    mask-image: url('../img/x.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    
    animation: shineSweep 3.5s infinite linear;
    pointer-events: none;
    z-index: 2;
}

/* Título Texto */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1; /* Reduz a altura da linha do texto */
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    padding: 0 10px;
    
    /* Flexbox para alinhar */
    display: flex;
    flex-direction: column; /* Mobile: Um em cima do outro */
    align-items: center;
    justify-content: center;
    
    /* MUDANÇA AQUI: Removemos o gap para controlar na margem */
    gap: 0; 
}
.hero__title .text-white {
    color: var(--text-color);
    display: block;
    font-weight: 900;
}

/* Descrição */
.hero__description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-gray);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0;
    padding: 0 1rem;
}

/* --- BOTÃO PADRÃO --- */
.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gold-gradient);
    color: #050505;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    
    box-shadow: 0 0 0 0 rgba(238, 187, 68, 0.7);
    animation: buttonPulse 2s infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
    opacity: 0;
}

.button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-20deg);
    animation: shineSweep 3.5s infinite linear;
    pointer-events: none;
}

.button:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary-gold);
    filter: brightness(1.1);
}

/* Animações */
@keyframes shineSweep {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

@keyframes buttonPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(238, 187, 68, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(238, 187, 68, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(238, 187, 68, 0); }
}

/* --- RODAPÉ SCROLL --- */
.hero__footer-scroll {
    position: absolute;
    bottom: 2rem; /* Mantém no fundo */
    left: 0;
    width: 100%;
    /* Diminuímos o z-index para ficar abaixo do botão se eles se tocarem */
    z-index: 5; 
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    opacity: 0;
}
.scrolling-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.scroll-item {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: var(--text-gray);
    font-size: 0.8rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- MEDIA QUERY (AJUSTE MOBILE) --- */
@media (max-width: 768px) {
    .hero__content {
        /* No mobile, precisamos de mais espaço ainda se a tela for curta */
        margin-bottom: 140px; 
    }
    
    .hero__footer-scroll {
        bottom: 1rem; /* Mais próximo da borda no mobile */
    }
}

/* --- SEÇÃO CONCEITO APEX (CORRIGIDA) --- */
.apex-concept-section {
    position: relative;
    padding: 6rem 0;
    background-color: #000000; /* Fundo de segurança */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px; /* Garaconte altura mínima */
}
/* Fundo da Seção */
.apex-concept__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Fica atrás de tudo */
}
.concept-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* A MÁGICA: Cobre todo o espaço sem distorcer */
    object-position: center; /* Centraliza a imagem */
    opacity: 0.4; /* Ajuste a opacidade: quanto menor, mais escuro o fundo */
    display: block;
}

.concept-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cria um degradê que escurece as bordas */
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, #050505 100%);
    z-index: 1;
}
/* Caixa com Borda Dourada (Ajuste de Z-Index) */
.apex-concept__border-box {
    position: relative;
    z-index: 5; /* Garante que fique ACIMA da imagem e do overlay */
    /* ... (restante das propriedades iguais ao anterior) ... */
    border: 2px solid #Eebb44;
    border-radius: 30px;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px); /* Efeito de vidro sobre a imagem de fundo */
    width: 100%;
}

/* Grid das Letras */
.apex-concept__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    width: 100%;
}

.concept-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10; /* Texto acima de tudo */
    opacity: 1; /* MUDANÇA: Começa visível para garantir que apareça */
}

/* Estilo das Letras Grandes (A, P, E) */
.concept-letter {
    font-family: 'Montserrat', sans-serif; /* Garante a fonte grossa */
    font-size: clamp(4rem, 8vw, 8rem);
    font-weight: 900;
    color: #ffffff !important; /* FORÇA A COR BRANCA */
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    display: block;
}

/* Estilo específico para o X (Imagem) */
.concept-x-wrapper {
    width: clamp(4rem, 8vw, 8rem);
    height: clamp(4rem, 8vw, 8rem);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concept-x-img {
    width: 100%;
    height: auto;
    display: block;
    /* Brilho dourado na imagem */
    filter: drop-shadow(0 0 10px rgba(238, 187, 68, 0.5));
}

/* Títulos */
.concept-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important; /* FORÇA A COR BRANCA */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* Descrição */
.concept-desc {
    font-size: 1rem;
    color: #cccccc; /* Cinza claro */
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 900px) {
    .apex-concept__grid {
        grid-template-columns: 1fr 1fr; /* 2 por linha em tablets */
        gap: 3rem 1rem;
    }
}

@media (max-width: 600px) {
    .apex-concept__grid {
        grid-template-columns: 1fr; /* 1 por linha em celulares */
        gap: 3rem;
    }
    
    .concept-letter, .concept-x-wrapper {
        font-size: 5rem;
        width: 5rem;
        height: 5rem;
    }
}

/* --- SEÇÃO POSICIONAMENTO LUCRATIVO --- */
.positioning-section {
    position: relative;
    padding: 8rem 0;
    background-color: #2c261c; /* Fundo Preto Puro */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}

/* Imagens Laterais (As formas geométricas) */
.pos-side-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px; /* Ajuste conforme o tamanho da sua imagem */
    max-width: 30vw;
    z-index: 1;
    opacity: 0.8; /* Leve transparência para mesclar */
}

.pos-side-wrapper.left {
    left: 0;
}

.pos-side-wrapper.right {
    right: 0;
}

.pos-side-img {
    width: 100%;
    height: auto;
    display: block;
}

/* O Card Central */
.pos-content-card {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.8) 0%, rgba(40, 25, 10, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    overflow: hidden; /* Para conter o brilho inferior */
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* Título */
.pos-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400; /* Fonte mais fina como na referência */
}

.text-gold-gradient {
    /* Gradiente Cobre/Dourado da referência */
    background: linear-gradient(90deg, #ffcc80, #e65100);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Descrição */
.pos-description {
    font-size: 1rem;
    color: #a1a1aa;
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Botão Dark (Estilo da referência) */
/* Botão Dark com Efeitos (Pulse + Shine) */
.pos-btn-dark {
    display: inline-flex; /* Melhor para alinhamento */
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    
    /* Estilo Visual Dark */
    background-color: #0a0500; /* Fundo Preto/Marrom muito escuro */
    border: 1px solid var(--primary-gold); /* Borda Dourada */
    color: var(--primary-gold); /* Texto Dourado */
    border-radius: 50px;
    
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    
    /* Configuração para os efeitos */
    position: relative;
    z-index: 2;
    overflow: hidden; /* Segura o brilho dentro do botão */
    transition: all 0.3s ease;
    
    /* ANIMAÇÃO 1: PULSO DOURADO */
    box-shadow: 0 0 0 0 rgba(238, 187, 68, 0.4);
    animation: buttonPulseGold 2s infinite;
}

/* Efeito de Luz (Pseudo-elemento) */
.pos-btn-dark::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Começa fora */
    width: 100%;
    height: 100%;
    
    /* Brilho Dourado Suave */
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(238, 187, 68, 0.4), /* Luz dourada transparente */
        transparent
    );
    transform: skewX(-20deg);
    
    /* ANIMAÇÃO 2: LUZ PASSANDO */
    animation: shineSweep 3.5s infinite linear;
    pointer-events: none;
}

/* Hover: Fica preenchido de dourado */
.pos-btn-dark:hover {
    background-color: var(--primary-gold);
    color: #000; /* Texto preto para contraste */
    box-shadow: 0 0 30px rgba(238, 187, 68, 0.6); /* Glow forte */
    animation: none; /* Pausa o pulso para focar */
    transform: scale(1.05);
}

/* --- KEYFRAMES NECESSÁRIOS --- */
/* (Caso você já tenha adicionado antes, não precisa duplicar, mas aqui está para garantir) */

@keyframes shineSweep {
    0% { left: -150%; }
    20% { left: 150%; }
    100% { left: 150%; }
}

@keyframes buttonPulseGold {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(238, 187, 68, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(238, 187, 68, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(238, 187, 68, 0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .pos-content-card {
        padding: 3rem 1.5rem;
        margin: 0 1rem;
    }
    
    .pos-side-wrapper {
        width: 150px;
        opacity: 0.5; /* Mais transparente no mobile para não atrapalhar */
    }
}


/* --- SEÇÃO MENTORES (STACKING) --- */
.experts-stack-section {
    padding: 8rem 0;
    background-color: #2c261c; /* Fundo quase preto */
    color: var(--text-color);
}

.experts-header {
    text-align: center;
    margin-bottom: 5rem;
}

.experts-tag {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

/* Wrapper do Fundo */
.experts-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Fica atrás de tudo */
    pointer-events: none;
}

/* A Imagem */
.experts-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2; /* Ajuste a opacidade conforme a imagem (0.1 a 0.3 é ideal) */
    filter: grayscale(100%); /* Deixa preto e branco para ficar elegante */
}

.experts-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.experts-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.experts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradê que escurece o topo e o fundo para transição suave */
    background: linear-gradient(to bottom, #050505 0%, rgba(5,5,5,0.6) 50%, #050505 100%);
    z-index: 1;
}

/* Garante que o conteúdo fique acima do fundo */
.experts-stack-section .container {
    position: relative;
    z-index: 2;
}

/* Wrapper dos Cards */
.cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Espaço entre o início de cada card */
    position: relative;
}

/* ESTILO GERAL DO CARD */
.expert-card {
    position: sticky; /* O SEGREDO DO EFEITO */
    top: 120px; /* Distância do topo onde o card vai "colar" */
    
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5); /* Sombra invertida para dar profundidade no stack */
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Cálculo de Empilhamento (Staggering) */
/* Cada card cola um pouco mais abaixo para criar o efeito de baralho */
.expert-card:nth-child(1) { top: 120px; margin-bottom: 60px; }
.expert-card:nth-child(2) { top: 140px; margin-bottom: 40px; }
.expert-card:nth-child(3) { top: 160px; margin-bottom: 20px; }
.expert-card:nth-child(4) { top: 180px; margin-bottom: 0; }

/* Conteúdo Interno do Card */
.expert-content {
    display: grid;
    grid-template-columns: 250px 1fr auto; /* Imagem | Texto | Ação */
    gap: 3rem;
    align-items: center;
}

/* Imagem do Mentor */
.expert-image-wrapper {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    position: relative;
}

.expert-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.expert-card:hover .expert-img {
    transform: scale(1.1);
}

/* Informações */
.expert-role {
    color: var(--primary-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
}

.expert-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.expert-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.expert-skills {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.expert-skills li {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ação (Direita) */
.expert-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-price {
    font-size: 0.8rem;
    color: var(--text-gray);
    writing-mode: vertical-rl; /* Texto vertical para estilo */
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.1em;
}

.expert-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expert-btn:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(238, 187, 68, 0.4);
}

/* Responsividade */
@media (max-width: 992px) {
    .expert-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .expert-image-wrapper {
        margin: 0 auto;
        width: 150px;
        height: 150px;
        border-radius: 50%; /* Muda para círculo no mobile */
    }
    
    .expert-action {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 1.5rem;
        flex-direction: row;
        justify-content: center;
    }
    
    .expert-price {
        writing-mode: horizontal-tb;
        transform: none;
    }
    
    .expert-skills {
        justify-content: center;
    }
    
    /* Ajuste do Sticky no mobile para não ocupar a tela toda */
    .expert-card {
        padding: 2rem;
    }
    
    .expert-card:nth-child(1) { top: 80px; }
    .expert-card:nth-child(2) { top: 90px; }
    .expert-card:nth-child(3) { top: 100px; }
    .expert-card:nth-child(4) { top: 110px; }
}

/* --- SEÇÃO MARCAS CLEAN (ATUALIZADA) --- */
.brands-clean-section {
    position: relative;
    padding: 6rem 0; /* Espaçamento vertical generoso */
    background-color: #ffffff; /* Fundo Branco Puro */
    color: #000000;
    z-index: 2; /* Garante que fique na camada correta */
}

.brands-header {
    text-align: center;
    margin-bottom: 5rem;
    /* Flex para organizar a pilha verticalmente */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem; /* Espaço entre Logo, Título e Descrição */
    opacity: 0; /* GSAP anima */
}

/* Logo Mãe */
.parent-brand-wrapper {
    margin-bottom: 0.5rem;
}

.parent-logo-img {
    max-width: 350px; /* Tamanho controlado da logo principal */
    height: auto;
    display: block;
    /* Se a logo for colorida e você quiser ela preta, descomente a linha abaixo: */
    /* filter: grayscale(100%) brightness(0); */
}

/* Título */
.brands-title {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #000000; /* Preto forte */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1.2;
}
/* GRID SYSTEM ROBUSTO */
.brands-grid {
    display: grid;
    /* 4 Colunas em telas grandes */
    grid-template-columns: repeat(4, 1fr); 
    /* Espaçamento: 4rem vertical, 2rem horizontal */
    gap: 4rem 2rem; 
    align-items: center; 
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Item individual da Logo */
.brand-item {
    width: 100%;
    height: 120px; /* Altura fixa para alinhar verticalmente */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Inicialmente invisível para animação */
    transform: translateY(30px); /* Posição inicial deslocada */
}

.brand-item img {
    max-width: 280px; /* Largura máxima da logo */
    max-height: 160px; /* Altura máxima da logo */
    width: auto;
    height: auto;
    object-fit: contain;
    
    /* FILTRO DE ESTILO: Força logos coloridas a ficarem cinza escuro/preto */
    /* Isso garante que fique igual à sua referência clean */
    filter: grayscale(100%) brightness(0.2); 
    opacity: 0.6; /* Levemente transparente */
    
    transition: all 0.4s ease;
    display: block;
}

/* Efeito Hover: Logo fica preta total e sobe */
.brand-item:hover img {
    filter: grayscale(100%) brightness(0); /* Preto absoluto */
    opacity: 1;
    transform: scale(1.1);
}

/* --- RESPONSIVIDADE (MEDIA QUERIES) --- */

/* Tablet (até 992px) */
@media (max-width: 992px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 colunas */
        gap: 3rem 1.5rem;
    }
}

/* Descrição */
.brands-description {
    font-family: var(--font-main, sans-serif);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555555; /* Cinza escuro para leitura confortável */
    max-width: 700px; /* Limita a largura para não ficar uma linha muito longa */
    margin: 0 auto;
}



/* Mobile Grande (até 768px) */
@media (max-width: 768px) {
    .brands-clean-section {
        padding: 4rem 0;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
        gap: 2.5rem 1rem;
    }
    
    .brand-item img {
        max-width: 140px;
        max-height: 50px;
    }
}

/* Mobile Pequeno (até 480px) */
@media (max-width: 480px) {
    /* Em telas muito pequenas, talvez 2 colunas fiquem apertadas, 
       mas geralmente 2 colunas funcionam bem para logos. 
       Ajustamos o tamanho. */
    .brand-item img {
        max-width: 110px;
    }
}



/* --- SEÇÃO IMPACTO IA (REAJUSTADA) --- */
.ai-impact-section {
    position: relative;
    padding: 6rem 0; /* Reduzi um pouco o padding vertical */
    background-color: #000000;
    overflow: hidden; /* Garante que nada vaze da seção */
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ... (Fundo .ai-background e .ai-overlay permanecem iguais) ... */

/* Layout Principal */
.ai-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px; /* Limite máximo de largura */
    padding: 0 2rem; /* Margem de segurança nas laterais */
}

.ai-grid-container {
    display: grid;
    /* MUDANÇA: 1fr | Auto (adapta ao conteúdo) | 1fr */
    /* Isso equilibra os textos e deixa o cérebro no tamanho necessário */
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    gap: 2rem; /* Espaço entre colunas */
    width: 100%;
}

/* Tipografia Ajustada */
.ai-title {
    font-family: 'Oswald', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 4rem); 
    font-weight: 900;
    line-height: 0.95; /* Linhas mais próximas */
    text-transform: uppercase;
    color: #888;
    margin: 0;
    letter-spacing: -0.02em;
    width: 100%; /* Ocupa a largura para obedecer o text-align */
}
.ai-title .text-white {
    color: #ffffff;
    display: block;
}

/* Alinhamentos */
.ai-text-side {
    /* Garante que o texto não estoure a coluna */
    width: 100%;
    min-width: 0; /* Truque de CSS Grid para impedir overflow de texto */
}

.ai-text-side.text-left {
    text-align: right; 
    padding-right: 1.5rem; /* Pequeno espaço para não colar na imagem */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end; /* Garante que o bloco flex alinhe à direita */
}
.ai-text-side.text-right {
    text-align: left; 
    padding-left: 1.5rem; /* Pequeno espaço para não colar na imagem */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Garante que o bloco flex alinhe à esquerda */
}
.ai-highlight-text {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem); /* Reduzido levemente */
    font-style: italic;
    font-weight: 300;
    color: #a1a1aa;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* --- CÉREBRO CENTRAL (AJUSTADO) --- */
.ai-center-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-holder {
    position: relative;
    /* MUDANÇA: O cérebro agora é responsivo, máximo 350px, mas pode diminuir */
    width: 30vw; 
    max-width: 350px;
    min-width: 250px;
    aspect-ratio: 1 / 1; /* Mantém quadrado */
    display: flex;
    justify-content: center;
    align-items: center;
}

.brain-img-base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: sepia(1) hue-rotate(10deg) saturate(3) brightness(0.6); 
}

/* O SCANNER DE LUZ */
.brain-scan-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 215, 0, 0.8) 50%, transparent 100%);
    background-size: 100% 200%;
    
    -webkit-mask-image: url('../img/ai-brain.png');
    mask-image: url('../img/ai-brain.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    
    animation: brainScanAnim 3s infinite linear;
    mix-blend-mode: screen;
    pointer-events: none;
}

@keyframes brainScanAnim {
    0% { transform: translateY(-100%); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* Frase Inferior */
.ai-bottom-quote {
    text-align: center; /* Centralizei para ficar mais equilibrado */
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1rem;
    opacity: 0; /* GSAP anima */
}

.ai-bottom-quote p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-style: italic;
    color: #cccccc;
    line-height: 1.6;
    /* Adiciona aspas decorativas visuais se quiser, ou mantém simples */
}

/* --- RESPONSIVIDADE (TABLET E MOBILE) --- */
@media (max-width: 992px) {
    .ai-grid-container {
        /* Empilha tudo verticalmente em telas menores */
        grid-template-columns: 1fr; 
        gap: 2rem;
    }

    /* Ordem: Título 1 -> Cérebro -> Título 2 */
    .ai-text-side.text-left {
        text-align: center;
        order: 1;
    }

    .ai-center-visual {
        order: 2;
        margin: -20px 0; /* Aproxima um pouco */
    }

    .ai-text-side.text-right {
        text-align: center;
        order: 3;
    }

    .brain-holder {
        width: 250px;
        min-width: auto;
    }
    
    .ai-title {
        font-size: 3rem; /* Tamanho fixo bom para mobile */
    }
}

@media (max-width: 992px) {
    .ai-grid-container {
        grid-template-columns: 1fr; /* Uma coluna */
        gap: 2rem;
        justify-items: center; /* Centraliza os blocos no grid */
    }

    /* No Mobile, forçamos tudo para o CENTRO */
    .ai-text-side.text-left,
    .ai-text-side.text-right {
        text-align: center;
        padding: 0;
        align-items: center; /* Centraliza flex items */
        order: unset; /* Reseta ordem se necessário, ou define abaixo */
    }

    /* Ordem visual no Mobile: Texto 1 -> Cérebro -> Texto 2 */
    .ai-text-side.text-left { order: 1; }
    .ai-center-visual       { order: 2; margin: 1rem 0; }
    .ai-text-side.text-right { order: 3; }

    .brain-holder {
        width: 280px; /* Tamanho fixo confortável para mobile */
    }
    
    .ai-title {
        font-size: 3rem; /* Tamanho legível no mobile */
    }
}

/* --- SEÇÃO CRONOGRAMA (TIMELINE) --- */
.timeline-clean-section {
    position: relative;
    padding: 8rem 0;
    background-color: #050505;
    color: #ffffff;
    overflow: hidden;
}

/* Fundo e Overlay */
.timeline-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.timeline-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15; /* Ajuste aqui se quiser mais visível */
}

.timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, #050505 100%);
    z-index: 1;
}

.timeline-container {
    position: relative;
    z-index: 2;
}

/* Cabeçalho */
.timeline-header {
    text-align: center;
    margin-bottom: 5rem;
}

.timeline-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: #Eebb44; /* Dourado */
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.timeline-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-desc {
    color: #a1a1aa;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Grid do Cronograma */
.timeline-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colunas no desktop */
    gap: 3rem 2rem;
    margin-bottom: 5rem;
}

/* Cards */
.process-card {
    position: relative;
    padding-top: 1.5rem;
    opacity: 0; /* GSAP anima */
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.card-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.process-card:hover .card-number {
    color: #Eebb44;
    opacity: 0.4;
}

.card-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #Eebb44 0%, rgba(255,255,255,0.1) 100%);
    margin-bottom: 1.5rem;
    position: relative;
}

.card-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #Eebb44;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(238, 187, 68, 0.5);
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-transform: uppercase;
}

.card-desc {
    font-size: 0.9rem;
    color: #a1a1aa;
    line-height: 1.5;
}

/* Container do Botão (Correção de Visibilidade) */
.timeline-cta-wrapper {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 20 !important; /* Garante que fique acima de tudo */
}

/* Responsividade */
@media (max-width: 992px) {
    .timeline-clean-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas no Tablet */
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .timeline-clean-grid {
        grid-template-columns: 1fr; /* 1 coluna no Mobile */
        gap: 0;
        /* Cria a linha vertical contínua na esquerda */
        border-left: 1px solid rgba(255, 255, 255, 0.1); 
        margin-left: 1rem;
        padding-left: 2rem;
    }

    .process-card {
        margin-bottom: 3rem;
        padding-top: 0;
    }

    .card-number {
        position: relative;
        top: 0; left: 0;
        font-size: 2rem;
        margin-bottom: 0.5rem;
        display: inline-block;
    }

    /* Remove a linha horizontal e usa bolinha lateral */
    .card-line { display: none; }

    .process-card::before {
        content: '';
        position: absolute;
        left: -2.35rem; /* Alinha na borda esquerda */
        top: 5px;
        width: 12px;
        height: 12px;
        background-color: #000;
        border: 2px solid #Eebb44;
        border-radius: 50%;
    }
}


/* --- SEÇÃO AUTORIDADE SOCIAL --- */
.social-authority-section {
    position: relative;
    padding: 8rem 0;
    background-color: #080808; /* Fundo bem escuro */
    overflow: hidden;
    color: #ffffff;
}

.social-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradê sutil de fundo */
    background: radial-gradient(circle at 80% 50%, rgba(20, 20, 20, 1) 0%, #000000 100%);
    z-index: 0;
}

.social-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* --- LADO ESQUERDO --- */
.social-left-content {
    flex: 1;
    max-width: 600px;
}

/* Cabeçalho do Perfil */
.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.profile-pic-wrapper img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary-gold); /* Borda Dourada na foto */
    padding: 3px;
    object-fit: cover;
}

.profile-name {
    font-family: 'Oswald', sans-serif;
    /* Reduzi de 3rem para um tamanho responsivo menor (entre 24px e 40px) */
    font-size: clamp(1.5rem, 3vw, 2.5rem); 
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem; /* Aumentei o espaço entre o nome e o ícone */
    line-height: 1;
}
.verified-icon {
    /* Aumentei de 30px para 45px para ficar bem visível */
    width: 45px;
    height: 45px;
    /* Adiciona um filtro de sombra leve para destacar do fundo escuro */
    filter: drop-shadow(0 0 5px rgba(56, 151, 240, 0.5));
}
.profile-niche {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: #ccc;
    text-transform: uppercase;
    font-weight: 600;
}

/* Grid da Galeria */
.social-gallery-grid {
    /* display: grid; */
    grid-template-columns: repeat(2, 1fr); /* 2 colunas */
    gap: 1rem;
}

.gallery-item {
    /* border-radius: 10px; */
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- LADO DIREITO (CELULAR) --- */
.social-right-content {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup-wrapper {
    position: relative;
    width: 300px; /* Largura do celular */
    height: auto;
}

.phone-frame {
    position: relative;
    z-index: 2;
    border: 8px solid #1a1a1a; /* Borda do celular */
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.phone-screen-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Brilho atrás do celular */
.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 80%;
    background: radial-gradient(circle, rgba(238, 187, 68, 0.2), transparent 70%);
    filter: blur(40px);
    z-index: 1;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .social-container {
        flex-direction: column-reverse; /* Celular vai para cima ou baixo conforme preferência */
        text-align: center;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .profile-name {
        justify-content: center;
        font-size: 2.5rem;
    }

    .social-left-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .profile-name {
        font-size: 2rem; /* Tamanho fixo confortável no celular */
        justify-content: center; /* Centraliza no mobile */
    }
    
    .verified-icon {
        width: 35px; /* Um pouco menor no celular, mas ainda grande */
        height: 35px;
    }
}

/* --- RESPONSIVIDADE (AJUSTE DE ORDEM) --- */
@media (max-width: 992px) {
    .social-container {
        /* MUDANÇA AQUI: De 'column-reverse' para 'column' */
        flex-direction: column; 
        text-align: center;
        gap: 3rem; /* Espaço entre a galeria e o celular */
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .profile-name {
        justify-content: center;
        /* Mantendo o ajuste de tamanho que fizemos antes */
        font-size: 2rem; 
    }

    .social-left-content {
        width: 100%;
        /* Garante que o conteúdo venha primeiro visualmente se houver alguma outra regra */
        order: 1; 
    }

    .social-right-content {
        width: 100%;
        /* Garante que o celular venha depois */
        order: 2; 
        display: flex;
        justify-content: center;
    }
    
    /* Ajuste opcional: reduzir um pouco o celular no mobile para não ocupar muito scroll */
    .phone-mockup-wrapper {
        width: 250px;
    }
}


/* --- SEÇÃO NOSSOS PRODUTOS --- */
.products-section {
    position: relative;
    padding: 6rem 0;
    background-color: #050505;
    overflow: hidden;
}

/* Fundo e Textura */
.products-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.products-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Bem sutil para não brigar com os cards */
    filter: grayscale(100%); /* Deixa preto e branco para ser neutro */
}

.products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vinheta para escurecer o centro */
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, #000000 100%);
}

/* Efeitos de Luz Laterais (Estilo Lens Flare da imagem) */
.products-glow-left,
.products-glow-right {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.products-glow-left {
    left: 0;
    /* Brilho sutil dourado/arco-íris na esquerda */
    background: radial-gradient(ellipse at left, rgba(238, 187, 68, 0.2), transparent 70%);
}

.products-glow-right {
    right: 0;
    /* Brilho sutil avermelhado/dourado na direita */
    background: radial-gradient(ellipse at right, rgba(255, 100, 50, 0.15), transparent 70%);
}

/* Conteúdo */
.products-container {
    position: relative;
    z-index: 2;
}

.products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-title {
    font-family: 'Oswald', var(--font-display); /* Fonte condensada fica ótima aqui */
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900; /* Extra bold */
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.8);
    margin: 0;
}

/* Grid de Produtos */
.products-grid {
    display: grid;
    /* 3 Colunas no Desktop */
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Card do Produto */
.product-card {
    display: block;
    position: relative;
    border-radius: 25px; /* Arredondamento forte como na referência */
    overflow: hidden;
    aspect-ratio: 16/9; /* Formato retangular padrão */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0; /* GSAP anima */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay de Hover (Texto "Saiba Mais") */
.product-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-gold);
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(3px);
}

/* Efeitos de Hover */
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    border-color: var(--primary-gold); /* Borda dourada ao passar o mouse */
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

/* Card Largo (Footer da grid) */
.products-footer-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.wide-card {
    width: 100%;
    max-width: 600px; /* Tamanho controlado */
    aspect-ratio: 3/1; /* Mais largo */
}

/* Responsividade */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Colunas no Tablet */
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr; /* 1 Coluna no Mobile */
        gap: 1.5rem;
    }
    
    .product-card {
        border-radius: 15px;
    }
}

/* --- SEÇÃO PRINCIPAIS ENTREGAS --- */
.deliverables-section {
    position: relative;
    padding: 8rem 0;
    background-color: #080808;
    color: #fff;
    overflow: hidden;
}

/* Wrapper do Fundo */
.deliverables-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.deliverables-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15; /* Bem suave para não poluir */
}

.deliverables-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vinheta Radial: Centro mais claro, bordas pretas */
    background: radial-gradient(circle at center, rgba(0,0,0,0.5) 0%, #000000 90%);
    z-index: 1;
}

/* Container de Conteúdo */
.deliverables-container {
    position: relative;
    z-index: 2; /* Fica acima do fundo */
}

.deliverables-title {
    font-family: 'Oswald', var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4rem;
    color: #e0e0e0;
    letter-spacing: -0.02em;
}

/* Grid */
.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4rem;
    row-gap: 3rem;
    max-width: 1100px;
}

/* Item Individual */
.deliverable-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    opacity: 0; /* GSAP anima */
    transform: translateY(20px);
}

/* Número Dourado (Shine) */
.del-number {
    font-family: 'Oswald', var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    font-style: italic;
    line-height: 0.8;
    
    background: linear-gradient(110deg, #b8860b 20%, #ffffff 50%, #b8860b 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    
    animation: shineText 4s linear infinite;
    flex-shrink: 0;
}

@keyframes shineText { to { background-position: 200% center; } }

.del-content h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.del-content p {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
}

/* Wrapper do Botão */
.deliverables-cta-wrapper {
    margin-top: 5rem;
    text-align: center; /* Centraliza o botão */
    opacity: 0; /* GSAP anima */
}

/* Responsividade */
@media (max-width: 768px) {
    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .deliverables-title {
        text-align: center;
    }
    .del-number {
        font-size: 4rem;
    }
}


/* --- SEÇÃO PASSO A PASSO --- */
.step-by-step-section {
    position: relative;
    padding: 6rem 0;
    background-color: #050505;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Fundo */
.step-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.step-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Fundo discreto */
}

.step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Degradê lateral para suavizar a imagem da direita */
    background: linear-gradient(90deg, #000000 0%, rgba(0,0,0,0.8) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

/* Container Flex */
.step-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    z-index: 5;
}

/* --- CONTEÚDO ESQUERDA --- */
.step-content {
    flex: 1;
    max-width: 550px;
}

.step-mini-tag {
    font-family: var(--font-display); /* Fonte com serifa se tiver, ou Montserrat */
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-style: italic;
    margin-bottom: 1rem;
    display: block;
}

.step-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.text-gold-script {
    color: var(--primary-gold);
    font-family: 'Times New Roman', serif; /* Ou uma fonte script carregada */
    font-style: italic;
    font-weight: 400;
    font-size: 0.8em; /* Um pouco menor que o título principal */
}

.step-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
    order: 1;
}

/* Badges (A caixa preta com borda) */
.step-badges-box {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge-info {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-info.highlight {
    background: #fff;
    color: #000;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-left: auto; /* Empurra para a direita se houver espaço */
}

/* --- IMAGEM DIREITA --- */
.step-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.step-image-holder {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.step-expert-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    /* Filtro leve para ambientar */
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.5));
}

/* Luz atrás da pessoa */
.step-back-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(238, 187, 68, 0.3), transparent 70%);
    filter: blur(60px);
    z-index: 1;
}

/* Se for usar notificações flutuantes */
.float-notif {
    position: absolute;
    z-index: 3;
    width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-radius: 10px;
}
.notif-1 { top: 20%; left: -10%; }
.notif-2 { bottom: 30%; right: -5%; }

/* Responsividade */
@media (max-width: 992px) {
    .step-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 3rem;
    }

    .step-overlay {
        /* No mobile, degradê vem de baixo */
        background: linear-gradient(to top, #000000 10%, rgba(0,0,0,0.5) 100%);
    }

    .step-badges-box {
        justify-content: center;
        padding: 1rem;
    }

    .step-image-side {
        width: 100%;
    }
    
    .step-expert-img {
        max-width: 400px; /* Limita tamanho no mobile */
        margin: 0 auto;
    }
}

/* --- SEÇÃO FAQ (CORRIGIDA) --- */
.faq-section {
    position: relative;
    padding: 8rem 0;
    background-color: #050505; 
    color: #fff;
    overflow: hidden;
}

/* Fundo e Overlay */
.faq-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Fundo na camada 0 */
}

.faq-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.15;
}

.faq-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, #050505 100%);
    z-index: 1; /* Overlay na camada 1 */
}

/* Container de Conteúdo */
.faq-container {
    position: relative;
    z-index: 10; /* Conteúdo MUITO acima do fundo */
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: #Eebb44;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.faq-desc {
    color: #a1a1aa;
    font-size: 1.1rem;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Item do FAQ */
.faq-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.faq-item.active {
    border-color: #Eebb44;
    background-color: rgba(238, 187, 68, 0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    transition: color 0.3s;
}

.faq-item.active .faq-question h3 { color: #Eebb44; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0,1,0,1);
    padding: 0 1.5rem;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

.faq-icon { width: 20px; height: 20px; position: relative; }
.line { position: absolute; background: #fff; transition: 0.3s; border-radius: 2px; }
.faq-item.active .line { background: #Eebb44; }
.line.horizontal { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.line.vertical { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.faq-item.active .line.vertical { transform: translateX(-50%) rotate(90deg); opacity: 0; }

/* --- WRAPPER DO BOTÃO (CORRIGIDO) --- */
.faq-cta-wrapper {
    text-align: center;
    margin-top: 5rem;
    position: relative;
    z-index: 15; /* Garante que fique acima de tudo */
    /* Não colocamos opacity: 0 aqui no CSS para evitar que suma se o JS falhar */
}

.faq-cta-text {
    color: #a1a1aa;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}


/* --- BOTÃO WHATSAPP FLUTUANTE --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    z-index: 9999; /* Acima de tudo */
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícone Verde */
.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: #25D366; /* Verde WhatsApp Oficial */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.whatsapp-icon svg {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* Efeito de Pulso Verde */
.whatsapp-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.5);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Tooltip "Fale Conosco" */
.whatsapp-tooltip {
    position: absolute;
    right: 75px; /* Ao lado do botão */
    background: #fff;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Seta do Tooltip */
.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

/* Interações */
.whatsapp-float:hover .whatsapp-icon {
    transform: scale(1.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon, .whatsapp-pulse {
        width: 50px;
        height: 50px;
    }
    .whatsapp-icon svg {
        width: 28px;
        height: 28px;
    }
    /* Oculta o tooltip no mobile para não atrapalhar a leitura */
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 768px) {
    .brand-item img {
        max-width: 200px; /* Tamanho bom para mobile */
        max-height: 180px;
    }
    
    .brand-item {
        height: 80px;
    }
}

/* ============================================================
   SISTEMA DE SEÇÕES PADRÃO (CSS REUTILIZÁVEL)
   ============================================================ */

/* 1. Container da Seção (Estrutura Base) */
.section-standard {
    position: relative;
    /* Padding Responsivo: 4rem no mobile, aumentando até 8rem no desktop */
    padding: clamp(4rem, 8vh, 8rem) 0;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 2. Temas de Cores */
/* Tema Escuro (Padrão APEX) */
.section-standard.theme-dark {
    background-color: var(--bg-color, #050505);
    color: var(--text-color, #ffffff);
}

/* Tema Claro (Para marcas, FAQ, etc) */
.section-standard.theme-light {
    background-color: #ffffff;
    color: #000000;
}

/* 3. Gerenciamento de Background (Imagem + Overlay) */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; /* Fica sempre atrás */
    pointer-events: none;
}

.section-bg img,
.section-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Opacidade padrão para não brigar com texto */
    opacity: 0.4; 
    transition: transform 2s ease-out; /* Prepara para animação de zoom */
}
