/* =============================================
   LEGIÃO – DESIGN SYSTEM CSS
   Landing Page Final – Cloudflare Pages Deploy
   ============================================= */

/* ========== BASE TOKENS & RESET ========== */
:root {
    /* Cores Principais */
    --primary: #EF143E;
    --primary-glow: rgba(239, 20, 62, 0.4);

    /* Dourado / CTA */
    --gold: #EF143E;
    --gold-hover: #FF2D55;
    --gold-glow: rgba(239, 20, 62, 0.4);

    /* Gradientes */
    --grad-start: #EF143E;
    --grad-end: #8a0b22;

    /* Neutros / Backgrounds */
    --bg-base: #0a0a0a;
    --bg-surface: #111111;
    --bg-surface-light: #1A1A1A;
    --border-color: rgba(239, 20, 62, 0.2);

    /* Tipografia Cores */
    --text-main: #f5f1e8;
    --text-muted: #A3A3A3;
    --text-dark: #000000;

    /* Interações */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    max-width: 100%;
    overflow-x: clip; /* Clip não quebra sticky em navegadores modernos */
}

body {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px; /* H1 Hero Rule */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px; /* H2 Section Rule */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px; /* H3 Card Rule */
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: var(--bg-surface-light); border-radius: 4px; }

/* ========== BACKGROUND GRID ========== */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 4rem 4rem;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
    transition: opacity 0.6s ease;
}

/* ========== LAYOUT UTILS ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 128px 48px;
    position: relative;
    z-index: 10;
}

.ds-container {
    width: 90vw;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .container {
        width: 90vw !important;
        max-width: 90vw !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 80px 0 !important; /* Ajuste para não ter padding lateral, margem controlada pelo width */
    }
}

/* ========== DESIGN SYSTEM COMPONENTS ========== */

/* Text Glow */
.text-glow {
    text-shadow: 0 0 30px var(--primary-glow);
}

/* Section Tags */
.hero-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-v2-tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-v2-tag-text {
    font-size: 14px; /* Mínimo absoluto Rule */
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* Badges */
.ds-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: rgba(239, 20, 62, 0.2);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ds-badge.primary {
    background: rgba(239, 20, 62, 0.15);
    color: var(--primary);
    border: 1px solid rgba(239, 20, 62, 0.3);
}

/* Flashlight Cards */
.flashlight-card {
    position: relative;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.flashlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.03),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}

.flashlight-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        rgba(239, 20, 62, 0.6),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 2;
}

.flashlight-card:hover::before,
.flashlight-card:hover .flashlight-border {
    opacity: 1;
}

.text-glow { text-shadow: 0 0 30px var(--primary-glow); }
.text-glow-gold { text-shadow: 0 0 30px var(--gold-glow); }

/* Spacing Utils */
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }


/* ========== HERO SCROLL SEQUENCE ========== */
.hero {
    position: relative;
    height: 100vh;
    border-bottom: 1px solid var(--border-color);
}

/* --- Sticky Viewport --- */
.hero__viewport {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* --- Hero Background (Video) --- */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1 !important;
    display: block !important;
    will-change: transform;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #000 0%, #000 30%, rgba(0,0,0,0) 100%);
    transition: opacity 0.6s ease;
}

/* --- Stages (Scroll-Driven) --- */
.hero__stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    padding: 0 8vw;
}

#s4ContentReveal {
    opacity: 0;
    visibility: hidden;
    transform: translateY(180px); /* Aumentado para evitar colisão inicial */
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding-top: 15vh; /* Respiro extra para garantir que o título suma antes */
}

.hero__stage.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- Stage Unified --- */
.hero__stage--unified {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 0 8vw;
    z-index: 10;
}

.hero__stage-inner {
    max-width: 100%; /* Ocupa 100% do container pai de 50% */
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .hero { height: auto; }
    .hero__viewport { position: relative; height: auto; min-height: 100vh; padding: 80px 0; }
    .hero__stage { position: relative; inset: auto; height: auto; padding: 0 24px; opacity: 1; transform: none; width: 100%; }
    .hero__stage-inner { padding: 0; width: 100%; }
    .hero__stage--unified { position: relative; width: 100%; padding: 0 24px; }
}

/* --- Hero Tag --- */
.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.hero__tag-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero__tag-text {
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* --- Hero Title (Logo Style) --- */
.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px var(--gold-glow);
    margin-bottom: 8px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero__title { font-size: 24px; }
}

.hero__phrase-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    margin-bottom: 60px; /* Mais espaço antes da headline real */
    max-width: 800px;
    text-transform: uppercase;
}

/* --- Hero Headline (Principal - 3 Linhas Fixas) --- */
.hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    text-shadow: 0 0 40px var(--gold-glow);
    margin-bottom: 32px;
    max-width: 100%;
    white-space: nowrap; /* Garante que os <br> sejam os únicos pontos de quebra */
}

@media (max-width: 768px) {
    .hero__headline { 
        font-size: 5.5vw; /* Escala para caber no 100% de largura do mobile */
    }
}

.hero__desc {
    font-size: 1.125rem;
    color: #D1D5DB;
    max-width: 100%;
    margin: 0 0 48px;
    font-weight: 300;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero__desc { font-size: 1.25rem; }
}

/* Removido o estilo antigo da frase para usar .hero__phrase-small */

/* --- Hero Actions --- */
.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.hero__btn-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 640px) {
    .hero__btn-group { flex-direction: row; }
}

/* --- Hero Progress (Vagas Limitadas) --- */
.hero__progress {
    width: 100%;
    max-width: 448px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(239, 20, 62, 0.2);
}

.hero__progress-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.hero__progress-bar-container {
    width: 100%;
    background: rgba(239, 20, 62, 0.2);
    border-radius: 999px;
    overflow: hidden;
    height: 8px;
    position: relative;
}

.hero__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    width: 85%;
    position: relative;
    border-radius: 999px;
}

.hero__progress-fill::after {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: shine 2s infinite;
}


/* --- Hero Headline (Stage 3) --- */
.hero__headline {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #fff;
}

/* Efeito 'Cool' nos números e destaques */
.hero__pop {
    position: relative;
    display: inline-block;
    color: var(--gold);
    /* Efeito de brilho pulsante sutil */
    animation: gold-glow 3s infinite alternate ease-in-out;
}

@keyframes gold-glow {
    0% {
        text-shadow: 0 0 5px rgba(239, 20, 62, 0.2);
        filter: brightness(1);
    }
    100% {
        text-shadow: 0 0 15px rgba(239, 20, 62, 0.6), 0 0 30px rgba(239, 20, 62, 0.2);
        filter: brightness(1.3);
    }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 16px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn:hover::before { transform: translateX(100%); }

/* Botão Gold (CTA Principal) */
.btn--gold {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    white-space: nowrap; /* Linha única sempre */
    overflow: visible; /* Permitir que o brilho do circuito apareça por fora */
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
}

/* Shine Sweep Effect */
.btn--gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    background-position: -150% 0;
    background-repeat: no-repeat;
    transition: background-position 0.6s ease;
    z-index: 1;
    border-radius: inherit;
}

.btn--gold:hover::before {
    background-position: 150% 0;
}

.btn--gold:hover {
    background: var(--gold-hover);
    transform: scale(0.95);
    box-shadow: 0 10px 30px var(--gold-glow);
}

/* Efeito de Circuito para Botões */
@keyframes spinCircuit {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.btn-circuit-container {
    position: absolute;
    inset: -2px; /* Expande para fora da borda */
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
    padding: 2px; /* Espessura do brilho externo */
    border-radius: inherit;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-circuit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vmax; /* Tamanho massivo para garantir que o raio cubra as laterais */
    height: 200vmax;
    aspect-ratio: 1;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 300deg,
        #ffffff 360deg
    );
    animation: spinCircuit 4s linear infinite;
    transform: translate(-50%, -50%);
}

/* Garantir que o conteúdo do botão fique acima do brilho */
.btn--gold > span, 
.btn--gold > iconify-icon,
.btn--play > span,
.btn--play > iconify-icon,
.floating-cta > span {
    position: relative;
    z-index: 5;
}

/* Botão Play / Outline */
.btn--play {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    border: 1px solid rgba(239, 20, 62, 0.2);
    background: transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    overflow: visible; /* Permitir circuito externo */
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap; /* Linha única sempre */
}

/* Shine Sweep Effect */
.btn--play::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(239, 20, 62, 0.2), transparent);
    background-size: 200% 100%;
    background-position: -150% 0;
    background-repeat: no-repeat;
    transition: background-position 0.6s ease;
    z-index: 1;
    border-radius: inherit;
}

.btn--play:hover::before {
    background-position: 150% 0;
}

.btn--play:hover {
    color: var(--gold);
    border-color: rgba(239, 20, 62, 0.5);
    box-shadow: 0 5px 20px rgba(239, 20, 62, 0.15);
}

/* Botão Primário (Vermelho) */
.btn--primary {
    background-color: var(--primary);
    color: #fff;
}

.btn--primary:hover {
    box-shadow: 0 10px 30px var(--primary-glow);
}

/* Botão Outline */
.btn--outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--text-muted);
    box-shadow: none;
}

.btn--outline:hover::before { display: none; }

/* Botão Shrink Animation */
.btn--shrink:hover { transform: scale(0.96); }

/* Arrow Icon inside buttons */
.btn__icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn:hover .btn__icon { transform: translateX(4px); }


/* ========== MARQUEE ========== */
.marquee {
    padding: 30px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    overflow: hidden;
}

.section-padding {
    padding: 0; /* Removido para usar apenas .container */
}

.marquee__track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee__item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    transition: color 0.3s;
    white-space: nowrap;
}

.marquee__item:hover { color: #fff; }

.marquee__dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}


/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

@keyframes shine {
    0%   { background-position: 0 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes marqueeScroll {
    to { transform: translateX(-50%); }
}

@keyframes spinCircuit {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Scroll Reveal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out-expo);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SECTION TYPOGRAPHY ========== */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    text-shadow: 0 0 30px var(--gold-glow);
}
.section-title-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.8em;
    font-weight: 400;
    color: var(--gold);
    text-transform: none;
    letter-spacing: normal;
}
.section-desc {
    font-size: 1.125rem;
    color: #D1D5DB;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .section-desc { font-size: 1.25rem; }
}

/* ========== FLASHLIGHT CARDS ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 48px;
}
@media (max-width: 768px) {
    .grid-3 { gap: 24px; }
}
.flashlight-card {
    position: relative;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
    .flashlight-card { padding: 32px; }
}
.flashlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x) var(--mouse-y),
        rgba(255, 255, 255, 0.03),
        transparent 40%
    );
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}
.flashlight-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        rgba(239, 20, 62, 0.6),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s;
}
.flashlight-card:hover::before,
.flashlight-card:hover .flashlight-border { opacity: 1; }


/* ========== SEÇÃO 2 – ANTES DE TUDO (Text Panels) ========== */
.s2 {
    position: relative;
    min-height: 100vh;
    background: var(--bg-base);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.s2__viewport {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 128px 48px;
    background: radial-gradient(circle at center, rgba(239, 20, 62, 0.03) 0%, transparent 70%);
}

.s2__track {
    display: flex;
    justify-content: center;
    width: 100%;
}

.s2__panel {
    width: 100%;
    max-width: 864px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.s2__panel-inner {
    width: 100%;
}

/* ---- Headline principal ---- */
.s2__super {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.s2__super-line {
    width: 48px;
    height: 1px;
    background: var(--gold);
}

.s2__super-text {
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.s2__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    text-shadow: 0 0 30px var(--gold-glow);
    margin-bottom: 20px;
}

.s2__title-gold {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}

.s2__subtitle {
    font-size: 18px;
    color: #D1D5DB;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 640px;
}

.s2__subtitle em {
    color: var(--gold);
    font-style: italic;
}

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .s2 {
        min-height: auto;
        padding: 96px 0;
    }
    .s2__viewport {
        padding: 0 24px;
    }
    .s2__title {
        font-size: 26px;
    }
    .s2__subtitle {
        font-size: 18px;
    }
}


/* ============================================
   SEÇÃO 3 – O QUE É A LEGIÃO
   ============================================ */

.s3 {
    position: relative;
    height: 300vh;
    background-color: var(--bg-base);
}

.s3__viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.s3__zoom-layer {
    position: absolute;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
    contain: paint;
}

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

.s3__zoom-container .hero-v2-tag {
    margin-bottom: 24px;
}

.s3__zoom-title-container {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
}

.s3__zoom-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.s3__zoom-target {
    fill: var(--gold);
}

.s3__zoom-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 500;
}

.s3__content-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 48px;
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    will-change: transform, opacity;
}

.s3__content-layer.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.s3__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.s3__main-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.s3__lead {
    font-family: 'Playfair Display', serif;
    font-size: 30px; /* H3 Principle */
    line-height: 1.3;
    color: #fff;
}

.s3__lead strong {
    color: var(--gold);
    font-weight: 700;
}

.s3__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.s3__detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.s3__detail-icon {
    width: 56px;
    height: 56px;
    font-family: 'Fira Code', monospace;
    font-size: 20px;
    border-radius: 8px;
    flex-shrink: 0;
}

.s3__detail-icon iconify-icon {
    font-size: 24px;
}

.s3__detail-item p {
    font-size: 18px; /* Body Principle */
    line-height: 1.6;
    color: var(--text-muted);
}

.s3__detail-item p strong {
    color: #fff;
    font-weight: 600;
}

.s3__body {
    font-size: 16px; /* Body Default */
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 90%;
}

.s3__sidebar {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s3__quote-box {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.s3__quote-icon {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
    top: 24px;
    right: 24px;
}

.s3__quote-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
    position: relative;
    z-index: 10;
}

.s3__quote-label {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .s3__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .s3__quote-box {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .s3 { height: 300vh; } /* Voltando para 300vh para garantir tempo de sticky */
    .s3__zoom-container { padding: 0 5vw; }
    .s3__zoom-layer { position: absolute; inset: 0; height: 100%; margin-bottom: 64px; } 
    .s3__zoom-title { font-size: 36px; white-space: normal; }
    .s3__lead { font-size: 24px; }
    .s3__detail-icon { width: 48px; height: 48px; font-size: 20px; }
}

/* ============================================
   SEÇÃO 4 – GAMIFICAÇÃO E RESULTADO
   ============================================ */

/* ============================================
   SEÇÃO 4 – GAMIFICAÇÃO (Timeline Vertical)
   ============================================ */

.s4 {
    position: relative;
    min-height: 350vh; /* Mais curto para uma transição sem esperas */
    background-color: var(--bg-base);
    border-bottom: 1px solid var(--border-color);
}

/* Tela Isolada do Título */
.s4__title-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
    text-align: center;
}

.s4__title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.s4__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px; /* H2 Section Rule Original */
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.025em; /* tracking-tight */
    color: #fff;
    text-transform: uppercase;
}

.s4__title .letter {
    display: inline-block;
    opacity: 0; /* Totalmente invisível */
    transform: translateY(20px);
    filter: blur(10px);
    transition: all 0.5s var(--ease-out-expo);
}

.s4__title .letter.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    text-shadow: 0 0 40px var(--primary-glow);
}

/* Conteúdo Revelado */
.s4__content-reveal {
    position: relative;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    padding-bottom: 128px;
    background: var(--bg-base); /* Garante que cubra o título se necessário */
}

.s4__intro-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.s4__intro {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.s4__intro strong {
    color: var(--primary);
}

/* Timeline Structure */
.s4__timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    z-index: 1; /* Novo stacking context */
}

/* Vertical Line */
.s4__timeline-line-container {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
    z-index: 0; /* Abaixo dos itens */
}

.s4__timeline-line-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%; /* Animado via JS */
    background: linear-gradient(to bottom, var(--primary), #ff4d4d);
    box-shadow: 0 0 20px var(--primary);
    transition: height 0.1s linear;
}

/* Timeline Items */
.s4__timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

.s4__timeline-item:last-child {
    margin-bottom: 0;
}

/* Dots */
.s4__timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    background: var(--bg-base);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.4s ease;
}

/* Ocultar dot no item centralizado para não sobrepor o texto */
.s4__timeline-content--center ~ .s4__timeline-dot,
.s4__timeline-item:has(.s4__timeline-content--center) .s4__timeline-dot {
    display: none !important;
}

.s4__timeline-item.active .s4__timeline-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary);
    transform: translate(-50%, -50%) scale(1.2);
}

/* Content Positioning */
.s4__timeline-content {
    width: 45%;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out-expo);
    position: relative;
    z-index: 10;
}

.s4__timeline-item.active .s4__timeline-content {
    opacity: 1;
    transform: translateY(0);
}

.s4__timeline-content--left {
    margin-right: auto;
    padding-right: 60px;
    text-align: right;
}

.s4__timeline-content--right {
    margin-left: auto;
    padding-left: 60px;
    text-align: left;
}

.s4__timeline-content--center {
    width: 80%;
    text-align: center;
}

/* Adjustments for existing cards inside timeline */
.s4 .s4__card {
    background: #000;
    border: 1px solid var(--border-color);
    padding: 40px; /* Padding interno de cards Rule (40-64px) */
    border-radius: 0; /* Alinhado com rounded-none dos princípios */
    text-align: left;
    height: auto;
}

.s4__timeline-content--left .s4__card {
    border-right: 4px solid var(--primary);
}

.s4__timeline-content--right .s4__card {
    border-left: 4px solid var(--primary);
}

@media (max-width: 768px) {
    .s4 { min-height: 350vh; } /* Voltando para 350vh para garantir tempo de sticky */
    .s4__title { font-size: 5.5vw; white-space: nowrap; }
}

.s4__card-tag {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
}

.s4__card-title {
    font-size: 18px; /* H3 Card Rule */
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.s4__card-title span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

.s4__card-text {
    font-size: 16px;
    color: var(--text-muted);
}

.s4__card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.s4__list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.s4__list-item iconify-icon {
    color: var(--primary);
    font-size: 1.2em; /* Icon Rule */
}

.s4__card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
}

.s4__card-footer p {
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.s4__closing-phrase {
    padding: 60px 40px;
    background-color: #000; /* Fundo sólido preto */
    background-image: linear-gradient(180deg, rgba(239, 20, 62, 0.15) 0%, transparent 100%);
    border-radius: 24px;
    border: 1px solid rgba(239, 20, 62, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.s4__closing-phrase p {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    font-style: italic;
    text-shadow: 0 0 20px var(--primary-glow);
}

.s4__closing-phrase strong {
    color: var(--primary);
    font-weight: 700;
}

.s4__result-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.s4__result-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.4;
}

.s4__result-list iconify-icon {
    color: var(--primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   SECTION 5: BIOGRAPHY
   ========================================================================== */
.s5 {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-base);
    z-index: 10;
}

.s5__header {
    margin-bottom: 80px; /* Gap entre blocos principais Rule */
}

/* Tag removida e substituída por hero-v2-tag */

.s5__title {
    font-size: 36px; /* H2 Section Rule */
    line-height: 1.1;
    color: #fff;
    max-width: 900px;
    letter-spacing: -0.025em;
}

.s5__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px; /* Gap Desktop Rule */
    align-items: center;
}

.s5__intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 800px;
}

.s5__commander-box {
    position: relative;
    background: transparent;
    border: none;
    padding: 0;
}

.s5__commander-tag {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
    display: block;
}

.s5__commander-name {
    font-size: 32px;
    margin-bottom: 32px;
    color: #fff;
    letter-spacing: -0.025em;
}

.s5__commander-name span {
    font-size: 16px;
    color: var(--text-muted);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
    display: block;
    margin-top: 8px;
}

.s5__bio-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
}

.s5__features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.s5__features-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.s5__features-list iconify-icon {
    font-size: 1.5em; /* Icon Rule (relative size) */
    color: var(--primary);
    flex-shrink: 0;
}

.s5__features-list span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Image Wrapper */
.s5__image-wrapper {
    position: sticky;
    top: 150px;
}

.s5__image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.2;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.s5__image-placeholder {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.s5__image-placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    z-index: 2;
}

.s5__commander-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.s5__image-placeholder-content iconify-icon {
    font-size: 64px;
    opacity: 0.3;
}

.s5__image-placeholder-content span {
    font-size: 12px;
    letter-spacing: 0.2em;
    font-weight: 600;
}

.s5__image-glow {
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(239, 20, 62, 0.15) 0%, transparent 60%);
    top: -25%;
    left: -25%;
    z-index: 1;
}

.s5__image-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(239, 20, 62, 0.3);
    border-radius: 12px;
    pointer-events: none;
    z-index: 3;
}

.s5__image-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(239, 20, 62, 0.4);
}

.s5__transition {
    margin-top: 128px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.s5__transition p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-muted);
    font-style: italic;
}

/* Responsividade */
@media (max-width: 1024px) {
    .s5__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .s5__image-wrapper {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }

    .s5__features-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .s5__commander-box {
        padding: 0;
    }

    .s5__commander-name {
        font-size: 32px;
    }

    .s5__transition {
        margin-top: 80px;
    }
}

/* ==========================================================================
   SECTION 6: CHRONOS (IA INSTITUCIONAL)
   ========================================================================== */
.s6 {
    position: relative;
    background-color: var(--bg-base);
    overflow: hidden;
    z-index: 10;
}

/* Circuito Animado */
.s6__circuit-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
    padding: 2px;
    background: rgba(239, 20, 62, 0.15); /* Base do circuito estático mais forte */
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.s6__circuit-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300vmax;
    height: 300vmax;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent 0 340deg, var(--gold) 355deg, #fff 360deg);
    animation: spinCircuit 3s linear infinite;
    opacity: 1;
}

@keyframes spinCircuit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.s6__header {
    margin-bottom: 60px;
}

.s6__title {
    font-size: 36px;
    line-height: 1.1;
    color: #fff;
    max-width: 900px;
    letter-spacing: -0.025em;
}

.s6__intro {
    max-width: 900px;
}

.s6__intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

.s6__practice-title {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.25em;
    margin-bottom: 48px;
    text-transform: uppercase;
    display: block;
}

/* S6 Diagram */
.s6__diagram {
    position: relative;
    height: 600px;
    width: 100%;
    margin-bottom: 48px; /* space before the grid */
}

.s6__diagram-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.s6__diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.s6__diagram-center-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 128px;
    height: 128px;
}

.s6__diagram-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    animation: pingNode 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingNode {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.s6__diagram-blur {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    filter: blur(24px);
}

.s6__diagram-server {
    position: relative;
    width: 96px;
    height: 96px;
    background-color: var(--bg-surface);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    backdrop-filter: blur(16px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.s6__diagram-server iconify-icon {
    color: #fff;
    font-size: 36px;
    transition: color 0.3s ease;
}

.s6__diagram-server:hover {
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(239, 20, 62, 0.2);
}

.s6__diagram-server:hover iconify-icon {
    color: var(--gold);
}

.s6__diagram-center-tooltip {
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
    z-index: 40;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
}

.s6__diagram-server.group:hover .s6__diagram-center-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.s6__diagram-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.s6__diagram-ring-1 {
    inset: -16px;
    animation: spinRing 12s linear infinite;
}

.s6__diagram-ring-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

.s6__diagram-ring-2 {
    inset: -48px;
    border-style: dashed;
    animation: spinRingReverse 24s linear infinite;
}

.s6__diagram-ring-3 {
    inset: -80px;
    opacity: 0.3;
    animation: spinRing 30s linear infinite;
}

.s6__diagram-ring-3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spinRingReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.s6__diagram-node {
    position: absolute;
    z-index: 20;
    margin-top: -24px;
    margin-left: -24px;
    cursor: pointer;
}

.s6__diagram-node-1 {
    top: 20%;
    left: 15%;
    animation: floatNode 6s ease-in-out infinite;
}

.s6__diagram-node-2 {
    top: 20%;
    left: 85%;
    animation: floatNode 7s ease-in-out infinite 1s;
}

.s6__diagram-node-3 {
    top: 80%;
    left: 15%;
    animation: floatNode 8s ease-in-out infinite 2s;
}

.s6__diagram-node-4 {
    top: 80%;
    left: 85%;
    animation: floatNode 6.5s ease-in-out infinite 0.5s;
}

.s6__diagram-node-5 {
    top: 50%;
    left: 10%;
    animation: floatNode 7.5s ease-in-out infinite 1.5s;
}

.s6__diagram-node-6 {
    top: 50%;
    left: 90%;
    animation: floatNode 6s ease-in-out infinite 2.5s;
}

@keyframes floatNode {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.s6__diagram-node-box {
    width: 48px;
    height: 48px;
    background-color: var(--bg-surface);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.s6__diagram-node-box iconify-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 24px;
    transition: color 0.3s ease;
}

/* Tooltips */
.s6__diagram-tooltip {
    position: absolute;
    width: 320px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    pointer-events: none;
    z-index: 30;
}

.s6__diagram-tooltip .s6__card-title {
    font-size: 16px;
    margin-bottom: 12px;
    color: #fff;
}

.s6__diagram-tooltip .s6__card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Tooltip Placements */
.s6__diagram-node-1 .s6__diagram-tooltip { top: 0; left: 100%; margin-left: 16px; transform: translateX(-10px); }
.s6__diagram-node-2 .s6__diagram-tooltip { top: 0; right: 100%; margin-right: 16px; transform: translateX(10px); }
.s6__diagram-node-3 .s6__diagram-tooltip { bottom: 0; left: 100%; margin-left: 16px; transform: translateX(-10px); }
.s6__diagram-node-4 .s6__diagram-tooltip { bottom: 0; right: 100%; margin-right: 16px; transform: translateX(10px); }
.s6__diagram-node-5 .s6__diagram-tooltip { top: 50%; left: 100%; margin-left: 16px; margin-top: -60px; transform: translateX(-10px); }
.s6__diagram-node-6 .s6__diagram-tooltip { top: 50%; right: 100%; margin-right: 16px; margin-top: -60px; transform: translateX(10px); }

/* Hover Effects */
.s6__diagram-node:hover .s6__diagram-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.s6__diagram-node:hover .s6__diagram-node-box {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(239, 20, 62, 0.3);
}

.s6__diagram-node:hover .s6__diagram-node-box iconify-icon {
    color: var(--gold);
}

.s6__diagram-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.s6__diagram-lines line {
    opacity: 0.5;
}

.s6__diagram-glow {
    position: absolute;
    width: 256px;
    height: 256px;
    background-color: rgba(255, 255, 255, 0.05);
    filter: blur(80px);
    pointer-events: none;
}

.s6__diagram-glow-1 {
    top: 0;
    right: 0;
}

.s6__diagram-glow-2 {
    bottom: 0;
    left: 0;
}

/* Limitações Chronos (6.1) */
.s6__limitations {
    display: flex;
    justify-content: center;
    width: 100%;
}

.s6__limitations-card {
    max-width: 800px;
    width: 100%;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.s6__limitations-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 32px;
}

.s6__limitations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.s6__limitations-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
}

.s6__limitations-list li iconify-icon {
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Resumo Chronos (6.2) */
.s6__summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 32px;
    padding: 0 24px;
}

.s6__summary-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.s6__summary-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-muted);
    max-width: 900px;
}

.s6__summary-text .text-white {
    color: #fff;
    font-weight: 600;
}

.s6__summary-text .text-primary {
    color: var(--primary);
    font-weight: 700;
}

/* S6 Cards - (Removido do grid) */

/* Utilitários de Margem */
.mt-128 { margin-top: 128px; }

/* Responsividade */
@media (max-width: 1024px) {
    .mt-128 { margin-top: 96px; }
}

@media (max-width: 768px) {
    .s6__title {
        font-size: 28px;
    }
    
    .s6__diagram {
        height: 700px;
    }
    
    /* Center tooltips on mobile - Original behavior kept as fallback */
    .s6__diagram-node-1 .s6__diagram-tooltip,
    .s6__diagram-node-2 .s6__diagram-tooltip,
    .s6__diagram-node-3 .s6__diagram-tooltip,
    .s6__diagram-node-4 .s6__diagram-tooltip,
    .s6__diagram-node-5 .s6__diagram-tooltip,
    .s6__diagram-node-6 .s6__diagram-tooltip {
        width: 260px;
        left: 50%;
        right: auto;
        margin-left: -130px;
        margin-right: 0;
    }

    /* Modal Style for Mobile (Teleport System) */
    .s6__diagram-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: auto;
    }

    .s6__diagram-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .s6__mobile-modal {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: 85vw;
        max-width: 360px;
        background: var(--bg-surface);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 32px 24px;
        border-radius: 20px;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.9);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(20px);
        pointer-events: auto;
    }

    .s6__mobile-modal.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

    .s6__mobile-modal-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
    }

    .s6__mobile-modal-content .s6__card-title {
        font-size: 18px;
        margin-bottom: 12px;
        color: var(--primary);
        font-weight: 700;
    }

    .s6__mobile-modal-content .s6__card-text {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-muted);
    }
    
    .s6__limitations-card {
        padding: 32px 24px;
    }
    
    .s6__summary-text {
        font-size: 20px;
    }
}

/* ========== SEÇÃO 7: COORTES ========== */
.s7 {
    position: relative;
    padding: 128px 0;
    background-color: var(--bg-base);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.s7__bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 4rem 4rem;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

.s7__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 10;
}

.s7__header {
    text-align: center;
    margin-bottom: 80px;
}

.s7__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.s7__title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 24px;
}

.s7__desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.s7__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.s7__card {
    display: flex;
    flex-direction: column;
    padding: 56px 48px;
}

.s7__card-alpha {
    --card-accent: #ff4747;
    --card-accent-glow: rgba(255, 71, 71, 0.4);
}

.s7__card-omega {
    --card-accent: #3b82f6;
    --card-accent-glow: rgba(59, 130, 246, 0.4);
}

.s7__card .flashlight-border {
    background: radial-gradient(
        400px circle at var(--mouse-x) var(--mouse-y),
        var(--card-accent-glow),
        transparent 40%
    );
}

.s7__card-icon {
    font-size: 64px;
    color: var(--card-accent);
    margin-bottom: 32px;
    filter: drop-shadow(0 0 20px var(--card-accent-glow));
}

.s7__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.s7__card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--card-accent);
    text-transform: uppercase;
    margin-bottom: 40px;
    display: block;
}

.s7__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    list-style: none;
}

.s7__list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.s7__list-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.s7__list-label iconify-icon {
    font-size: 16px;
    color: var(--card-accent);
    opacity: 0.7;
}

.s7__list-value {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.s7__list-value.quote {
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--card-accent);
}

/* ========== SEÇÃO 8: SISTEMA DE PONTUAÇÃO (Scroll-Driven Merge) ========== */
.s8 {
    height: 750vh;
    background-color: var(--bg-surface);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.s8__sticky-viewport {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Centraliza verticalmente o conteúdo */
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

.s8__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    width: 100%;
}

.s8__scene {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.s8__header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s8__dashboard {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.s8__dashboard-top {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 32px;
    position: relative;
}

.s8__dashboard-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.s8__dashboard-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.s8__dashboard-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Live Indicator */
.s8__live {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 249, 31, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(198, 249, 31, 0.2);
}

.s8__live-dot {
    width: 8px;
    height: 8px;
    background: #c6f91f;
    border-radius: 50%;
    position: relative;
}

.s8__live-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #c6f91f;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.s8__live-text {
    font-size: 10px;
    font-weight: 700;
    color: #c6f91f;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Grid */
.s8__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.s8__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    background: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.s8__item:hover {
    background: transparent;
    border-color: transparent;
}

.s8__item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.s8__item-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.s8__item-icon-box {
    width: 32px;
    height: 32px;
    background: rgba(239, 20, 62, 0.1);
    border: 1px solid rgba(239, 20, 62, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.s8__item-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.s8__item:hover .s8__item-name {
    color: #fff;
}

.s8__item-value {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.s8__item--negative .s8__item-value {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Progress Animation */
@keyframes progress-loop {
    0% { width: 0%; opacity: 0.5; }
    20% { width: 10%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

.s8__progress-track {
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.s8__progress-fill {
    height: 100%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
    width: 0;
}

.s8__item--negative .s8__progress-fill {
    background: var(--text-muted);
    box-shadow: none;
}

/* ===== Card Unificado (Merged) ===== */
.s8__merged {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    z-index: 20;
    transition: opacity 0.6s ease;
}

.s8__merged.active {
    opacity: 1;
    pointer-events: auto;
}

.s8__merged-card {
    width: 100%;
    max-width: 1000px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 32px 48px;
    position: relative;
    overflow: hidden;
}

.s8__merged-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 20, 62, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}



/* Contador */
.s8__merged-counter {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.s8__merged-counter-value {
    font-family: 'Fira Code', monospace;
    font-size: 80px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 60px var(--gold-glow);
    transition: text-shadow 0.5s ease;
}

.s8__merged-counter-value.complete {
    text-shadow: 0 0 80px var(--gold-glow), 0 0 120px var(--gold-glow);
}

.s8__merged-counter-unit {
    font-family: 'Fira Code', monospace;
    font-size: 24px;
    font-weight: 500;
    color: rgba(239, 20, 62, 0.6);
    margin-left: 8px;
    letter-spacing: 0.1em;
}

/* Barra de Progresso Principal */
.s8__main-progress-wrap {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.s8__main-progress-track {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.s8__main-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 999px;
    position: relative;
    transition: width 0.1s linear;
}

.s8__main-progress-fill::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2s infinite;
}

.s8__main-progress-glow {
    position: absolute;
    top: -4px;
    bottom: -4px;
    left: 0;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    filter: blur(8px);
    opacity: 0.4;
    transition: width 0.1s linear;
    pointer-events: none;
}

.s8__main-progress-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

#s8-progress-percent {
    color: var(--gold);
    font-weight: 700;
}

/* Lista Consolidada */
.s8__merged-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    position: relative;
    z-index: 1;
}

.s8__merged-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-muted);
    transition: all 0.4s ease;
}

.s8__merged-list-item.highlight {
    background: rgba(239, 20, 62, 0.08);
    border-color: rgba(239, 20, 62, 0.2);
    color: #fff;
}

.s8__merged-list-item iconify-icon {
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.s8__merged-list-item span:first-of-type {
    flex: 1;
}

.s8__merged-mh {
    font-family: 'Fira Code', monospace;
    font-weight: 700;
    color: var(--gold);
    font-size: 12px;
}

.s8__merged-list-item--neg iconify-icon {
    color: var(--text-muted);
}

.s8__merged-list-item--neg .s8__merged-mh {
    color: var(--text-muted);
}

/* Pulse no completion */
@keyframes s8-pulse-complete {
    0% { box-shadow: 0 0 0 0 rgba(239, 20, 62, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(239, 20, 62, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 20, 62, 0); }
}

.s8__merged-card.pulse {
    animation: s8-pulse-complete 1.5s ease-out;
}

@keyframes s8FlashAbsorb {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0.3);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(2);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
    }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@media (max-width: 1024px) {
    .s8__grid {
        grid-template-columns: 1fr;
    }
    .s8__merged-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .s8 {
        height: 850vh;
        padding: 0;
        overflow: visible; /* Garante que o sticky funcione */
    }
    
    .s8__sticky-viewport {
        position: sticky;
        top: 0;
        height: 100vh;
        z-index: 50;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .s8__container {
        padding: 0 16px;
        transform: scale(0.75);
        transform-origin: center center;
    }
    
    .s8__dashboard {
        padding: 24px 16px;
    }
    
    .s8__dashboard-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    
    .s8__dashboard-title {
        font-size: 16px;
    }

    .s8__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .s8__item {
        padding: 16px;
    }

    .s8__item-icon-box {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .s8__item-name {
        font-size: 10px;
    }

    .s8__item-value {
        font-size: 12px;
    }
    
    .s8__live {
        position: absolute;
        right: 0;
        top: -10px;
        padding: 4px 10px;
    }
    
    .s8__merged {
        position: absolute;
        inset: 0;
        opacity: 0;
        pointer-events: none;
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .s8__merged-card {
        padding: 32px 20px;
        width: 100%;
        max-width: 100%;
    }
    
    .s8__merged-counter-value {
        font-size: 48px;
    }

    .s8__merged-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .s8__merged-list-item {
        padding: 8px 10px;
        font-size: 10px;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(3);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .s7__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .s7 {
        padding: 96px 0;
    }
    
    .s7__container {
        padding: 0 24px;
    }
    
    .s7__title {
        font-size: 36px;
    }
    
    .s7__card {
        padding: 40px 32px;
    }
    
    .s7__card-title {
        font-size: 28px;
    }
}

/* Utilitários Extras */
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-5 { margin-bottom: 20px; }

/* Responsividade Mobile */
@media (max-width: 768px) {
    .s4__timeline-line-container {
        left: 30px;
    }
    
    .s4__timeline-dot {
        left: 30px;
    }
    
    .s4__timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
        padding-left: 20px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .s4__timeline-content--center {
        width: calc(100% - 60px);
    }

    .s4 .s4__card {
        padding: 32px;
    }
}


/* ============================================
   SEÇÃO 10: PRÊMIOS DA COORTE
   ============================================ */
.s10-prizes {
    position: relative;
    padding: 160px 0;
    overflow: hidden;
    background-color: var(--bg-base);
}

.s10__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Gráfico Isométrico (Esquerda) */
.s10__iso-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s10__iso-axis {
    position: absolute;
    left: 50%;
    top: -20%;
    bottom: -20%;
    width: 1px;
    border-left: 1px dashed rgba(255,255,255,0.2);
    transform: translateX(-50%);
    z-index: -1;
}

.s10__iso-layer {
    position: absolute;
    inset: 0;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Layers iniciais e Hover Effect */
.s10__iso-layer--1 { transform: translateY(-48px); z-index: 30; }
.s10__iso-layer--2 { transform: translateY(0); z-index: 20; }
.s10__iso-layer--3 { transform: translateY(48px); z-index: 10; }
.s10__iso-layer--4 { transform: translateY(96px); z-index: 0; }

.s10__iso-layer--1:hover { transform: translateY(-64px) !important; }
.s10__iso-layer--2:hover { transform: translateY(-8px) !important; }
.s10__iso-layer--3:hover { transform: translateY(56px) !important; }
.s10__iso-layer--4:hover { transform: translateY(112px) !important; }

/* As Placas isométricas em si */
.s10__iso-plate {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(2px);
    transform: rotate(45deg) scaleY(0.5);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    transition: border-color 0.4s ease, background 0.4s ease;
}

/* Hover da Camada inteira afeta a placa e acende a label */
.s10__iso-layer:hover .s10__iso-plate {
    border-color: rgba(239, 20, 62, 0.4);
}

.s10__iso-layer--1:hover .s10__iso-plate {
    border-color: rgba(239, 20, 62, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

/* Labels e Tags */
.s10__iso-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 1s ease 0.3s;
}

/* Ao aparecer via scroll, a classe .in-view dispara isso (ou apenas garantindo opacidade 1 se preferir a animação via AOS) */
.s10__visual.is-visible .s10__iso-label {
    opacity: 1;
}

.s10__iso-label--left {
    left: -120px;
    flex-direction: row-reverse;
}

.s10__iso-label--right {
    right: -120px;
}

.s10__iso-tag {
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5);
}

.s10__iso-tag span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Indicadores tipo UI (bateriazinhas) */
.s10__iso-indicator {
    width: 32px;
    height: 16px;
    background: var(--bg-base);
    border-radius: 9999px;
    position: relative;
}

.s10__iso-indicator--gold {
    background: var(--gold);
}

.s10__iso-dot {
    position: absolute;
    right: 2px;
    top: 2px;
    bottom: 2px;
    width: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 9999px;
}

.s10__iso-dot--black { background: #000; }
.s10__iso-dot--red { background: var(--primary); }

.s10__iso-line {
    width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

.s10__iso-label--left .s10__iso-line {
    transform-origin: right;
    transform: rotate(25deg);
}

.s10__iso-label--right .s10__iso-line {
    transform-origin: left;
    transform: rotate(-25deg);
}

/* Direita: Conteúdo de Prêmios (Texto e Lista) */
.s10__title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.text-gold {
    color: var(--gold);
    font-style: italic;
}

.s10__desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 64px;
    max-width: 500px;
}

.s10__list {
    position: relative;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.s10__list-line {
    position: absolute;
    top: 16px;
    bottom: 16px;
    left: 31px; /* Center with the 40px icon */
    width: 1px;
    background: linear-gradient(to bottom, var(--gold), rgba(255,255,255,0.1) 30%, transparent);
    opacity: 0.5;
}

.s10__item {
    position: relative;
    display: flex;
    gap: 32px;
    cursor: default;
}

.s10__icon {
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s ease;
}

.s10__item:hover .s10__icon {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(239, 20, 62, 0.2);
}

.s10__text {
    padding-top: 4px;
}

.s10__text h3 {
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
    transition: color 0.4s ease;
}

.s10__item:hover .s10__text h3 {
    color: var(--gold);
}

.s10__text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Bloco Derrotada */
.s10__losers {
    margin-top: 140px;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.s10__losers-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 12px;
}

.s10__losers-subtitle {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 64px;
}

.s10__losers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.s10__loser-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.s10__loser-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239, 20, 62, 0.3);
}

.s10__loser-card iconify-icon {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.s10__loser-card:hover iconify-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.s10__loser-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.s10__loser-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsividade S10 */
@media (max-width: 1200px) {
    .s10__grid { gap: 40px; }
    .s10__iso-label--left { left: -60px; }
    .s10__iso-label--right { right: -60px; }
}

@media (max-width: 1024px) {
    .s10__grid { grid-template-columns: 1fr; gap: 80px; }
    .s10__iso-container { max-width: 400px; }
    .s10__losers-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .s10-prizes { padding: 80px 0; }
    .s10__title { font-size: 40px; }
    
    .s10__iso-label { opacity: 1; }
    .s10__iso-tag { padding: 4px 8px; }
    .s10__iso-tag span { font-size: 9px; }
    .s10__iso-indicator { width: 24px; height: 12px; }
    .s10__iso-dot { width: 8px; }
    
    .s10__iso-label--left { left: -20px; }
    .s10__iso-label--right { right: -20px; }
    .s10__iso-line { width: 30px; }
    
    .s10__loser-card { padding: 32px 24px; }
}


/* ============================================================
   SEÇÃO 11 – A MECÂNICA DOS ENCONTROS
   Arquitetura de 24 Encontros em 4 meses
   ============================================================ */
.s11 {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Header */
.s11__header {
    text-align: center;
    margin-bottom: 80px;
}

.s11__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.s11__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.s11__subtitle strong {
    color: #fff;
    font-weight: 600;
}

/* Grid 2 colunas (Tipo 1 + Tipo 2) */
.s11__grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

/* Card Principal (Tipo 1 e 2) */
.s11__card.flashlight-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.s11__card.flashlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.s11__card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: inherit;
    z-index: 0;
}

.s11__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    transition: opacity 0.6s ease;
}

.s11__card:hover .s11__orb { opacity: 0.25; }

.s11__orb--1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: -40px;
    right: -40px;
}

.s11__orb--2 {
    width: 160px;
    height: 160px;
    background: var(--gold);
    bottom: -30px;
    left: -30px;
    opacity: 0.08;
}

.s11__orb--3 {
    width: 180px;
    height: 180px;
    background: var(--gold);
    top: -30px;
    left: -30px;
    opacity: 0.1;
}

.s11__orb--4 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    bottom: -50px;
    right: -50px;
    opacity: 0.12;
}

.s11__card-inner {
    position: relative;
    z-index: 5;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

/* Card Top (Label + Badge) */
.s11__card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.s11__card-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}

.s11__card-label--gold {
    color: var(--gold);
}

.s11__card-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.s11__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* Status Badge (dot pulsante) */
.s11__status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    background: rgba(239, 20, 62, 0.15);
    border: 1px solid rgba(239, 20, 62, 0.25);
    border-radius: 9999px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.s11__status-dot {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: s11Pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes s11Pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Card Description */
.s11__card-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

/* Info Pills Grid */
.s11__info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.s11__info-pill {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 16px;
    transition: border-color 0.4s ease, background 0.4s ease;
}

.s11__info-pill:hover {
    border-color: rgba(239, 20, 62, 0.25);
    background: rgba(239, 20, 62, 0.05);
}

.s11__info-pill--dark {
    background: rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.08);
}

.s11__info-pill--dark:hover {
    border-color: rgba(239, 20, 62, 0.3);
    background: rgba(239, 20, 62, 0.05);
}

.s11__pill-top {
    margin-bottom: 8px;
}

.s11__pill-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.s11__pill-value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.s11__pill-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    line-height: 1.4;
}

/* Detail Row (horário + estrutura) */
.s11__detail-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s11__detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.s11__detail-item iconify-icon {
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

/* MH Badges Row */
.s11__mh-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.s11__mh-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.s11__mh-badge iconify-icon {
    font-size: 14px;
    flex-shrink: 0;
}

.s11__mh-badge--positive {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.s11__mh-badge--negative {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.s11__mh-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

/* Linha Decorativa Inferior */
.s11__card-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.s11__card-line--gold {
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

/* ── Ritual List (Convergência) ── */
.s11__ritual-list {
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 24px;
}

/* Estado Expandido (Mobile/Tablet) */
.s13__role-card.is-expanded .s13__cards-reveal {
    opacity: 1;
    transform: translateY(0);
}

.s13__role-card.is-expanded {
    height: 90vh; /* Aumenta um pouco para mostrar o conteúdo */
}

.s11__ritual-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 12px;
}

.s11__ritual-items {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.s11__ritual-item {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.s11__ritual-item em {
    font-style: normal;
    font-weight: 700;
    color: #fff;
    font-size: 12px;
    margin-left: 4px;
    padding: 2px 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
}

.s11__ritual-sep {
    color: rgba(255,255,255,0.15);
    font-size: 12px;
}


/* ════════════════════════════════════════════
   TIPO 3 – SEGUNDA BATALHA (Full-Width Card)
   ════════════════════════════════════════════ */
.s11__battle-card.flashlight-card {
    padding: 0;
    margin-bottom: 32px;
    border-color: rgba(239, 20, 62, 0.15);
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(239, 20, 62, 0.05) 100%);
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s ease;
}

.s11__battle-card.flashlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(239, 20, 62, 0.1);
}

/* Orbs da Batalha */
.s11__orb--battle-1 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: -80px;
    right: 10%;
    opacity: 0.06;
}

.s11__orb--battle-2 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    bottom: -60px;
    left: 5%;
    opacity: 0.1;
}

.s11__orb--battle-3 {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
}

.s11__battle-inner {
    position: relative;
    z-index: 5;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.s11__battle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.s11__battle-left {
    flex: 1;
}

.s11__battle-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 0 30px var(--gold-glow);
}

.s11__battle-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
}

.s11__battle-desc strong {
    color: var(--gold);
    font-weight: 600;
}

/* Hero Stat (Lado Direito) */
.s11__battle-right {
    flex-shrink: 0;
}

.s11__battle-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 32px;
    background: rgba(239, 20, 62, 0.06);
    border: 1px solid rgba(239, 20, 62, 0.15);
    border-radius: 16px;
    min-width: 140px;
}

.s11__battle-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 0 30px var(--gold-glow);
}

.s11__battle-stat-unit {
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 4px;
}

.s11__battle-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 8px;
    max-width: 120px;
    line-height: 1.4;
}

/* Info Row da Batalha (3 colunas) */
.s11__battle-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* MH Footer da Batalha */
.s11__battle-mh-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.s11__battle-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    font-size: 13px;
    color: var(--gold);
    opacity: 0.7;
}

.s11__battle-warning iconify-icon {
    font-size: 16px;
    flex-shrink: 0;
}


/* ════════════════════════════════════════
   STATS GRID (3 colunas)
   ════════════════════════════════════════ */
.s11__stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.s11__stat-card.flashlight-card {
    padding: 0;
    text-align: center;
    transition: transform 0.5s var(--ease-out-expo);
}

.s11__stat-card.flashlight-card:hover {
    transform: translateY(-4px);
}

.s11__stat-inner {
    position: relative;
    z-index: 5;
    padding: 32px 24px;
}

.s11__stat-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.s11__stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.s11__stat-unit {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-muted);
    margin-left: 4px;
}

.s11__stat-sub {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.s11__stat-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.s11__stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), rgba(239, 20, 62, 0.4));
    border-radius: 3px;
    transition: width 1.5s var(--ease-out-expo);
}

.s11__stat-bar--gold {
    background: rgba(239, 20, 62, 0.1);
}

.s11__stat-bar-fill--gold {
    background: linear-gradient(90deg, var(--gold), rgba(239, 20, 62, 0.4));
}


/* ════════════════════════════════════════
   FRASE DE FECHAMENTO
   ════════════════════════════════════════ */
.s11__closing {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.s11__closing-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto 32px;
}

.s11__closing-text {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.s11__closing-text strong {
    color: #fff;
    font-weight: 600;
}


/* ════════════════════════════════════════
   RESPONSIVIDADE SEÇÃO 11
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .s11__grid-2 {
        grid-template-columns: 1fr;
    }

    .s11__battle-header {
        flex-direction: column;
        gap: 24px;
    }

    .s11__battle-right {
        align-self: flex-start;
    }

    .s11__battle-info-row {
        grid-template-columns: 1fr;
    }

    .s11__stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .s11__header {
        margin-bottom: 48px;
    }

    .s11__subtitle {
        font-size: 16px;
    }

    .s11__card-inner {
        padding: 28px 24px;
    }

    .s11__card-title {
        font-size: 20px;
    }

    .s11__card-desc {
        font-size: 14px;
    }

    .s11__info-grid {
        grid-template-columns: 1fr;
    }

    .s11__mh-row {
        flex-direction: column;
    }

    .s11__mh-badge {
        justify-content: flex-start;
    }

    /* Ritual list scroll */
    .s11__ritual-items {
        gap: 6px;
    }

    .s11__ritual-item {
        font-size: 12px;
    }

    /* Battle card */
    .s11__battle-inner {
        padding: 28px 24px;
    }

    .s11__battle-title {
        font-size: 24px;
    }

    .s11__battle-desc {
        font-size: 14px;
    }

    .s11__battle-stat-value {
        font-size: 36px;
    }

    .s11__battle-mh-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .s11__battle-warning {
        margin-left: 0;
    }

    /* Stats */
    .s11__stat-number {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .s11__card-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .s11__pill-value {
        font-size: 16px;
    }

    .s11__battle-hero-stat {
        width: 100%;
    }

    .s11__stat-number {
        font-size: 36px;
    }
}


/* ============================================================
   SEÇÃO 12 – A CADÊNCIA REAL — QUINZENA A QUINZENA
   Cronograma operacional dos encontros
   ============================================================ */
.s12 {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.03);
}

/* Grid Background Radial (tradução do Tailwind bg-[linear-gradient...]) */
.s12__grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000 70%, transparent 100%);
}

/* Header */
.s12__header {
    text-align: center;
    margin-bottom: 64px;
}

.s12__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.s12__subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.s12__subtitle strong {
    color: #fff;
    font-weight: 600;
}


/* ════════════════════════════════════════
   TABELA DE CADÊNCIA
   ════════════════════════════════════════ */
.s12__table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}

/* Row Header */
.s12__row--header {
    display: grid;
    grid-template-columns: 180px 220px 1fr;
    gap: 0;
    padding: 16px 32px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.s12__row--header .s12__cell {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* Week Labels (separadores) */
.s12__week-label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0 8px;
}

.s12__week-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    padding: 4px 12px;
    background: rgba(239, 20, 62, 0.08);
    border: 1px solid rgba(239, 20, 62, 0.15);
    border-radius: 6px;
    white-space: nowrap;
}

.s12__week-tag--red {
    color: var(--primary);
    background: rgba(239, 20, 62, 0.08);
    border-color: rgba(239, 20, 62, 0.15);
}

.s12__week-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent);
}

/* Data Rows */
.s12__row--data {
    display: grid;
    grid-template-columns: 180px 220px 1fr;
    gap: 0;
    padding: 24px 32px !important;
    align-items: center;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.s12__row--data:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Variantes de destaque */
.s12__row--highlight {
    border-color: rgba(239, 20, 62, 0.15) !important;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(239, 20, 62, 0.03) 100%) !important;
}

.s12__row--battle {
    border-color: rgba(239, 20, 62, 0.2) !important;
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(239, 20, 62, 0.04) 100%) !important;
}

.s12__row--optional {
    opacity: 0.65;
    border-style: dashed !important;
    border-color: rgba(255,255,255,0.08) !important;
}

.s12__row--optional:hover {
    opacity: 1;
}


/* ── Células ── */
.s12__cell--when {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.s12__cell--event {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.s12__cell--what p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* ── Time Badges ── */
.s12__time-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.s12__time-badge iconify-icon {
    font-size: 16px;
    color: var(--text-muted);
}

.s12__time-badge--gold {
    color: var(--gold);
}

.s12__time-badge--gold iconify-icon {
    color: var(--gold);
}

.s12__time-badge--red {
    color: var(--primary);
}

.s12__time-badge--red iconify-icon {
    color: var(--primary);
}

.s12__time-badge--muted {
    color: var(--text-muted);
}

.s12__week-indicator {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
}

.s12__optional-tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    padding: 2px 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
}


/* ── Event Names ── */
.s12__event-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.s12__event-name--gold {
    color: var(--gold);
    text-shadow: 0 0 20px var(--gold-glow);
}

.s12__event-name--red {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.s12__event-name--muted {
    color: var(--text-muted);
}


/* ── Event Badges ── */
.s12__event-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.s12__event-badge--alfa {
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: #60a5fa;
}

.s12__event-badge--omega {
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.25);
    color: #c084fc;
}

.s12__event-badge--convergencia {
    background: rgba(239, 20, 62, 0.12);
    border: 1px solid rgba(239, 20, 62, 0.25);
    color: var(--gold);
}

.s12__event-badge--batalha {
    background: rgba(239, 20, 62, 0.15);
    border: 1px solid rgba(239, 20, 62, 0.3);
    color: #ef4444;
}

.s12__event-badge--qa {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}


/* ════════════════════════════════════════
   CARD DE CONTAGEM TOTAL
   ════════════════════════════════════════ */
.s12__total-card.flashlight-card {
    padding: 0;
    border-color: rgba(239, 20, 62, 0.15);
    background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(239, 20, 62, 0.03) 100%);
    overflow: hidden;
}

.s12__total-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 20, 62, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.s12__total-inner {
    position: relative;
    z-index: 5;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.s12__total-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.s12__total-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* Grid da equação: 8 + 8 + 8 = 24 */
.s12__total-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.s12__total-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 28px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    min-width: 120px;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.s12__total-item:hover {
    border-color: rgba(239, 20, 62, 0.2);
    transform: translateY(-2px);
}

.s12__total-item--result {
    background: rgba(239, 20, 62, 0.06);
    border-color: rgba(239, 20, 62, 0.2);
}

.s12__total-item--result:hover {
    border-color: rgba(239, 20, 62, 0.4);
}

.s12__total-number {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.s12__total-number--gold {
    color: var(--gold);
    text-shadow: 0 0 30px var(--gold-glow);
}

.s12__total-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.s12__total-label strong {
    color: #fff;
    font-weight: 600;
}

.s12__total-plus,
.s12__total-equals {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    user-select: none;
}

.s12__total-equals {
    color: var(--gold);
    font-weight: 700;
    font-size: 32px;
}

/* Bônus: +8 Q&As */
.s12__total-bonus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.08);
    border-radius: 10px;
}

.s12__total-plus-icon {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    font-weight: 700;
}

.s12__total-bonus-text {
    font-size: 15px;
    color: var(--text-muted);
}

.s12__total-bonus-text strong {
    color: #fff;
    font-weight: 600;
}

/* Footer */
.s12__total-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.s12__total-footer p {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--text-muted);
    font-weight: 400;
}

.s12__total-footer strong {
    color: var(--gold);
    font-weight: 600;
}


/* ════════════════════════════════════════
   RESPONSIVIDADE SEÇÃO 12
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .s12__row--header {
        grid-template-columns: 140px 180px 1fr;
    }

    .s12__row--data {
        grid-template-columns: 140px 180px 1fr;
    }
}

@media (max-width: 768px) {
    .s12__header {
        margin-bottom: 40px;
    }

    .s12__subtitle {
        font-size: 16px;
    }

    /* Tabela: muda para layout empilhado */
    .s12__row--header {
        display: none;
    }

    .s12__row--data {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 32px 24px !important;
        width: 100% !important;
    }

    /* Forçar visibilidade do texto no iPhone */
    .s12__cell {
        width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .s12__cell--what p {
        font-size: 14px;
        color: #fff !important; /* Forçar contraste máximo */
        line-height: 1.6;
    }

    .s12__event-name {
        font-size: 20px !important;
        color: #fff !important;
    }

    .s12__time-badge {
        font-size: 15px !important;
    }

    .s12__cell--event {
        gap: 8px;
    }

    .s12__event-name {
        font-size: 16px;
    }

    .s12__cell--what p {
        font-size: 13px;
    }

    /* Total card */
    .s12__total-inner {
        padding: 28px 24px;
    }

    .s12__total-title {
        font-size: 20px;
    }

    .s12__total-grid {
        gap: 12px;
    }

    .s12__total-item {
        padding: 16px 20px;
        min-width: 90px;
    }

    .s12__total-number {
        font-size: 36px;
    }

    .s12__total-plus,
    .s12__total-equals {
        font-size: 20px;
    }

    .s12__total-equals {
        font-size: 24px;
    }

    .s12__total-bonus {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .s12__total-grid {
        flex-direction: column;
        gap: 8px;
    }

    .s12__total-item {
        width: 100%;
    }

    .s12__total-plus,
    .s12__total-equals {
        font-size: 18px;
    }

    .s12__total-number {
        font-size: 32px;
    }

    .s12__time-badge {
        font-size: 13px;
    }
}

/* =============================================
   SEÇÃO 13 – A HIERARQUIA VIVA (SCROLL-STICKY GRID)
   ============================================= */
.s13 {
    position: relative;
    background: #000;
    padding: 100px 0;
}

.s13__sticky-container {
    position: relative;
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
}

.s13__viewport {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.s13__intro-header {
    text-align: center;
    padding: 0 24px 40px;
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.s13__intro {
    max-width: 650px;
    margin: 0 auto !important;
}

.s13__roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.s13__role-card {
    position: relative;
    height: 65vh; /* Ajustado para caber o header no viewport */
    min-height: 500px;
    background: #000;
    overflow: hidden;
    transition: transform 0.6s var(--ease-out-expo);
}

.s13__visual-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.s13__video-container {
    width: 100%;
    height: 100%;
    display: flex;
}

.s13__video-container video {
    flex: 1;
    width: 50%; /* Garante que ocupem metade cada */
    height: 100%;
    object-fit: cover;
    min-width: 0;
}

.s13__video-container video:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/* Overlay mais forte para contraste */
.s13__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.s13__overlay--main {
    background: linear-gradient(180deg, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.7) 15%, 
        rgba(0,0,0,0) 50%, 
        rgba(0,0,0,0.9) 100%
    );
    opacity: 1;
    z-index: 5; /* Acima dos vídeos e do ::after */
}

/* Overlay extra para escurecer o fundo geral e destacar o texto branco */
.s13__video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.s13__overlay--bottom {
    background: linear-gradient(to top, #000 0%, transparent 40%);
    z-index: 6;
}

.s13__content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px;
    pointer-events: none;
}

.s13__role-info {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s ease;
}

.s13__role-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.s13__role-tag-icon {
    width: 36px;
    height: 36px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.s13__role-card[data-role="general"] .s13__role-tag-icon { color: var(--gold); border-color: var(--gold); }
.s13__role-card[data-role="bobo"] .s13__role-tag-icon { color: var(--primary); border-color: var(--primary); }

.s13__role-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.s13__role-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 280px;
    line-height: 1.4;
}

.s13__cards-reveal {
    opacity: 0;
    transform: translateY(20px);
    will-change: opacity, transform;
}

.s13__reveal-card {
    width: 100%;
}

.s13__card-inner {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 24px;
}

.s13__card-inner h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.s13__card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.s13__card-list li {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
}

.s13__card-list iconify-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.s13__role-card[data-role="bobo"] .s13__card-list iconify-icon { color: var(--primary); }

/* Responsividade */
@media (max-width: 1024px) {
    .s13__roles-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .s13__role-card {
        height: 60vh;
        min-height: 500px;
    }
    
    .s13__role-card.is-expanded {
        height: 80vh;
    }

    .s13__role-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .s13 { padding: 60px 0; }
    .s13__intro-header { padding-bottom: 40px; }
    .s13__content-wrapper { padding: 32px; }
    .s13__role-card { height: 70vh; }
    .s13__role-card.is-expanded { height: 90vh; }
}

/* ========== SEÇÃO 14: A GRADE DE COMBATE (NOVO LAYOUT) ========== */
.s14 {
    position: relative;
    background-color: #050505;
    background-image: 
        radial-gradient(circle at center, rgba(239, 20, 62, 0.05) 0%, transparent 70%);
    padding: 120px 0;
    overflow: visible;
}

.s14__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

.s14__layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
}

/* Coluna Esquerda: Texto Sticky */
.s14__left {
    position: sticky;
    top: 150px;
}

.s14__overline {
    display: block;
    font-size: 14px;
    letter-spacing: 0.3em;
    color: #EF143E;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.s14__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 32px;
}

.s14__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 400px;
}

/* Coluna Direita: Carrossel */
.s14__right {
    position: relative;
    min-width: 0;
}

.s14__carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.s14__cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
}

.s14__item-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 48px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: none; /* Controlado via JS */
}

.s14__item-card.is-active {
    display: block;
    animation: fadeInSlideRight 0.6s ease forwards;
}

@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.s14__item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.s14__item-num {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
}

.s14__item-header iconify-icon {
    font-size: 32px;
    color: #EF143E;
}

.s14__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.s14__item-list {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.s14__item-list li {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 24px;
    position: relative;
}

.s14__item-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 1px;
    background: #EF143E;
}

.s14__item-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.s14__item-footer strong {
    color: #EF143E;
    letter-spacing: 0.1em;
    margin-right: 8px;
}

/* Navegação */
.s14__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.s14__nav:hover {
    background: #EF143E;
    border-color: #EF143E;
    transform: translateY(-50%) scale(1.1);
}

.s14__nav--prev { left: -10px; }
.s14__nav--next { right: -10px; }

/* Dots */
.s14__dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.s14__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.s14__dot.is-active {
    background: #EF143E;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(239, 20, 62, 0.5);
}

/* Responsividade */
@media (max-width: 1100px) {
    .s14__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .s14__left {
        position: relative;
        top: 0;
        text-align: center;
    }
    
    .s14__desc {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .s14 { padding: 60px 0; }
    .s14__container { padding: 0 20px; }
    .s14__carousel-wrapper { padding: 0 35px; }
    .s14__item-card { padding: 24px; }
    .s14__item-num { font-size: 32px; }
    .s14__item-header { margin-bottom: 20px; }
    .s14__item-header iconify-icon { font-size: 24px; }
    .s14__item-title { font-size: 22px; margin-bottom: 16px; }
    .s14__item-list { margin-bottom: 24px; gap: 8px; }
    .s14__item-list li { font-size: 14px; }
    .s14__item-footer { padding-top: 16px; font-size: 13px; }
    
    .s14__nav { width: 36px; height: 36px; }
    .s14__nav--prev { left: -5px; }
    .s14__nav--next { right: -5px; }
    .s14__nav iconify-icon { font-size: 18px; }
}

/* SEÇÃO 15: MANUAL OPERACIONAL (LIVRO 3D) */

/* ==========================================================================
   SEÇÃO 16: O ARSENAL
   ========================================================================== */
.s16 {
    position: relative;
    background-color: #050505;
    background-image: 
        radial-gradient(circle at center, rgba(239, 20, 62, 0.08) 0%, transparent 70%),
        linear-gradient(rgba(239, 20, 62, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 20, 62, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    padding: 100px 0;
    margin-top: 0;
    overflow: visible;
    min-height: auto;
}

.s16__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
}

.s16__layout {
    display: flex;
    position: relative;
    width: 100%;
}

/* Coluna Esquerda: Conteúdo do Baú */
.s16__left {
    width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 500;
}

.s16__sticky-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s16__overline {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #EF143E;
    letter-spacing: 0.4em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.s16__title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
}

.s16__desc {
    font-size: 18px;
    color: #A3A3A3;
    line-height: 1.6;
    max-width: 440px;
}

/* Visual do Baú (3D CSS) */
.s16__chest-scene {
    width: 100%;
    height: 400px;
    margin: 20px auto 0;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
}

.s16__chest-3d {
    width: 320px;
    height: 180px;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) rotateY(35deg);
    animation: s16ChestFloat 4s ease-in-out infinite;
}

@keyframes s16ChestFloat {
    0%, 100% { transform: rotateX(-15deg) rotateY(35deg) translateY(0); }
    50% { transform: rotateX(-15deg) rotateY(35deg) translateY(-15px); }
}

.s16__chest {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

/* Base do Baú */
.s16__chest-face {
    position: absolute;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(239, 20, 62, 0.3);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.9);
}

.s16__chest-face::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(239, 20, 62, 0.1);
}

.s16__chest-face--front  { width: 320px; height: 180px; transform: translateZ(100px); }
.s16__chest-face--back   { width: 320px; height: 180px; transform: rotateY(180deg) translateZ(100px); }
.s16__chest-face--right  { width: 200px; height: 180px; transform: rotateY(90deg) translateZ(160px); }
.s16__chest-face--left   { width: 200px; height: 180px; transform: rotateY(-90deg) translateZ(160px); }
.s16__chest-face--bottom { width: 320px; height: 200px; transform: rotateX(-90deg) translateZ(90px); background: #000; }

/* Fechadura */
.s16__chest-lock {
    position: absolute;
    width: 40px;
    height: 50px;
    background: var(--gold);
    top: 10px;
    left: calc(50% - 20px);
    z-index: 10;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transform: translateZ(2px);
}

/* Tampa */
.s16__chest-lid {
    position: absolute;
    top: 0;
    width: 100%;
    height: 60px;
    transform-origin: center bottom;
    transform-style: preserve-3d;
    /* Abertura controlada via JS (--chest-open) */
    transform: translateY(-60px) translateZ(-100px) rotateX(calc(var(--chest-open, 0) * -110deg));
    transition: transform 0.1s linear;
}

.s16__lid-face {
    position: absolute;
    background: linear-gradient(135deg, #222, #111);
    border: 1px solid rgba(239, 20, 62, 0.4);
    box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

.s16__lid-face--top    { width: 320px; height: 200px; transform: rotateX(90deg) translateZ(30px); }
.s16__lid-face--front  { width: 320px; height: 60px; transform: translateZ(100px); }
.s16__lid-face--back   { width: 320px; height: 60px; transform: rotateY(180deg) translateZ(100px); }
.s16__lid-face--right  { width: 200px; height: 60px; transform: rotateY(90deg) translateZ(160px); }
.s16__lid-face--left   { width: 200px; height: 60px; transform: rotateY(-90deg) translateZ(160px); }

/* Luzes */
.s16__chest-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, var(--gold) 0%, rgba(239, 20, 62, 0.4) 40%, transparent 80%);
    transform: rotateX(90deg) translateZ(70px);
    filter: blur(40px);
    opacity: calc(var(--chest-open, 0) * 0.8);
    mix-blend-mode: screen;
    pointer-events: none;
}

.s16__chest-inner-light {
    position: absolute;
    top: 50%; left: 50%; width: 150%; height: 150%;
    background: radial-gradient(circle, #fff 0%, var(--gold) 30%, transparent 70%);
    transform: translate(-50%, -50%) rotateX(90deg) translateZ(80px);
    opacity: calc(var(--chest-open, 0) * 0.5);
    filter: blur(60px);
    pointer-events: none;
}

.s16__video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 20, 62, 0.15) 0%, transparent 70%);
    opacity: calc(var(--chest-open, 0) * 1);
    pointer-events: none;
    z-index: -1;
}

/* Coluna Direita: Espaçamento para Scroll */
.s16__right {
    width: 60%; 
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Brilho de fundo onde os cards landam */
.s16__right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80vh;
    background: radial-gradient(circle, rgba(239, 20, 62, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 10;
}

.s16__trigger {
    display: none;
}

/* Layout do Carrossel */
.s16__right {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.s16__carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 520px; /* Bem rente à altura do card de 480px + margem */
    display: flex;
    justify-content: center;
    align-items: center;
}

.s16__cards-container {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    z-index: 100;
}

/* Botões Laterais Absolutos */
.s16__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 20, 62, 0.3);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.s16__nav--prev { left: 0; }
.s16__nav--next { right: 0; }

.s16__nav iconify-icon {
    font-size: 24px;
    color: #fff;
    transition: all 0.3s ease;
}

.s16__nav:hover {
    background: rgba(239, 20, 62, 0.2);
    border-color: #EF143E;
    transform: translateY(-50%) scale(1.1);
}

.s16__nav:hover iconify-icon {
    color: #EF143E;
}

/* Bullets Abaixo do Card */
.s16__dots {
    position: absolute;
    bottom: -10px; /* Levemente fora para não sobrepor o card */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 1000;
}

.s16__dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.s16__dot.is-active {
    width: 32px;
    background: #EF143E;
    box-shadow: 0 0 15px rgba(239, 20, 62, 0.5);
}

/* Container de Cards (Dentro da esquerda) */
.s16__cards-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 100;
}

.s16__item-card {
    position: absolute;
    top: 50%;
    left: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(239, 20, 62, 0.3);
    border-radius: 16px;
    padding: 32px;
    width: 420px;
    height: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
    
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    /* Começa vindo do baú (esquerda) */
    transform: translate3d(-150%, -30%, -500px) scale(0) rotateX(90deg);
    transition: 
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
        opacity 0.4s ease,
        visibility 0.4s step-end;
}

.s16__item-card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translate3d(-50%, -50%, 0) scale(1) rotate(0deg);
    z-index: 500 !important;
    transition: 
        transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
        opacity 0.4s ease,
        visibility 0.4s step-start;
}

.s16__item-card.is-prev {
    opacity: 0;
    transform: translate3d(-20%, -40%, -100px) scale(0.9) rotate(5deg);
}

.s16__item-card.is-next {
    opacity: 0;
    transform: translate3d(-80%, -60%, -100px) scale(0.9) rotate(-5deg);
}

.s16__item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.s16__item-num {
    font-family: 'Fira Code', monospace;
    font-size: 20px;
    color: #EF143E;
    font-weight: 700;
}

.s16__item-header iconify-icon {
    font-size: 56px;
    color: #EF143E;
    filter: drop-shadow(0 0 15px rgba(239, 20, 62, 0.3));
}

.s16__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.s16__item-text {
    font-size: 18px;
    color: #D1D1D1;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .s16 { min-height: auto; }
    .s16__layout { flex-direction: column; gap: 40px; }
    .s16__left { width: 100%; height: auto; position: relative; top: 0; padding-top: 40px; }
    .s16__right { width: 100%; padding: 40px 0; }
    .s16__carousel-wrapper { max-width: 100%; height: 650px; }
    .s16__item-card { width: 90%; max-width: 400px; }
    .s16__nav--prev { left: 5px; }
    .s16__nav--next { right: 5px; }
}

@media (max-width: 768px) {
    .s16 { padding: 60px 0; }
    .s16__right { padding: 20px 0; }
    .s16__carousel-wrapper { height: 500px; }
    .s16__item-card { width: 85%; padding: 24px; }
    .s16__item-num { font-size: 32px; }
    .s16__item-header { margin-bottom: 20px; }
    .s16__item-header iconify-icon { font-size: 24px; }
    .s16__item-title { font-size: 20px; margin-bottom: 12px; }
    .s16__item-text { font-size: 14px; line-height: 1.5; }
    
    .s16__nav { width: 36px; height: 36px; }
    .s16__nav--prev { left: 0px; }
    .s16__nav--next { right: 0px; }
    .s16__nav iconify-icon { font-size: 18px; }
}
/* ==========================================================================
   SEÇÃO 17: A OFERTA
   ========================================================================== */
.s17 {
    position: relative;
    padding: 128px 0;
    background-color: #050505;
    overflow: hidden;
}

.s17__bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(239, 20, 62, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 20, 62, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    pointer-events: none;
}

.s17__header {
    text-align: center;
    margin-bottom: 80px;
}

.s17__overline {
    font-size: 14px;
    font-weight: 800;
    color: #EF143E;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.s17__title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    color: #fff;
}

.s17__intro {
    font-size: 20px;
    color: #A3A3A3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Card de Preço */
.s17__pricing-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 128px;
    background: linear-gradient(145deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid rgba(239, 20, 62, 0.3);
    padding: 80px 48px;
    text-align: center;
    position: relative;
    box-shadow: 0 50px 100px -20px rgba(0,0,0,0.8);
}

/* === HERO PRICING CARD — Destaque máximo === */
.s17__pricing-card--hero {
    border: 2px solid rgba(239, 20, 62, 0.5);
    box-shadow: 
        0 0 60px rgba(239, 20, 62, 0.15),
        0 50px 100px -20px rgba(0,0,0,0.9),
        inset 0 1px 0 rgba(239, 20, 62, 0.2);
    padding: 96px 64px;
}

/* Borda animada rotativa */
.s17__pricing-border-anim {
    display: none; /* Luz circular giratória desativada */
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        transparent 0%,
        rgba(239, 20, 62, 0.6) 10%,
        transparent 20%,
        transparent 80%,
        rgba(239, 20, 62, 0.4) 90%,
        transparent 100%
    );
    z-index: -1;
    animation: s17BorderRotate 4s linear infinite;
    pointer-events: none;
}

@property --border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes s17BorderRotate {
    to { --border-angle: 360deg; }
}

/* Badge pulsante */
.s17__badge-oferta--pulse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: s17BadgePulse 2s ease-in-out infinite;
}

.s17__badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: s17DotPulse 1.5s ease-in-out infinite;
}

@keyframes s17BadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes s17DotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(34, 197, 94, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 20px rgba(34, 197, 94, 0.9); }
}

/* Lista de entregáveis dentro do pricing */
.s17__pricing-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    text-align: left;
    max-width: 500px;
    margin: 0 auto 48px;
    padding: 24px 32px;
    background: rgba(239, 20, 62, 0.04);
    border: 1px solid rgba(239, 20, 62, 0.1);
    border-radius: 12px;
}

.s17__includes-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #D1D1D1;
    font-weight: 500;
}

.s17__includes-item iconify-icon {
    color: #22c55e;
    font-size: 16px;
    flex-shrink: 0;
}

/* Old price estilizado */
.s17__old-price-label {
    font-size: 16px;
    color: #555;
    margin-right: 6px;
}

.s17__old-price-value {
    font-size: 28px;
    text-decoration: line-through;
    color: #444;
}

/* Parcelas destacadas */
.s17__installments-big {
    font-size: 1em;
    font-weight: 900;
    color: #fff;
}

.s17__installments-value {
    font-size: 1em;
    font-weight: 900;
}

/* Badge de economia */
.s17__savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    color: #22c55e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 16px;
}

.s17__savings iconify-icon {
    font-size: 16px;
}

/* CTA Hero — maior, mais imponente */
.s17__cta--hero {
    font-size: 20px !important;
    padding: 28px 96px !important;
    margin-top: 48px;
    box-shadow: 0 0 40px rgba(239, 20, 62, 0.3);
    animation: s17CtaGlow 3s ease-in-out infinite;
}

@keyframes s17CtaGlow {
    0%, 100% { box-shadow: 0 0 40px rgba(239, 20, 62, 0.2); }
    50% { box-shadow: 0 0 60px rgba(239, 20, 62, 0.45); }
}

/* Linha de confiança */
.s17__trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.s17__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.s17__trust-item iconify-icon {
    color: #555;
    font-size: 16px;
}



/* Responsividade pricing hero */
@media (max-width: 768px) {
    .s17__pricing-card--hero { padding: 40px 15px; width: 100%; margin-left: 0; margin-right: 0; }
    .s17__product-name { font-size: 22px; margin-bottom: 20px; }
    .s17__pricing-includes { grid-template-columns: 1fr; max-width: 100%; padding: 15px; margin-bottom: 24px; }
    .s17__cta--hero { 
        padding: 18px 12px !important; 
        font-size: 13px !important; 
        width: 100%;
        letter-spacing: 0 !important;
        white-space: nowrap !important;
        line-height: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .s17__trust-row { gap: 10px; }
    .s17__savings { font-size: 11px; padding: 6px 12px; margin-top: 10px; }
}

.s17__badge-oferta {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(239, 20, 62, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
}

.s17__product-name {
    font-size: clamp(28px, 5vw, 42px);
    color: #fff;
    margin-bottom: 48px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.s17__price-main {
    margin-bottom: 48px;
}

.s17__old-price {
    font-size: 24px;
    color: #444;
    text-decoration: line-through;
    margin-bottom: 12px;
}

.s17__current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.s17__price-label {
    font-size: 24px;
    color: #A3A3A3;
    font-weight: 300;
}

.s17__price-value {
    font-size: clamp(28px, 6vw, 48px);
    font-weight: 700;
    color: #fff;
}

.s17__price-method {
    font-size: 18px;
    color: #666;
    font-weight: 500;
    margin-top: 10px;
}

.s17__divider {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 40px auto;
    color: #222;
    font-weight: 900;
    max-width: 400px;
}

.s17__divider::before,
.s17__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #1a1a1a;
}

.s17__installments {
    font-size: clamp(56px, 12vw, 110px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #29C763;
    text-shadow: 0 0 40px rgba(41, 199, 99, 0.4);
    margin-bottom: 32px;
}

.s17__cta {
    /* Herda .btn--gold, ajustes específicos para a oferta */
    font-size: 18px !important;
    padding: 24px 80px !important;
    margin-top: 48px;
    transform: none; /* Reset para evitar conflito com animações iniciais */
}

.s17__cta:hover {
    transform: scale(0.95) !important;
}

/* Bônus */
.s17__bonuses {
    margin-bottom: 128px;
}

.s17__section-header {
    text-align: center;
    margin-bottom: 64px;
}

.s17__section-title {
    font-size: 28px;
    color: #fff;
    margin-bottom: 16px;
}

.s17__section-desc {
    font-size: 18px;
    color: #A3A3A3;
    max-width: 800px;
    line-height: 1.6;
    margin: 0 auto;
}

.s17__bonuses-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.s17__bonus-card {
    padding: 48px 32px;
}

.s17__bonus-tag {
    font-size: 11px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 24px;
}

.s17__bonus-icon {
    font-size: 48px;
    color: #EF143E;
    margin-bottom: 24px;
}

.s17__bonus-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.s17__bonus-text {
    font-size: 15px;
    color: #A3A3A3;
    line-height: 1.6;
    margin-bottom: 24px;
}

.s17__bonus-value {
    font-size: 12px;
    font-weight: 700;
    color: #EF143E;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Garantia */
.s17__guarantee {
    background: linear-gradient(to right, rgba(239, 20, 62, 0.15), rgba(0,0,0,0.5));
    border: 1px solid rgba(239, 20, 62, 0.4);
    border-top: 6px solid var(--primary);
    padding: 64px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 32px;
    align-items: center;
    margin-bottom: 128px;
}

.s17__guarantee-icon iconify-icon {
    font-size: 80px;
    color: var(--primary);
}

.s17__guarantee-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.s17__guarantee-text {
    font-size: 18px;
    color: #D1D1D1;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Order Bumps */
.s17__bumps-header {
    text-align: center;
    margin-bottom: 48px;
}

.s17__bumps-overline {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.3em;
    display: block;
    margin-bottom: 12px;
}

.s17__bumps-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 16px;
}

.s17__bumps-desc {
    font-size: 18px;
    color: #A3A3A3;
    max-width: 800px;
    margin: 0 auto;
}

.s17__bumps-table-wrapper {
    overflow-x: auto;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 12px;
}

.s17__bumps-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.s17__bumps-table th {
    background: #111;
    padding: 24px;
    font-size: 12px;
    font-weight: 900;
    color: #555;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-bottom: 1px solid #1a1a1a;
}

.s17__bumps-table td {
    padding: 32px 24px;
    border-bottom: 1px solid #111;
    font-size: 16px;
    color: #A3A3A3;
}

.s17__bumps-table tr:last-child td {
    border-bottom: none;
}

.s17__bumps-table strong {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
}

/* Responsividade S17 */
@media (max-width: 1024px) {
    .s17__bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .s17 { padding: 96px 0; }
    .s17__pricing-card { padding: 64px 24px; }
    .s17__bonuses-grid { grid-template-columns: 1fr; }
    .s17__guarantee { flex-direction: column; text-align: center; padding: 40px 24px; gap: 32px; }
    .s17__guarantee-icon iconify-icon { font-size: 64px; }
    
    /* Mobile Table */
    .s17__bumps-table thead { display: none; }
    .s17__bumps-table td {
        display: block;
        padding: 16px 24px;
        border: none;
    }
    .s17__bumps-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 10px;
        font-weight: 900;
        color: #555;
        margin-bottom: 8px;
        letter-spacing: 0.1em;
    }
    .s17__bumps-table tr {
        display: block;
        border-bottom: 1px solid #1a1a1a;
        padding: 24px 0;
    }
}

/* ==========================================================================
   SEÇÃO 18: A TRAVESSIA (GRID ESTÁTICO)
   ========================================================================== */
.s18 {
    position: relative;
    padding: 120px 0;
    background: #050505;
}

.s18__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.s18__header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.s18__overline {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5em;
    display: block;
    margin-bottom: 24px;
    color: var(--primary);
}

.s18__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.s18__desc {
    font-size: 18px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.s18__header-line {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto 24px;
}

.s18__subtitle {
    font-size: 18px;
    color: #A3A3A3;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid de Meses */
.s18__timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    position: relative;
}

.s18__milestone {
    opacity: 1;
    transform: none;
    transition: transform 0.4s ease;
}

.s18__milestone:hover {
    transform: translateY(-10px);
}

.s18__milestone-point {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(239, 20, 62, 0.3);
}

.s18__card {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.s18__milestone:hover .s18__card {
    border-color: rgba(239, 20, 62, 0.3);
    background: rgba(20, 20, 20, 0.6);
}

.s18__card-header {
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.s18__month-number {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}

.s18__month-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff;
    line-height: 1.2;
}

.s18__info-block {
    margin-bottom: 24px;
}

.s18__info-label {
    font-size: 11px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.s18__info-label iconify-icon {
    font-size: 18px;
    color: var(--primary);
}

.s18__info-text {
    font-size: 15px;
    color: #A3A3A3;
    line-height: 1.6;
}



@media (max-width: 1024px) {
    .s18__container {
        padding: 0 24px;
    }
    .s18__timeline {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .s18__milestone, .s18__milestone:nth-child(even) {
        justify-content: flex-start;
        padding-left: 0;
        padding-right: 0;
    }
    .s18__card { 
        width: 100%; 
        max-width: 100%; 
        margin: 0; 
    }
}

@media (max-width: 768px) {
    .s18 { height: auto; padding: 80px 0; }
    .s18__timeline { display: flex; flex-direction: column; gap: 40px; }
    .s18__title { font-size: 36px; }
    .s18__desc { font-size: 16px; }
    .s18__card { padding: 24px; }
}

/* ==========================================================================
   SEÇÃO 19: FAQ (ANTES DE CANDIDATAR-SE)
   ========================================================================== */
.s19 {
    background: #050505;
    padding: 128px 0;
    position: relative;
    overflow: hidden;
}

.s19__header {
    text-align: center;
    max-width: 864px;
    margin: 0 auto 64px;
}

.s19__overline {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.s19__title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 24px;
}

.s19__header-line {
    width: 60px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto;
}

.s19__faq-grid {
    max-width: 864px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 24px;
}

.s19__faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.s19__faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(239, 20, 62, 0.2);
}

.s19__faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(239, 20, 62, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.s19__faq-trigger {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 24px;
}

.s19__faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #eee;
    transition: color 0.3s ease;
}

.s19__faq-item.active .s19__faq-question {
    color: var(--gold);
}

.s19__faq-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.s19__faq-item.active .s19__faq-icon {
    transform: rotate(45deg);
    color: var(--gold);
}

.s19__faq-content {
    display: grid;
    grid-template-rows: 0fr;
    max-height: 0;
    transition: grid-template-rows 0.4s cubic-bezier(0.2, 1, 0.3, 1), 
                max-height 0.4s cubic-bezier(0.2, 1, 0.3, 1),
                opacity 0.3s ease, 
                visibility 0.3s ease;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.s19__faq-item.active .s19__faq-content {
    grid-template-rows: 1fr;
    max-height: 1000px; /* Valor alto o suficiente para qualquer resposta */
    opacity: 1;
    visibility: visible;
}

.s19__faq-answer {
    min-height: 0;
    padding: 0 32px 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsivo FAQ */
@media (max-width: 768px) {
    .s19 {
        padding: 96px 0;
    }
    
    .s19__title {
        font-size: 26px;
    }
    
    .s19__faq-trigger {
        padding: 20px 24px;
    }
    
    .s19__faq-question {
        font-size: 16px;
    }
    
    .s19__faq-answer {
        padding: 0 24px 20px;
        font-size: 15px;
    }
}

/* ==========================================================================
   SEÇÃO 20: CTA FINAL
   ========================================================================== */
.s20 {
    background: #000;
    padding: 128px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Brilho de fundo sutil */
.s20::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 20, 62, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.s20__content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.s20__title {
    font-family: var(--font-primary);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.s20__body {
    margin-bottom: 64px;
}

.s20__body p {
    font-family: var(--font-secondary);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.s20__highlight {
    font-family: var(--font-primary);
    font-style: italic;
    font-size: 28px;
    color: var(--gold) !important;
    font-weight: 400;
}

.s20__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.s20__cta {
    min-width: 320px;
    font-size: 18px;
    padding: 20px 48px;
    border-color: rgba(239, 20, 62, 0.4);
    color: #fff;
}

.s20__cta:hover {
    border-color: var(--gold);
    color: #ffffff;
    background: rgba(239, 20, 62, 0.05);
    transform: scale(1.05) !important;
}

.s20__disclaimer {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    max-width: 400px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
    background: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 48px;
}

.footer__signature {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__name {
    font-family: var(--font-primary);
    font-size: 24px;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer__title {
    font-family: var(--font-secondary);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer__support-text {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__support-text span {
    color: var(--gold);
    font-weight: 600;
}

.footer__copyright {
    margin-top: 20px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    width: 100%;
}

.footer__copyright p {
    font-family: var(--font-secondary);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .s20 {
        padding: 80px 20px;
    }
    
    .s20__title {
        font-size: 32px;
    }
    
    .s20__highlight {
        font-size: 22px;
    }
    
    .footer {
        padding: 60px 20px 30px;
    }

    /* Refinamentos Adicionais de Tipografia */
    .s12__title {
        font-size: 32px !important;
    }

    .s17__installments {
        font-size: 32px !important;
    }
    .s17__price-value {
        font-size: 28px !important;
    }
}

/* ==========================================================================
   BOTÃO FLUTUANTE CTA
   Estilo baseado em .elementor-button do Design System
   ========================================================================== */
.floating-cta {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--primary);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 18px 36px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(239, 20, 62, 0.35),
        0 4px 15px rgba(0, 0, 0, 0.4);

    /* Estado inicial: escondido */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    visibility: hidden;
    transition: 
        opacity 0.4s ease,
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.4s,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* Shine Sweep Effect (como elementor-button) */
.floating-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
    z-index: -1;
}

.floating-cta:hover::before {
    transform: translateX(100%);
}

.floating-cta:hover {
    box-shadow: 
        0 15px 50px rgba(239, 20, 62, 0.45),
        0 6px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(0) scale(0.96);
}

/* Estado visível */
.floating-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

/* Pulse sutil no glow */
@keyframes floatingCtaPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(239, 20, 62, 0.35), 0 4px 15px rgba(0, 0, 0, 0.4); }
    50% { box-shadow: 0 10px 50px rgba(239, 20, 62, 0.5), 0 4px 20px rgba(0, 0, 0, 0.5); }
}

.floating-cta.is-visible {
    animation: floatingCtaPulse 3s ease-in-out infinite;
}

.floating-cta.is-visible:hover {
    animation: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 12px;
        right: 16px;
        left: 16px;
        font-size: 13px;
        padding: 14px 20px;
        text-align: center;
        border-radius: 12px;
    }
}
