/* ==========================================================================
   1. VARIÁVEIS GLOBAIS E RESET (Neuro-cores e Base)
   ========================================================================== */
:root {
    --cor-fundo-topo: #4a90e2; 
    --cor-fundo-base: #1a66cc; 
    --cor-destaque: #FFD700;       
    --cor-texto-claro: #FFFFFF;
    --cor-sucesso: #28a745;        
    --fonte-principal: 'Inter', sans-serif;
}

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

body {
    font-family: var(--fonte-principal);
    background-color: #ffffff; 
    color: #333333;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. LAYOUT PRINCIPAL (BLOCO 1 - Hero Section)
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, var(--cor-fundo-topo) 0%, var(--cor-fundo-base) 100%);
    color: var(--cor-texto-claro);
    min-height: 90vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0 0 0; 
    text-align: center;
    position: relative;
    overflow: visible; 
}

.container {
    width: 95%; 
    max-width: 1400px; 
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    flex: 1;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ==========================================================================
   3. ÁREA DO LOGO E FAIXA DE ALERTA (Sobrancelha)
   ========================================================================== */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInDown 0.8s ease-out;
    margin-top: 0; 
}

.logo-icon {
    width: 169px; 
    height: auto;
    filter: drop-shadow(0px 6px 8px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

/* 🔥 ESTILO DA FAIXA COMPLETA (Neuro-design: Alerta e Dor) */
.eyebrow-banner {
    width: 100%; /* Ocupa a tela inteira de ponta a ponta */
    background-color: #E63946; /* Vermelho/Laranja vibrante para capturar a atenção da amígdala */
    color: #FFFFFF; 
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 1.5rem 0 1rem 0; /* Espaçamento entre a logo e o texto principal */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4); /* Brilho sutil na cor da faixa */
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.eyebrow-icon {
    font-size: 1.2rem;
}

/* ==========================================================================
   4. COPY E GATILHOS DE IDENTIFICAÇÃO
   ========================================================================== */
.hero-content {
    animation: fadeIn 1s ease-out 0.3s both;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto; 
    padding-top: 0.5rem; /* Reduzido pois a faixa já cria o respiro visual */
}

.main-headline {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    max-width: 800px; 
    line-height: 1.3;
}

.main-headline .highlight {
    font-weight: 800;
    color: var(--cor-destaque);
}

.sub-headline {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.pain-points-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    max-width: 850px; 
}

.pain-points-list li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background 0.2s ease;
    cursor: default;
}

.pain-points-list li:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.check-icon {
    color: var(--cor-texto-claro);
    background: var(--cor-sucesso);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

/* ==========================================================================
   5. ÁREA VISUAL E EMOJIS (Imagem colada na base)
   ========================================================================== */
.hero-image-area {
    position: relative;
    margin-top: 0; 
    margin-bottom: 0; 
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    width: 100%;
    animation: slideUp 1s ease-out 0.6s both;
}

.couple-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    z-index: 2;
    position: relative;
    display: block; 
    object-fit: contain;
    vertical-align: bottom; 
    margin-bottom: 0; 
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%); 
    pointer-events: none;
    z-index: 3;
    max-width: 500px; 
}

.icon-box {
    position: absolute;
    background: var(--cor-texto-claro);
    padding: 0.7rem; 
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    font-size: 2.1rem; 
    animation: float 3s ease-in-out infinite alternate;
}

.icon-target { top: 30%; left: -5%; transform: rotate(-10deg); animation-delay: 0s; }
.icon-handshake { top: 15%; right: -5%; transform: rotate(15deg); animation-delay: 1s; }
.icon-rocket { bottom: 25%; right: 5%; transform: rotate(-5deg); animation-delay: 0.5s; }

/* ==========================================================================
   6. BOTÃO CTA (Seta Amarela Integrando as Dobras)
   ========================================================================== */
.cta-button-down {
    position: absolute;
    bottom: -30px; 
    left: 50%;
    transform: translateX(-50%);
    background: var(--cor-destaque);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.4); 
    animation: pulse 2s infinite;
}

.arrow-down {
    color: var(--cor-fundo-base);
    font-weight: 900;
    font-size: 1.8rem;
}

/* ==========================================================================
   7. ANIMAÇÕES GLOBAIS
   ========================================================================== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0% { transform: translateY(0px) rotate(var(--rotation, 0deg)); } 100% { transform: translateY(-12px) rotate(var(--rotation, 0deg)); } }
@keyframes pulse { 
    0% { transform: translateX(-50%) scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6); } 
    70% { transform: translateX(-50%) scale(1.05); box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); } 
    100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); } 
}

/* ==========================================================================
   8. RESPONSIVIDADE (Tablets e Mobile para o Bloco 1)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section { min-height: auto; padding-top: 1rem; padding-bottom: 0; }
    .container { width: 95%; gap: 2rem; }
    .hero-content { margin-top: 2rem; padding-top: 0; }
    .hero-image-area { margin-top: 0; }
    .logo-icon { width: 150px; }
    .main-headline { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    .hero-section { height: auto; min-height: auto; padding-top: 1.5rem; padding-bottom: 0; justify-content: flex-start; }
    .container { width: 95%; gap: 1.2rem; justify-content: flex-start; }
    .logo-icon { width: 110px; }
    .hero-content { margin-top: 0; margin-bottom: 0; padding-top: 0; }
    
    /* Ajuste da Faixa no Mobile */
    .eyebrow-banner { 
        font-size: 0.85rem; 
        padding: 0.5rem 1rem; 
        margin: 1rem 0; 
        letter-spacing: 1px;
    }
    
    .main-headline { font-size: 1.15rem; margin-bottom: 0.5rem; }
    .sub-headline { font-size: 0.9rem; margin-bottom: 0.5rem; }
    .pain-points-list { gap: 0.4rem; }
    .pain-points-list li { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
    
    .hero-image-area { margin-top: 1rem; height: auto; min-height: auto; align-items: flex-end; }
    .couple-img { max-height: 350px; width: 100%; max-width: 100%; }
    .floating-icons { max-width: 100%; left: 0; transform: none; }
    .icon-box { font-size: 1.5rem; padding: 0.5rem; }
    .icon-target { top: 15%; left: 2%; }
    .icon-handshake { top: 5%; right: 2%; }
    .icon-rocket { bottom: 15%; right: 5%; }
    
    .cta-button-down { bottom: -22px; width: 45px; height: 45px; }
    .arrow-down { font-size: 1.4rem; }
}

/* ==========================================================================
   8. BLOCO 2: IDENTIFICAÇÃO (Problem Awareness)
   ========================================================================== */
.identification-section {
    background-color: #eef4fa; 
    padding: 4rem 0 0 0; 
    color: #333333;
    position: relative;
    z-index: 10; 
}

.identification-section .container {
    gap: 0; 
}

.identification-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .identification-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem; 
    }
}

.text-column {
    flex: 1;
    max-width: 600px;
    padding-bottom: 1rem; 
}

.section-title {
    color: var(--cor-fundo-base); 
    font-size: 2rem; 
    font-weight: 800;
    margin-bottom: 1.5rem; 
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem; 
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #222222;
}

.check-square {
    background-color: var(--cor-fundo-base);
    color: var(--cor-texto-claro);
    width: 28px; 
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px; 
    font-weight: 900;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-column {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
}

.organic-shape-bg {
    position: absolute;
    width: 85%;
    height: 95%;
    border: 10px solid var(--cor-destaque); 
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; 
    z-index: 1;
    opacity: 0.8;
    transform: rotate(-10deg);
    transition: all 0.5s ease;
    bottom: 2%; 
}

.secondary-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    vertical-align: bottom;
    margin-bottom: 0;
}

/* 🔥 MÁGICA DO CARD COLADO E VAZANDO */
.cta-banner {
    background-color: var(--cor-fundo-base);
    border-radius: 16px;
    padding: 1.5rem 2rem; 
    
    /* Zera a margem superior para colar 100% na base da imagem */
    margin-top: 0; 
    /* Margem inferior negativa para fazer o card vazar para o Bloco 3 */
    margin-bottom: -3rem; 
    
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 43, 94, 0.2);
    border-bottom: 4px solid var(--cor-destaque); 
    position: relative;
    z-index: 20; 
}

.cta-icon-square {
    background-color: var(--cor-destaque);
    color: var(--cor-fundo-base);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.cta-text {
    color: var(--cor-texto-claro);
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.cta-text strong {
    color: var(--cor-destaque);
    font-weight: 800;
}

/* ==========================================================================
   9. BLOCO 3: EXAUSTÃO E EMPATIA (Conexão Profunda)
   ========================================================================== */
.exhaustion-section {
    background-color: #ffffff; 
    padding: 6rem 0 0 0; 
    position: relative;
    overflow: visible; 
    z-index: 5; 
}

.exhaustion-header {
    text-align: center;
    /* Margem reduzida no desktop para aproximar a imagem */
    margin-bottom: 1rem; 
}

.b3-heading {
    color: var(--cor-fundo-base); 
    font-size: 2.2rem; 
    font-weight: 700;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.2;
    letter-spacing: -1px;
}

.b3-heading .highlight-dark {
    color: #0a2558; 
    font-weight: 900;
}

.b3-subheading {
    color: #555555; 
    font-size: 1.15rem;
    font-weight: 500;
    margin-top: 0.8rem;
    margin-bottom: 0; /* Remove margem extra abaixo do subtítulo */
}

.exhaustion-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; 
    min-height: 400px; 
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 0;
    margin-bottom: 0;
}

.exhausted-img {
    max-height: 400px; 
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* ==========================================================================
   10. BLOCO 4: O PONTO DE VIRADA (A Grande Pergunta)
   ========================================================================== */
.turning-point-section {
    background-color: #f8f9fa; 
    padding: 0 0 5rem 0; 
    position: relative;
    z-index: 10;
}

/* --- Banner Amarelo Principal --- */
.yellow-alert-banner {
    background: linear-gradient(135deg, #FFD700 0%, #F59E0B 100%);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.4);
    max-width: 850px;
    
    /* 🔥 MÁGICA DA SOBREPOSIÇÃO: -5px garante que ele morda a imagem e elimine frestas */
    margin: -5px auto 0 auto; 
    
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.yellow-alert-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
    pointer-events: none;
}

/* --- Textos Superiores --- */
.banner-top-content p {
    color: #000000; 
    font-size: 1.3rem;
    font-weight: 700; 
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.banner-top-content .ask-question {
    font-size: 1.6rem;
    font-weight: 900;
    margin-top: 2.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Divisória Pontilhada --- */
.dotted-divider {
    border: none;
    border-top: 6px dotted rgba(0, 0, 0, 0.3); 
    margin: 2.5rem auto;
    width: 85%;
}

/* --- Caixa Interna Bege (Solução) --- */
.banner-bottom-box {
    background: linear-gradient(180deg, #fffdf5 0%, #fff8d6 100%);
    border-radius: 16px;
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    box-shadow: inset 0 0 20px rgba(245, 158, 11, 0.15), 0 10px 20px rgba(0,0,0,0.05);
    border: 3px dotted #000000; 
    position: relative;
    z-index: 2; 
}

.warning-icon-wrapper {
    margin-bottom: 1rem;
}

.warning-icon {
    font-size: 2.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.banner-bottom-box p {
    color: #333333;
    line-height: 1.4;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.impact-text {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--cor-fundo-base); 
    margin-bottom: 1.5rem;
}

.final-call {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0 !important;
}

.final-call strong {
    color: var(--cor-fundo-base);
    font-weight: 900;
    font-size: 1.4rem;
}

.final-call span {
    color: var(--cor-fundo-base);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* ==========================================================================
   11. RESPONSIVIDADE (Tablets e Mobile para Blocos 3 e 4)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    /* Bloco 3 */
    .exhaustion-section { padding: 5rem 0 0 0; }
    .b3-heading { font-size: 1.8rem; }
    
    /* Bloco 4 */
    .turning-point-section { padding: 0 0 4rem 0; }
    .yellow-alert-banner { padding: 3rem 2rem; width: 95%; margin-top: -5px; }
    .banner-top-content p { font-size: 1.2rem; }
    .impact-text { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    /* Bloco 3 Mobile */
    .exhaustion-section { padding: 4.5rem 0 0 0; } 
    
    /* 🔥 MÁGICA AQUI: Margens zeradas para colar o texto na imagem */
    .exhaustion-header { margin-bottom: 0; } 
    .b3-heading { font-size: 1.5rem; padding: 0 1rem; }
    .b3-subheading { font-size: 0.95rem; padding: 0 1rem; margin-top: 0.3rem; margin-bottom: 0; }
    
    .exhaustion-content {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        /* 🔥 MÁGICA AQUI: Margem superior zerada */
        margin-top: 0; 
        padding: 0; 
        margin-bottom: 0;
    }
    
    .exhausted-img {
        max-height: 420px; 
        width: 100%;
        max-width: 350px;
        /* Garante que não haja espaço embaixo da imagem no mobile */
        margin: 0; 
        display: block;
    }
    
    /* Bloco 4 Mobile */
    .turning-point-section { padding: 0 0 3rem 0; }
    .yellow-alert-banner {
        padding: 2rem 1.2rem;
        border-radius: 20px;
        width: 95%;
        /* Mantém a sobreposição segura no mobile */
        margin-top: -5px; 
    }
    .banner-top-content p {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }
    .banner-top-content .ask-question {
        font-size: 1.3rem;
        margin-top: 1.8rem;
    }
    .dotted-divider {
        margin: 2rem auto;
        width: 95%;
        border-top-width: 4px;
    }
    .banner-bottom-box {
        padding: 1.5rem 1.2rem 2rem 1.2rem;
    }
    .warning-icon {
        font-size: 2rem;
    }
    .highlight-text {
        font-size: 1.15rem;
    }
    .impact-text {
        font-size: 1.35rem;
        margin-bottom: 1.2rem;
    }
    .final-call {
        font-size: 1.05rem;
    }
    .final-call strong {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   12. BLOCO 5: A METODOLOGIA (Neurodesign + Efeitos Cinematográficos)
   ========================================================================== */

.steps-section {
    background-color: #ffffff;
    padding: 5rem 0;
    color: #333333;
    position: relative;
    /* overflow: hidden removido para permitir que a seta 3D sobreponha o bloco anterior */
}

/* 🔥 ESTILO DO QUADRADO 3D ANIMADO (Transição de Blocos) */
.arrow-3d-wrapper {
    position: absolute;
    top: -35px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 99; /* Z-index alto para garantir que fique por cima de tudo */
}

.arrow-3d {
    width: 70px;
    height: 70px;
    background-color: var(--cor-fundo-base, #0a3d82);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 0 #06285c, 0 15px 20px rgba(0,0,0,0.2);
    animation: bounce3d 2s infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow-3d:hover {
    animation-play-state: paused;
    transform: translateX(-50%) translateY(4px);
    box-shadow: 0 4px 0 #06285c, 0 8px 15px rgba(0,0,0,0.3);
}

.arrow-3d .arrow-icon {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
}

@keyframes bounce3d {
    0%, 100% { transform: translateY(0); box-shadow: 0 8px 0 #06285c, 0 15px 20px rgba(0,0,0,0.2); }
    50% { transform: translateY(8px); box-shadow: 0 0px 0 #06285c, 0 5px 10px rgba(0,0,0,0.3); }
}

/* --- Cabeçalho da Seção --- */
.steps-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.steps-main-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #222222;
    line-height: 1.3;
}

.steps-main-title strong {
    font-weight: 900;
    color: var(--cor-fundo-base, #0a3d82);
}

/* --- Wrappers e Fundos --- */
.step-wrapper {
    width: 100%;
    padding: 4rem 0; 
}

.bg-alt {
    background-color: #f4f9ff; 
    border-top: 1px solid #eef4fa;
    border-bottom: 1px solid #eef4fa;
}

/* --- Layout Flexbox (Desktop) --- */
.step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* Inverte a ordem no desktop para o efeito Ziguezague */
.reverse-row {
    flex-direction: row-reverse;
}

.step-image-col, .step-text-col {
    flex: 1;
    display: flex;
}

.step-image-col {
    justify-content: center;
}

.step-text-col {
    flex-direction: column;
    align-items: flex-start;
}

/* --- Imagens com Tratamento Cinematográfico --- */
.step-image-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
    z-index: 1;
}

/* Brilho difuso atrás da imagem para dar profundidade de campo */
.step-image-wrapper::before {
    content: '';
    position: absolute;
    top: 10%; left: 10%; right: 10%; bottom: 10%;
    background: var(--cor-fundo-base, #0a3d82);
    filter: blur(45px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.step-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 8px solid #ffffff; 
    box-shadow: 0 20px 40px rgba(0, 43, 94, 0.12);
    object-fit: cover;
    filter: contrast(108%) brightness(102%) saturate(112%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease, filter 0.5s ease;
}

.bg-alt .step-img {
    border-color: #ffffff;
}

.step-image-wrapper:hover .step-img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 50px rgba(0, 43, 94, 0.2);
    filter: contrast(112%) brightness(105%) saturate(115%);
}

/* Ícones Flutuantes */
.floating-icon {
    position: absolute;
    background: #ffffff;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    animation: floatBubble 3.5s ease-in-out infinite alternate;
    z-index: 5;
}

.icon-tr { top: -20px; right: -20px; }
.icon-tl { top: -20px; left: -20px; }
.icon-br { bottom: -20px; right: -20px; }

@keyframes floatBubble {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(3deg); }
}

/* --- Textos e Neuro-tipografia --- */
.step-badge {
    background-color: var(--cor-fundo-base, #0a3d82);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(10, 61, 130, 0.2);
}

.step-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.step-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666666;
    display: block;
    margin-top: 0.3rem;
}

/* 🔥 Descrição de Alto Impacto (Foco Visual Aumentado) */
.step-description {
    font-size: 1.3rem; /* Fonte maior para mais impacto */
    line-height: 1.6;
    color: #222222; /* Texto mais escuro */
    font-weight: 500;
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-left: 6px solid var(--cor-destaque, #d97706); /* Borda mais grossa */
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.1) 0%, rgba(255,255,255,0) 100%);
    border-radius: 0 16px 16px 0;
    box-shadow: 4px 4px 15px rgba(0,0,0,0.04); /* Sombra sutil estilo card */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-alt .step-description {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.1) 0%, rgba(244, 249, 255, 0) 100%);
}

/* Efeito de interatividade na frase */
.step-description:hover {
    transform: translateX(5px);
    box-shadow: 6px 6px 20px rgba(0,0,0,0.08);
}

/* Palavras-chave com fundo estilo marca-texto */
.step-description strong {
    color: var(--cor-fundo-base, #0a3d82); 
    font-weight: 900;
    background-color: rgba(10, 61, 130, 0.06); 
    padding: 0.1rem 0.4rem;
    border-radius: 6px;
}

/* --- Banner de Conclusão --- */
.matrix-conclusion-banner {
    background-color: var(--cor-fundo-base, #0a3d82);
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 4rem;
    box-shadow: 0 20px 40px rgba(0, 43, 94, 0.25);
    border-bottom: 5px solid var(--cor-destaque, #d97706);
    position: relative;
    overflow: hidden;
}

.matrix-conclusion-banner::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: shine 6s infinite;
}

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

.matrix-conclusion-banner p {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
}

.matrix-conclusion-banner strong {
    color: var(--cor-destaque, #d97706);
    font-weight: 900;
    font-size: 1.8rem;
}

/* ==========================================================================
   13. RESPONSIVIDADE TOTAL (Mobile First Adaptado)
   ========================================================================== */

/* Tablets (Telas médias) */
@media (max-width: 991px) {
    .step-row, .reverse-row {
        flex-direction: column;
        gap: 3rem;
    }
    
    .step-image-col { 
        order: 1; /* Força a imagem para cima SEMPRE */
        width: 100%; 
    }
    
    .step-text-col { 
        order: 2; /* Força o texto para baixo SEMPRE */
        width: 100%; 
        padding: 0 1rem; 
        align-items: center; 
        text-align: center; 
    }
    
    .step-description {
        text-align: left; 
        width: 100%;
        max-width: 600px;
    }
}

/* Smartphones (Telas pequenas) */
@media (max-width: 767px) {
    .steps-section { padding: 4rem 0 3rem 0; }
    
    .arrow-3d { width: 60px; height: 60px; }
    .arrow-3d .arrow-icon { font-size: 1.8rem; }
    .arrow-3d-wrapper { top: -30px; }
    
    .steps-header { margin-bottom: 2.5rem; }
    .steps-main-title { font-size: 1.6rem; padding: 0 1rem; }
    
    .step-wrapper { padding: 2.5rem 0; }
    .step-row, .reverse-row { gap: 2rem; }
    
    .step-img { border-width: 5px; border-radius: 16px; }
    .floating-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .icon-tr { top: -15px; right: -10px; }
    .icon-tl { top: -15px; left: -10px; }
    .icon-br { bottom: -15px; right: -10px; }
    
    .step-title { font-size: 1.6rem; }
    .step-subtitle { font-size: 1.05rem; }
    
    .step-description { 
        font-size: 1.15rem; 
        padding-left: 1.2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
        border-left-width: 5px;
    }
    
    .matrix-conclusion-banner {
        margin-top: 2.5rem;
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    .matrix-conclusion-banner p { font-size: 1.2rem; }
    .matrix-conclusion-banner strong { font-size: 1.4rem; display: block; margin-top: 0.5rem; }
}

/* ==========================================================================
   14. BLOCO 6: BENEFÍCIOS E TRANSFORMAÇÃO (Visão de Futuro)
   ========================================================================== */
.benefits-section {
    /* Gradiente azul profundo que transmite autoridade, confiança e segurança */
    background: linear-gradient(180deg, #2a75d3 0%, #1a5bb8 100%);
    padding: 6rem 0;
    color: #ffffff;
}

.benefits-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Sombra sutil para destacar o texto branco */
}

/* Grid para organizar os cards em 2 colunas */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 950px;
    margin: 0 auto;
}

/* Estilo dos Cards Brancos */
.benefit-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

/* Efeito Hover (Neuro-design: Interatividade tátil) */
.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Círculo do Ícone de Check */
.benefit-icon-wrapper {
    background-color: #e8f5e9; /* Fundo verde bem claro e suave */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check {
    color: #28a745; /* Verde vibrante de confirmação */
    font-size: 1.4rem;
    font-weight: 900;
}

.benefit-text {
    color: #333333;
    font-size: 1.15rem;
    font-weight: 700; /* Texto forte para dar peso aos benefícios */
    margin: 0;
    line-height: 1.3;
}

/* ==========================================================================
   15. RESPONSIVIDADE (Bloco 6)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .benefits-section { padding: 5rem 0; }
    .benefits-title { font-size: 1.8rem; margin-bottom: 3rem; }
    .benefits-grid { gap: 1.2rem; padding: 0 1rem; }
}

@media (max-width: 767px) {
    .benefits-section { padding: 4rem 0; }
    .benefits-title { 
        font-size: 1.5rem; 
        margin-bottom: 2.5rem; 
        padding: 0 1rem;
    }
    
    .benefits-grid { 
        /* MÁGICA MOBILE: Transforma as 2 colunas em 1 coluna empilhada */
        grid-template-columns: 1fr; 
        gap: 1rem; 
        padding: 0 1.2rem;
    }
    
    .benefit-card {
        padding: 1.2rem;
        border-radius: 12px;
        gap: 1rem;
    }
    
    .benefit-icon-wrapper {
        width: 38px;
        height: 38px;
    }
    
    .benefit-check {
        font-size: 1.2rem;
    }
    
    .benefit-text {
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   16. BLOCO 7: BÔNUS E EMPILHAMENTO DE VALOR (Z-Pattern Contínuo)
   ========================================================================== */
.bonus-section {
    background-color: #ffffff;
    padding: 5rem 0 0 0; 
    position: relative;
}

.arrow-down-circle {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    border: 3px solid var(--cor-destaque);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.arrow-down-circle .arrow-icon {
    color: var(--cor-destaque);
    font-size: 1.5rem;
    font-weight: 900;
}

.bonus-header {
    text-align: center;
    margin-bottom: 2rem;
}

.bonus-main-title {
    color: var(--cor-fundo-base);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.bonus-main-title strong {
    font-weight: 900;
}

/* --- WRAPPERS DE TELA CHEIA (Z-Pattern) --- */
.bonus-wrapper {
    width: 100%;
    padding: 4.5rem 0; /* Espaçamento vertical de cada bloco */
}

.bonus-wrapper.bg-alt {
    background-color: #f8f9fa; /* Cinza super claro / Gelo */
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* --- LINHA DO BÔNUS INDIVIDUAL --- */
.bonus-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-image-col {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bonus-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 320px;
}

/* O Círculo Amarelo vazado atrás da imagem */
.yellow-circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 115%;
    aspect-ratio: 1/1;
    border: 12px solid var(--cor-destaque);
    border-radius: 50%;
    z-index: 1;
}

.bonus-mockup-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    transform: rotate(-4deg); 
    transition: transform 0.3s ease;
}

/* Micro-interação: A imagem levanta e desentorta ao passar o mouse */
.bonus-row:hover .bonus-mockup-img {
    transform: rotate(0deg) scale(1.05);
}

.bonus-text-col {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Tipografia exclusiva da introdução do Kit */
.bonus-intro-subtitle {
    font-size: 2.2rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.bonus-intro-subtitle .text-yellow {
    color: #eab308; 
    font-weight: 600;
}

.bonus-intro-subtitle .text-orange {
    color: #9a3412; 
    font-weight: 900;
}

/* Tipografia dos Bônus */
.bonus-card-header {
    background-color: var(--cor-destaque);
    color: var(--cor-fundo-base);
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.bonus-subtitle {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--cor-fundo-base);
    font-weight: 800;
}

.bonus-desc {
    color: #4b5563;
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

/* Caixa de Valor Ancorado */
.bonus-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666666;
    background: #ffffff;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.bonus-value s {
    color: #999999;
    font-weight: 400;
}

.free-text {
    color: #28a745; 
    font-weight: 900;
    margin-left: 0.5rem;
    font-size: 1.3rem;
}

/* ==========================================================================
   17. RESPONSIVIDADE (Bloco 7)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .bonus-row { gap: 3rem; padding: 0 2rem; }
    .bonus-intro-subtitle { font-size: 1.8rem; }
    .bonus-subtitle { font-size: 1.6rem; }
}

@media (max-width: 767px) {
    .bonus-section { padding: 4rem 0 0 0; }
    .bonus-main-title { font-size: 1.6rem; padding: 0 1rem; margin-bottom: 2rem; }
    
    .bonus-wrapper { padding: 3rem 0; }
    
    .bonus-row, .reverse-row {
        flex-direction: column;
        gap: 2.5rem;
        text-align: center;
    }
    
    /* No mobile, a imagem sempre vem primeiro */
    .bonus-image-col { order: 1; width: 100%; }
    .bonus-text-col { order: 2; align-items: center; padding: 0 1.5rem; }
    
    /* Ajuste do círculo amarelo exclusivo para o mobile */
    .yellow-circle-bg {
        width: 90%;
        border-width: 8px;
    }
    
    .bonus-intro-subtitle { font-size: 1.6rem; }
    .bonus-subtitle { font-size: 1.6rem; }
    .bonus-desc { font-size: 1.05rem; }
}

/* --- Ícones Flutuantes Animados (Reutilizados do Bloco 5) --- */
.floating-icon {
    position: absolute;
    background: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    animation: floatBubble 3s ease-in-out infinite alternate;
    z-index: 10;
}

.icon-tr { top: -15px; right: -15px; }
.icon-tl { top: -15px; left: -15px; }
.icon-br { bottom: -15px; right: -15px; }

@media (max-width: 767px) {
    .floating-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .icon-tr { top: -10px; right: -10px; }
    .icon-tl { top: -10px; left: -10px; }
    .icon-br { bottom: -10px; right: -10px; }
}

/* ==========================================================================
   18. FAIXA DE TRANSIÇÃO (BÔNUS)
   ========================================================================== */
.bonus-transition-banner {
    /* Gradiente azul profundo, conectando visualmente com o Bloco 6 */
    background: linear-gradient(180deg, #2a75d3 0%, #1a5bb8 100%);
    padding: 3rem 0;
    text-align: center;
    width: 100%;
    box-shadow: inset 0 5px 15px rgba(0,0,0,0.1);
}

.transition-text {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 767px) {
    .bonus-transition-banner {
        padding: 2.5rem 0;
    }
    .transition-text {
        font-size: 1.4rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
}

/* ==========================================================================
   19. BLOCO 8: OFERTA E RECAPITULATIVO (Apenas Ancoragem)
   ========================================================================== */
.offer-section {
    background-color: #f4f7f9; 
    padding: 6rem 0 5rem 0;
    position: relative;
}

/* Ícone de seta no fundo, acima do card */
.offer-arrow-top {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0a2558; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.offer-arrow-top .arrow-icon {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 900;
}

/* --- Card Principal Simplificado --- */
.offer-card-simple {
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 750px;
    margin: 0 auto;
    padding: 3.5rem 0 0 0; 
    position: relative;
    overflow: hidden; 
}

.offer-header-simple {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 2rem;
}

.offer-title-simple {
    font-size: 2.2rem;
    font-weight: 900;
    color: #111111;
    margin-bottom: 0.3rem;
}

.offer-subtitle-simple {
    font-size: 1.1rem;
    font-weight: 800;
    color: #333333;
    margin-bottom: 0.3rem;
}

.offer-main-product-simple {
    font-size: 1.5rem;
    font-weight: 900;
    color: #111111;
}

/* --- Lista de Itens --- */
.offer-items-simple {
    padding: 0 3rem;
    margin-bottom: 2rem;
}

.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.offer-row .item-name {
    font-size: 1.1rem;
    color: #111111;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.offer-row .item-icon {
    color: #eab308; 
    font-size: 1.1rem;
}

.offer-row .item-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e11d48; 
    text-decoration: line-through; 
    opacity: 0.8;
}

/* Barra Azul na base do card */
.offer-bottom-bar {
    background-color: #0a2558; 
    height: 15px;
    width: 100%;
}

/* --- Total e Ancoragem (Fora do Card) --- */
.offer-total-simple {
    text-align: center;
    margin-top: 3rem; 
    margin-bottom: 0.5rem; 
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.total-text {
    font-size: 1.1rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.total-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #e11d48; 
    text-decoration: line-through; 
    text-decoration-thickness: 3px;
    opacity: 0.6; 
}

/* --- Texto de Revelação (Fora do Card) --- */
.offer-reveal-simple {
    text-align: center;
    font-size: 1.25rem;
    color: #444444;
    line-height: 1.4;
    padding: 0 1rem;
    margin-bottom: 0; /* Removido o espaçamento inferior, já que é o fim do bloco */
}

.offer-reveal-simple strong {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--cor-fundo-base); 
}

/* ==========================================================================
   20. RESPONSIVIDADE (Bloco 8)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .offer-card-simple { width: 95%; }
    .offer-items-simple { padding: 0 2rem; }
}

@media (max-width: 767px) {
    .offer-section { padding: 4rem 0 3rem 0; }
    .offer-card-simple { width: 95%; padding-top: 2.5rem; }
    
    .offer-title-simple { font-size: 1.8rem; }
    .offer-subtitle-simple { font-size: 0.95rem; }
    .offer-main-product-simple { font-size: 1.2rem; }
    
    .offer-items-simple { padding: 0 1.2rem; }
    
    .offer-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        padding: 0.8rem 0;
        border-bottom: 1px dashed #e5e7eb; 
    }
    
    .offer-row:last-child { border-bottom: none; }
    .offer-row .item-price { align-self: flex-end; }
    
    .offer-total-simple { margin-top: 2.5rem; }
    .total-text { font-size: 1rem; }
    .total-price { font-size: 2rem; }
    
    .offer-reveal-simple { 
        font-size: 1.15rem; 
        margin-bottom: 0; 
    }
}

/* ==========================================================================
   22. BLOCO 9: OFERTA FINAL / CHECKOUT (Espaços Reduzidos)
   ========================================================================== */
.final-offer-section {
    /* Gradiente azul profundo idêntico à imagem de referência */
    background: linear-gradient(135deg, #0a2558 0%, #1a5bb8 100%);
    padding: 4rem 0; /* Reduzido de 6rem para 4rem */
    color: #ffffff;
    overflow: hidden;
}

.final-offer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem; /* Reduzido de 4rem para aproximar o mockup do texto */
}

/* --- Coluna do Mockup --- */
.final-offer-mockup {
    flex: 1.2;
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-img-large {
    width: 100%;
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); 
    transform: scale(1.05); 
}

/* --- Coluna de Checkout --- */
.final-offer-checkout {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Tipografia do Preço */
.price-installment {
    display: flex;
    align-items: baseline;
    line-height: 1;
    margin-bottom: 0.2rem; /* Margem quase zerada para colar no texto de baixo */
    color: #ffffff;
}

.price-installment .times {
    font-size: 3.5rem;
    font-weight: 900;
    margin-right: 0.5rem;
}

.price-installment .currency {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 0.3rem;
}

.price-installment .value {
    font-size: 6rem; 
    font-weight: 900;
    letter-spacing: -2px;
}

.price-cash {
    font-size: 1.5rem;
    font-weight: 500;
    color: #e2e8f0; 
    margin-bottom: 1.5rem; /* Reduzido de 2.5rem */
}

/* Badges e Avisos */
.lifetime-access {
    background-color: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem; /* Reduzido para colar no próximo texto */
    color: #fbbf24; 
}

.one-time-payment {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 1.5rem; /* Reduzido de 2.5rem para colar no botão */
}

/* Botão Verde Gigante */
.btn-buy-green {
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.2rem 2rem; /* Levemente mais fino */
    border-radius: 12px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4), inset 0 2px 0 rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    border: none;
    display: block;
}

.btn-buy-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(22, 163, 74, 0.5), inset 0 2px 0 rgba(255,255,255,0.4);
    color: #ffffff;
}

.secure-checkout-white {
    margin-top: 1rem; /* Reduzido de 1.5rem */
    font-size: 1rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

/* ==========================================================================
   23. RESPONSIVIDADE (Bloco 9)
   ========================================================================== */
@media (max-width: 991px) {
    .final-offer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem; /* Reduzido no tablet/mobile também */
    }
    
    .final-offer-checkout {
        align-items: center;
        width: 100%;
    }
    
    .price-installment {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .final-offer-section { padding: 3rem 0; } /* Padding mobile mais enxuto */
    
    .mockup-img-large { 
        transform: scale(1); 
        max-width: 100%; 
    }
    
    .price-installment .times { font-size: 2.5rem; }
    .price-installment .currency { font-size: 1.5rem; }
    .price-installment .value { font-size: 4.5rem; }
    
    .price-cash { font-size: 1.2rem; margin-bottom: 1.2rem; }
    
    .one-time-payment { margin-bottom: 1.2rem; }
    
    .btn-buy-green { 
        font-size: 1.3rem; 
        padding: 1rem; 
    }
}

/* ==========================================================================
   BOTÃO DE COMPRA 3D COM BRILHO CINTILANTE (SHIMMER EFFECT)
   ========================================================================== */
.btn-buy-green {
    position: relative;
    overflow: hidden; /* Mantém o brilho dentro do botão */
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    width: 100%;
    text-align: center;
    border: none;
    display: block;
    cursor: pointer;
    
    /* Efeito 3D Base: Borda inferior escura (14532d) + Sombra projetada + Brilho interno no topo */
    box-shadow: 
        0 6px 0 #14532d, 
        0 15px 25px rgba(22, 163, 74, 0.4), 
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    
    transition: all 0.2s ease-in-out;
}

/* O Brilho Cintilante (Shimmer) varrendo o botão */
.btn-buy-green::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: shimmerSweep 3s infinite; /* O brilho passa a cada 3 segundos */
}

/* Reação ao passar o mouse (Hover) */
.btn-buy-green:hover {
    transform: translateY(-2px); /* Levanta levemente */
    /* Aumenta a sombra projetada e a borda 3D para dar sensação de flutuação */
    box-shadow: 
        0 8px 0 #14532d, 
        0 20px 30px rgba(22, 163, 74, 0.5), 
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* Reação ao clicar (Active) - O botão "afunda" */
.btn-buy-green:active {
    transform: translateY(4px); /* Empurra o botão para baixo */
    /* Reduz a borda 3D e a sombra para simular o clique físico */
    box-shadow: 
        0 2px 0 #14532d, 
        0 5px 10px rgba(22, 163, 74, 0.4), 
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Animação do Brilho */
@keyframes shimmerSweep {
    0% {
        left: -150%;
    }
    20% {
        left: 200%;
    }
    100% {
        left: 200%; /* Pausa para não ficar piscando freneticamente e irritar o usuário */
    }
}

/* Responsividade do Botão */
@media (max-width: 767px) {
    .btn-buy-green { 
        font-size: 1.3rem; 
        padding: 1rem; 
        /* Ajuste sutil do 3D para mobile */
        box-shadow: 
            0 5px 0 #14532d, 
            0 10px 20px rgba(22, 163, 74, 0.4), 
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
    .btn-buy-green:hover {
        transform: translateY(-1px);
        box-shadow: 
            0 6px 0 #14532d, 
            0 15px 25px rgba(22, 163, 74, 0.5), 
            inset 0 2px 0 rgba(255, 255, 255, 0.4);
    }
    .btn-buy-green:active {
        transform: translateY(3px);
        box-shadow: 
            0 2px 0 #14532d, 
            0 5px 10px rgba(22, 163, 74, 0.4), 
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
    }
}

/* ==========================================================================
   BOTÃO 3D OURO (Transição Bloco 8 para Bloco 9)
   ========================================================================== */
.transition-gold-btn-wrapper {
    position: absolute;
    bottom: -30px; /* Posiciona exatamente na metade da linha divisória */
    left: 50%;
    transform: translateX(-50%);
    z-index: 30; /* Garante que fique por cima do Bloco 9 */
}

.btn-gold-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* Gradiente Ouro Vibrante */
    background: linear-gradient(180deg, #fde047 0%, #d97706 100%); 
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); /* Dá profundidade à seta */
    
    /* Efeito 3D Ouro: Base escura + Sombra projetada + Brilho interno */
    box-shadow: 
        0 6px 0 #92400e, 
        0 15px 25px rgba(217, 119, 6, 0.4), 
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
    
    transition: all 0.2s ease-in-out;
    animation: bounceGold 2.5s infinite; /* Animação para chamar o clique */
}

/* Reação ao passar o mouse */
.btn-gold-3d:hover {
    color: #ffffff;
    /* Aumenta o brilho e a sombra para dar sensação de foco */
    box-shadow: 
        0 6px 0 #92400e, 
        0 20px 30px rgba(217, 119, 6, 0.6), 
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

/* Reação ao clicar (O botão afunda) */
.btn-gold-3d:active {
    transform: translateY(4px); /* Empurra para baixo */
    /* Engole a base 3D */
    box-shadow: 
        0 2px 0 #92400e, 
        0 5px 10px rgba(217, 119, 6, 0.4), 
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    animation: none; /* Para a animação ao clicar */
}

/* Animação de Pulo (Bounce) suave */
@keyframes bounceGold {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsividade */
@media (max-width: 767px) {
    .transition-gold-btn-wrapper {
        bottom: -25px;
    }
    .btn-gold-3d {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        box-shadow: 
            0 5px 0 #92400e, 
            0 10px 20px rgba(217, 119, 6, 0.4), 
            inset 0 2px 0 rgba(255, 255, 255, 0.6);
    }
    .btn-gold-3d:active {
        transform: translateY(3px);
        box-shadow: 
            0 2px 0 #92400e, 
            0 5px 10px rgba(217, 119, 6, 0.4), 
            inset 0 2px 0 rgba(255, 255, 255, 0.5);
    }
}

/* ==========================================================================
   24. BLOCO 9.1: COMO ACESSAR (Onboarding Ultra Compacto)
   ========================================================================== */
.onboarding-section {
    background-color: #ffffff;
    padding: 3rem 0; 
    text-align: center;
}

.onboarding-header {
    margin-bottom: 2.5rem; 
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.onboarding-title {
    font-size: 2rem; 
    font-weight: 800;
    color: #111111;
    line-height: 1.3;
}

.highlight-yellow {
    background-color: #fde047; 
    padding: 0.2rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    color: #111111;
    transform: rotate(-1deg); 
}

.onboarding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; 
    max-width: 1000px;
    margin: 0 auto;
}

.onboarding-step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.onboarding-icon-wrapper {
    width: 65px; 
    height: 65px; 
    background-color: #f0f5fa; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem; 
    transition: transform 0.3s ease;
}

.onboarding-step:hover .onboarding-icon-wrapper {
    transform: translateY(-4px);
    background-color: #e1ecf8;
}

.onboarding-icon {
    width: 32px; 
    height: 32px; 
    color: var(--cor-destaque); 
}

.onboarding-step-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #111111;
    margin-bottom: 0.5rem; 
    letter-spacing: 0.5px;
}

.onboarding-step-desc {
    font-size: 1rem;
    color: #555555;
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   25. RESPONSIVIDADE (Bloco 9.1 - Foco Mobile)
   ========================================================================== */
@media (max-width: 991px) {
    .onboarding-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .onboarding-title { font-size: 1.8rem; }
}

@media (max-width: 767px) {
    .onboarding-section { 
        padding: 1.5rem 0; /* Padding super reduzido */
    } 
    
    .onboarding-title { 
        font-size: 1.3rem; /* Fonte menor para ocupar menos linhas */
        padding: 0 1rem;
        line-height: 1.2;
    }
    
    .onboarding-header {
        margin-bottom: 1.5rem; /* Menos espaço abaixo do título */
    }
    
    .highlight-yellow {
        padding: 0.1rem 0.4rem;
    }
    
    .onboarding-grid {
        grid-template-columns: 1fr; 
        gap: 1rem; /* Itens bem colados uns nos outros */
    }
    
    /* 🔥 MÁGICA DO MOBILE AQUI: Layout Horizontal */
    .onboarding-step {
        padding: 0 1rem;
        flex-direction: row; /* Coloca ícone e texto lado a lado */
        text-align: left; /* Alinha texto à esquerda */
        align-items: flex-start;
        gap: 1rem; /* Espaço entre ícone e texto */
    }
    
    .onboarding-icon-wrapper {
        width: 45px; /* Ícone bem menor */
        height: 45px;
        margin-bottom: 0; /* Remove margem inferior */
        flex-shrink: 0; /* Impede que o ícone seja esmagado pelo texto */
    }
    
    .onboarding-icon {
        width: 22px;
        height: 22px;
    }
    
    .onboarding-step-text {
        display: flex;
        flex-direction: column;
    }
    
    .onboarding-step-title {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
    
    .onboarding-step-desc {
        font-size: 0.85rem; /* Texto menor e direto */
        line-height: 1.3;
    }
}

/* ==========================================================================
   26. BLOCO 10: AUTORIDADE / QUEM SOU EU (Design Clean Premium)
   ========================================================================== */
.authority {
    background-color: #0a1128; /* Azul marinho profundo e sólido idêntico à imagem */
    padding: 6rem 0 0 0; /* Base zerada para a foto colar no fundo, se necessário */
    color: #ffffff;
    overflow: hidden;
}

.authority .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.authority__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

/* --- Coluna da Imagem --- */
.authority__image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Alinha a foto na base */
    min-height: 500px;
}

/* O círculo azul fino e elegante atrás da foto */
.authority__circle-line {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 2px solid #0ea5e9; /* Azul elétrico vibrante */
    z-index: 1;
    opacity: 0.8;
}

.authority__photo {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: cover;
    /* Sombra sutil apenas para separar a pessoa do fundo escuro */
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

/* --- Coluna de Texto --- */
.authority__text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 6rem; /* Compensa o padding zerado da section */
}

/* Nome em Amarelo Vibrante */
.authority__name {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 900;
    color: #fde047; /* Amarelo ouro idêntico à referência */
    line-height: 1.1;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
}

.authority__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #cbd5e1;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.authority__subtitle strong {
    font-weight: 800;
    color: #ffffff;
}

/* Textos da Bio */
.authority__bio p {
    font-size: 1.15rem;
    color: #e2e8f0; /* Branco levemente acinzentado para leitura confortável */
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.authority__bio p strong {
    color: #ffffff;
    font-weight: 700;
}

/* O círculo decorativo atrás da foto */
.authority__circle-line {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px; /* Reduzido (antes era 420px) */
    height: 340px; /* Reduzido (antes era 420px) */
    border-radius: 50%;
    border: 8px solid #fde047; /* Linha mais grossa e agora em amarelo ouro */
    z-index: 1;
    opacity: 0.8;
}

/* Nome em Amarelo Vibrante */
.authority__name {
    font-size: clamp(2rem, 3vw, 3.2rem); /* Tamanho da fonte reduzido */
    font-weight: 900;
    color: #fde047; /* Amarelo ouro */
    line-height: 1.1;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
}

/* ==========================================================================
   27. RESPONSIVIDADE (Bloco 10 - Foto cortada na base)
   ========================================================================== */
@media (max-width: 991px) {
    .authority__content {
        flex-direction: column; /* Empilha os elementos */
        text-align: center;
        gap: 0; /* Removemos o gap para controlar o espaço pelo padding */
    }
    
    .authority__text {
        order: 1; /* O texto sobe e aparece primeiro */
        align-items: center;
        padding-bottom: 3rem; /* Espaço entre o texto e a foto que vem abaixo */
    }
    
    .authority__image {
        order: 2; /* A foto desce e fica por último */
        width: 100%;
        min-height: auto;
        display: flex;
        justify-content: center;
        align-items: flex-end; /* Garante que a foto cole na base */
    }
    
    .authority__bio p {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .authority { 
        padding: 4rem 0 0 0; /* Reduz o respiro no topo para mobile */
    }
    
    .authority__circle-line {
        width: 280px; /* Círculo ajustado para mobile */
        height: 280px;
        top: 55%; /* Desce um pouco o círculo para alinhar com o rosto */
        border-width: 6px;
    }
    
    .authority__photo {
        max-width: 320px;
        display: block;
        margin-bottom: -5px; /* Puxa a foto levemente para baixo para garantir o corte perfeito na base */
    }
    
    .authority__name { 
        font-size: 2.2rem; 
    }
    
    .authority__subtitle { 
        font-size: 1.1rem; 
        margin-bottom: 1.5rem; 
    }
    
    .authority__bio p { 
        font-size: 1.05rem; 
    }
    
    .authority__text { 
        padding-bottom: 2rem; /* Menos espaço entre texto e foto no celular */
    }
}

/* ==========================================================================
   28. BLOCO 11: DECISÃO / A BIFURCAÇÃO
   ========================================================================== */
.decision-section {
    background-color: #f8fafc; /* Fundo cinza super claro */
    padding: 6rem 0;
    position: relative;
    /* OVERFLOW HIDDEN REMOVIDO DAQUI para o botão de ouro poder vazar para baixo */
}

.decision-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.decision-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #111111;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.decision-subtitle {
    font-size: 1.25rem;
    color: #555555;
    line-height: 1.5;
    font-weight: 500;
}

/* Grid dos Cards */
.decision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
    position: relative; 
}

/* 🔥 Container exclusivo para o "OU" (Evita scroll horizontal sem cortar o botão) */
.watermark-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* O corte acontece só aqui dentro agora */
    pointer-events: none;
    z-index: 10; /* Fica por cima dos cards */
}

/* O "OU" Gigante e Transparente */
.decision-or-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14rem; 
    font-weight: 900;
    color: #94a3b8; 
    opacity: 0.15; 
    line-height: 1;
    letter-spacing: -5px;
}

/* Base dos Cards */
.decision-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    z-index: 1; 
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
}

/* Lista de Itens */
.decision-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1; 
}

.decision-list li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.8rem;
}

.decision-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Footer dos Cards */
.card-footer {
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    line-height: 1.5;
}

.card-footer strong {
    font-weight: 800;
    display: block;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* --- ESTILOS ESPECÍFICOS: CARD RISCO (Opção 1) --- */
.card-risk {
    border: 2px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    opacity: 0.95; 
}

.badge-risk {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.card-risk .card-title { color: #475569; }
.list-risk li { color: #64748b; }
.list-risk li::before { background-color: #ef4444; } 

.footer-risk {
    background-color: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* --- ESTILOS ESPECÍFICOS: CARD SOLUÇÃO (Opção 2 - Destaque) --- */
.card-solution {
    border: 2px solid #22c55e;
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
    transform: scale(1.03); 
    z-index: 2; 
}

.badge-solution {
    background-color: #22c55e;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(34, 197, 94, 0.3);
}

.card-solution .card-title { color: #111111; }
.list-solution li { color: #333333; font-weight: 500; }
.list-solution li::before { background-color: #22c55e; } 

.footer-solution {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 4px solid #22c55e;
}

/* ==========================================================================
   Conclusão Final (Direcionamento Pós-Cards)
   ========================================================================== */
.decision-conclusion {
    text-align: center;
    margin-top: 4.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem; 
}

.conclusion-text {
    font-size: 1.3rem;
    color: #444444; 
    margin: 0;
    font-weight: 500;
}

.conclusion-highlight {
    font-size: 1.45rem;
    color: #dc2626; 
    font-weight: 900;
    margin: 0;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   BOTÃO 3D OURO (Transição Bloco 11 para Bloco 12)
   ========================================================================== */
.transition-gold-btn-wrapper {
    position: absolute;
    bottom: -30px; /* Faz o botão vazar exatamente 30px para o próximo bloco */
    left: 50%;
    transform: translateX(-50%);
    z-index: 30; /* Fica acima de tudo */
}

.btn-gold-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(180deg, #fde047 0%, #d97706 100%); 
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
    box-shadow: 
        0 6px 0 #92400e, 
        0 15px 25px rgba(217, 119, 6, 0.4), 
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease-in-out;
    animation: bounceGold 2.5s infinite; 
}

.btn-gold-3d:hover {
    color: #ffffff;
    box-shadow: 
        0 6px 0 #92400e, 
        0 20px 30px rgba(217, 119, 6, 0.6), 
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

.btn-gold-3d:active {
    transform: translateY(4px); 
    box-shadow: 
        0 2px 0 #92400e, 
        0 5px 10px rgba(217, 119, 6, 0.4), 
        inset 0 2px 0 rgba(255, 255, 255, 0.5);
    animation: none; 
}

@keyframes bounceGold {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==========================================================================
   29. RESPONSIVIDADE (Bloco 11)
   ========================================================================== */
@media (max-width: 991px) {
    .decision-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
    .decision-title { font-size: 2.2rem; }
    .decision-or-watermark { font-size: 10rem; } 
}

@media (max-width: 767px) {
    .decision-section { padding: 4rem 0; }
    
    .decision-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .decision-title { font-size: 1.8rem; }
    .decision-subtitle { font-size: 1.1rem; }
    
    .decision-grid {
        grid-template-columns: 1fr; 
        gap: 3.5rem; 
    }
    
    .decision-or-watermark {
        font-size: 6rem;
        top: 48%; 
        opacity: 0.12; 
    }
    
    .card-solution {
        transform: scale(1); 
    }
    
    .decision-card {
        padding: 2.5rem 1.5rem;
    }
    
    .card-title { font-size: 1.4rem; }
    
    .decision-conclusion {
        margin-top: 3.5rem;
        padding: 0 1rem;
        gap: 0.6rem;
    }
    
    .conclusion-text { font-size: 1.1rem; }
    .conclusion-highlight { font-size: 1.25rem; line-height: 1.3; }
    
    .transition-gold-btn-wrapper { bottom: -25px; }
    .btn-gold-3d {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        box-shadow: 0 5px 0 #92400e, 0 10px 20px rgba(217, 119, 6, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.6);
    }
    .btn-gold-3d:active {
        transform: translateY(3px);
        box-shadow: 0 2px 0 #92400e, 0 5px 10px rgba(217, 119, 6, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.5);
    }
}
/* ================================================================================================================================= */
/* ============================================================== 30 . BLOCO 13: FAQ ==================================================== */
/* ================================================================================================================================= */

.faq {
  padding: clamp(60px, 8vw, 100px) 0;
  background: linear-gradient(180deg, #fafafa 0%, #f3f3f8 100%);
  position: relative;
  overflow: hidden;
}

/* Brilho Dourado Sutil de Fundo */
.faq::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 400px;
  background: radial-gradient(closest-side, rgba(212, 175, 55, 0.08), transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.faq .container {
  max-width: 800px; /* FAQ mais estreito para melhor leitura */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* === HEADER === */
.faq__header {
  text-align: center;
  margin-bottom: 40px;
}

.faq__kicker {
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #b8860b;
  display: block;
  margin-bottom: 10px;
}

.faq__subtitle {
  font-size: 1.1rem;
  color: #64748b;
  margin-top: 10px;
}

/* === LISTA DE ITENS === */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(184, 134, 11, 0.15);
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: rgba(184, 134, 11, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* Botão da Pergunta */
.faq-item__question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  gap: 20px;
}

/* Ícone de Seta (Chevron) */
.faq-item__question::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2.5px solid #b8860b;
  border-bottom: 2.5px solid #b8860b;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item__question[aria-expanded="true"]::after {
  transform: rotate(-135deg);
}

/* Resposta */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 28px;
  opacity: 0;
}

.faq-item__question[aria-expanded="true"] + .faq-item__answer {
  max-height: 500px; /* Valor alto o suficiente */
  padding-bottom: 22px;
  opacity: 1;
}

.faq-item__answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}

/* === FOOTER === */
.faq__footer {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.faq__footer p {
  color: #64748b;
  margin-bottom: 10px;
}

.faq__support-link {
  color: #b8860b;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(184, 134, 11, 0.2);
  transition: all 0.3s ease;
}

.faq__support-link:hover {
  border-bottom-color: #b8860b;
}

/* Mobile */
@media (max-width: 600px) {
  .faq-item__question {
    padding: 18px 20px;
    font-size: 1rem;
  }
  .faq-item__answer {
    padding: 0 20px;
  }
  .faq-item__question[aria-expanded="true"] + .faq-item__answer {
    padding-bottom: 18px;
  }
}


/* ==========================================================================
   30. BLOCO 14: FOOTER (Simplificado e Centralizado)
   ========================================================================== */
.footer-section {
    background-color: #0a1128; /* Azul escuro premium alinhado com a página */
    padding: 5rem 0 2rem 0;
    text-align: center;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Linha sutil de separação */
}

.footer-logo {
    max-width: 160px;
    height: auto;
    margin: 0 auto 1rem auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.footer-tagline {
    font-size: 1.1rem;
    color: #fde047; /* Amarelo ouro */
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Lista de Informações Centralizada */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.footer-info p {
    margin: 0;
    font-size: 1rem;
    color: #cbd5e1; /* Cinza claro elegante */
    font-weight: 400;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #fde047; /* Fica amarelo ao passar o mouse */
}

/* Base de Copyright */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b; /* Cinza mais escuro para não chamar muita atenção */
}

/* ==========================================================================
   31. RESPONSIVIDADE (Footer)
   ========================================================================== */
@media (max-width: 767px) {
    .footer-section {
        padding: 4rem 0 1.5rem 0;
    }
    
    .footer-logo {
        max-width: 130px;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .footer-info p {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        padding-top: 1.5rem;
    }
}



/* PATCH: FAQ (Controle de Transição) */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease, padding 320ms ease;
}
.faq-item__question[aria-expanded="true"] + .faq-item__answer { padding: 0 20px 18px; }

/* PATCH: Performance Global */
body { font-size-adjust: 0.52; }
