/* ============================================== */
/* === VARIÁVEIS E BASE DO VEST.RIO === */
/* ============================================== */
:root {
    --roxo: #9200D0;
    --roxo-escuro: #5e0087;
    --amarelo: #F2C029;
    --laranja: #F2762E;
    --cor-fundo: #fdfdfd; /* Fundo Branco Clínico */
    --cor-texto: #2b2b2b;
    --cor-texto-mutado: #555555;
    --cor-fundo-principal: var(--cor-fundo);
    --cor-texto-principal: var(--cor-texto);
}

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

body { 
    background-color: var(--cor-fundo); 
    color: var(--cor-texto); 
    -webkit-font-smoothing: antialiased; 
    overflow-x: hidden; 
}

.container { 
    width: 100%; 
    max-width: 1000px; /* Mais estreito para focar a atenção no vídeo */
    margin: 0 auto; 
    padding: 0 20px; 
    text-align: center; 
}

/* ============================================== */
/* === ANIMAÇÕES PADRÃO (CASCATA) === */
/* ============================================== */
.fade-in-up { 
    opacity: 0; 
    transform: translateY(15px); 
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; 
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp { 
    to { opacity: 1; transform: translateY(0); } 
}

/* ============================================== */
/* === UPSELL HERO SECTION === */
/* ============================================== */
.logo-hero {
    margin: 0 auto 40px auto; 
    display: block; 
    width: 120px; 
    height: auto;
    
    /* MÁGICA: Cria um brilho branco intenso atrás da logo */
    filter: drop-shadow(0px 0px 15px rgba(255, 255, 255, 0.9)) 
            drop-shadow(0px 0px 5px rgba(255, 255, 255, 1));
}

.upsell-hero {
    padding: 40px 0 20px 0;
    background-color: var(--cor-fundo);
    /* Mescla o brilho radial antigo com as bolinhas novas */
    background-image: 
        radial-gradient(circle at top center, rgba(146, 0, 208, 0.04) 0%, transparent 60%),
        radial-gradient(rgba(146, 0, 208, 0.06) 2px, transparent 2px);
    background-size: 100% 100%, 35px 35px;
    background-position: center top, center;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--laranja);
    border-radius: 50%;
    animation: blink 1s infinite alternate;
}

@keyframes blink { 
    0% { opacity: 0.4; } 
    100% { opacity: 1; box-shadow: 0 0 10px rgba(242, 118, 46, 0.6); } 
}

/* --- Textos --- */
.upsell-headline {
    margin-top: 30px;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2; /* Aumentei de 1.1 para 1.2 para dar mais respiro à leitura */
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--cor-texto);
    letter-spacing: -1px;
    /* A MÁGICA: Deixa as linhas com larguras iguais, evitando o formato de funil */
    text-wrap: balance; 
}

.text-gradient-purple {
    background: linear-gradient(90deg, var(--roxo) 0%, #b833ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.upsell-subheadline {
    font-size: clamp(1.6rem, 2.5vw, 2.15rem);
    color: var(--cor-texto-mutado);
    font-weight: 500;
    max-width: 750px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* --- Imagem de Destaque (Hero) --- */
.hero-image-container {
    margin: 0 auto 50px auto;
    max-width: 800px; /* Limita a largura máxima para telas grandes */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px; /* Visual premium */
    
    /* Se a imagem for transparente (sem fundo), você pode remover ou ajustar */
    /* a sombra abaixo reduzindo a opacidade ou deletando a propriedade. */
    box-shadow: 0 20px 40px rgba(146, 0, 208, 0.08); 
}


/* ============================================== */
/* === VSL (VÍDEO DE VENDAS) === */
/* ============================================== */
.vsl-wrapper {
    width: 100%;
    max-width: 340px; /* MÁGICA 1: Reduzimos a largura para o tamanho de um celular */
    margin: 0 auto;
    border-radius: 24px;
    padding: 8px; /* Borda gradiente em volta do vídeo */
    background: linear-gradient(135deg, rgba(146, 0, 208, 0.3), rgba(242, 192, 41, 0.3));
    box-shadow: 0 25px 60px rgba(146, 0, 208, 0.12);
    margin-bottom: 20px;
}

.vsl-container {
    width: 100%;
    aspect-ratio: 9 / 16; /* MÁGICA 2: Proporção exata para vídeos na vertical (invertemos o 16/9) */
    background-color: #111; 
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #000;
}

/* Textura de pontinhos simulando a tela vazia */
.vsl-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle, #333 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

/* O Botão de Play que pulsa amarelo/laranja */
.play-button-pulse {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--amarelo), var(--laranja));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(242, 192, 41, 0.7);
    animation: pulsePlay 2s infinite;
    transition: transform 0.2s ease;
}

.vsl-container:hover .play-button-pulse {
    transform: scale(1.1); /* Cresce quando o mouse passa por cima */
}

.play-button-pulse svg {
    width: 45px;
    height: 45px;
    margin-left: 5px; /* Empurra o triângulo pro centro visual */
}

@keyframes pulsePlay {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(242, 192, 41, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 25px rgba(242, 192, 41, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(242, 192, 41, 0); }
}

.vsl-overlay-text {
    position: absolute;
    bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
}

/* --- RESPONSIVIDADE MOBILE --- */
@media (max-width: 900px) {
    .upsell-headline {
        font-size: 1.85rem; /* Ajuste fino pro celular */
        padding: 0 10px;
    }
    
    .upsell-headline br { 
        display: none; /* Esconde a quebra do desktop no celular */
    }

    /* Garante que o <br> que você adicionou na subheadline continue funcionando */
    .upsell-subheadline br {
        display: block; 
    }

    .upsell-warning {
         font-size: 0.75rem; 
         padding: 8px 15px; 
    }
    
    .play-button-pulse {
         width: 65px;
         height: 65px; 
    }
    
    .play-button-pulse svg { 
        width: 35px;
        height: 35px; 
    }
    
    .vsl-wrapper { 
        max-width: 280px; /* Deixa o vídeo um pouquinho menor no celular para respirar nas bordas */
        padding: 6px; 
    }
}

/* ============================================== */
/* === DIVISOR DE SEÇÕES (LINHA GRADIENTE) === */
/* ============================================== */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(146, 0, 208, 0.15) 50%, transparent 100%);
    margin: 20px 0;
}

/* ============================================== */
/* === SEÇÃO 2: FEATURES E CHECKLIST === */
/* ============================================== */
.upsell-features {
    padding: 20px 0 0px 0;
    background-color: var(--cor-fundo);
    background-image: radial-gradient(rgba(146, 0, 208, 0.06) 2px, transparent 2px);
    background-size: 35px 35px;
    background-position: center;
    position: relative;
    z-index: 5;
}

/* --- Cabeçalho da Seção --- */
.features-header {
    text-align: center;
    margin-bottom: 20px;
}

.features-headline {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--cor-texto);
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-wrap: balance;
}

.features-subheadline {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--cor-texto-mutado);
    font-weight: 700;
    text-wrap: balance;
}

/* --- Base dos Cards --- */
.features-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 950px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, var(--roxo) 0%, var(--roxo-escuro) 100%);
    border-radius: 28px;
    padding: 40px;
    color: #ffffff;
    border: 1px solid rgba(242, 192, 41, 0.2); 
    box-shadow: 0 20px 50px rgba(146, 0, 208, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(146, 0, 208, 0.3); 
}

/* Brilho interno do card */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top left, rgba(242, 192, 41, 0.1) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 28px;
}

.feature-card h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* --- Layout Card 1 (Split Horizontal) --- */
.split-card {
    display: flex;
    align-items: center;
    gap: 30px; /* Reduzido um pouco para o celular respirar */
}

.split-card .card-text {
    flex: 1;
    text-align: left;
}

.split-card .card-media {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center; /* Garante que o celular fique no meio */
}

/* --- Layout Cards 2 e 3 (Grid Lado a Lado) --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.compact-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0; /* MÁGICA 1: Removemos o espaçamento interno do card para a foto colar na borda */
    overflow: hidden; /* Garante que a foto respeite os cantos arredondados do cartão */
}

/* --- Imagens dos Cards Menores (Estilo Full-Bleed) --- */
.compact-card .card-media {
    width: 100%;
    height: 280px; /* MÁGICA 2: Aumentamos bem a altura da foto para ela dominar o espaço */
    border-radius: 0; /* Tira o arredondamento de dentro da imagem */
    margin-bottom: 0; 
    border: none; 
    border-bottom: 4px solid var(--amarelo); /* Linha amarela de destaque separando a foto do texto */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

/* Devolve o espaço de respiro APENAS para a parte do texto embaixo da foto */
.compact-card .card-text {
    padding: 35px 25px; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.compact-card h3 {
    margin-bottom: 0; /* Remove a margem embaixo do título para ele ficar centralizado perfeito */
}

/* Efeito Premium: A foto dá um zoom suave quando o mouse passa no cartão inteiro */
.compact-card:hover .feature-img {
    transform: scale(1.08);
}

/* ============================================== */
/* === O CELULAR 3D (ADAPTADO) === */
/* ============================================== */
.alfred-visual-content {
    position: relative;
    width: 100%;
    max-width: 350px; 
    display: flex;
    justify-content: center;
    perspective: 2000px; 
}

.phone-case {
    /* Tamanho reduzido proporcionalmente para caber no cartão 190 380 */
    width: 190px;
    height: 380px;
    background-color: #1a1a1a; 
    border-radius: 35px;
    position: relative;
    
    box-shadow: 
      0 0 0 2px #2a2a2a,
      0 0 0 5px #555, 
      20px 20px 40px rgba(0,0,0,0.5),
      inset 0 0 10px rgba(255,255,255,0.1);
    
    transform: rotateY(-20deg) rotateX(10deg);
    transform-style: preserve-3d;
    animation: floatPhone 6s ease-in-out infinite;
    border: 8px solid #0a0a0a; 
    z-index: 2;
}

/* Ilha Dinâmica (Proporcional) */
.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background-color: #000;
    border-radius: 15px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

.camera-lens {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, #444, #050505);
    box-shadow: inset 0 0 2px rgba(255,255,255,0.3);
}

/* Reflexo na tela */
.reflection {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(115deg, rgba(255,255,255,0.15) 0%, transparent 35%, transparent 60%, rgba(255,255,255,0.05) 100%);
    z-index: 5;
    pointer-events: none;
    border-radius: 25px;
}

/* Vídeo */
.screen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 26px; /* Borda interna menor para acompanhar a externa */
    background-color: #111;
    position: relative;
    z-index: 1;
}

/* Botões físicos na lateral (Ajustados) */
.volume-up, .volume-down, .power-btn {
    position: absolute;
    background-color: #444;
    width: 3px;
    border-radius: 2px 0 0 2px;
    transform: translateZ(-3px); 
}

.volume-up { height: 35px; top: 90px; left: -11px; }
.volume-down { height: 35px; top: 135px; left: -11px; }
.power-btn { height: 50px; top: 110px; right: -11px; border-radius: 0 2px 2px 0; }

@keyframes floatPhone {
    0%, 100% { transform: rotateY(-20deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-15px); }
}

/* --- RESPONSIVIDADE MOBILE DA SEÇÃO 2 --- */
@media (max-width: 900px) {
    .features-header { margin-bottom: 40px; }
    .split-card { flex-direction: column; text-align: center; gap: 40px; padding: 40px 25px;}
    .split-card .card-text { text-align: center; }
    
    .alfred-visual-content { margin-top: 1rem; }
    .phone-case {
        transform: rotateY(-10deg) rotateX(0deg);
        animation: floatPhoneMobile 5s ease-in-out infinite;
    }

    @keyframes floatPhoneMobile {
        0%, 100% { transform: rotateY(-10deg) translateY(0); }
        50% { transform: rotateY(-5deg) translateY(-15px); }
    }

    .features-grid { grid-template-columns: 1fr; gap: 30px; }
    .compact-card { padding: 40px 25px; }
    .image-placeholder { height: 180px; }
}

/* ============================================== */
/* === ONDAS DE TRANSIÇÃO === */
/* ============================================== */
.wave-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    direction: ltr; 
    background-color: var(--wave-bg, #fdfdfd); 
    margin-top: -2px;
    margin-bottom: -2px;
    z-index: 10;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 90px;
    shape-rendering: geometricPrecision;
}

.wave-bottom svg { transform: rotate(180deg); }
.wave-roxo .shape-fill { fill: var(--roxo); }
.wave-fundo .shape-fill { fill: var(--cor-fundo); }


/* ============================================== */
/* === SEÇÃO 3: ESTATÍSTICAS E DEPOIMENTOS === */
/* ============================================== */
.stats-testimonials-section {
    padding: 55px 0 10px 0;
    background-color: var(--roxo);
    color: #ffffff;
    position: relative;
    z-index: 5;
}

.stats-headline {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-wrap: balance;
}

.highlight-yellow { color: var(--amarelo); font-weight: 900; }

/* --- O GRÁFICO HORIZONTAL --- */
.horizontal-chart-wrapper {
    background: rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 50px;
    max-width: 800px;
    margin: 0 auto 80px auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.h-chart-row {
    margin-bottom: 30px;
}

.h-chart-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.h-chart-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
}

.h-chart-value {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.h-chart-value small { font-size: 1.1rem; font-weight: 700; opacity: 0.8; }
.value-good { color: var(--amarelo); }
.value-bad { color: #d8d8e6; }

.h-chart-track {
    width: 100%;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

/* Animação Mágica da Barra Horizontal */
.h-chart-fill {
    height: 100%;
    width: 0; /* Começa zerada */
    border-radius: 12px;
}

.fill-good { background: linear-gradient(90deg, var(--laranja), var(--amarelo)); }
.fill-bad { background: #9c9cb8; }

@keyframes fillBarAnim {
    0% { width: 0; }
    100% { width: var(--target-width); }
}

.horizontal-chart-wrapper.animate-active .h-chart-fill {
    animation: fillBarAnim 5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.chart-scale {
    display: flex;
    justify-content: space-between;
    margin-top: -10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* --- CARROSSEL DE DEPOIMENTOS --- */
.testimonials-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 40px;
}

.final-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-3d-scene {
    width: 100%;
    overflow: hidden; 
    perspective: 1500px; 
    padding: 40px 0;
}

.carousel-3d-track {
    display: flex;
    gap: 0; 
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.carousel-card-3d {
    flex: 0 0 300px;
    width: 300px;      
    min-width: 300px;  
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.8s, opacity 0.8s;
    background-color: #fff;
    cursor: grab;
    transform-origin: center;
    
    /* Anti-glitch para 3D */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.carousel-card-3d img {
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    object-position: center top; 
    display: block;
    pointer-events: none; 
}

/* --- BOTÕES DE NAVEGAÇÃO MINIMALISTAS --- */
.nav-btn-minimal {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn-minimal:hover {
    background: var(--amarelo);
    color: var(--roxo-escuro);
    box-shadow: 0 10px 25px rgba(242, 192, 41, 0.4);
}

.nav-btn-minimal svg { width: 24px; height: 24px; }
.prev { left: 0px; }
.next { right: 0px; }

/* Adicione este ajuste no seu @media (max-width: 900px) já existente no final do arquivo: */
@media (max-width: 900px) {
    .carousel-card-3d { 
        flex: 0 0 260px; 
        width: 260px;      
        min-width: 260px;  
        height: 500px;   
    }
    .nav-btn-minimal { width: 40px; height: 40px; }
    .nav-btn-minimal svg { width: 20px; height: 20px; }
}

/* --- RESPONSIVIDADE MOBILE DA SEÇÃO 3 --- */
@media (max-width: 900px) {
    .stats-testimonials-section { padding: 60px 0 10px 0; }
    .horizontal-chart-wrapper { padding: 30px 20px; }
    .h-chart-label { font-size: 1.05rem; }
    .h-chart-value { font-size: 1.8rem; }
    
    .upsell-carousel-container { display: block; }
    .upsell-track { gap: 15px; padding: 10px 5px; }
    
    .upsell-card-img {
        flex: 0 0 100%; /* Mostra EXATAMENTE 1 por vez no celular */
    }
    
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 45px;
        height: 45px;
    }
    .left-btn { left: -10px; }
    .right-btn { right: -10px; }
}

/* ============================================== */
/* === BLOCO DE GARANTIA (DENTRO DA SEÇÃO 3) === */
/* ============================================== */
.guarantee-card-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff; 
    border-radius: 20px; 
    padding: 40px 50px;
    max-width: 850px;
    margin: 0 auto 20px auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); 
    gap: 30px;
    border: 1px solid transparent; /* Prepara para a borda no hover */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
}

/* O cartão flutua e ganha borda dourada ao passar o mouse */
.guarantee-card-final:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(146, 0, 208, 0.15);
    border-color: var(--amarelo);
}

.guarantee-final-text {
    flex: 1;
    text-align: left;
}

.guarantee-final-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--roxo); 
    line-height: 1.3;
    margin-bottom: 15px;
}

.guarantee-subtitle {
    font-size: 1.1rem;
    color: #555555;
    margin-bottom: 15px;
    font-weight: 600;
}

/* --- Lista de Benefícios (Com Animação Hover) --- */
.guarantee-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Aumentei um pouco o gap para o efeito de hover respirar melhor */
}

.guarantee-list li {
    font-size: 1.05rem;
    color: #444444;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, color 0.3s ease; /* Suavidade no movimento */
    cursor: default;
}

/* O item desliza para a direita e fica roxo ao passar o mouse */
.guarantee-list li:hover {
    transform: translateX(10px);
    color: var(--roxo);
    font-weight: 700;
}

/* --- Selo de Garantia (Com Pulsação Contínua) --- */
.guarantee-final-seal {
    flex: 0 0 160px; 
    display: flex;
    justify-content: center;
}

.guarantee-final-seal img {
    width: 100%;
    height: auto;
    max-width: 160px;
    /* MÁGICA: Pulsação com leve rotação para chamar a atenção */
    animation: pulseSeal 2.5s infinite alternate ease-in-out; 
}

@keyframes pulseSeal {
    0% { 
        transform: scale(1) rotate(0deg); 
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); 
    }
    100% { 
        transform: scale(1.08) rotate(3deg); 
        filter: drop-shadow(0 15px 25px rgba(242, 192, 41, 0.5)); /* Brilho dourado no pico */
    }
}

/* --- RESPONSIVIDADE MOBILE DO CARD DE GARANTIA --- */
@media (max-width: 900px) {
    .guarantee-card-final {
        flex-direction: column-reverse; 
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    .guarantee-final-text {
        text-align: center;
    }
    .guarantee-final-text h3 {
        font-size: 1.5rem;
    }
    .guarantee-subtitle, .guarantee-list {
        text-align: left; 
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    /* Desativa o deslize no celular para não bugar o toque na tela */
    .guarantee-list li:hover {
        transform: none; 
    }
    .guarantee-final-seal {
        flex: 0 0 120px; 
    }
}

/* ============================================== */
/* === SEÇÃO 4: OFERTA FINAL (HOTMART WIDGET) === */
/* ============================================== */
.upsell-final-offer {
    padding: 60px 0 120px 0;
    background-color: var(--cor-fundo);
    /* Textura de Xadrez */
    background-image: 
        linear-gradient(rgba(146, 0, 208, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 0, 208, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; 
    background-position: center center;
    position: relative;
    z-index: 5;
}

.final-offer-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px 50px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(146, 0, 208, 0.1);
    position: relative;
    text-align: center;
}

.badge-unique {
    display: inline-block;
    background: transparent;
    color: var(--roxo);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(146, 0, 208, 0.3);
}

.final-offer-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #333; 
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* --- Checklist do Cartão Final --- */
.final-offer-checklist {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto; 
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left; 
}

.final-offer-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444444; 
    line-height: 1.4;
}

.final-offer-checklist .check-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--roxo), var(--roxo-escuro));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(146, 0, 208, 0.3);
}

.final-offer-checklist .check-icon svg {
    width: 14px;
    height: 14px;
}

/* --- Caixa de Preço (Branca com Borda) --- */
.price-box {
    background: #fdfcfd;
    border: 1px solid rgba(146, 0, 208, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.price-label {
    font-size: 1rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
    flex-wrap: nowrap;
}

.installments {
    font-size: 1.8rem;
    font-weight: 800;
    color: #555;
}

.value {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--roxo);
    line-height: 1;
    letter-spacing: -2px;
    white-space: nowrap;
}

.cash-price {
    font-size: 1.1rem;
    font-weight: 500;
    color: #777;
}

.hotmart-widget-placeholder {
    min-height: 80px;
    width: 100%;
}

/* Botão CTA principal */
.btn-oferta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--roxo), var(--laranja));
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    padding: 30px 5px;
    border-radius: 60px;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    text-align: center;
    line-height: 1.3;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 30px rgba(146, 0, 208, 0.28);
    width: 60%;
    justify-content: center;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-oferta:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 44px rgba(146, 0, 208, 0.42);
}

.pulse-btn {
    animation: gradientShift 3s ease infinite, pulseShadow 2s ease-in-out infinite;
}

@keyframes pulseShadow {
    0%, 100% { box-shadow: 0 8px 30px rgba(146, 0, 208, 0.28); }
    50% { box-shadow: 0 8px 50px rgba(146, 0, 208, 0.5); }
}

.btn-arrow {
    font-size: 1.2rem;
}

/* --- Ajustes Mobile --- */
@media (max-width: 900px) {
    .upsell-final-offer { padding: 50px 0 80px 0; }
    .final-offer-card { padding: 40px 20px; border-radius: 24px; }
    .final-offer-title { font-size: 1.8rem; margin-bottom: 30px; }
    
    .final-offer-checklist {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .final-offer-checklist li {
        font-size: 1rem;
        align-items: flex-start;
    }
    .final-offer-checklist .check-icon {
        margin-top: 2px; 
    }

    .price-box { padding: 20px 15px; }
    .installments { font-size: 1.4rem; }
    .value { font-size: 3.5rem; }
    .btn-oferta {
        width: 90%;
        max-width: 380px;
        padding: 18px 25px;
        font-size: 1.15rem;
    }
}

@media (max-width: 480px) {
    .price-box { padding: 15px 10px; }
    .installments { font-size: 1.1rem; }
    .value { font-size: 2.6rem; }
    .btn-oferta {
        font-size: 1.1rem;
        padding: 16px 15px;
        width: 95%;
    }
}

/* --- Textos e Lista da Garantia --- */
.guarantee-subtitle {
    font-size: 1.1rem;
    color: var(--cor-texto-mutado, #666);
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.guarantee-list {
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-list li {
    font-size: 1.05rem;
    color: var(--roxo-escuro, #444);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}



/* =========================================
   SEÇÃO RECURSOS EXTRAS laptop
   ========================================= */
.secao-recursos {
  padding: 0rem 1rem;
  position: relative;
  overflow: hidden;
}

/* A MÁGICA DO ESPAÇAMENTO ESTÁ AQUI! */
.secao-recursos .container-padrao {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Apenas aumente ou diminua este GAP para alterar os buracos da secção inteira! */
  gap: 0rem;
}

.cabecalho-recursos {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.cabecalho-recursos h2 {
  font-size: 2rem;
  color: var(--cor-texto-principal);
  max-width: 1200px;
  margin: 0 auto;
}
/* .recursos-mockup-wrapper — regras principais no bloco "TEXTOS SOLTOS" abaixo */

/* Imagem da Trilha Saindo do Notebook */
.trilha-cards-recursos {
  position: relative; /* Volta para o fluxo normal da página! */
  margin-top: -46px; /* Puxa a trilha para cima, invadindo a base do notebook */
  width: 140%;
  height: 850px;
  background-image: url("assets/fundo_trilha.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  z-index: 5; /* Garante que a trilha fique POR CIMA da moldura */
  pointer-events: none; /* Evita que a imagem atrapalhe cliques na página */
}

/* Notebook mockup — estilos principais no bloco "COLUNA CENTRAL" abaixo */

/* Responsividade Recursos */
@media (max-width: 1024px) {
  .recursos-mockup-wrapper {
    display: flex; /* Muda de Grid para Flex para permitir reordenação */
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: auto;
  }

  .recursos-conectores {
    display: none;
  }

  .recurso-lateral.esq {
    order: 1;
  }

  .recurso-lateral.dir {
    order: 2;
  }

  .recurso-lateral.esq,
  .recurso-lateral.dir {
    grid-column: 1 !important;
    text-align: left !important;
    padding: 0 1rem !important;
    justify-self: center;
    margin: 0 auto 1.5rem auto !important;
    width: 100%;
    max-width: 350px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .recurso-lateral.esq::before,
  .recurso-lateral.dir::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--roxo);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .recurso-lateral p {
    max-width: 100%;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 1.15rem;
    font-weight: 800 !important;
    color: var(--cor-texto-principal);
    text-align: left !important;
  }

  .notebook-container {
    order: 3; /* Força o computador a ir para o final da fila */
    width: 85%;
    margin-top: 2rem;
  }

  .imagem-trilha-real {
    width: 130%;
  }
}

/* 2. Acaba com o "Tablete com Pernas" (Mantém proporção 16:10) */
@media (max-width: 768px) {
  .notebook-container {
    width: 92%;
  }

  .notebook-screen-frame {
    height: auto !important; /* Anula as alturas fixas antigas que amassavam o ecrã */
    aspect-ratio: 16 / 10; /* MÁGICA: Força o ecrã a ser sempre um retângulo perfeito! */
    padding: 12px 12px 16px 12px !important;
    border-radius: 12px 12px 2px 2px;
  }

  /* Ajusta a base para não parecerem patas */
  .notebook-base {
    width: 120% !important; /* Estica a base um pouco além do ecrã para dar realismo */
    height: 18px !important;
    border-radius: 0 0 16px 16px !important;
  }

  /* O "trackpad" mais fino e delicado */
  .notebook-base::after {
    width: 25% !important;
    height: 5px !important;
    top: 6px !important;
  }
}

/* Ajustes finos para ecrãs muito pequenos (iPhone SE, etc) */
@media (max-width: 480px) {
  .recurso-lateral p {
    font-size: 1.05rem;
  }

  .notebook-screen-frame {
    padding: 8px 8px 12px 8px !important;
  }

  .notebook-base {
    width: 116% !important;
    height: 14px !important;
  }

  .notebook-base::after {
    width: 10% !important;
    height: 4px !important;
    top: 4px !important;
  }

  .imagem-trilha-real {
    width: 145%; /* Estica um pouco mais a trilha no telemóvel pequeno */
  }
}

/* =========================================
   TEXTOS SOLTOS, LINHAS E MOCKUP (AJUSTE FINO)
   ========================================= */

.recursos-mockup-wrapper {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
  gap: 0 1.5rem;
  align-items: start;
  width: 100%;
  max-width: 1100px;
  min-height: 430px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
}

/* Trilhas pontilhadas: copy lateral → arco → card no laptop */
.recursos-conectores {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

.recurso-lateral {
  position: relative;
  z-index: 7;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  align-self: start;
  /* margin-top funciona; padding-top era anulado pelo padding: 0 !important acima */
  margin-top: 10.5rem;
}

.recurso-lateral.esq {
  grid-column: 1;
  justify-self: end;
  text-align: right;
  padding-right: 0.5rem;
}

.recurso-lateral.dir {
  grid-column: 3;
  justify-self: start;
  text-align: left;
  padding-left: 0.5rem;
}

.recurso-lateral p {
  background: transparent !important;
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--cor-texto-principal);
  max-width: 240px;
}

.destaque-ia {
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.7;
}

/* =========================================
   COLUNA CENTRAL: COMPUTADOR + TRILHA
   ========================================= */
.notebook-container {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(580px, 52vw);
  position: relative;
  z-index: 3;
}

/* =========================================
   NOTEBOOK MOCKUP (moldura realista)
   ========================================= */
.notebook-mockup {
  width: 100%;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.2));
}

.notebook-screen-frame {
  --bezel-x: 13px;
  --bezel-top: 20px;
  --bezel-bottom: 14px;
  width: 100%;
  height: 400px;
  padding: var(--bezel-top) var(--bezel-x) var(--bezel-bottom);
  box-sizing: border-box;
  background: linear-gradient(
    155deg,
    #72727a 0%,
    #4a4a52 10%,
    #2a2a30 42%,
    #18181c 72%,
    #34343a 100%
  );
  border-radius: 18px 18px 4px 4px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.7),
    0 0 0 2px rgba(255, 255, 255, 0.07),
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    inset 0 -3px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  overflow: hidden;
}

/* Webcam + detalhe superior */
.notebook-screen-frame::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #45454d 0%, #101014 72%);
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.55),
    inset 0 -1px 2px rgba(255, 255, 255, 0.1);
  z-index: 3;
}

.notebook-screen-frame::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 5px;
  border-radius: 3px;
  background: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.22) 0 2px,
    transparent 2px 5px
  );
  opacity: 0.45;
  z-index: 2;
}

.imagem-tela-recursos {
  width: 100%;
  height: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  background-color: #0a0a0c;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.85),
    inset 0 0 28px rgba(0, 0, 0, 0.3);
  display: block;
}

.notebook-base {
  width: calc(100% + 60px);
  height: 20px;
  margin-top: -1px;
  background: linear-gradient(
    180deg,
    #ececf0 0%,
    #c4c4ca 16%,
    #9a9aa0 50%,
    #7a7a82 100%
  );
  border-radius: 0 0 22px 22px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 5px 0 #65656d,
    0 20px 36px rgba(0, 0, 0, 0.26);
  z-index: 4;
}

/* Linha da dobradiça */
.notebook-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  right: 7%;
  height: 3px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(255, 255, 255, 0.18) 100%
  );
  border-radius: 0 0 2px 2px;
}

/* Trackpad */
.notebook-base::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: min(150px, 30%);
  height: 11px;
  border-radius: 7px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.07) 0%,
    rgba(255, 255, 255, 0.14) 100%
  );
  box-shadow:
    inset 0 1px 4px rgba(0, 0, 0, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Base / “borda” inferior do chassi */
.notebook-mockup::after {
  content: "";
  width: calc(100% + 44px);
  height: 9px;
  margin-top: -2px;
  background: linear-gradient(180deg, #84848c 0%, #5e5e66 100%);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.14);
}

.imagem-trilha-real {
  width: 140%;
  max-width: 800px;
  height: auto;
  margin-top: -30px;
  position: relative;
  z-index: 5;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .recurso-lateral p {
    max-width: 200px;
    font-size: 1.05rem;
  }
}

/* =========================================
   RESPONSIVIDADE
   ========================================= */
@media (max-width: 1024px) {
  .recursos-mockup-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    min-height: auto;
  }

  .recursos-conectores {
    display: none;
  }



  .notebook-container {
    grid-column: 1;
    width: 90%;
  }

  .imagem-trilha-real {
    width: 120%;
  }
}

@media (max-width: 768px) {
  .notebook-container {
    width: 90%;
  }
}

/* =========================================
   TEXTURA DE FUNDO (Profundidade Apple/Tech)
   ========================================= */
.fundo-textura {
  background-color: var(--cor-fundo-principal);
  /* Unificado para bater com o padrão e cor da seção upsell-features */
  background-image: radial-gradient(rgba(146, 0, 208, 0.06) 2px, transparent 2px);
  background-size: 35px 35px;
}

/* =========================================
   ESTILIZAÇÃO DO CTA E BOTÃO LARANJA (RECURSOS)
   ========================================= */
.cta-container.centralizado {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.btn-laranja {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--laranja) 0%, #ff8c40 100%);
  background-size: 200% 200%;
  color: white;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 60px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(242, 118, 46, 0.28);
  width: auto;
  min-width: 290px;
  max-width: 100%;
  justify-content: center;
  cursor: pointer;
  border: none;
}

.btn-laranja:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(242, 118, 46, 0.48);
  background-position: right center;
}

.btn-laranja:active {
  transform: translateY(-1px);
}

.selos-confianca {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.85;
}

.selos-confianca span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cor-texto) !important;
}

.selos-confianca i {
  color: var(--roxo);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .cta-container.centralizado {
    margin-top: 2.5rem;
    gap: 1rem;
  }
  .btn-laranja {
    font-size: 1.1rem;
    padding: 16px 36px;
    width: 90%;
    min-width: unset;
  }
  .selos-confianca {
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
  }
}

/* =========================================
   SEÇÃO DE MÓDULOS DO CURSO
   ========================================= */
.secao-modulos {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.modulos-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--cor-texto);
  line-height: 1.2;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: -1px;
  text-wrap: balance;
  text-align: center;
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.modulo-card {
  background: #ffffff;
  border: 1px solid rgba(146, 0, 208, 0.08);
  border-radius: 20px;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 10px 30px rgba(146, 0, 208, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.modulo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--roxo) 0%, var(--laranja) 100%);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modulo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(146, 0, 208, 0.08);
  border-color: rgba(146, 0, 208, 0.2);
}

.modulo-card:hover::before {
  width: 7px;
}

.modulo-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  background: rgba(146, 0, 208, 0.07);
  color: var(--roxo);
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.modulo-card:hover .modulo-badge {
  background: var(--roxo);
  color: #ffffff;
}

.modulo-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cor-texto-principal);
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 768px) {
  .secao-modulos {
    padding: 3rem 0;
  }
  .modulos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 10px;
  }
  .modulo-card {
    padding: 22px 20px;
  }
}

/* =========================================
   SEÇÃO: MOTIVOS DE REPROVAÇÃO bloco 2
   ========================================= */
.secao-motivos {
  background-color: var(--cor-fundo-principal);
  background-image: radial-gradient(rgba(146, 0, 208, 0.06) 2px, transparent 2px);
  background-size: 35px 35px;
  padding: 5rem 1rem 4rem 1rem;
  display: flex;
  justify-content: center;
}

.container-padrao {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.secao-motivos .container-padrao {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Headline Premium */
.headline-secao {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 1.5rem auto;
}

.headline-secao h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: var(--cor-texto-principal);
  line-height: 1.25;
  font-family: 'Montserrat', sans-serif;
  text-wrap: balance;
  margin-bottom: 25px;
}

.headline-secao .subtitulo-motivos {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--cor-texto-mutado);
  line-height: 1.45;
  font-family: 'Montserrat', sans-serif;
  text-wrap: balance;
}

.headline-secao .destaque-amarelo {
  background: linear-gradient(90deg, var(--roxo) 0%, #b833ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}

/* ESTRUTURA DOS CARDS GRANDES */
.card-motivo {
  background-color: var(--cor-fundo); /* Fundo branco do card */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  border-radius: 15px; /* Bordas arredondadas padrão do design system */
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-motivo:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Detalhe de cor no topo do card baseado no tema */
.card-motivo.tema-laranja {
  border-top: 6px solid var(--laranja);
}

.card-motivo.tema-amarelo {
  border-top: 6px solid var(--amarelo);
}

.card-motivo.tema-laranja-claro {
  border-top: 6px solid var(--laranja-claro);
}

/* Cabeçalho Interno do Card */
.cabecalho-card {
  padding: 2.5rem 2.5rem 1rem 2.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cabecalho-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 800;
  color: var(--roxo); /* Cabeçalho roxo */
  text-align: center;
  text-wrap: balance;
  font-family: 'Montserrat', sans-serif;
}

/* Corpo flexível (Esquerda/Direita) */
.corpo-card {
  display: flex;
  padding: 1.5rem 2.5rem 2.5rem 2.5rem;
  gap: 3rem;
  align-items: stretch;
}

.lado-texto {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Caixa de destaque premium */
.caixa-destaque-texto {
  padding: 2.5rem;
  font-size: 1.05rem;
  color: var(--cor-texto-principal);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.card-motivo.tema-laranja .caixa-destaque-texto {
  border-left: 4px solid var(--laranja);
  background-color: rgba(242, 118, 46, 0.03);
}

.card-motivo.tema-amarelo .caixa-destaque-texto {
  border-left: 4px solid var(--amarelo);
  background-color: rgba(242, 192, 41, 0.03);
}

.card-motivo.tema-laranja-claro .caixa-destaque-texto {
  border-left: 4px solid var(--laranja-claro);
  background-color: rgba(242, 151, 39, 0.03);
}

.subtitulo-bonus {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.card-motivo.tema-laranja .subtitulo-bonus {
  color: var(--laranja);
}

.card-motivo.tema-amarelo .subtitulo-bonus {
  color: #c99300;
}

.card-motivo.tema-laranja-claro .subtitulo-bonus {
  color: #d17c15;
}

.titulo-bonus {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--cor-texto-principal);
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.caixa-destaque-texto p.pcard1 {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.2rem;
  text-align: left;
}

/* Lista de Vantagens do Bônus */
.lista-vantagens-bonus {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.lista-vantagens-bonus li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
  text-align: left;
}

.lista-vantagens-bonus i {
  font-size: 1.2rem;
  margin-top: 2px;
}

.card-motivo.tema-laranja .lista-vantagens-bonus i {
  color: var(--laranja);
}

.card-motivo.tema-amarelo .lista-vantagens-bonus i {
  color: var(--amarelo);
}

.card-motivo.tema-laranja-claro .lista-vantagens-bonus i {
  color: var(--laranja-claro);
}

/* Preços / Valores Riscados */
.valores-riscados {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

.valor-riscado {
  font-size: 1.4rem;
  color:var(--cor-texto-principal);
  text-decoration: line-through;
  margin-bottom: 5px;
  text-align: center;
}

.texto-presente {
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--laranja);
  letter-spacing: 1px;
  margin: 10px 0 0 0;
  text-align: center;
}

/* Lado Direito: Carrossel */
.lado-carrossel {
  flex: 1.2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.track-imagens {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.track-imagens:active {
  cursor: grabbing;
}

.track-imagens::-webkit-scrollbar {
  display: none;
}

.slide {
  flex: 0 0 calc(50% - 0.75rem);
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Carrossel de planejamento: 1 screenshot grande por vez */
.track-planejamento {
  scroll-snap-type: x mandatory;
  gap: 0;
}

.track-planejamento .slide {
  flex: 0 0 100%;
  aspect-ratio: unset;
  height: auto;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: none;
}

.track-planejamento .slide img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
}

/* Pontinhos Redondos e Modernos */
.dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  width: 100%;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #d1d1d1;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.ativo {
  width: 24px;
  border-radius: 10px;
}

.card-motivo.tema-laranja .dot.ativo {
  background-color: var(--laranja);
}

.card-motivo.tema-amarelo .dot.ativo {
  background-color: var(--amarelo);
}

.card-motivo.tema-laranja-claro .dot.ativo {
  background-color: var(--laranja-claro);
}

/* AJUSTE MOBILE: Mostra apenas 1 imagem por vez na tela do celular */
@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
    aspect-ratio: 4 / 5;
    scroll-snap-align: center;
  }

  .track-planejamento .slide img {
    max-height: min(75vh, 640px);
  }

  .track-imagens {
    scroll-snap-type: x mandatory;
  }
}

/* AJUSTES PARA CELULAR */
@media (max-width: 900px) {
  .corpo-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 2rem;
    width: 100%;
  }

  .lado-texto,
  .lado-carrossel {
    width: 100%;
    max-width: 100%;
  }

  .cabecalho-card {
    padding: 1.5rem;
  }
  
  .caixa-destaque-texto {
    padding: 1.5rem;
  }
  
  .headline-secao h2,
  .headline-secao .subtitulo-motivos {
    font-size: 2.2rem;
    text-wrap: balance;
  }
  
  .headline-secao h2 {
    margin-bottom: 25px; /* Reduz a separação entre as duas no mobile */
  }
  
  .headline-secao .subtitulo-motivos {
    padding: 0 10px;
  }
}

/* AJUSTES PARA CELULAR */
@media (max-width: 768px) {
  .headline {
    font-size: 1.6rem;
  }
  .video-container,
  .hero-imagem-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
  }

  .btn-cta {
    width: 90%;
    max-width: 350px;
    font-size: 1.1rem;
    padding: 1rem;
    text-wrap: balance;
    text-align: center;
  }

  .selos-confianca {
    gap: 0.5rem;
    flex-wrap: nowrap;
    font-size: 0.75rem;
  }
}

/* ============================================== */
/* === HALL DA FAMA === */
/* ============================================== */

.hall-section {
    padding: 60px 0 80px 0;
    background-color: transparent;
    border-top: none;
    overflow: hidden; 
    font-family: 'Montserrat', sans-serif; 
}

.hall-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hall-section-title {
    font-size: clamp(2rem, 5.5vw, 2.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    text-wrap: balance;
}

.hall-title {
    font-size: clamp(1.3rem, 3.5vw, 1.7rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.35;
    font-family: 'Montserrat', sans-serif;
    text-wrap: balance;
}

.hall-highlight {
    color: var(--amarelo);
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.hall-highlight::after {
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background-color: var(--amarelo);
    opacity: 0.3;
    position: absolute;
    bottom: 2px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.hall-subtitle {
    font-size: 1.15rem;
    color: var(--cor-fundo);
    margin-bottom: 45px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Montserrat', sans-serif;
}

/* Grid de Estatísticas */
.hall-stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hall-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 140px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
}

.hall-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--amarelo);
    background: rgba(255, 255, 255, 0.15);
}

.hall-year {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.hall-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--amarelo);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

.hall-label {
    font-size: 0.8rem;
    color: #ffffff;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

/* Carrossel Infinito */
.hall-carousel-wrapper {
    position: relative;
    width: 100vw; 
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 20px 0;
    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);
}

.hall-track {
    display: flex;
    gap: 20px;
    width: max-content; 
    animation: hallScroll 120s linear infinite;
    padding-left: 20px; 
}


/* Pause na animação ao passar o mouse (APENAS DESKTOP) */
@media (hover: hover) {
    .hall-track:hover {
        animation-play-state: paused;
    }

    .hall-photo-item:hover {
        transform: scale(1.1);
        border-color: var(--amarelo);
        z-index: 10;
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .hall-photo-item:hover img {
        transform: scale(1.05); 
    }
}

/* O toque no mobile via JavaScript (active-focus) funciona em todos os dispositivos */
.hall-photo-item.active-focus {
    transform: scale(1.1);
    border-color: var(--amarelo);
    z-index: 10;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.hall-photo-item {
    position: relative;
    width: 200px; 
    height: 280px; 
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 3px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hall-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}



@keyframes hallScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .hall-section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .hall-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .hall-stats-grid {
        gap: 10px;
    }
    .hall-stat-card {
        min-width: 45%; 
        padding: 10px;
    }
    .hall-number {
        font-size: 1.5rem;
    }
    .hall-photo-item {
        width: 150px;
        height: 210px;
    }
}