/* ==========================================================================
   VARIÁVEIS GLOBAIS E RESET
   ========================================================================== */
:root {
    --color-dark: #000000;
    --color-gold: #D4AF37; /* Brighter, more vibrant premium gold */
    --color-gold-light: #E8D18C; /* Lighter gold for shine center */
    --color-white: #FAFAFA;
    --color-gray: #A0AAB2;
    
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Cormorant Garamond', serif;
}

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

body {
    background-color: var(--color-dark);
    color: var(--color-white);
    font-family: var(--font-sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

/* ==========================================================================
   LENIS SMOOTH SCROLL (Obrigatório para o scroll fluido)
   ========================================================================== */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ==========================================================================
   ESTRUTURA GERAL
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.noise-bg {
    position: fixed;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   SEÇÃO 1: HERO
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-top: 60px; /* Space for mobile */
    padding-bottom: 60px; /* Space for mobile */
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 0;
        padding-bottom: 0;
    }
}

/* Background e Overlays */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) blur(2px); /* Vídeo mais claro e nítido */
    transform: scale(1.05);
}

.overlay-gradient-main {
    position: absolute;
    inset: 0;
    /* Deixamos o gradiente mais suave (0.7 em vez de 0.9) */
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}
.overlay-gradient-bottom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, transparent 30%);
}

.hero-spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(197,160,89,0.1) 0%, transparent 50%);
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Layout do Hero (MOBILE-FIRST Order) */
.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column; /* Image is first in HTML, so stacks first */
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row-reverse; /* Put Image back on right for Desktop */
        padding-top: 0;
        gap: 50px;
    }
}

/* Coluna Esquerda: Textos */
.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center; /* Center on mobile */
    align-items: center; /* Center on mobile */
}

@media (min-width: 1024px) { 
    .hero-content { 
        width: 55%; 
        text-align: left; 
        align-items: flex-start;
    } 
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 30px rgba(0,0,0,0.9);
}

.h1-line { display: block; opacity: 0; transform: translateY(30px); }
.h1-sub {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #D1D5DB;
    margin-top: 10px;
}

/* Efeito Ouro Brilhante Animado (More Golden) */
.shine-gold {
    font-style: italic;
    display: inline-block;
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
    background: linear-gradient(110deg, var(--color-gold) 15%, var(--color-gold-light) 35%, var(--color-gold-light) 45%, var(--color-gold) 65%, var(--color-gold) 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 4s linear infinite;
}

@keyframes shineText { to { background-position: -200% center; } }

.hero-separator {
    width: 0px; /* Animado pelo JS */
    height: 3px;
    background-color: var(--color-gold);
    opacity: 0;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 600;
    opacity: 0;
}

.hero-text {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: #D1D5DB;
    font-weight: 300;
    line-height: 1.8;
    max-width: 550px;
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    padding-left: 20px;
    opacity: 0;
    text-align: left; /* Keep left alignment within max-width */
}

.hero-text strong {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--color-white);
    display: block;
    margin-bottom: 5px;
    font-style: italic;
    font-weight: 600;
}

/* O Botão Premium */
.hero-cta-wrapper { 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    opacity: 0;
    align-items: center; /* Center on mobile */
}

@media (min-width: 1024px) {
    .hero-cta-wrapper { align-items: flex-start; }
}

.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 45px;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 500;
    overflow: hidden;
    transition: all 0.4s ease;
    align-self: flex-start;
}

.btn-premium:hover {
    background: var(--color-gold);
    color: var(--color-dark);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-text { position: relative; z-index: 10; }

.btn-border {
    position: absolute; inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.6);
    z-index: 1;
    animation: borderGlow 2.5s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(212, 175, 55, 0.4); box-shadow: 0 0 0px transparent; }
    50% { border-color: var(--color-gold-light); box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.2); }
}

.btn-sweep {
    position: absolute; top: 0; left: -120%; width: 50%; height: 100%;
    background: linear-gradient(105deg, transparent, rgba(255, 235, 160, 0.4), transparent);
    transform: skewX(-25deg); z-index: 2;
    animation: sweep 3s infinite; pointer-events: none;
}

@keyframes sweep { 0% { left: -120%; } 100% { left: 160%; } }

.hero-scarcity {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.7rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.15em;
}

.pulse-dot {
    width: 6px; height: 6px; border-radius: 50%; background-color: var(--color-gold);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.5); } 100% { opacity: 1; transform: scale(1); } }

/* Coluna Direita: Imagem (Colorized) */
.hero-image-wrapper { width: 100%; display: flex; justify-content: center; margin-bottom: 20px; }
@media (min-width: 1024px) { .hero-image-wrapper { width: 45%; justify-content: flex-end; margin-bottom: 0; } }

.expert-container { position: relative; width: 100%; max-width: 400px; opacity: 0; }

.expert-frame {
    position: absolute;
    top: 15px; left: 15px; right: -15px; bottom: -15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 0;
}

.expert-glass-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

.expert-img {
    width: 100%; height: 100%; object-fit: cover; object-position: top center;
    filter: none; /* No more grayscale */
}

.expert-overlay {
    position: absolute; inset: 10px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 40%);
    pointer-events: none;
}

.expert-badge {
    position: absolute; bottom: -15px; left: -25px; z-index: 2;
    background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 18px; box-shadow: 0 15px 30px rgba(0,0,0,0.9);
}

@media (max-width: 768px) { .expert-badge { display: none; } }

.badge-number { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--color-gold); line-height: 1; margin-bottom: 5px; }
.badge-text { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--color-gray); }

/* ==========================================================================
   HIGHLIGHTS
   ========================================================================== */
.name-highlight {
    color: var(--color-gold);
    font-style: italic;
    font-weight: inherit; /* Inherits bold from strong */
}

/* ==========================================================================
   1. CORES E VARIÁVEIS (Dourado Vibrante)
   ========================================================================== */
:root {
    --color-dark: #000000;
    --color-gold: #D4AF37;       /* Dourado Nobre Vibrante */
    --color-gold-light: #F9E498; /* Brilho de Ouro para reflexos */
    --color-white: #FAFAFA;
    --color-gray-light: #D1D5DB;
    --color-gray-muted: #9CA3AF;
}

/* Destaque para o nome Lu Lage */
.name-highlight {
    color: var(--color-gold);
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   2. SEPARADOR DE SESSÃO (Efeito de Luz Premium)
   ========================================================================== */
.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    /* Luz BASE FIXA - Sempre acesa no centro */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    z-index: 20;
}

/* Feixe de luz lento que passa por cima */
.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 235, 160, 0.8), 
        transparent);
    animation: slowSweep 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes slowSweep {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

/* ==========================================================================
   3. DESIGN DA SESSÃO DE HISTÓRIA & EMPATIA
   ========================================================================== */
.story-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-dark);
    overflow: hidden;
}

/* Fundo de Vídeo Aprimorado */
.story-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.story-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(3px); /* Vídeo visível mas não atrapalha o texto */
    transform: scale(1.05);
}

.story-overlay-main {
    position: absolute;
    inset: 0;
    /* Gradiente para garantir que o texto "salte" do fundo */
    background: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.6) 20%, 
        rgba(0,0,0,0.6) 80%, 
        rgba(0,0,0,1) 100%);
}

.story-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Ajustes de Texto e Visibilidade */
.text-body {
    font-size: 1.05rem;
    color: var(--color-gray-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
    opacity: 0; /* Começa invisível para o JS revelar */
}

.text-gold-bold {
    color: var(--color-gold);
    font-weight: 500;
}

/* Grelha de Empatia (Mobile First) */
.empathy-block {
    text-align: center;
}

.empathy-text-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.empathy-text-col {
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 4px;
    border-left: 2px solid rgba(212, 175, 55, 0.2);
    text-align: left;
}

/* Layout para Desktop (1024px+) */
@media (min-width: 1024px) {
    .story-container { gap: 100px; }
    .empathy-block { text-align: left; }
    .empathy-text-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .empathy-text-col { background: transparent; padding: 0; border: none; }
}

/* ==========================================================================
   4. BENTO GRID (Cards de Resultados)
   ========================================================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 20px;
    transition: all 0.4s ease;
}

.bento-large {
    grid-column: span 2;
    border-top: 2px solid var(--color-gold);
}

.bento-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--color-gold);
    font-weight: 700;
    display: block;
}

/* ==========================================================================
   5. BOTÕES E ALINHAMENTO (Corrigido)
   ========================================================================== */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: transparent;
    color: var(--color-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.5);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Centralização do botão no sistema */
.system-cta-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza no Mobile */
    justify-content: center;
    margin-top: 50px;
    gap: 20px;
}

/* Garante alinhamento à esquerda no Hero Desktop se necessário */
@media (min-width: 1024px) {
    .hero-cta-wrapper { align-items: flex-start; }
}

/* Efeito Hover do Botão */
.btn-premium:hover {
    background: var(--color-gold);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   6. ANIMAÇÃO DE ENTRADA (BLUR-IN)
   ========================================================================== */
.blur-in {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.blur-in.is-visible {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Sistema de Itens (Check) */
.system-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 40px auto;
}

@media (min-width: 768px) {
    .system-grid { grid-template-columns: 1fr 1fr; }
}

.system-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}
/* ==========================================================================
   SEPARADOR DE SESSÃO (Luz Fixa + Feixe)
   ========================================================================== */
.section-divider {
    position: relative;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 50%, transparent 100%);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
    overflow: hidden;
    z-index: 20;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 235, 160, 0.8), transparent);
    animation: slowSweep 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes slowSweep {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 200%; opacity: 0; }
}

/* ==========================================================================
   SESSÃO 2: A JORNADA (Empatia, História e Sistema)
   ========================================================================== */
.premium-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--color-dark);
    min-height: 100vh;
}

/* Fundo de Vídeo e Sombras */
.section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Vídeo mais nítido e claro */
    filter: brightness(0.5) blur(2px); 
    transform: scale(1.05);
}
.bg-overlay {
    position: absolute;
    inset: 0;
    /* Suavizamos o gradiente para o vídeo respirar nas laterais */
    background: linear-gradient(to bottom, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.5) 20%, 
        rgba(0,0,0,0.5) 80%, 
        rgba(0,0,0,1) 100%);
}

/* Tipografia Base da Seção */
.text-gold-vibrant { color: var(--color-gold); font-weight: 500; }
.text-white { color: var(--color-white); font-weight: 400; }

.title-serif {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 30px;
}
.title-serif.center { text-align: center; }

.p-premium {
    font-size: 1.05rem;
    color: var(--color-gray-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 20px;
}
.p-premium.center { text-align: center; }
.max-600 { max-width: 600px; margin-left: auto; margin-right: auto; }

/* -----------------------------------------
   BLOCO 1: EMPATIA
------------------------------------------ */
.empathy-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
    text-align: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .empathy-wrapper { text-align: left; align-items: flex-start; }
}

/* Tag "01 | O Sentimento" */
.tag-marker {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.tag-number { color: rgba(212, 175, 55, 0.5); font-size: 0.8rem; letter-spacing: 0.3em; font-weight: 600; }
.tag-line { height: 1px; width: 40px; background: rgba(212, 175, 55, 0.3); }
.tag-text { color: var(--color-gold); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; }

.empathy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    text-align: left;
    margin-top: 20px;
}

@media (min-width: 1024px) {
    .empathy-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.simple-quote {
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-top: 30px;
}

/* -----------------------------------------
   BLOCO 2: HISTÓRIA E RESULTADOS (BENTO)
------------------------------------------ */
.story-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 120px;
}

.story-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 1024px) {
    .story-main-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}

.upper-title {
    color: var(--color-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 25px;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 25px;
    border-left: 3px solid var(--color-gold);
    margin: 30px 0;
}

.serif-quote {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--color-white);
    line-height: 1.3;
    text-align: center;
}

.action-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-list li {
    position: relative;
    padding-left: 20px;
    font-size: 1rem;
    color: var(--color-gray-light);
    font-weight: 300;
}

.action-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 1px;
    background: var(--color-gold);
}

/* Bento Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 25px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
}

.main-result {
    grid-column: span 2;
    border-top: 2px solid var(--color-gold);
    padding: 40px 30px;
    align-items: center;
    text-align: center;
}

.bento-val {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 5px;
}

.bento-val-small {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.bento-lab {
    font-size: 0.8rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* -----------------------------------------
   BLOCO 3: SISTEMA E CTA FINAL
------------------------------------------ */
.system-wrapper {
    position: relative;
    z-index: 10;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.system-check-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 40px auto;
}

@media (min-width: 768px) {
    .system-check-grid { grid-template-columns: 1fr 1fr; }
}

.check-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(10,10,10,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 4px;
}

.icon-gold {
    background: var(--color-gold);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.check-card p {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    margin: 0;
}

.final-call {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.timer-text {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 30px;
}

.timer-text strong {
    color: var(--color-gold);
    font-size: 1.5rem;
}

/* Centraliza o botão e a escassez de forma impecável */
.cta-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Garante o botão no meio */
    justify-content: center;
    gap: 15px;
}
.cta-container .btn-premium {
    margin: 0 auto;
    display: inline-flex;
}

.scarcity-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.dot {
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}

/* ==========================================================================
   EFEITOS ULTRA PREMIUM (Seção 2)
   ========================================================================== */

/* 1. Efeito Sticky (Texto trava, cards rolam) */
@media (min-width: 1024px) {
    .story-main-grid {
        align-items: flex-start; /* Essencial para o sticky funcionar */
    }
    .sticky-col {
        position: sticky;
        top: 25vh; /* Trava a 25% do topo da tela */
    }
    .vertical-cards {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-top: 10vh;
        padding-bottom: 10vh; /* Dá espaço para rolar */
    }
}

/* 2. Preparação Magnética 3D para os Cards Bento */
.bento-item {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    /* Sombras premium adicionais */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Brilho interno que segue o mouse (Invisível até o JS atuar) */
.bento-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bento-item:hover .bento-glow {
    opacity: 1;
}

/* O conteúdo do card precisa ficar acima do brilho */
.bento-item > span, .bento-item > p {
    position: relative;
    z-index: 10;
    transform: translateZ(20px); /* Dá uma leve flutuada no texto em 3D */
}

/* ==========================================================================
   SEPARADOR DE LUZ AZUL E DOURADA
   ========================================================================== */
.blue-gold-divider {
    background: linear-gradient(90deg, transparent 0%, rgba(10, 30, 70, 0.8) 50%, transparent 100%);
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.2);
}

.blue-gold-divider::after {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), transparent);
    animation: slowSweep 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* ==========================================================================
   SESSÃO 3: DEEP BLUE & REDOMA DE VIDRO (MASSIVE GLASS PANEL)
   ========================================================================== */
.ciclo-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
}

/* O Fundo Oceano Azul */
.ciclo-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, #0A1526 0%, #000000 70%);
    z-index: 0;
}

/* Luz de Fundo (Spotlight) */
.ciclo-spotlight {
    position: absolute;
    top: 20%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw; height: 80vh;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* A Redoma de Vidro Gigante */
.massive-glass-panel {
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-top: 1px solid rgba(96, 165, 250, 0.2); /* Reflexo azul no topo */
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 20px rgba(255,255,255,0.02);
}

@media (min-width: 1024px) {
    .massive-glass-panel { padding: 80px 60px; }
}

/* ==========================================================================
   O NOVO CICLO VISUAL (NODOS DE LUZ E NEON)
   ========================================================================== */
.glow-cycle-track {
    display: flex;
    flex-direction: column; /* Mobile: empilhado */
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

@media (min-width: 1024px) {
    .glow-cycle-track {
        flex-direction: row; /* Desktop: Lado a Lado */
        flex-wrap: wrap;
    }
}

/* Os Nodos (Caixas de Vidro) */
.cycle-node {
    background: rgba(10, 15, 25, 0.8);
    border: 1px solid rgba(96, 165, 250, 0.2);
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    color: var(--color-gray-light);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), inset 0 0 10px rgba(96, 165, 250, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
}

.cycle-node:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3), inset 0 0 15px rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
}

/* As Setas (Feixes de Luz / Beams) */
.cycle-beam {
    width: 2px;
    height: 25px;
    background: linear-gradient(to bottom, rgba(96, 165, 250, 0.1), rgba(96, 165, 250, 0.6), rgba(96, 165, 250, 0.1));
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .cycle-beam {
        width: 30px;
        height: 2px;
        background: linear-gradient(to right, rgba(96, 165, 250, 0.1), rgba(96, 165, 250, 0.6), rgba(96, 165, 250, 0.1));
    }
}

/* Animação da luz correndo pelo fio */
.cycle-beam::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px #fff;
    animation: beamTravel 2s linear infinite;
}

@media (min-width: 1024px) {
    .cycle-beam::after { top: 0; left: -100%; animation: beamTravelHorizontal 2s linear infinite; }
}

@keyframes beamTravel { 100% { top: 200%; } }
@keyframes beamTravelHorizontal { 100% { left: 200%; } }

/* A Dor Final (Explosão de Alerta) */
.beam-alert {
    background: linear-gradient(to bottom, rgba(96, 165, 250, 0.2), rgba(239, 68, 68, 0.8), rgba(239, 68, 68, 0.2));
}
@media (min-width: 1024px) {
    .beam-alert { background: linear-gradient(to right, rgba(96, 165, 250, 0.2), rgba(239, 68, 68, 0.8), rgba(239, 68, 68, 0.2)); }
}
.beam-alert::after { background: #EF4444; box-shadow: 0 0 10px #EF4444; }

.node-alert {
    border-color: rgba(239, 68, 68, 0.6);
    color: var(--color-gold);
    background: rgba(20, 10, 10, 0.8);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.2), inset 0 0 15px rgba(239, 68, 68, 0.1);
    animation: pulseFinal 2s infinite;
}

@keyframes pulseFinal {
    0% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 30px rgba(239, 68, 68, 0.5), inset 0 0 20px rgba(212, 175, 55, 0.2); border-color: var(--color-gold); }
    100% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.2); }
}

/* ==========================================================================
   ALINHAMENTO RIGOROSO DO BOTÃO CTA
   ========================================================================== */
.cta-centralizer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Trava no centro horizontal */
    justify-content: center;
    text-align: center;
}

/* Força o botão a não herdar display block/flex de outras tags */
.cta-centralizer .btn-premium {
    display: inline-flex !important;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   ALINHAMENTOS GLOBAIS E UTILITÁRIOS DA SESSÃO 3
   ========================================================================== */
.ciclo-header {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza tudo no mobile e desktop */
    text-align: center;
    width: 100%;
}

.max-600 { max-width: 600px; width: 100%; margin: 0 auto; }
.max-700 { max-width: 700px; width: 100%; margin: 0 auto; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }
.pt-10 { padding-top: 10px; }
.pt-60 { padding-top: 60px; }

/* ==========================================================================
   CARDS COM EFEITO DE LUZ NAS BORDAS (EDGE LIGHT)
   ========================================================================== */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 coluna no celular */
    gap: 25px;
    width: 100%;
    margin-top: 40px;
}

@media (min-width: 768px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .pain-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

.pain-card {
    position: relative;
    padding: 35px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* Esconde o que vazar da luz */
    z-index: 1;
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* O Fundo escuro do card (fica por cima da luz, deixando só a borda) */
.pain-card::after {
    content: '';
    position: absolute;
    inset: 1px; /* Deixa exatamente 1px de borda para a luz passar */
    background: rgba(10, 20, 35, 0.85); /* Azul profundo premium */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 7px;
    z-index: -1;
}

/* A Luz Giratória (Edge Light) */
.pain-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    /* Gradiente cônico criando o feixe de luz */
    background: conic-gradient(from 0deg, transparent 60%, rgba(212, 175, 55, 0.15) 80%, rgba(255, 235, 160, 0.8) 100%);
    z-index: -2;
    animation: rotateLight 4s linear infinite;
    opacity: 0.3; /* Luz suave por padrão */
    transition: opacity 0.4s ease;
}

@keyframes rotateLight {
    100% { transform: rotate(360deg); }
}

/* Efeito Hover nos Cards */
.pain-card:hover {
    transform: translateY(-8px);
}

.pain-card:hover::before {
    opacity: 1; /* A luz acende forte quando passa o mouse */
    animation: rotateLight 2s linear infinite; /* Gira mais rápido */
}

/* Garante que o texto e o ícone fiquem acima de tudo */
.pain-card > * {
    position: relative;
    z-index: 2;
}

.pain-icon-wrapper {
    width: 65px; height: 65px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
    color: var(--color-gold);
    box-shadow: inset 0 0 15px rgba(212, 175, 55, 0.05);
}

.pain-icon { width: 30px; height: 30px; stroke-width: 1.2; }

/* ==========================================================================
   ALINHAMENTO DO DIAGNÓSTICO E LISTA
   ========================================================================== */
.diagnosis-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.consequences-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.current-state-list {
    list-style: none;
    display: inline-flex; /* Mantém a largura baseada no conteúdo */
    flex-direction: column;
    gap: 15px;
    text-align: left; /* O texto alinha à esquerda... */
    margin: 0 auto;   /* ...mas a lista toda fica no centro da tela */
}

.current-state-list li {
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
    color: #D1D5DB;
    line-height: 1.6;
    font-weight: 300;
}

.current-state-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #EF4444; 
    font-size: 1.4rem;
    line-height: 1.1;
    opacity: 0.6;
}

/* ==========================================================================
   ALINHAMENTO DO CICLO (Responsivo Mobile/Desktop)
   ========================================================================== */
.cycle-visual-wrapper {
    display: flex;
    flex-direction: column; /* MOBILE: Fica um em cima do outro */
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.cycle-arrow, .cycle-arrow-gold {
    transform: rotate(90deg); /* MOBILE: Seta aponta para baixo */
    margin: 5px 0;
}

/* No computador, fica lado a lado */
@media (min-width: 1024px) {
    .cycle-visual-wrapper {
        flex-direction: row; 
        flex-wrap: wrap;
    }
    .cycle-arrow, .cycle-arrow-gold {
        transform: rotate(0deg); /* DESKTOP: Seta aponta para a direita */
        margin: 0;
    }
}

.cycle-step {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 15px 30px;
    text-align: center;
    border-radius: 4px;
    width: 100%; /* Mobile: ocupa a largura */
    max-width: 250px;
}

@media (min-width: 1024px) { .cycle-step { width: auto; } }

/* ==========================================================================
   CTA FINAL CENTRALIZADO
   ========================================================================== */
.system-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* ==========================================================================
   PAINEL DE ALERTA PREMIUM (CONSEQUÊNCIAS)
   ========================================================================== */
.consequences-wrapper {
    width: 100%;
    display: flex;
    justify-content: center; /* Centraliza o painel na tela */
    padding: 0 15px; /* Margem de segurança para o mobile */
}

.warning-glass-panel {
    width: 100%;
    max-width: 650px;
    background: rgba(20, 10, 12, 0.4); /* Fundo com um toque quase impercetível de vermelho escuro */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(239, 68, 68, 0.15); /* Borda avermelhada suave */
    border-top: 1px solid rgba(239, 68, 68, 0.35); /* Topo com mais destaque */
    border-radius: 8px;
    padding: 35px 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(239, 68, 68, 0.05);
    position: relative;
}

@media (min-width: 768px) {
    .warning-glass-panel { padding: 40px 50px; }
}

/* Efeito de luz ambiente de urgência no topo do painel */
.warning-glass-panel::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 100px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .warning-header { justify-content: flex-start; } /* No PC, alinha à esquerda */
}

/* Ponto Vermelho Pulsante */
.pulse-red {
    width: 8px; 
    height: 8px;
    background: #EF4444; /* Vermelho Alerta */
    border-radius: 50%;
    box-shadow: 0 0 12px #EF4444;
    animation: pulseRed 2s infinite ease-in-out;
}

@keyframes pulseRed {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 12px #EF4444; }
    50% { transform: scale(1.4); opacity: 0.5; box-shadow: 0 0 20px rgba(239, 68, 68, 0.5); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 12px #EF4444; }
}

.warning-title {
    color: var(--color-gold);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

/* Itens da Lista com Efeito Hover */
.warning-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.warning-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* O Efeito "Magnético" da dor */
.warning-item:hover {
    background: rgba(239, 68, 68, 0.05); /* Fundo avermelha sutilmente */
    border-color: rgba(239, 68, 68, 0.2);
    transform: translateX(8px); /* Desliza ligeiramente para a direita */
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
}

.warning-cross {
    width: 18px;
    height: 18px;
    color: #EF4444;
    opacity: 0.8;
    flex-shrink: 0;
}

.warning-item p {
    color: #D1D5DB;
    font-size: 0.95rem;
    font-weight: 300;
    margin: 0;
    text-align: left;
}

.warning-item p strong {
    color: var(--color-white);
    font-weight: 500;
}

/* ==========================================================================
   SEÇÃO 4: A VISÃO (Imagine em 60 Dias)
   ========================================================================== */
.imagine-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    background-color: var(--color-dark);
}

/* Fundo Azul Noturno (Continuando a imersão) */
.imagine-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom, #0F172A 0%, #000000 80%);
    z-index: 0;
}

/* Luzes de Esperança (Spotlights suaves) */
.imagine-spotlight {
    position: absolute;
    top: 30%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; height: 60vh;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* ==========================================================================
   FUTURE GRID (Cards de Vidro da Visão)
   ========================================================================== */
.future-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) { .future-grid { grid-template-columns: 1fr 1fr; } }

.future-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(96, 165, 250, 0.1); /* Borda com toque azulado */
    border-top: 1px solid rgba(212, 175, 55, 0.2); /* Topo com reflexo dourado */
    padding: 35px 30px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.future-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.future-icon {
    width: 45px;
    height: 45px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.future-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 15px;
}

.future-text {
    font-size: 0.95rem;
    color: var(--color-gray-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ==========================================================================
   RESULT HIGHLIGHT PANEL (Destaque do "2x Mais")
   ========================================================================== */
.result-highlight-panel {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 15, 25, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* Feixe de luz passando pelo painel de resultado */
.result-highlight-panel::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-20deg);
    animation: shinePanel 5s infinite;
}

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

.result-big-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--color-gray-light);
    line-height: 1.4;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

/* Utilitários Extras */
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-15 { margin-top: 15px; }

/* Centralizadores Extras para a Seção 4 */
.imagine-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Força tudo a ficar no meio */
    width: 100%;
}

.justify-center {
    justify-content: center !important;
}

/* Base Magnética para os novos Cards 3D */
.tilt-card {
    position: relative;
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
}

/* O brilho que segue o rato */
.future-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15), transparent 60%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.tilt-card:hover .future-glow {
    opacity: 1;
}

/* Animação Flutuante dos Ícones */
@keyframes floatIcon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); filter: drop-shadow(0 10px 10px rgba(212, 175, 55, 0.4)); }
    100% { transform: translateY(0px); }
}

.future-card {
    text-align: center; /* Centraliza o texto dentro dos cards */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.future-card:hover .future-icon {
    animation: floatIcon 2s ease-in-out infinite; /* O ícone levanta quando passa o mouse */
    color: var(--color-white);
}

/* Ajuste fino dos elementos dentro do Card para o 3D */
.future-card > * {
    position: relative;
    z-index: 10;
    transform: translateZ(20px); /* Traz o texto e ícone para "frente" da tela */
}

.result-highlight-panel {
    width: 100%;
    max-width: 900px; /* Impede que fique muito esticado */
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   SEPARADOR DARK TO LIGHT
   ========================================================================== */
.dark-to-light-divider {
    position: relative;
    z-index: 20; /* Fica acima de tudo, criando a ilusão de sobreposição segura */
    background: linear-gradient(90deg, #0F172A 0%, rgba(212, 175, 55, 0.8) 50%, #F1F5F9 100%);
    height: 2px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.6); /* Sombra pesada projetada para cima */
}

/* ==========================================================================
   SEÇÃO 5: OS 4 PILARES (ICE WHITE & DEEP BLUE)
   ========================================================================== */
.pillars-section {
    position: relative;
    padding: 100px 0;
    min-height: 100vh;
    color: #0F172A; 
    z-index: 10;
}

/* Fundo Gelo / Metálico Claro */
.ice-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #E2E8F0 100%);
    z-index: 0;
}

.pillars-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Cores específicas para contraste no fundo claro */
.text-blue-dark { color: #0A1526 !important; }
.text-blue-muted { color: #334155 !important; }
.bg-blue-dark { background-color: #0A1526 !important; }

/* ==========================================================================
   GRID DOS PILARES (Clássico e Premium)
   ========================================================================== */
.pillars-grid {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Cria um espaço longo de rolagem entre as cartas */
    width: 100%;
    margin-top: 60px;
    padding-bottom: 20px; /* Dá espaço para a última carta respirar antes do botão */
}
/* No desktop, limitamos a largura para as cartas não ficarem gigantes e feias */
@media (min-width: 1024px) {
    .pillars-grid {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Os Cards dos Pilares */
.pillar-card {
    background: #0A1526; 
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 3px solid var(--color-gold);
    border-radius: 8px;
    padding: 40px 30px;
    
    /* A MÁGICA: Transforma o card em um ímã na tela */
    position: sticky;
    
    /* Sombra dupla: projeta no fundo e TAMBÉM EM CIMA, para o efeito de sobreposição */
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.15), 0 20px 50px rgba(10, 21, 38, 0.2);
    
    color: var(--color-white);
    text-align: left;
    will-change: transform;
}

.pillar-card:nth-child(1) { top: 12vh; z-index: 11; }
.pillar-card:nth-child(2) { top: 16vh; z-index: 12; }
.pillar-card:nth-child(3) { top: 20vh; z-index: 13; }
.pillar-card:nth-child(4) { top: 24vh; z-index: 14; }

/* Efeito Hover elegante (O card levanta) */
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 21, 38, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Número Gigante de Fundo (Marca d'água) */
.pillar-number-bg {
    position: absolute;
    top: -10px;
    right: 15px;
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02); 
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}
.pillar-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 15px;
    line-height: 1.2;
}

.pillar-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gray-muted);
    margin-bottom: 20px;
    font-weight: 600;
}

.pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.pillar-list li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--color-gray-light);
    line-height: 1.5;
}
.pillar-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
    font-family: var(--font-serif);
}
.pillar-text {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 30px;
}
/* Caixa de Resultado Destacada */
.pillar-result {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--color-gold);
    padding: 20px;
    border-radius: 0 4px 4px 0;
}

.result-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 4px 8px;
    margin-bottom: 10px;
    border-radius: 2px;
    font-weight: 600;
}

.pillar-result p {
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
}

/* ==========================================================================
   BOTÃO TEMA CLARO E CORREÇÃO DO TEXTO INVISÍVEL
   ========================================================================== */
.btn-dark-theme {
    color: #0A1526;
    border-color: #0A1526;
}

/* Quando passa o mouse, o fundo fica escuro e o TEXTO vira dourado */
.btn-dark-theme:hover {
    background: #0A1526;
    box-shadow: 0 10px 30px rgba(10, 21, 38, 0.2);
}

.btn-dark-theme:hover .text-blue-dark {
    color: var(--color-gold) !important;
}

.border-dark { border-color: rgba(10, 21, 38, 0.5) !important; }
.sweep-dark { background: linear-gradient(105deg, transparent, rgba(10, 21, 38, 0.1), transparent) !important; }

/* Espaçamento Extra */
.mt-80 { margin-top: 80px; }

/* ==========================================================================
   SEPARADOR LIGHT TO DARK
   ========================================================================== */
.light-to-dark-divider {
    position: relative;
    z-index: 20;
    /* Termina no Azul puro */
    background: linear-gradient(90deg, #F1F5F9 0%, rgba(212, 175, 55, 0.8) 50%, #0A1526 100%);
    height: 2px;
}

/* ==========================================================================
   SEÇÃO 6: GARANTIA INCONDICIONAL (AZUL PURO E OURO)
   ========================================================================== */
.guarantee-section {
    position: relative;
    padding: 160px 0;
    background-color: #0A1526; /* Azul Marinho Sólido */
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* Gradiente apenas de Azul para Azul Claro (Zero Preto) */
.guarantee-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, #112240 0%, #0A1526 100%);
    z-index: 0;
}

/* ==========================================================================
   O PAINEL DE HONRA (Elegante e Fixo)
   ========================================================================== */
.guarantee-glass-panel {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 80px 60px;
    text-align: center;
    border-radius: 12px;
    /* Fundo Azul translúcido com uma borda dourada elegante */
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.1), rgba(10, 21, 38, 0.5));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.4); /* Borda dourada visível e fixa */
    
    /* Brilho Dourado Estático e Rico (Sem efeito radar) */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), 0 0 50px rgba(212, 175, 55, 0.08);
    z-index: 10;
}

@media (max-width: 768px) {
    .guarantee-section { padding: 100px 0; }
    .guarantee-glass-panel { 
        padding: 50px 24px; 
        margin: 0 10px; 
    }
}

/* ==========================================================================
   MARCA D'ÁGUA, NOVO ÍCONE E TEXTOS
   ========================================================================== */
.guarantee-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03); /* Levemente mais visível no azul */
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Ícone de Selo de Garantia */
.floating-shield {
    position: relative;
    z-index: 10;
    width: 80px; /* Um pouco maior e mais imponente */
    height: 80px;
    margin: 0 auto 30px auto;
    color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), inset 0 0 15px rgba(212, 175, 55, 0.1);
    animation: floatShield 4s ease-in-out infinite;
}

@keyframes floatShield {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.guarantee-main-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4vw, 2.2rem); 
    color: var(--color-gray-light);
    line-height: 1.5;
    font-weight: 300;
}

.guarantee-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 40px auto;
}

.signature-block {
    display: inline-block;
}

.guarantee-signature {
    font-size: 1.15rem;
    color: var(--color-gray-muted);
    font-style: italic;
    font-weight: 300;
    line-height: 1.6;
}

.signature-name {
    font-family: var(--font-serif);
    color: var(--color-gold);
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   SEÇÕES 6 e 7: GARANTIA E VAGAS (HERDANDO A IDENTIDADE IMAGINE)
   ========================================================================== */
.guarantee-section, .vagas-section {
    position: relative;
    padding: 100px 0;
    min-height: 80vh; /* Mantém o padrão de tela cheia elegante */
    display: flex;
    align-items: center;
}

.guarantee-container, .vagas-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Os Painéis de Vidro (Exatamente iguais ao .future-card e .result-highlight-panel) */
.guarantee-glass-panel, .vagas-glass-panel {
    background: rgba(255, 255, 255, 0.02); /* Fundo vidro imaculado */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 60px 50px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    text-align: center;
    width: 100%;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; /* Mantém o brilho magnético dentro da caixa */
}

/* ==========================================================================
   ELEMENTOS INTERNOS DA GARANTIA
   ========================================================================== */
.guarantee-watermark {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.floating-shield {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px auto;
    color: var(--color-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15), inset 0 0 15px rgba(212, 175, 55, 0.1);
    animation: floatShield 4s ease-in-out infinite;
}

@keyframes floatShield {
    0% { transform: translateY(0px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); }
    50% { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3); }
    100% { transform: translateY(0px); box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); }
}

.guarantee-main-text {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 4vw, 2.2rem); 
    color: var(--color-gray-light);
    line-height: 1.5;
    font-weight: 300;
}

.guarantee-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    margin: 40px auto;
}

.signature-block { display: inline-block; }
.guarantee-signature { font-size: 1.15rem; color: var(--color-gray-muted); font-style: italic; font-weight: 300; line-height: 1.6; }
.signature-name { font-family: var(--font-serif); color: var(--color-gold); margin-top: 15px; font-size: 1.4rem; font-weight: 600; letter-spacing: 0.1em; }

/* ==========================================================================
   ELEMENTOS INTERNOS DAS VAGAS
   ========================================================================== */
.vagas-big-number {
    font-family: var(--font-serif);
    font-size: clamp(5rem, 12vw, 8rem);
    line-height: 1;
    color: var(--color-gold);
    margin-bottom: 5px;
    text-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* ==========================================================================
   RESPONSIVIDADE PADRONIZADA
   ========================================================================== */
@media (max-width: 768px) {
    .guarantee-section, .vagas-section { padding: 80px 0; min-height: auto; }
    .guarantee-glass-panel, .vagas-glass-panel { padding: 40px 24px; margin: 0; }
    .floating-shield { width: 60px; height: 60px; padding: 12px; margin-bottom: 20px; }
    .guarantee-main-text { font-size: 1.15rem; }
    .guarantee-divider { margin: 30px auto; width: 60px; }
    .guarantee-signature { font-size: 1rem; }
    .signature-name { font-size: 1.2rem; margin-top: 10px; }
}

/* ==========================================================================
   DESIGN DO NÚMERO 10 ULTRA PREMIUM
   ========================================================================== */
.vagas-number-wrapper {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* O número gigante e sutil que fica ao fundo */
.vagas-ghost-number {
    position: absolute;
    font-family: var(--font-serif);
    font-size: 12rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.08); /* Apenas contorno sutil */
    line-height: 1;
    z-index: 1;
    user-select: none;
}

/* Container do número principal */
.vagas-main-number-container {
    position: relative;
    z-index: 2;
    overflow: hidden; /* Corta o brilho shimmer */
}

.vagas-number-gold {
    font-family: var(--font-serif);
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-gold);
    background: linear-gradient(to bottom, #FDE68A 0%, #D4AF37 50%, #B45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    display: block;
}

/* O Efeito de reflexo de luz (Shimmer) */
.vagas-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%
    );
    transform: skewX(-30deg);
    animation: goldShimmer 4s infinite ease-in-out;
}

@keyframes goldShimmer {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* Responsividade do Número no Mobile */
@media (max-width: 768px) {
    .vagas-number-wrapper { height: 120px; }
    .vagas-ghost-number { font-size: 8rem; }
    .vagas-number-gold { font-size: 5rem; }
}
/* ==========================================================================
   SEÇÃO DE ENTREGÁVEIS (Mockup Notebook + Textos)
   ========================================================================== */
.delivery-section {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* O Sistema de Grid Principal */
.delivery-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile: 1 coluna, foto em cima e texto embaixo */
    gap: 60px;
    align-items: center;
}

/* DESKTOP: Divide a tela em 2 (Esquerda Mockup, Direita Texto) */
@media (min-width: 1024px) {
    .delivery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

/* ==========================================================================
   LADO ESQUERDO: MOCKUP
   ========================================================================== */
.mockup-column {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px; /* Limita o tamanho do notebook para não ficar gigante */
    border-radius: 12px;
}

.mockup-image {
    width: 100%;
    height: auto;
    display: block;
    /* Adiciona uma sombra debaixo do notebook para dar volume */
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6));
}

/* O brilho majestoso que emana por trás do notebook */
.mockup-back-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
   LADO DIREITO: TEXTOS
   ========================================================================== */
.content-column {
    text-align: left; /* Garante que o texto alinhe à esquerda no computador */
}

.delivery-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--color-white);
    font-weight: 500;
    line-height: 1.4;
}

.delivery-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-gray-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.feature-item svg {
    color: var(--color-gold);
}

/* Correções Essenciais para o Mobile */
@media (max-width: 1023px) {
    .delivery-section { padding: 80px 0; }
    
    .content-column {
        text-align: center; /* Centraliza o texto no celular */
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-column .tag-marker {
        justify-content: center;
    }

    .content-column .p-premium {
        text-align: center;
    }

    .delivery-features {
        justify-content: center;
    }
}

/* ==========================================================================
   EFEITOS DE LUZ DINÂMICOS (CARDS)
   ========================================================================== */
/* Luz de fundo do card premium que "respira" suavemente */
.breathing-light {
    position: relative;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: breatheGlow 4s ease-in-out infinite;
}

@keyframes breatheGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* O card de transformação ganha um brilho dourado imponente por fora */
.path-transformation {
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(212, 175, 55, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.path-transformation:hover {
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 50px rgba(212, 175, 55, 0.3);
}

/* O card da estagnação ganha um brilho sombrio ao passar o mouse */
.path-stagnation {
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.path-stagnation:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(239, 68, 68, 0.05);
}

/* Ícones Ajustados */
.icon-gray { color: #64748B; width: 45px; height: 45px; margin: 0 auto 20px auto; opacity: 0.6; }
.icon-gold { color: var(--color-gold); width: 50px; height: 50px; margin: 0 auto 20px auto; filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4)); }

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA (FADE UP EM CASCATA)
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpReveal 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* Tempos de atraso para criar o efeito "escadinha" (um aparece após o outro) */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUpReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   SEÇÃO 8: A ENCRUZILHADA (DUAS OPÇÕES)
   ========================================================================== */
.crossroads-section {
    position: relative;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.crossroads-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.choices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
    max-width: 900px;
}

/* No desktop, as opções ficam lado a lado */
@media (min-width: 1024px) {
    .choices-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Base do Card de Escolha */
.choice-card {
    position: relative;
    padding: 50px 40px;
    border-radius: 12px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

/* ==========================================================================
   ESTILO DA OPÇÃO 1 (Estagnação - Fria e Apagada)
   ========================================================================== */
.path-stagnation {
    background: rgba(10, 15, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.path-stagnation:hover {
    border-color: rgba(239, 68, 68, 0.2); /* Tom sutil de alerta (vermelho) no hover */
    transform: translateY(-5px);
}

.icon-gray { color: #64748B; width: 40px; height: 40px; margin: 0 auto 20px auto; }
.text-gray { color: #94A3B8; font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 25px; }

.list-gray { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 15px; }
.list-gray li { position: relative; padding-left: 20px; color: #64748B; font-size: 0.95rem; line-height: 1.5; }
.list-gray li::before { content: '×'; position: absolute; left: 0; top: -2px; color: #EF4444; font-weight: bold; font-size: 1.2rem; opacity: 0.5; }

.conclusion-gray {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    font-size: 0.95rem;
    font-style: italic;
}

/* ==========================================================================
   ESTILO DA OPÇÃO 2 (Transformação - Vibrante e Dourada)
   ========================================================================== */
.path-transformation {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 21, 38, 0.8) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top: 2px solid var(--color-gold);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.path-transformation:hover {
    border-color: rgba(212, 175, 55, 0.6);
    transform: translateY(-5px) scale(1.02); /* A opção boa "cresce" na direção do cliente */
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.icon-gold { color: var(--color-gold); width: 45px; height: 45px; margin: 0 auto 20px auto; filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3)); }

.list-gold { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 15px; }
.list-gold li { position: relative; padding-left: 25px; color: var(--color-gray-light); font-size: 0.95rem; line-height: 1.5; font-weight: 300; }
.list-gold li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-gold); font-weight: bold; }

.conclusion-gold {
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    font-size: 1rem;
    line-height: 1.5;
}

/* Etiqueta de "O Caminho Certo" */
.recommended-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: linear-gradient(90deg, #D4AF37, #FDE68A);
    color: #0A1526;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Responsividade Mobile */
@media (max-width: 768px) {
    .crossroads-section { padding: 80px 0; }
    .choice-card { padding: 40px 25px; margin: 0 10px; }
}

/* ==========================================================================
   AJUSTE DE ÍCONES E LUZES (SEÇÃO 8)
   ========================================================================== */

/* --- 1. CAMINHO CERTO (Ouro Premium Brilhante) --- */
.icon-gold-premium {
    width: 55px; /* Ligeiramente maior para impacto */
    height: 55px;
    margin: 0 auto 20px auto;
}

/* Aplicando Gradiente Metálico e Brilho Intenso no SVG */
.icon-gold-premium svg {
    /* Define o gradiente base */
    color: #FDE68A; /* Ouro muito claro */
    
    /* Layer 1: Brilho Dourado Suave (Drop Shadow) */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5))
            /* Layer 2: Brilho Branco Central de 'Joia' */
            drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
    
    transition: all 0.3s ease;
}

.path-transformation:hover .icon-gold-premium svg {
    /* No hover, o brilho branco fica ainda mais intenso */
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.7))
            drop-shadow(0 0 4px rgba(255, 255, 255, 1));
}

/* --- 2. CAMINHO ERRADO (Ameaça Vermelha Brilhosa) --- */
.icon-danger {
    width: 45px;
    height: 45px;
    margin: 0 auto 20px auto;
}

/* Ícone Oxidado com Glow Vermelho Afiado */
.icon-danger svg {
    color: #475569; /* Cinza-chumbo (oxidado) */
    opacity: 0.8;
    /* Glow Vermelho Neon Afiado */
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.8));
    transition: all 0.3s ease;
}

.path-stagnation:hover .icon-danger svg {
    color: #1E293B; /* Escurece o cinza no hover */
    /* Aumenta a agressividade do glow vermelho */
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 1))
            drop-shadow(0 0 2px rgba(239, 68, 68, 0.5));
}

/* Efeito de luz vermelha interna (Danger Glow) */
.danger-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    /* Gradiente vermelho suave e sombrio */
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: breatheGlowDanger 5s ease-in-out infinite;
}

@keyframes breatheGlowDanger {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.05); }
}

/* Ajuste sutil na borda do hover da estagnação */
.path-stagnation:hover {
    border-color: rgba(239, 68, 68, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 20px rgba(239, 68, 68, 0.1);
}

/* ==========================================================================
   INTEGRAÇÃO PHOSPHOR ICONS (GARANTIA DE RENDERIZAÇÃO)
   ========================================================================== */
.icon-gold i {
    color: var(--color-gold);
    font-size: 1.2rem; /* Tamanho exato do check */
    display: flex;
}

.future-icon i {
    color: var(--color-gold);
    font-size: 2rem; /* Tamanho exato dos ícones maiores */
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6)); /* Mantém o brilho premium */
    display: flex;
}/* ==========================================================================
   CARDS DE CHECKLIST PREMIUM (GRID 2x2)
   ========================================================================== */
.premium-checks {
    display: grid;
    grid-template-columns: 1fr; /* Coluna única no celular */
    gap: 20px;
    max-width: 800px; /* Um pouco mais largo para acomodar 2 colunas */
    margin: 0 auto;
}

/* No computador, divide em 2 colunas elegantes */
@media (min-width: 768px) {
    .premium-checks {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

.check-card {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, rgba(10, 21, 38, 0.8) 0%, rgba(15, 23, 42, 0.4) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-gold); /* A linha lateral de autoridade */
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Efeito de levitação ao passar o mouse */
.check-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.4);
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.check-card p {
    margin: 0;
    color: var(--color-white);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   BLINDAGEM FINAL: ÍCONES PHOSPHOR E RESPONSIVIDADE MOBILE
   ========================================================================== */

/* --- 1. CURA DEFINITIVA DOS ÍCONES --- */
/* Força a renderização exclusiva da biblioteca de ícones, sem interferência */
.future-icon i,
.icon-gold i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
    font-family: "Phosphor" !important; 
    font-style: normal !important;
}

.icon-gold i {
    font-size: 14px !important; /* Encaixe perfeito no círculo de 24px */
}

.future-icon i {
    font-size: 32px !important; /* Proporção High-Ticket para os cards */
}

/* --- 2. TRAVA DE RESPONSIVIDADE (SÓ ATUA NO CELULAR) --- */
@media (max-width: 768px) {
    /* Impede o scroll horizontal indesejado (bug comum em celulares) */
    body, html {
        overflow-x: hidden;
    }

    /* Trava o Bento Grid em 1 coluna para não espremer os itens */
    .bento-grid, .results-grid {
        grid-template-columns: 1fr !important;
    }
    
    .bento-large, .main-result {
        grid-column: span 1 !important;
    }

    /* Reduz proporcionalmente números e textos gigantes no telemóvel */
    .bento-val { 
        font-size: 3rem !important; 
    }
    
    .result-big-text { 
        font-size: 1.3rem !important; 
        padding: 0 10px;
    }

    /* Ajusta a redoma de vidro para respirar nas laterais da tela pequena */
    .massive-glass-panel,
    .result-highlight-panel {
        padding: 30px 20px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        width: auto !important;
    }

    /* Ajuste fino na lista de Check Premium para caber na tela com folga */
    .check-card {
        padding: 15px 20px !important;
    }
    
    .check-card p {
        font-size: 0.95rem !important;
    }
}
/* ==========================================================================
   REVELAÇÃO DOS ÍCONES (Corrige a camuflagem Dourado no Dourado)
   ========================================================================== */
.icon-gold i {
    color: #0A1526 !important; /* Azul escuro quase preto para contrastar com a bolinha dourada */
}

/* ==========================================================================
   BLINDAGEM FINAL: ÍCONES PHOSPHOR E RESPONSIVIDADE MOBILE
   ========================================================================== */

/* --- 1. CURA DEFINITIVA DOS ÍCONES --- */
/* Deixa a própria biblioteca Phosphor decidir a fonte, apenas forçamos o alinhamento e tamanho */
.future-icon i,
.icon-gold i {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}

.icon-gold i {
    font-size: 14px !important; /* Encaixe perfeito no círculo de 24px */
}

.future-icon i {
    font-size: 32px !important; /* Proporção High-Ticket para os cards */
}

/* --- 2. TRAVA DE RESPONSIVIDADE (SÓ ATUA NO CELULAR) --- */
@media (max-width: 768px) {
    /* Impede o scroll horizontal indesejado */
    body, html { overflow-x: hidden; }

    /* Trava o Bento Grid em 1 coluna para não espremer os itens */
    .bento-grid, .results-grid { grid-template-columns: 1fr !important; }
    .bento-large, .main-result { grid-column: span 1 !important; }

    /* Reduz proporcionalmente números e textos gigantes no telemóvel */
    .bento-val { font-size: 3rem !important; }
    .result-big-text { font-size: 1.3rem !important; padding: 0 10px; }

    /* Ajusta a redoma de vidro para respirar nas laterais da tela pequena */
    .massive-glass-panel, .result-highlight-panel {
        padding: 30px 20px !important;
        margin-left: 5px !important;
        margin-right: 5px !important;
        width: auto !important;
    }

    /* Ajuste fino na lista de Check Premium para caber na tela com folga */
    .check-card { padding: 15px 20px !important; }
    .check-card p { font-size: 0.95rem !important; }
}

/* --- AJUSTE DE TAMANHO DOS ÍCONES DE CHECK --- */
.icon-gold {
    width: 32px !important;
    height: 32px !important;
    flex-shrink: 0;
}

.icon-gold i {
    font-size: 20px !important; /* Ícone maior e mais legível */
    color: #0A1526 !important;
}

/* --- CIFRÃO PREMIUM --- */
.cifrao-premium {
    font-size: 0.5em; /* Fica com metade do tamanho do número gigante */
    font-weight: 500;
    color: rgba(212, 175, 55, 0.7); /* Dourado um pouco mais suave */
    vertical-align: text-top; /* Alinha na parte de cima do número */
    margin-right: 4px;
    font-family: var(--font-sans);
}

/* ==========================================================================
   FOOTER PREMIUM
   ========================================================================== */
.footer-premium {
    position: relative;
    background-color: #030712; /* Azul Ultra Profundo (Quase Preto) */
    padding: 0 0 40px 0;
    text-align: center;
    z-index: 10;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.footer-tagline {
    color: var(--color-gray-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Redes Sociais */
.footer-social {
    display: flex;
    gap: 25px;
}

.social-link {
    color: var(--color-gray-light);
    font-size: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    display: inline-flex;
    text-decoration: none;
}

.social-link:hover {
    color: var(--color-gold);
    transform: translateY(-5px);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

/* Links Legais e Copyright */
.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-legal p {
    color: var(--color-gray-muted);
    font-size: 0.85rem;
    font-weight: 300;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.legal-links a {
    color: var(--color-gray-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--color-gold);
}

.separator {
    color: rgba(212, 175, 55, 0.3);
    font-size: 0.8rem;
}

@media (min-width: 768px) {
    .footer-legal {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================================================
   BOTÃO FLUTUANTE (VOLTAR AO TOPO)
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, rgba(10, 21, 38, 0.9) 0%, rgba(3, 7, 18, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    z-index: 999; /* Garante que fique acima de tudo */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), inset 0 0 10px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    text-decoration: none;
}

/* Importante: Reaplicando a regra Phosphor para o botão */
.back-to-top i {
    font-size: 22px !important;
    line-height: 1 !important;
    display: flex !important;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: rgba(10, 21, 38, 1);
    border-color: var(--color-gold);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .back-to-top i {
        font-size: 18px !important;
    }
}