/* ==========================================================================
   Plague Brasil - Landing Page V2
   Cada seção tem identidade visual única
   ========================================================================== */


/* ==========================================================================
   SHARED: Section Eyebrow (label pequena acima de cada título)
   ========================================================================== */

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--scarlet-red);
    margin-bottom: var(--space-3);
    position: relative;
    padding-left: 2rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 1px;
    background: var(--scarlet-red);
}


/* ==========================================================================
   SCROLL REVEAL — Multiple entrance variants
   ========================================================================== */

/* Default: fade up */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale up with blur */
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    filter: blur(4px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Fade in only (no movement) */
.reveal-fade {
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-fade.visible {
    opacity: 1;
}


/* ==========================================================================
   CONTINUOUS ANIMATIONS — Subtle ongoing highlights
   ========================================================================== */

/* Pulsing glow (for important elements) */
@keyframes pulse-glow-crimson {
    0%, 100% { box-shadow: 0 0 0 rgba(139, 0, 0, 0); }
    50% { box-shadow: 0 0 20px rgba(139, 0, 0, 0.2), 0 0 40px rgba(139, 0, 0, 0.1); }
}

@keyframes pulse-glow-amber {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 140, 0, 0.2); }
    50% { text-shadow: 0 0 25px rgba(255, 140, 0, 0.5), 0 0 50px rgba(255, 140, 0, 0.2); }
}

/* Text shimmer sweep */
@keyframes text-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Subtle float */
@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Border breathe */
@keyframes border-breathe {
    0%, 100% { border-color: rgba(220, 20, 60, 0.15); }
    50% { border-color: rgba(220, 20, 60, 0.4); }
}

/* Line extend pulse */
@keyframes line-extend {
    0%, 100% { width: 1.2rem; }
    50% { width: 2rem; }
}

/* Eyebrow line pulse */
.section-eyebrow::before {
    animation: line-extend 3s ease-in-out infinite;
}


/* ==========================================================================
   1. HERO — Full viewport, particles, dramatic entrance
   ========================================================================== */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    text-align: center;
    overflow: hidden;
    padding: var(--space-4);
    margin-top: calc(-1 * var(--header-height));
    padding-top: var(--header-height);
    background: var(--jet-black);
}

/* Hero background slideshow */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.hero-bg.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.75) 0%,
        rgba(13, 13, 13, 0.5) 30%,
        rgba(13, 13, 13, 0.6) 60%,
        rgba(13, 13, 13, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 3;
}

/* --- Hero Title --- */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 2rem + 8vw, 6rem);
    font-weight: var(--weight-bold);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    background: linear-gradient(
        90deg,
        #8B0000 0%, #8B0000 35%, #ff4444 50%, #8B0000 65%, #8B0000 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(0,0,0,0.9)) drop-shadow(0 0 40px rgba(139,0,0,0.4));
    animation:
        hero-title-enter 1s cubic-bezier(0.22,1,0.36,1) both,
        hero-title-light-sweep 6s linear 2s infinite;
}

.hero-title-line {
    width: 0;
    height: 2px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(90deg, transparent, var(--scarlet-red), rgba(220,20,60,0.6), var(--scarlet-red), transparent);
    animation: hero-line-expand 0.8s cubic-bezier(0.22,1,0.36,1) 0.8s both;
    box-shadow: 0 0 12px rgba(139,0,0,0.4);
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--bone-white);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    margin: 0 auto var(--space-3);
    text-shadow: 0 2px 16px rgba(0,0,0,0.9), 0 0 40px rgba(139,0,0,0.35);
    opacity: 0;
    animation: hero-subtitle-enter 0.8s ease 0.5s both;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--bone-white);
    line-height: var(--leading-relaxed);
    max-width: 650px;
    margin: 0 auto var(--space-8);
    text-shadow: 0 1px 12px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.6);
    opacity: 0;
    animation: hero-subtitle-enter 0.8s ease 0.6s both;
}

/* --- Hero Buttons --- */
.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.hero-actions .btn {
    opacity: 0;
    animation: hero-btn-enter 0.7s cubic-bezier(0.22,1,0.36,1) both;
    position: relative;
    overflow: hidden;
}

.hero-actions .btn:nth-child(1) { animation-delay: 1s; }
.hero-actions .btn:nth-child(2) { animation-delay: 1.2s; }

.hero-actions .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: none;
    pointer-events: none;
}

.hero-actions .btn:hover::after {
    animation: btn-shimmer-sweep 0.6s ease forwards;
}

.hero-actions .btn-steam {
    animation:
        hero-btn-enter 0.7s cubic-bezier(0.22,1,0.36,1) 1s both,
        hero-btn-pulse 3s ease-in-out 2s infinite;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    border: 1px solid #5865F2;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.btn-discord:hover {
    background: #4752C4;
    border-color: #4752C4;
}

/* --- Hero Scroll Hint --- */
.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 240, 225, 0.35);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    opacity: 0;
    animation: hero-scroll-enter 0.8s ease 2s both;
}

.hero-scroll-hint svg {
    opacity: 0.5;
    animation: hero-scroll-bounce-svg 2s ease-in-out 3s infinite;
}

@keyframes hero-scroll-enter {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes hero-scroll-bounce-svg {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}


/* ==========================================================================
   HERO KEYFRAMES
   ========================================================================== */

@keyframes hero-title-enter {
    0% { opacity: 0; transform: scale(1.15) translateY(-10px); letter-spacing: 0.35em; filter: blur(8px); }
    60% { opacity: 1; filter: blur(0); }
    100% { opacity: 1; transform: scale(1) translateY(0); letter-spacing: var(--tracking-wider); filter: blur(0); }
}

@keyframes hero-title-light-sweep {
    0% { background-position: 150% 0; }
    100% { background-position: -150% 0; }
}

@keyframes hero-line-expand {
    from { width: 0; opacity: 0; }
    to { width: min(200px, 50%); opacity: 1; }
}

@keyframes hero-subtitle-enter {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 0.92; transform: translateY(0); }
}

@keyframes hero-btn-enter {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-btn-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 30px rgba(139,0,0,0.25), 0 0 60px rgba(139,0,0,0.1); }
}

@keyframes btn-shimmer-sweep {
    0% { left: -100%; }
    100% { left: 150%; }
}

/* (hero-scroll-bounce replaced by hero-scroll-bounce-svg) */


/* ==========================================================================
   2. MANIFESTO — Split layout, editorial, magazine feel
   Bg: preto puro | Visual: imagem à esquerda com fade, texto à direita
   ========================================================================== */

.section-manifesto {
    background: var(--jet-black);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.manifesto-layout {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 500px;
}

@media (min-width: 1024px) {
    .manifesto-layout {
        grid-template-columns: 5fr 6fr;
        min-height: 600px;
    }
}

/* Image side */
.manifesto-image {
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.manifesto-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Top fade: smooth transition from hero section above */
.manifesto-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, var(--jet-black), transparent);
    z-index: 1;
}

/* Mobile: fade bottom */
.manifesto-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--jet-black), transparent);
    z-index: 1;
}

/* Desktop: replace bottom fade with right fade, keep top fade */
@media (min-width: 1024px) {
    .manifesto-image::after {
        top: 0;
        bottom: 0;
        left: auto;
        right: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(to left, var(--jet-black), transparent);
    }
}

/* Text side */
.manifesto-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-10) var(--space-6);
    position: relative;
}

@media (min-width: 1024px) {
    .manifesto-content {
        padding: var(--space-16) var(--space-12) var(--space-16) var(--space-8);
    }
}

/* Decorative large quotation mark */
.manifesto-content::before {
    content: '\201C';
    position: absolute;
    top: var(--space-6);
    left: var(--space-4);
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    color: rgba(220, 20, 60, 0.06);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .manifesto-content::before {
        font-size: 12rem;
        top: var(--space-8);
        left: var(--space-6);
    }
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--bone-white);
    letter-spacing: var(--tracking-wide);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-4);
}

@media (min-width: 1024px) {
    .manifesto-title {
        font-size: var(--text-4xl);
    }
}

.manifesto-lead {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    color: var(--amber-glow);
    font-style: italic;
    margin-bottom: var(--space-6);
}

.manifesto-text p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: var(--space-4);
}

.manifesto-highlight {
    color: var(--bone-white) !important;
    font-weight: var(--weight-semibold);
    font-size: var(--text-lg) !important;
    margin-bottom: 0 !important;
    padding-left: var(--space-4);
    border-left: 2px solid var(--scarlet-red);
    animation: border-breathe 3s ease-in-out infinite;
}


/* ==========================================================================
   3. FEATURES — Strips horizontais, lista editorial
   Bg: #141414 | Visual: número grande + ícone + texto em linha
   ========================================================================== */

.section-features {
    padding: var(--space-16) 0 var(--space-20);
    background: #141414;
    position: relative;
}

.section-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(220, 20, 60, 0.2) 20%,
        rgba(220, 20, 60, 0.4) 50%,
        rgba(220, 20, 60, 0.2) 80%,
        transparent 100%
    );
}

.section-features .section-title {
    text-align: center;
    margin-bottom: var(--space-10);
}

.section-features .section-eyebrow {
    display: block;
    text-align: center;
    padding-left: 0;
}

.section-features .section-eyebrow::before {
    display: none;
}

/* Feature List */
.features-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* Feature Strip — each item is a horizontal row */
.feature-strip {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    gap: 0 var(--space-5);
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(245, 240, 225, 0.06);
}

/* Reveal transitions must include background for hover, otherwise
   the generic .reveal-left / .reveal-right transition gets overridden */
.feature-strip.reveal-left,
.feature-strip.reveal-right {
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease;
}

.feature-strip:first-child {
    border-top: 1px solid rgba(245, 240, 225, 0.06);
}

.feature-strip:hover {
    background: rgba(139, 0, 0, 0.03);
}

/* Number: large, left-aligned */
.feature-strip-number {
    grid-row: 1 / 3;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: rgba(220, 20, 60, 0.15);
    line-height: 1;
    width: 4.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.15em;
    transition: color 0.4s ease;
}

.feature-strip:hover .feature-strip-number {
    color: rgba(220, 20, 60, 0.45);
    transform: scale(1.05);
}

.feature-strip-number {
    transition: color 0.4s ease, transform 0.3s ease;
}

/* Icon: hidden on this layout, number replaces it */
.feature-strip-icon {
    display: none;
}

/* Content */
.feature-strip-content {
    min-width: 0;
}

.feature-strip-title {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-wide);
    color: var(--bone-white);
    margin-bottom: var(--space-2);
    transition: color 0.3s ease;
}

.feature-strip:hover .feature-strip-title {
    color: var(--amber-glow);
}

.feature-strip-desc {
    font-size: var(--text-sm);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    transition: color 0.3s ease;
}

.feature-strip:hover .feature-strip-desc {
    color: var(--text-secondary);
}

/* Mobile: stack number above content */
@media (max-width: 639px) {
    .feature-strip {
        grid-template-columns: 1fr;
        gap: var(--space-2);
        padding: var(--space-5) 0;
    }

    .feature-strip-number {
        grid-row: auto;
        width: auto;
        justify-content: flex-start;
        font-size: 2rem;
        margin-bottom: var(--space-1);
    }
}


/* ==========================================================================
   4. SPECS — Server features, tactical bg texture, grid industrial
   Bg: black + textura sutil de mapa | Visual: industrial, tech
   ========================================================================== */

.section-specs {
    padding: var(--space-20, 8rem) 0;
    background: var(--jet-black);
    position: relative;
    overflow: hidden;
}

/* Tactical map texture background */
.specs-bg {
    position: absolute;
    inset: 0;
    background:
        url('/static/images/generated/bg_specs_pattern.jpg') center/cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

/* Alternate: CSS-only grid pattern if image not available */
.specs-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(220, 20, 60, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 20, 60, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.specs-header {
    text-align: center;
    margin-bottom: var(--space-10);
    position: relative;
    z-index: 1;
}

.specs-header .section-eyebrow {
    padding-left: 0;
}

.specs-header .section-eyebrow::before {
    display: none;
}

.specs-subtitle {
    color: var(--text-secondary);
    font-size: var(--text-lg);
    margin-top: var(--space-2);
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .specs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Specs Card — distinct from bento cards */
.specs-card {
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid #222;
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.specs-card:hover {
    border-color: rgba(220, 20, 60, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(220, 20, 60, 0.1);
    transform: translateY(-4px);
}

/* Top bar — colored gradient strip */
.specs-card-top {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), rgba(139, 0, 0, 0.05));
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.specs-card:hover .specs-card-top {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.25), rgba(139, 0, 0, 0.1));
}

.specs-card-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc143c;
    transition: color 0.3s ease;
}

.specs-card-icon svg {
    width: 24px;
    height: 24px;
}

.specs-card-title {
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--bone-white);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
}

/* Feature list */
.specs-list {
    list-style: none;
    margin: 0;
    padding: var(--space-4) var(--space-5);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.specs-card:hover .specs-list li {
    color: var(--bone-white);
}

.specs-check {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: #dc143c;
    margin-top: 3px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.specs-card:hover .specs-check {
    opacity: 1;
}


/* ==========================================================================
   5. PROOF — Cinematic background, counters dourados
   Bg: imagem fullwidth com overlay | Visual: épico, cinematográfico
   ========================================================================== */

.section-proof {
    padding: var(--space-20, 8rem) 0;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.proof-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.proof-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.proof-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg,
            rgba(13, 13, 13, 0.85) 0%,
            rgba(13, 13, 13, 0.6) 30%,
            rgba(26, 5, 5, 0.7) 60%,
            rgba(13, 13, 13, 0.9) 100%
        );
}

.section-proof .section-eyebrow {
    display: block;
    text-align: center;
    padding-left: 0;
    color: var(--amber-glow);
}

.section-proof .section-eyebrow::before {
    display: none;
}

.section-proof .section-title {
    text-align: center;
    margin-bottom: var(--space-10);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

/* Counter grid */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    max-width: 850px;
    margin: 0 auto var(--space-10);
}

@media (min-width: 768px) {
    .proof-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.proof-item {
    text-align: center;
    padding: var(--space-6);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: var(--radius-lg);
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.proof-item:hover {
    border-color: rgba(255, 140, 0, 0.4);
    transform: translateY(-4px);
}

.proof-value {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--amber-glow);
    line-height: 1;
    margin-bottom: var(--space-2);
    font-variant-numeric: tabular-nums;
    animation: pulse-glow-amber 4s ease-in-out infinite;
}

.proof-label {
    font-size: var(--text-xs);
    color: rgba(245, 240, 225, 0.6);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    line-height: var(--leading-relaxed);
}

.proof-conclusion {
    text-align: center;
}

.proof-lead {
    font-size: var(--text-lg);
    color: rgba(245, 240, 225, 0.4);
    margin-bottom: var(--space-2);
}

.proof-tagline {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--bone-white);
    letter-spacing: var(--tracking-wide);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}


/* ==========================================================================
   6. FAQ — Split layout, limpo, minimal
   Bg: #111 sólido | Visual: 2 colunas (header + accordion)
   ========================================================================== */

.section-faq {
    padding: var(--space-16) 0 var(--space-20);
    background: #111111;
    position: relative;
}

/* Top border transition */
.section-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 240, 225, 0.08), transparent);
}

/* Split layout: intro left, accordion right */
.faq-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    align-items: start;
}

@media (min-width: 1024px) {
    .faq-split {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-12);
    }
}

/* Left: intro/title */
.faq-intro {
    position: relative;
}

@media (min-width: 1024px) {
    .faq-intro {
        position: sticky;
        top: calc(var(--header-height) + 2rem);
    }
}

.faq-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: var(--weight-bold);
    color: var(--bone-white);
    letter-spacing: var(--tracking-wide);
    line-height: var(--leading-snug);
    margin-bottom: var(--space-3);
}

.faq-desc {
    font-size: var(--text-base);
    color: var(--text-tertiary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

/* Decorative giant question mark */
.faq-decoration {
    display: none;
}

@media (min-width: 1024px) {
    .faq-decoration {
        display: block;
    }

    .faq-decoration span {
        font-family: var(--font-display);
        font-size: 10rem;
        font-weight: 900;
        line-height: 1;
        color: rgba(220, 20, 60, 0.04);
        display: block;
        margin-top: var(--space-4);
        user-select: none;
        animation: gentle-float 6s ease-in-out infinite;
    }
}

/* Right: accordion */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item[open] {
    border-color: var(--amber-glow);
}

.faq-question {
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-display);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    color: var(--bone-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--amber-glow);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: var(--text-xl);
    color: var(--amber-glow);
    font-weight: var(--weight-bold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '\2212';
}

.faq-answer {
    padding: 0 var(--space-5) var(--space-4);
    animation: faq-fade-in 0.3s ease both;
}

@keyframes faq-fade-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-answer p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.faq-answer a {
    color: var(--scarlet-red);
    text-decoration: none;
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-answer a:hover {
    color: #ff4444;
    border-bottom-color: #ff4444;
}


/* ==========================================================================
   7. FINALE — Dramatic CTA with background image
   Bg: imagem escura + overlay pesado | Visual: épico, movie poster
   ========================================================================== */

.section-finale {
    padding: var(--space-20, 8rem) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}

.finale-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: url('/static/images/generated/bg_cta_final.jpg') center/cover no-repeat;
}

.finale-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(ellipse at center, rgba(13,13,13,0.6) 0%, rgba(13,13,13,0.85) 70%),
        linear-gradient(180deg, rgba(17,17,17,0.9) 0%, rgba(13,13,13,0.5) 40%, rgba(13,13,13,0.9) 100%);
}

.finale-content {
    max-width: 650px;
    margin: 0 auto;
}

.finale-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    margin-bottom: var(--space-3);
    /* Shimmer text effect */
    background: linear-gradient(
        90deg,
        var(--bone-white) 0%,
        var(--bone-white) 40%,
        var(--amber-glow) 50%,
        var(--bone-white) 60%,
        var(--bone-white) 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 8s linear infinite;
    filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.9));
}

@media (min-width: 768px) {
    .finale-title {
        font-size: var(--text-5xl);
    }
}

.finale-subtitle {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.9);
}

/* Finale buttons get extra glow */
.section-finale .hero-actions .btn-steam {
    animation: none;
    opacity: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(139, 0, 0, 0.15);
}

.section-finale .hero-actions .btn-steam:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 50px rgba(139, 0, 0, 0.3), 0 0 80px rgba(139, 0, 0, 0.1);
}

.section-finale .hero-actions .btn-discord {
    animation: none;
    opacity: 1;
}

.section-finale .hero-actions .btn {
    animation: none;
    opacity: 1;
}
