/* ============================================================
   VortexTV — Hero Section
   ============================================================ */

:root {
    --red: #E10A17;
    --red-hot: #FF2A3A;
    --red-dark: #8B0510;
    --ink: #070708;
    --coal: #0E0E10;
    --steel: #1A1A1D;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);
    --text-dim: rgba(255, 255, 255, 0.62);
    --text-muted: rgba(255, 255, 255, 0.42);

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    --header-h: 120px;
}

* { -webkit-font-smoothing: antialiased; }

html, body { background: var(--ink); }

body {
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    color: #fff;
    line-height: 1.5;
}

::selection { background: var(--red); color: #fff; }

/* ============================================================
   BACKGROUND STAGE
   ============================================================ */
.bg-stage {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(225, 10, 23, 0.18), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(225, 10, 23, 0.10), transparent 60%),
        linear-gradient(180deg, #070708 0%, #09090b 55%, #060607 100%);
}

.bg-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
}

.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 10%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 10%, transparent 75%);
    opacity: 0.6;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.38;
    will-change: transform;
}
.bg-orb-red {
    width: 680px;
    height: 680px;
    top: -160px;
    right: -180px;
    background: radial-gradient(circle, #E10A17 0%, rgba(225,10,23,0.35) 45%, transparent 70%);
    animation: orbDrift 22s ease-in-out infinite alternate;
}
.bg-orb-deep {
    width: 560px;
    height: 560px;
    bottom: -180px;
    left: -160px;
    background: radial-gradient(circle, rgba(139, 5, 16, 0.65) 0%, transparent 70%);
    animation: orbDrift2 28s ease-in-out infinite alternate;
}

@keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-60px, 40px) scale(1.08); }
}
@keyframes orbDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, -40px) scale(1.1); }
}

.bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 70% at 50% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.bg-noise {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.65 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ============================================================
   GLASS SYSTEM
   ============================================================ */
.glass {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid var(--line);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 24px 60px rgba(0,0,0,0.45);
}

.glass-subtle {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 16px 0;
    transition: padding 0.35s var(--ease-out);
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,7,8,0.75) 0%, rgba(7,7,8,0) 100%);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
    pointer-events: none;
}

.site-header.is-scrolled::before {
    opacity: 1;
    border-bottom-color: var(--line);
}
.site-header.is-scrolled { padding: 10px 0; }

.header-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand { display: flex; align-items: center; }
.brand-logo {
    height: 88px;
    width: auto;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    filter: drop-shadow(0 2px 20px rgba(225, 10, 23, 0.5));
    transition: transform 0.4s var(--ease-out), filter 0.4s var(--ease-out);
}
.brand:hover .brand-logo {
    transform: scale(1.04);
    filter: drop-shadow(0 2px 22px rgba(225, 10, 23, 0.6));
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav-desktop a {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255,255,255,0.72);
    padding: 9px 16px;
    border-radius: 999px;
    transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out);
    position: relative;
}
.nav-desktop a:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.header-cta { display: flex; align-items: center; gap: 12px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(180deg, #F0131F 0%, #C10813 100%);
    border: 1px solid rgba(255, 80, 90, 0.35);
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), filter 0.25s var(--ease-out);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 10px 28px rgba(225, 10, 23, 0.35),
        0 0 0 1px rgba(225, 10, 23, 0.0);
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform 0.7s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(110%); }

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 14px 38px rgba(225, 10, 23, 0.55),
        0 0 0 4px rgba(225, 10, 23, 0.12);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease-out); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-sm { padding: 11px 20px; font-size: 12.5px; }
.btn-lg { padding: 18px 30px; font-size: 15px; }
.btn-lg svg { width: 18px; height: 18px; }
.btn-block { width: 100%; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    padding: 17px 26px;
    font-size: 14.5px;
    border-radius: 999px;
    border: 1px solid var(--line-strong);
    background: rgba(255, 255, 255, 0.025);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), color 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    transform: translateY(-1px);
}

/* ============================================================
   HAMBURGER
   ============================================================ */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.2s var(--ease-out);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-mobile {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    margin-top: 10px;
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(14,14,16,0.95), rgba(10,10,12,0.95));
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid var(--line);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.nav-mobile.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.nav-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-mobile-inner a {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    border-radius: 12px;
    transition: background 0.2s;
}
.nav-mobile-inner a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.nav-mobile-inner .btn-primary { margin-top: 8px; padding: 16px 20px; font-size: 13.5px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

/* --- LEFT COLUMN --- */
.hero-copy { position: relative; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 28px;
}
.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 3px rgba(225,10,23,0.2), 0 0 14px rgba(225,10,23,0.8);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(225,10,23,0.18), 0 0 12px rgba(225,10,23,0.6); }
    50%      { box-shadow: 0 0 0 6px rgba(225,10,23,0.08), 0 0 22px rgba(225,10,23,0.9); }
}

.headline {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
    line-height: 1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 26px;
    color: #fff;
}
.headline > span { display: block; }

/* Optical alignment of final period — nudges it up to sit with cap-height */
.headline .dot {
    display: inline-block;
    color: var(--red);
    margin-left: 0.04em;
    transform: translateY(-0.06em);
    text-shadow: 0 0 24px rgba(225, 10, 23, 0.6);
}

.text-accent {
    background: linear-gradient(180deg, #FF2A3A 0%, #E10A17 50%, #A9070F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    filter: drop-shadow(0 0 24px rgba(225, 10, 23, 0.35));
}

.subheadline {
    max-width: 560px;
    font-size: clamp(1rem, 1.1vw, 1.125rem);
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 38px;
}
.subheadline strong { color: #fff; font-weight: 600; }

.cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Social proof */
.proof {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 22px 14px 16px;
    border-radius: 18px;
    max-width: 540px;
}
.proof-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: block;
    margin-right: -12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.92);
    background: var(--steel);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.4),
        0 0 14px rgba(225, 10, 23, 0.18);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.avatar:hover {
    transform: translateY(-2px) scale(1.06);
    z-index: 2;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 6px 14px rgba(0, 0, 0, 0.5),
        0 0 22px rgba(225, 10, 23, 0.35);
}
.avatar-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(180deg, var(--red-hot), var(--red-dark));
    letter-spacing: -0.02em;
    border: 2px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 4px 10px rgba(225, 10, 23, 0.35),
        0 0 18px rgba(225, 10, 23, 0.35);
}

.proof-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.proof-text strong {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}
.proof-text span {
    font-size: 11.5px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* ============================================================
   HERO VISUAL (RIGHT COLUMN)
   ============================================================ */
.hero-visual {
    position: relative;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stage {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1400px;
}

.halo {
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(225, 10, 23, 0.35), transparent 55%);
    filter: blur(60px);
    pointer-events: none;
    animation: haloPulse 6s ease-in-out infinite;
}
@keyframes haloPulse {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50%      { opacity: 1;    transform: scale(1.05); }
}

/* Main panel */
.panel {
    position: absolute;
    border-radius: 22px;
    padding: 14px;
    overflow: hidden;
}

.panel-main {
    top: 50%;
    left: 50%;
    width: 78%;
    height: 72%;
    transform: translate(-50%, -50%) rotate(-3deg);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.panel-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 6px 8px 10px;
    border-bottom: 1px solid var(--line);
}
.panel-dots { display: flex; gap: 5px; }
.panel-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
}
.panel-dots span:first-child { background: rgba(225, 10, 23, 0.8); }

.panel-url {
    font-family: 'Space Grotesk', monospace;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    flex: 1;
    text-align: center;
}

.panel-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(225,10,23,0.22), rgba(225,10,23,0.1));
    border: 1px solid rgba(225,10,23,0.4);
}
.panel-live .pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-hot);
    box-shadow: 0 0 0 0 rgba(225,10,23,0.7);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0   rgba(225,10,23,0.7); }
    70%  { box-shadow: 0 0 0 10px rgba(225,10,23,0); }
    100% { box-shadow: 0 0 0 0   rgba(225,10,23,0); }
}

.panel-featured {
    flex: 1;
    min-height: 140px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}
.poster-featured {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    background-color: #1a0408;
    background-image:
        linear-gradient(135deg, rgba(10, 2, 4, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(circle at 78% 18%, rgba(225, 10, 23, 0.38), transparent 60%),
        url('../assets/libertadores.png');
    background-size: cover, 100% 100%, cover;
    background-position: center, center, center 30%;
    background-repeat: no-repeat;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.poster-featured::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            135deg,
            transparent 0 22px,
            rgba(255,255,255,0.02) 22px 23px
        );
    opacity: 0.6;
    pointer-events: none;
}
.poster-featured::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 75%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.92) 100%);
    pointer-events: none;
}
.poster-badge {
    position: absolute;
    top: 14px; left: 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    padding: 5px 10px;
    border-radius: 6px;
    background: linear-gradient(180deg, var(--red-hot), var(--red));
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(225,10,23,0.45);
}
.poster-title {
    position: absolute;
    bottom: 16px; left: 16px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.poster-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
}
.poster-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
}
.poster-play {
    position: absolute;
    bottom: 16px; right: 16px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, var(--red-hot), var(--red));
    box-shadow: 0 8px 24px rgba(225,10,23,0.5);
}
.poster-play svg { width: 18px; height: 18px; transform: translateX(1px); }

.panel-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.poster-sm {
    aspect-ratio: 3 / 4;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}
.poster-sm span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.9);
    position: relative; z-index: 2;
}
.poster-sm::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, rgba(0,0,0,0.88) 100%);
    pointer-events: none;
}

/* Category thumbnails — real imagery with red/dark tint */
.p-1, .p-2, .p-3, .p-4 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.p-1 {
    background-color: #1a0408;
    background-image:
        linear-gradient(135deg, rgba(58, 8, 16, 0.28), rgba(0, 0, 0, 0.25)),
        url('https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?w=500&q=75&auto=format&fit=crop');
}
.p-2 {
    background-color: #0f0f12;
    background-image:
        linear-gradient(135deg, rgba(30, 6, 12, 0.32), rgba(0, 0, 0, 0.42)),
        url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=500&q=80&auto=format&fit=crop');
    background-position: center 20%;
}
.p-3 {
    background-color: #1c0509;
    background-image:
        linear-gradient(135deg, rgba(58, 8, 16, 0.3), rgba(0, 0, 0, 0.32)),
        url('https://images.unsplash.com/photo-1579952363873-27f3bade9f55?w=500&q=80&auto=format&fit=crop');
}
.p-4 {
    background-color: #14080a;
    background-image:
        linear-gradient(135deg, rgba(58, 8, 16, 0.38), rgba(0, 0, 0, 0.4)),
        url('../assets/patrulha.jpg');
}

.poster-sm {
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.poster-sm:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(225, 10, 23, 0.25);
}

/* Floating stat card */
.panel-stat {
    top: 6%;
    right: -4%;
    width: 220px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    transform: rotate(4deg);
    z-index: 3;
}
.stat-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, rgba(225,10,23,0.25), rgba(225,10,23,0.08));
    border: 1px solid rgba(225,10,23,0.35);
    color: var(--red-hot);
}
.stat-icon svg { width: 20px; height: 20px; }
.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
}
.stat-label {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 3px;
}

/* Floating quality card */
.panel-quality {
    bottom: 6%;
    left: -2%;
    width: 210px;
    padding: 14px 16px;
    border-radius: 18px;
    transform: rotate(-5deg);
    z-index: 3;
}
.quality-badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--line);
    color: #fff;
    margin-bottom: 8px;
}
.quality-text {
    font-size: 12.5px;
    color: var(--text-dim);
    line-height: 1.4;
}

/* Floating logo */
.logo-mark {
    position: absolute;
    top: 3%;
    left: -3%;
    width: 110px;
    height: 110px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-8deg);
    z-index: 3;
    padding: 12px;
}
.logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(225,10,23,0.45));
}

/* Floats */
.float-a { animation: floatA 9s ease-in-out infinite; }
.float-b { animation: floatB 7s ease-in-out infinite; }
.float-c { animation: floatC 8s ease-in-out infinite; }
.float-d { animation: floatD 6s ease-in-out infinite; }

@keyframes floatA {
    0%, 100% { transform: translate(-50%, -50%) rotate(-3deg) translateY(0); }
    50%      { transform: translate(-50%, -50%) rotate(-3deg) translateY(-10px); }
}
@keyframes floatB {
    0%, 100% { transform: rotate(4deg) translateY(0); }
    50%      { transform: rotate(4deg) translateY(-14px); }
}
@keyframes floatC {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50%      { transform: rotate(-5deg) translateY(12px); }
}
@keyframes floatD {
    0%, 100% { transform: rotate(-8deg) translateY(0); }
    50%      { transform: rotate(-8deg) translateY(-8px); }
}

/* Hero bottom fade — disabled (was creating visible band between sections) */
.hero-fade { display: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
[data-reveal]:nth-child(1) { transition-delay: 0s; }
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal]:nth-child(5) { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero-inner { gap: 40px; }
    .panel-stat { width: 200px; right: -2%; }
    .panel-quality { width: 190px; }
}

@media (max-width: 960px) {
    :root { --header-h: 108px; }

    .nav-desktop { display: none; }
    .hamburger { display: flex; }
    .btn-primary.btn-sm { display: none; }
    .header-cta .btn-primary.btn-sm { display: none; }

    .hero { padding-top: calc(var(--header-h) + 30px); }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-copy { text-align: left; order: 1; }
    .hero-visual { order: 2; height: 460px; }

    .headline { font-size: clamp(2.1rem, 8vw, 3.4rem); }

    .panel-stat { width: 180px; right: 0; top: 2%; }
    .panel-quality { width: 180px; left: 0; bottom: 2%; }
    .logo-mark { width: 94px; height: 94px; border-radius: 22px; padding: 11px; }
}

@media (max-width: 640px) {
    .header-inner { padding: 0 18px; }
    .hero-inner { padding: 0 18px; }
    .brand-logo { height: 66px; }

    .hero { padding-top: calc(var(--header-h) + 20px); padding-bottom: 60px; }

    .pill {
        font-size: 10px;
        padding: 7px 12px 7px 10px;
        letter-spacing: 0.14em;
    }
    .pill-dot { width: 6px; height: 6px; }

    .headline {
        font-size: clamp(2rem, 9.5vw, 3rem);
        margin-bottom: 20px;
    }
    .subheadline { font-size: 15px; margin-bottom: 28px; }

    .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-primary.btn-lg, .btn-ghost.btn-lg { width: 100%; padding: 16px 22px; font-size: 14px; }

    .proof {
        flex-direction: row;
        padding: 12px 16px 12px 12px;
        gap: 14px;
    }
    .avatar {
        width: 32px;
        height: 32px;
        margin-right: -10px;
        border-width: 2px;
    }
    .avatar-count { font-size: 10.5px; }
    .proof-text strong { font-size: 12.5px; }
    .proof-text span { font-size: 11px; line-height: 1.35; }

    .hero-visual { height: 380px; }
    .panel-main { width: 84%; height: 78%; padding: 12px; }
    .panel-featured { min-height: 100px; }
    .poster-name { font-size: 14px; }
    .poster-play { width: 36px; height: 36px; }
    .poster-play svg { width: 14px; height: 14px; }

    .panel-stat { width: 160px; padding: 10px 12px; gap: 10px; }
    .stat-icon { width: 34px; height: 34px; }
    .stat-value { font-size: 16px; }
    .stat-label { font-size: 10.5px; }

    .panel-quality { width: 160px; padding: 10px 14px; }
    .quality-badge { font-size: 10px; padding: 3px 8px; }
    .quality-text { font-size: 11.5px; }

    .logo-mark { width: 76px; height: 76px; padding: 9px; border-radius: 18px; }

    .bg-grid { background-size: 48px 48px; }
}

@media (max-width: 380px) {
    .headline { font-size: 1.9rem; }
    .panel-stat { width: 140px; }
    .panel-quality { width: 140px; }
}

/* ============================================================
   GENERIC SECTION SCAFFOLD (video + benefits)
   ============================================================ */
.section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}
.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.section-head {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.section-head .pill {
    margin: 0 auto 18px;
}
.section-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.85rem, 3.6vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 0 0 14px;
    text-wrap: balance;
}
.section-sub {
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    color: var(--text-dim);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-wrap: balance;
}

/* Linha extra abaixo do subtítulo — reforço de valor mais sutil */
.section-sub-extra {
    font-size: clamp(0.88rem, 0.95vw, 1rem);
    color: rgba(255, 255, 255, 0.42);
    font-style: italic;
    line-height: 1.5;
    max-width: 520px;
    margin: 8px auto 0;
    text-align: center;
    text-wrap: balance;
    letter-spacing: 0.005em;
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.section-video {
    padding-top: 40px;
    padding-bottom: 60px;
}

.video-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 26px;
    padding: 12px;
    overflow: visible;
}
.video-glow {
    position: absolute;
    inset: -30px;
    z-index: -1;
    border-radius: 40px;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(225, 10, 23, 0.28), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(139, 5, 16, 0.2), transparent 55%);
    filter: blur(50px);
    opacity: 0.85;
    pointer-events: none;
    animation: videoGlow 7s ease-in-out infinite alternate;
}
@keyframes videoGlow {
    0%   { opacity: 0.75; transform: scale(1); }
    100% { opacity: 1;    transform: scale(1.03); }
}

/* Container do player Vimeo — mantém aspect 16:9, glow e shadow do design original */
.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #0a0608;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 30px 70px rgba(0, 0, 0, 0.55);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.video-player:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 0 0 1px rgba(225, 10, 23, 0.18),
        0 36px 80px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(225, 10, 23, 0.18);
}

/* Iframe Vimeo preenche 100% do container */
.video-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: inherit;
    display: block;
    transition: filter 0.45s var(--ease-out);
}
.video-player:hover .video-iframe { filter: brightness(1.04); }

/* ============================================================
   BENEFITS SECTION
   ============================================================ */
.section-benefits {
    padding-top: 40px;
    padding-bottom: 100px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1080px;
    margin: 0 auto;
    align-items: stretch;
}

.benefit-card {
    position: relative;
    padding: 28px 26px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.45s var(--ease-out), border-color 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
    isolation: isolate;
}
.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 80% -10%, rgba(225, 10, 23, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
    pointer-events: none;
    z-index: 0;
}
.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 10, 23, 0.25);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 30px 70px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(225, 10, 23, 0.12);
}
.benefit-card:hover::before { opacity: 1; }

.benefit-card > * { position: relative; z-index: 1; }

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(225, 10, 23, 0.22), rgba(225, 10, 23, 0.06));
    border: 1px solid rgba(225, 10, 23, 0.35);
    color: var(--red-hot);
    margin-bottom: 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 8px 22px rgba(225, 10, 23, 0.2);
    transition: transform 0.45s var(--ease-out);
    flex-shrink: 0;
}
.benefit-card:hover .benefit-icon { transform: scale(1.06) rotate(-3deg); }
.benefit-icon svg { width: 24px; height: 24px; }

.benefit-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18.5px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 10px;
    min-height: 2.5em;
    text-wrap: balance;
}
.benefit-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dim);
    margin: 0;
}

.benefit-shine {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 10, 23, 0.55), transparent);
    opacity: 0.6;
    pointer-events: none;
}

/* Badge strip below cards */
.strip {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px 13px 16px;
    border-radius: 999px;
    margin: 40px auto 0;
    width: fit-content;
    max-width: calc(100% - 32px);
    text-align: left;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(225, 10, 23, 0.18);
}
.strip-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red-hot);
    box-shadow: 0 0 0 3px rgba(225, 10, 23, 0.22), 0 0 16px rgba(225, 10, 23, 0.8);
    flex-shrink: 0;
    animation: dotPulse 2s ease-in-out infinite;
}
.strip-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    min-width: 0;
    flex: 1 1 auto;
}
.strip-text strong {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.strip-check {
    width: 18px;
    height: 18px;
    color: var(--red-hot);
    background: rgba(225, 10, 23, 0.15);
    border: 1px solid rgba(225, 10, 23, 0.4);
    border-radius: 50%;
    padding: 3px;
    flex-shrink: 0;
}

/* ============================================================
   SECTIONS — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .benefit-grid { max-width: 960px; gap: 16px; }
}

@media (max-width: 960px) {
    .section { padding: 64px 0; }
    .section-video { padding-top: 32px; padding-bottom: 48px; }
    .section-benefits { padding-top: 32px; padding-bottom: 80px; }
    .section-head { margin-bottom: 32px; }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 560px;
    }
    .benefit-title { min-height: 0; }

    .video-card { max-width: 880px; border-radius: 22px; padding: 10px; }
    .video-player { border-radius: 16px; }
    .video-glow { inset: -20px; filter: blur(36px); }
}

@media (max-width: 640px) {
    .section { padding: 52px 0; }
    .section-inner { padding: 0 18px; }
    .section-video { padding-top: 24px; padding-bottom: 36px; }
    .section-benefits { padding-top: 24px; padding-bottom: 64px; }

    .section-head { margin-bottom: 26px; }
    .section-title { font-size: clamp(1.55rem, 6.5vw, 2.1rem); margin-bottom: 12px; }
    .section-sub { font-size: 14px; }

    .video-card { padding: 8px; border-radius: 18px; }
    .video-player { border-radius: 12px; }
    .video-glow { inset: -14px; filter: blur(26px); }

    .benefit-card { padding: 22px 20px; border-radius: 16px; }
    .benefit-icon { width: 46px; height: 46px; border-radius: 12px; margin-bottom: 14px; }
    .benefit-icon svg { width: 20px; height: 20px; }
    .benefit-title { font-size: 17px; margin-bottom: 8px; }
    .benefit-text { font-size: 13.5px; }

    .strip {
        margin-top: 28px;
        padding: 11px 16px 11px 13px;
        gap: 10px;
        max-width: calc(100% - 16px);
    }
    .strip-dot { width: 7px; height: 7px; }
    .strip-text { font-size: 12.5px; line-height: 1.35; }
    .strip-check { width: 16px; height: 16px; padding: 2px; }
}


/* ============================================================
   TOP 5 / EM ALTA
   ============================================================ */
.section-top {
    padding-top: 20px;
    padding-bottom: 100px;
}

.section-top .section-head { margin-bottom: 34px; }

/* Toggle segmented control */
.top-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px;
    border-radius: 999px;
    margin: 26px auto 0;
    isolation: isolate;
}
.top-toggle-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.62);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: color 0.35s var(--ease-out);
}
.top-toggle-btn:hover { color: rgba(255, 255, 255, 0.9); }
.top-toggle-btn.is-active { color: #fff; }
.top-toggle-btn:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 3px; }

.top-toggle-indicator {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 5px;
    height: calc(100% - 10px);
    width: 50%;
    border-radius: 999px;
    background: linear-gradient(180deg, #F0131F 0%, #C10813 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 8px 22px rgba(225, 10, 23, 0.45),
        0 0 0 1px rgba(255, 80, 90, 0.3);
    transition: transform 0.45s var(--ease-out);
}
.top-toggle[data-active="filmes"] .top-toggle-indicator {
    transform: translateX(100%);
}

/* Card row */
.top-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}
.top-row.is-swapping {
    opacity: 0;
    transform: translateY(6px);
}

/* Card */
.top-card {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.45s var(--ease-out);
}
.top-card:hover { transform: translateY(-4px); }

.top-card-poster {
    position: relative;
    aspect-ratio: 2 / 3;
    border-radius: 16px;
    overflow: hidden;
    background-color: #0a0608;
    background-size: cover;
    background-position: center;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 18px 44px rgba(0, 0, 0, 0.55);
    transition: transform 0.6s var(--ease-out), box-shadow 0.45s var(--ease-out), filter 0.45s var(--ease-out);
}
.top-card:hover .top-card-poster {
    transform: scale(1.025);
    filter: brightness(1.08);
    box-shadow:
        inset 0 0 0 1px rgba(225, 10, 23, 0.35),
        0 24px 56px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(225, 10, 23, 0.18),
        0 0 40px rgba(225, 10, 23, 0.25);
}
.top-card-poster::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(225, 10, 23, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.25) 45%, rgba(0,0,0,0.88) 100%);
    z-index: 1;
    transition: opacity 0.45s var(--ease-out);
}

/* Outlined ranking number — refined, subtle */
.top-card-num {
    position: absolute;
    left: -4px;
    bottom: 54px;
    z-index: 3;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(54px, 6vw, 84px);
    line-height: 0.8;
    letter-spacing: -0.05em;
    color: transparent;
    -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.72);
    opacity: 0.9;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
    pointer-events: none;
    transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-out), text-shadow 0.5s var(--ease-out);
}
.top-card:hover .top-card-num {
    transform: translateX(-3px);
    opacity: 1;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.95);
    text-shadow:
        0 0 18px rgba(225, 10, 23, 0.45),
        0 6px 22px rgba(0, 0, 0, 0.6);
}

/* Small rank badge (top right) — accent chip */
.top-card-rank {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px 4px 7px;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    background: linear-gradient(180deg, rgba(225, 10, 23, 0.28), rgba(225, 10, 23, 0.1));
    border: 1px solid rgba(225, 10, 23, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.top-card-rank-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--red-hot);
    box-shadow: 0 0 8px rgba(225, 10, 23, 0.9);
}

/* Body (title + meta) */
.top-card-body {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.top-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}
.top-card-meta {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
}

/* ============================================================
   TOP 5 — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .top-row { gap: 14px; }
    .top-card-num { font-size: clamp(50px, 6.2vw, 74px); }
}

@media (max-width: 960px) {
    .section-top { padding-top: 16px; padding-bottom: 72px; }
    .section-top .section-head { margin-bottom: 28px; }

    .top-row {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 60%;
        gap: 14px;
        max-width: none;
        margin: 0;
        padding: 22px 28px 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 28px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .top-row::-webkit-scrollbar { display: none; }
    .top-card { scroll-snap-align: start; }
    .top-card-num { font-size: 68px; left: -2px; bottom: 50px; }
}

@media (max-width: 640px) {
    .section-top { padding-top: 12px; padding-bottom: 52px; }
    .top-row {
        grid-auto-columns: 68%;
        padding: 18px 18px 12px;
        gap: 12px;
    }
    .top-card-num {
        font-size: 58px;
        left: 0;
        bottom: 44px;
        -webkit-text-stroke-width: 1.2px;
    }
    .top-card-title { font-size: 14px; }
    .top-card-meta { font-size: 10px; }
    .top-card-rank { font-size: 9px; padding: 3px 8px 3px 6px; }

    .top-toggle-btn { padding: 9px 18px; font-size: 12px; }
}

@media (max-width: 400px) {
    .top-row { grid-auto-columns: 76%; }
}

/* ============================================================
   DEPOIMENTOS / PROVA SOCIAL
   ============================================================ */
.section-testi {
    padding-top: 20px;
    padding-bottom: 80px;
}

/* Section head — override para ficar mais compacto aqui */
.section-testi .section-head { margin-bottom: 28px; }
.section-testi .section-head .pill { margin-bottom: 14px; }
.section-testi .section-title { margin-bottom: 10px; }

.testi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
}

.testi-card {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition:
        transform 0.4s var(--ease-out),
        border-color 0.4s var(--ease-out),
        box-shadow 0.4s var(--ease-out);
    isolation: isolate;
}
.testi-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at 80% 0%, rgba(225, 10, 23, 0.14), transparent 55%);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
    pointer-events: none;
    z-index: -1;
}
.testi-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 10, 23, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 28px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(225, 10, 23, 0.15),
        0 0 30px rgba(225, 10, 23, 0.18);
}
.testi-card:hover::before { opacity: 1; }

/* Stars */
.testi-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}
.testi-stars svg {
    width: 15px;
    height: 15px;
    fill: #F5B73E;
    filter: drop-shadow(0 0 6px rgba(245, 183, 62, 0.35));
}

/* Quote */
.testi-quote {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    letter-spacing: 0.005em;
    flex: 1;
}

/* Who block */
.testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: var(--steel);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.4),
        0 0 12px rgba(225, 10, 23, 0.15);
    flex-shrink: 0;
}
.testi-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.2;
    min-width: 0;
}
.testi-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.005em;
}
.testi-tenure {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 1100px) {
    .testi-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; max-width: 820px; }
}

@media (max-width: 960px) {
    .section-testi { padding-top: 16px; padding-bottom: 60px; }
    .section-testi .section-head { margin-bottom: 24px; }
}

@media (max-width: 640px) {
    .section-testi { padding-top: 12px; padding-bottom: 48px; }
    .section-testi .section-head { margin-bottom: 20px; }
    .section-testi .section-head .pill { margin-bottom: 12px; }
    .section-testi .section-title { margin-bottom: 8px; }

    .testi-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 480px;
    }
    .testi-card { padding: 20px 18px; border-radius: 16px; gap: 14px; }
    .testi-quote { font-size: 14px; }
    .testi-avatar { width: 40px; height: 40px; }
    .testi-name { font-size: 13.5px; }
    .testi-tenure { font-size: 11px; }
}

/* ============================================================
   GARANTIA (7 dias)
   ============================================================ */
.section-guarantee {
    padding-top: 40px;
    padding-bottom: 110px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.1fr;
    gap: 72px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: center;
}

/* Seal wrapper */
.guarantee-seal-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.guarantee-seal {
    position: relative;
    width: clamp(220px, 22vw, 280px);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    isolation: isolate;
}

/* Soft ambient aura behind seal */
.seal-aura {
    position: absolute;
    inset: -40px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(225, 10, 23, 0.45), transparent 60%);
    filter: blur(40px);
    z-index: -1;
    animation: haloPulse 5s ease-in-out infinite;
}

/* Concentric rings */
.seal-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
}
.seal-ring-outer {
    inset: -16px;
    border: 1px dashed rgba(225, 10, 23, 0.4);
    box-shadow: 0 0 40px rgba(225, 10, 23, 0.15);
    animation: sealSpin 40s linear infinite;
}
.seal-ring-inner {
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 20px rgba(225, 10, 23, 0.25);
}
@keyframes sealSpin {
    to { transform: rotate(360deg); }
}

/* Core (disc + content) */
.seal-core {
    position: relative;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:
        radial-gradient(circle at 50% 30%, rgba(225, 10, 23, 0.28), transparent 60%),
        linear-gradient(180deg, #1a0408 0%, #0a0204 100%);
    border: 1px solid rgba(225, 10, 23, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 16px rgba(225, 10, 23, 0.25),
        0 24px 56px rgba(0, 0, 0, 0.55),
        0 0 40px rgba(225, 10, 23, 0.25);
    overflow: hidden;
}
.seal-core::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 18px,
        rgba(255, 255, 255, 0.025) 18px 19px
    );
    pointer-events: none;
}

.seal-icon {
    width: 38px;
    height: 38px;
    color: var(--red-hot);
    filter: drop-shadow(0 2px 10px rgba(225, 10, 23, 0.55));
    z-index: 1;
}

.seal-big {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 2.6vw, 34px);
    letter-spacing: -0.02em;
    color: #fff;
    line-height: 1;
    z-index: 1;
}

.seal-divider {
    width: 46px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--red-hot), transparent);
    z-index: 1;
}

.seal-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    z-index: 1;
}

/* Copy */
.guarantee-copy .pill { margin-bottom: 22px; }

.guarantee-copy .section-title {
    text-align: left;
    margin: 0 0 18px;
}

.guarantee-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dim);
    margin: 0 0 14px;
    max-width: 540px;
}
.guarantee-text strong {
    color: #fff;
    font-weight: 600;
}

.guarantee-text-secondary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 24px;
    letter-spacing: 0.01em;
}

.guarantee-marks {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}
.guarantee-marks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}
.guarantee-marks svg {
    width: 14px;
    height: 14px;
    color: var(--red-hot);
    background: rgba(225, 10, 23, 0.15);
    border: 1px solid rgba(225, 10, 23, 0.38);
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

/* Override section-head left-align since we use it directly inside copy */
.guarantee-copy .pill {
    display: inline-flex;
    margin-left: 0;
    margin-right: 0;
}

/* Responsive */
@media (max-width: 960px) {
    .section-guarantee { padding-top: 32px; padding-bottom: 80px; }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 620px;
        justify-items: center;
        text-align: center;
    }
    .guarantee-copy {
        order: 2;
        text-align: center;
    }
    .guarantee-seal-wrap { order: 1; }
    .guarantee-copy .section-title { text-align: center; }
    .guarantee-text, .guarantee-text-secondary { margin-left: auto; margin-right: auto; }
    .guarantee-marks { justify-content: center; }
}

@media (max-width: 640px) {
    .section-guarantee { padding-top: 24px; padding-bottom: 64px; }
    .guarantee-grid { gap: 32px; }

    .guarantee-seal { width: 200px; }
    .seal-aura { inset: -26px; filter: blur(28px); }
    .seal-ring-outer { inset: -12px; }
    .seal-icon { width: 30px; height: 30px; }
    .seal-big { font-size: 26px; }
    .seal-divider { width: 36px; }
    .seal-sub { font-size: 10px; letter-spacing: 0.18em; }

    .guarantee-text { font-size: 14.5px; margin-bottom: 12px; }
    .guarantee-text-secondary { font-size: 13.5px; margin-bottom: 20px; }
    .guarantee-marks { gap: 8px 16px; margin-bottom: 24px; }
    .guarantee-marks li { font-size: 12.5px; }

    .guarantee-cta.btn-lg {
        width: 100%;
        justify-content: center;
        padding: 16px 22px;
        font-size: 13.5px;
    }
}

/* ============================================================
   COMPARATIVO DE PREÇOS
   ============================================================ */
:root {
    --green-hot: #22C55E;
    --green-deep: #16A34A;
}

.section-price {
    padding-top: 40px;
    padding-bottom: 110px;
}

/* Grid de 12 plataformas */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 14px 14px 18px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    isolation: isolate;
}
.price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(225, 10, 23, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 24px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(225, 10, 23, 0.18),
        0 0 28px rgba(225, 10, 23, 0.18);
}

/* Logo visual box — container padrão unificado (fundo escuro, gradiente, borda suave) */
.price-logo {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 14px;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.025), transparent 60%),
        linear-gradient(180deg, rgba(12, 6, 8, 0.6) 0%, rgba(6, 2, 4, 0.75) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    isolation: isolate;
}
.price-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* screen blend: anula fundos escuros sólidos (black, navy, etc),
       fazendo qualquer JPG/PNG com fundo se integrar ao card */
    mix-blend-mode: screen;
    filter:
        drop-shadow(0 0 10px rgba(255, 255, 255, 0.1))
        drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
    transition: transform 0.55s var(--ease-out), filter 0.4s var(--ease-out);
}
.price-card:hover .price-logo img {
    transform: scale(1.05);
    filter:
        drop-shadow(0 0 14px rgba(255, 255, 255, 0.18))
        drop-shadow(0 3px 8px rgba(0, 0, 0, 0.5));
}

/* Placeholder state — sem logo disponível */
.price-card.no-logo .price-logo {
    background:
        radial-gradient(ellipse at 50% 45%, rgba(225, 10, 23, 0.14), transparent 60%),
        linear-gradient(180deg, rgba(26, 8, 12, 0.5), rgba(10, 4, 7, 0.6));
}
.price-card.no-logo .price-logo::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--red-hot), transparent);
    opacity: 0.7;
}

/* Platform name */
.price-name {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.price-value {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--red-hot);
    letter-spacing: -0.01em;
    line-height: 1;
}
.price-value span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 3px;
    letter-spacing: 0.02em;
}

/* Red total panel */
.price-total {
    position: relative;
    max-width: 1180px;
    margin: 36px auto 0;
    padding: 22px 32px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(255, 120, 130, 0.18), transparent 55%),
        linear-gradient(180deg, #D6101C 0%, #9E050F 100%);
    color: #fff;
    border: 1px solid rgba(255, 120, 130, 0.35);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 22px 48px rgba(225, 10, 23, 0.35),
        0 0 0 1px rgba(225, 10, 23, 0.3);
    overflow: hidden;
}
.price-total::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        135deg,
        transparent 0 22px,
        rgba(255, 255, 255, 0.035) 22px 23px
    );
    pointer-events: none;
}
.price-total-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    position: relative;
    z-index: 1;
}
.price-total-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 1;
}
.price-total-value span {
    font-size: 0.5em;
    font-weight: 500;
    margin-left: 6px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.82);
}

/* VortexTV green callout */
.price-vortex {
    position: relative;
    max-width: 760px;
    margin: 22px auto 0;
    padding: 34px 32px 32px;
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.price-vortex::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.5), rgba(22, 163, 74, 0.1) 50%, rgba(225, 10, 23, 0.28));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.price-vortex::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%,  rgba(34, 197, 94, 0.25), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(225, 10, 23, 0.18), transparent 55%);
    pointer-events: none;
    z-index: -1;
}
.price-vortex > * { position: relative; z-index: 1; }

.price-vortex-head {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}
.price-vortex-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 10px rgba(225, 10, 23, 0.4));
}
.price-vortex-line {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.78);
}

.price-vortex-value {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    line-height: 0.95;
    margin: 12px 0 18px;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #4ADE80 0%, #16A34A 100%);
    -webkit-background-clip: text;
            background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.35));
}
.pv-currency { font-size: clamp(24px, 3.4vw, 38px); }
.pv-amount   { font-size: clamp(72px, 11vw, 124px); }
.pv-period {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 600;
    letter-spacing: 0;
    color: rgba(74, 222, 128, 0.85);
    background: none;
    -webkit-text-fill-color: rgba(74, 222, 128, 0.85);
    margin-left: 6px;
}

/* Observação discreta abaixo do valor — esclarece que R$ 25/mês vale a partir do plano de 3 meses */
.price-vortex-note {
    display: block;
    font-size: 12px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.005em;
    margin: -10px auto 18px;
    text-align: center;
}

.price-vortex-save {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px 9px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    margin-bottom: 24px;
}
.price-vortex-save strong { color: #4ADE80; font-weight: 700; }
.price-vortex-save svg {
    width: 16px;
    height: 16px;
    color: #4ADE80;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
}

.price-vortex-cta {
    margin: 0 auto;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .price-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
}

@media (max-width: 900px) {
    .section-price { padding-top: 32px; padding-bottom: 80px; }
    .price-total { padding: 20px 24px; flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 640px) {
    .section-price { padding-top: 22px; padding-bottom: 60px; }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 460px;
    }
    .price-card { padding: 10px 10px 14px; border-radius: 14px; }
    .price-logo { margin-bottom: 10px; padding: 10px 12px; border-radius: 10px; }
    .price-name { font-size: 13px; margin-bottom: 3px; }
    .price-value { font-size: 14px; }
    .price-value span { font-size: 10px; }

    .price-total {
        margin-top: 26px;
        padding: 18px 20px;
        border-radius: 16px;
    }
    .price-total-label { font-size: 11px; letter-spacing: 0.16em; }

    .price-vortex { padding: 28px 22px 26px; border-radius: 20px; }
    .price-vortex-head { flex-direction: column; gap: 8px; margin-bottom: 6px; }
    .price-vortex-logo { height: 34px; }
    .price-vortex-line { font-size: 13px; }
    .price-vortex-value { margin: 8px 0 16px; }
    .price-vortex-save { font-size: 12px; padding: 8px 14px 8px 10px; margin-bottom: 20px; }
    .price-vortex-cta.btn-lg { padding: 16px 22px; font-size: 13.5px; width: 100%; }
}

/* ============================================================
   VARIEDADE DE CATÁLOGO (6 cards)
   ============================================================ */
.section-variety {
    padding-top: 40px;
    padding-bottom: 110px;
}

.variety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1200px;
    margin: 0 auto;
}

.variety-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition:
        transform 0.45s var(--ease-out),
        box-shadow 0.45s var(--ease-out),
        border-color 0.45s var(--ease-out);
    isolation: isolate;
}
.variety-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 10, 23, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 34px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(225, 10, 23, 0.18),
        0 0 40px rgba(225, 10, 23, 0.22);
}

.variety-card-img {
    position: relative;
    aspect-ratio: 16 / 10;
    background-color: #1a0408;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease-out), filter 0.6s var(--ease-out);
}
.variety-card:hover .variety-card-img {
    transform: scale(1.04);
    filter: brightness(1.08);
}

.variety-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 2, 4, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse at 80% 20%, rgba(225, 10, 23, 0.22), transparent 55%);
    pointer-events: none;
}

.variety-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 12px 6px 9px;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, rgba(20, 6, 10, 0.72), rgba(10, 4, 7, 0.68));
    backdrop-filter: blur(12px) saturate(130%);
    -webkit-backdrop-filter: blur(12px) saturate(130%);
    border: 1px solid rgba(225, 10, 23, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 6px 14px rgba(0, 0, 0, 0.35);
    z-index: 2;
}
.variety-card-tag svg {
    width: 13px;
    height: 13px;
    color: var(--red-hot);
}

.variety-card-body {
    position: relative;
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.variety-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.variety-card-text {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-dim);
    margin: 0;
}

/* Adult card — imagem com blur via ::before, overlay/badge nítidos por cima */
.variety-card-adult .variety-card-img {
    position: relative;
    background-color: transparent;  /* evita cobrir o ::before */
    overflow: hidden;
    isolation: isolate;
}
.variety-card-adult .variety-card-img::before {
    content: "";
    position: absolute;
    inset: -8px;
    background-image: url('../assets/dezoito.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(4px) brightness(0.92);
    transform: scale(1.02);
    transition: transform 0.8s var(--ease-out), filter 0.6s var(--ease-out);
    /* sem z-index — pseudo renderiza acima do bg do elemento,
       abaixo dos children (overlay e tag ficam nítidos naturalmente) */
}
.variety-card-adult:hover .variety-card-img::before {
    transform: scale(1.04);
    filter: blur(3px) brightness(0.98);
}
.variety-card-adult .variety-card-overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(10, 2, 4, 0.25) 0%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(225, 10, 23, 0.2), transparent 60%);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .variety-grid { gap: 18px; max-width: 1000px; }
    .variety-card-title { font-size: 18px; }
}

@media (max-width: 900px) {
    .section-variety { padding-top: 32px; padding-bottom: 80px; }
    .variety-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 760px;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .section-variety { padding-top: 22px; padding-bottom: 60px; }
    .variety-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 440px;
    }
    .variety-card { border-radius: 16px; }
    .variety-card-body { padding: 18px 18px 20px; gap: 6px; }
    .variety-card-title { font-size: 17px; }
    .variety-card-text { font-size: 13px; }
    .variety-card-tag {
        font-size: 10px;
        padding: 5px 10px 5px 8px;
        letter-spacing: 0.12em;
    }
    .variety-card-tag svg { width: 11px; height: 11px; }
}

/* ============================================================
   REALITY SHOWS SECTION
   ============================================================ */
.section-reality {
    padding-top: 40px;
    padding-bottom: 110px;
}

.reality-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 72px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Copy */
.reality-copy { position: relative; }

.reality-copy .pill { margin-bottom: 24px; }

.reality-title {
    font-size: clamp(1.85rem, 3.6vw, 2.85rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 14px;
    text-wrap: balance;
}

.reality-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 1.05vw, 1.125rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.4;
    margin: 0 0 18px;
}

.reality-text {
    font-size: 15px;
    color: var(--text-dim);
    line-height: 1.65;
    margin: 0 0 26px;
    max-width: 520px;
}

.reality-marks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.reality-marks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.01em;
}
.reality-mark-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-hot);
    box-shadow: 0 0 10px rgba(225, 10, 23, 0.85);
    flex-shrink: 0;
}

/* Visual */
.reality-visual {
    position: relative;
    height: 520px;
    perspective: 1400px;
}

.reality-halo {
    position: absolute;
    inset: -30px;
    z-index: 0;
    background:
        radial-gradient(ellipse at 55% 45%, rgba(225, 10, 23, 0.3), transparent 55%);
    filter: blur(50px);
    pointer-events: none;
    animation: haloPulse 7s ease-in-out infinite;
}

.reality-img {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 22px;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 30px 70px rgba(0, 0, 0, 0.55);
    transition: transform 0.6s var(--ease-out), box-shadow 0.5s var(--ease-out), filter 0.5s var(--ease-out);
    will-change: transform;
}
.reality-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.1s var(--ease-out), filter 0.6s var(--ease-out);
}

.reality-img-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 2, 4, 0.12) 0%, rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse at 70% 20%, rgba(225, 10, 23, 0.22), transparent 55%);
    pointer-events: none;
}

/* Back card (bigger, stage — positioned top-right, tilted right) */
.reality-img-back {
    top: 0;
    right: 0;
    width: 70%;
    height: 64%;
    z-index: 1;
    transform: rotate(3.5deg);
}
.reality-img-back:hover {
    transform: rotate(3.5deg) translateY(-4px);
    filter: brightness(1.08);
    box-shadow:
        inset 0 0 0 1px rgba(225, 10, 23, 0.3),
        0 36px 80px rgba(0, 0, 0, 0.65),
        0 0 40px rgba(225, 10, 23, 0.22);
}
.reality-img-back:hover img { transform: scale(1.05); }

/* Front card (smaller, audience — positioned bottom-left, tilted left) */
.reality-img-front {
    bottom: 0;
    left: 0;
    width: 64%;
    height: 58%;
    z-index: 2;
    transform: rotate(-4deg);
}
.reality-img-front:hover {
    transform: rotate(-4deg) translateY(-4px);
    filter: brightness(1.08);
    box-shadow:
        inset 0 0 0 1px rgba(225, 10, 23, 0.3),
        0 36px 80px rgba(0, 0, 0, 0.65),
        0 0 40px rgba(225, 10, 23, 0.22);
}
.reality-img-front:hover img { transform: scale(1.05); }

/* Live badge (back card) */
.reality-live-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #fff;
    background: linear-gradient(180deg, rgba(225, 10, 23, 0.4), rgba(225, 10, 23, 0.18));
    border: 1px solid rgba(225, 10, 23, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 18px rgba(225, 10, 23, 0.35);
}
.reality-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red-hot);
    box-shadow: 0 0 0 0 rgba(225, 10, 23, 0.7);
    animation: pulse 1.6s infinite;
}

/* Caption on front card */
.reality-img-caption {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.reality-img-kicker {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
}
.reality-img-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .reality-grid { gap: 48px; }
    .reality-visual { height: 460px; }
}

@media (max-width: 960px) {
    .section-reality { padding-top: 28px; padding-bottom: 80px; }

    .reality-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 620px;
    }
    .reality-visual {
        order: 2;
        height: 420px;
    }
    .reality-copy { order: 1; }
    .reality-copy .pill { margin-bottom: 20px; }

    .reality-img-back  { width: 72%; height: 62%; }
    .reality-img-front { width: 66%; height: 56%; }
}

@media (max-width: 640px) {
    .section-reality { padding-top: 20px; padding-bottom: 60px; }

    .reality-grid { gap: 32px; }

    .reality-title { font-size: clamp(1.55rem, 7vw, 2.1rem); margin-bottom: 12px; }
    .reality-sub { font-size: 14.5px; margin-bottom: 14px; }
    .reality-text { font-size: 14px; margin-bottom: 20px; }
    .reality-marks li { font-size: 12.5px; }

    .reality-visual { height: 340px; }
    .reality-img { border-radius: 16px; }
    .reality-img-back  { width: 78%; height: 64%; }
    .reality-img-front { width: 70%; height: 54%; }

    .reality-live-badge {
        font-size: 9.5px;
        padding: 5px 10px 5px 8px;
        top: 10px; left: 10px;
    }
    .reality-img-title { font-size: 13.5px; }
    .reality-img-kicker { font-size: 9.5px; letter-spacing: 0.16em; }
    .reality-img-caption { left: 12px; bottom: 12px; }
}

/* ============================================================
   PLANOS
   ============================================================ */
.section-plans {
    padding-top: 40px;
    padding-bottom: 100px;
}
.section-plans .section-head { margin-bottom: 48px; }

.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: stretch;
}

.plan-card {
    position: relative;
    padding: 28px 24px 26px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition:
        transform 0.45s var(--ease-out),
        border-color 0.45s var(--ease-out),
        box-shadow 0.45s var(--ease-out);
    isolation: isolate;
}
.plan-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 10, 23, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(225, 10, 23, 0.18),
        0 0 30px rgba(225, 10, 23, 0.2);
}

.plan-discount {
    position: absolute;
    top: 14px;
    right: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--red-hot);
    background: rgba(225, 10, 23, 0.12);
    border: 1px solid rgba(225, 10, 23, 0.38);
    padding: 4px 9px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.plan-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* Tagline curta abaixo do plan-name */
.plan-tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.005em;
    line-height: 1.4;
    margin-top: -16px; /* compensa o gap 20px do flex container */
}

/* Pill de destaque (planos 3 meses e 6 meses) — discreto, top-center */
.plan-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 999px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(180deg, rgba(225, 10, 23, 0.55), rgba(225, 10, 23, 0.28));
    border: 1px solid rgba(225, 10, 23, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 6px 16px rgba(225, 10, 23, 0.3);
    white-space: nowrap;
    z-index: 3;
}

.plan-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.plan-old {
    font-size: 12.5px;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-color: rgba(225, 10, 23, 0.55);
    text-decoration-thickness: 1.5px;
    letter-spacing: 0.02em;
}
.plan-main {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 4px;
}
.plan-currency {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
}
.plan-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
}
.plan-period {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 4px;
    letter-spacing: 0;
}
.plan-billed {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.01em;
}

/* Equivalente mensal — destaque verde sutil para reforçar valor percebido */
.plan-equivalent {
    display: block;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(74, 222, 128, 0.92);
    letter-spacing: 0.005em;
    margin-top: 8px;
    line-height: 1.3;
}
.plan-equivalent-extra {
    display: block;
    font-size: 11px;
    font-weight: 500;
    font-style: italic;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.005em;
    margin-top: 2px;
    line-height: 1.3;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.85);
}
.plan-features svg {
    width: 14px;
    height: 14px;
    color: var(--red-hot);
    background: rgba(225, 10, 23, 0.14);
    border: 1px solid rgba(225, 10, 23, 0.35);
    border-radius: 50%;
    padding: 2px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 13px;
    margin-top: 4px;
}
.plan-cta svg { width: 16px; height: 16px; }

/* Featured card — 1 year highlight */
.plan-card-featured {
    transform: scale(1.035);
    border-color: rgba(225, 10, 23, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(225, 10, 23, 0.35),
        0 0 40px rgba(225, 10, 23, 0.25);
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(30, 6, 12, 0.6) 0%, rgba(14, 4, 7, 0.65) 100%);
}
.plan-card-featured::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 60, 72, 0.75), rgba(225, 10, 23, 0.15) 45%, rgba(139, 5, 16, 0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.plan-card-featured:hover {
    transform: scale(1.035) translateY(-4px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 34px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(225, 10, 23, 0.5),
        0 0 50px rgba(225, 10, 23, 0.35);
}

.plan-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: #fff;
    padding: 7px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, #F0131F, #C10813);
    border: 1px solid rgba(255, 80, 90, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 10px 24px rgba(225, 10, 23, 0.5);
    white-space: nowrap;
    z-index: 3;
}

.plan-card-featured .plan-discount {
    background: linear-gradient(180deg, var(--red-hot), var(--red));
    color: #fff;
    border-color: rgba(255, 80, 90, 0.4);
    box-shadow: 0 6px 14px rgba(225, 10, 23, 0.35);
}

.plan-save {
    margin: 0;
    text-align: center;
    font-size: 12.5px;
    color: rgba(74, 222, 128, 0.9);
    letter-spacing: 0.01em;
}
.plan-save strong { color: #4ADE80; font-weight: 700; }

/* Responsive */
@media (max-width: 1100px) {
    .plan-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; }
    .plan-card-featured { transform: scale(1); }
    .plan-card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 960px) {
    .section-plans { padding-top: 32px; padding-bottom: 80px; }
    .section-plans .section-head { margin-bottom: 36px; }
}

@media (max-width: 640px) {
    .section-plans { padding-top: 22px; padding-bottom: 60px; }
    .section-plans .section-head { margin-bottom: 28px; }
    .plan-grid { grid-template-columns: 1fr; gap: 30px 18px; max-width: 440px; }
    .plan-card { padding: 24px 20px 22px; border-radius: 18px; gap: 16px; }
    .plan-amount { font-size: 36px; }
    .plan-features li { font-size: 13px; }
}

/* ============================================================
   FAQ (Accordion)
   ============================================================ */
.section-faq {
    padding-top: 40px;
    padding-bottom: 110px;
}
.section-faq .section-head { margin-bottom: 36px; }

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.faq-item:hover {
    border-color: rgba(225, 10, 23, 0.22);
}
.faq-item.is-open {
    border-color: rgba(225, 10, 23, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 18px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(225, 10, 23, 0.18),
        0 0 22px rgba(225, 10, 23, 0.15);
}

.faq-q {
    width: 100%;
    border: 0;
    background: transparent;
    color: #fff;
    text-align: left;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Inter', 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.005em;
    line-height: 1.4;
    transition: color 0.25s var(--ease-out);
}
.faq-q:hover { color: #fff; }
.faq-q:focus-visible { outline: 2px solid var(--red-hot); outline-offset: -2px; }

.faq-chevron {
    width: 18px;
    height: 18px;
    color: var(--red-hot);
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out);
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }

/* Smooth accordion via grid-rows trick */
.faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ease-out);
}
.faq-item.is-open .faq-a-wrap {
    grid-template-rows: 1fr;
}
.faq-a {
    overflow: hidden;
    min-height: 0;
}
.faq-a p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.6;
    letter-spacing: 0.005em;
}

/* Responsive */
@media (max-width: 960px) {
    .section-faq { padding-top: 32px; padding-bottom: 80px; }
    .section-faq .section-head { margin-bottom: 28px; }
    .faq-q { font-size: 14.5px; padding: 16px 20px; }
    .faq-a p { font-size: 14px; padding: 0 20px 18px; }
}

@media (max-width: 640px) {
    .section-faq { padding-top: 22px; padding-bottom: 64px; }
    .faq-list { gap: 10px; }
    .faq-q { font-size: 14px; padding: 15px 18px; gap: 12px; }
    .faq-chevron { width: 16px; height: 16px; }
    .faq-a p { font-size: 13.5px; padding: 0 18px 16px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    position: relative;
    z-index: 2;
    margin-top: 40px;
    padding: 72px 0 32px;
    background:
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.85) 100%);
}

.footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(225, 10, 23, 0) 15%,
        rgba(225, 10, 23, 0.45) 50%,
        rgba(225, 10, 23, 0) 85%,
        transparent 100%
    );
    box-shadow: 0 0 18px rgba(225, 10, 23, 0.35);
    pointer-events: none;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr;
    gap: 72px;
    align-items: flex-start;
}

/* Brand column */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 18px;
    transition: transform 0.4s var(--ease-out);
}
.footer-logo-link:hover { transform: scale(1.02); }

.footer-logo {
    height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 16px rgba(225, 10, 23, 0.35));
}

.footer-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.005em;
    margin: 0 0 8px;
    max-width: 340px;
}

.footer-tag-sub {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
    max-width: 340px;
}

/* Info / Contact columns */
.footer-col { min-width: 0; }

.footer-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin: 10px 0 20px;
    position: relative;
    padding-bottom: 14px;
}
.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--red-hot), transparent);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-list a,
.footer-list li {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    letter-spacing: 0.005em;
    transition: color 0.25s var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.footer-list a:hover { color: #fff; }
.footer-list a:focus-visible { outline: 2px solid var(--red-hot); outline-offset: 3px; border-radius: 4px; }

.footer-list svg {
    width: 15px;
    height: 15px;
    color: var(--red-hot);
    flex-shrink: 0;
}

.footer-contact-email a {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #fff;
    word-break: break-all;
}
.footer-contact-email a:hover { color: var(--red-hot); }

.footer-trust { color: rgba(255, 255, 255, 0.68); }

/* Divider */
.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 44px 0 24px;
}

/* Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}
.footer-bottom strong { color: rgba(255, 255, 255, 0.88); font-weight: 700; }

/* Responsive */
@media (max-width: 960px) {
    .site-footer { padding: 56px 0 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-logo { height: 64px; }
}

@media (max-width: 640px) {
    .site-footer { padding: 48px 0 28px; }
    .footer-inner { padding: 0 18px; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: auto; }
    .footer-logo { height: 56px; }
    .footer-tag { font-size: 14.5px; }
    .footer-tag-sub { font-size: 13px; }

    .footer-title { font-size: 11px; letter-spacing: 0.2em; margin-top: 0; margin-bottom: 16px; }
    .footer-list a, .footer-list li { font-size: 13px; }

    .footer-divider { margin: 32px 0 20px; }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        font-size: 11.5px;
    }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 10px 28px rgba(37, 211, 102, 0.45),
        0 0 0 0 rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition:
        transform 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
    animation: waBob 3.4s ease-in-out infinite;
}
.wa-float svg {
    width: 30px;
    height: 30px;
    /* leve translação para centralização visual do ícone (a logo do WhatsApp tem peso à esquerda) */
    transform: translateX(0.5px);
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 14px 36px rgba(37, 211, 102, 0.6),
        0 0 0 8px rgba(37, 211, 102, 0.18);
}
.wa-float:active { transform: scale(0.96); transition-duration: 0.1s; }
.wa-float:focus-visible {
    outline: 2px solid #25D366;
    outline-offset: 4px;
}

/* Anel pulsante atrás do botão */
.wa-float-ring {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.45);
    pointer-events: none;
    animation: waRing 2.4s ease-out infinite;
}

@keyframes waRing {
    0%   { transform: scale(1);   opacity: 0.7; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Bobbing usa propriedade independente "translate" pra não conflitar
   com transform: scale() no hover/active */
@keyframes waBob {
    0%, 100% { translate: 0 0; }
    50%      { translate: 0 -5px; }
}

@media (max-width: 640px) {
    .wa-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    .wa-float svg { width: 27px; height: 27px; }
}

/* Quando o popup de prova social aparecer e estiver à esquerda, não conflita.
   Quando o exit modal abrir (z-index 200), ele cobre o WA naturalmente. */
@media (prefers-reduced-motion: reduce) {
    .wa-float, .wa-float-ring { animation: none !important; }
}

/* ============================================================
   EXIT INTENT MODAL
   ============================================================ */
.exit-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s var(--ease-out);
}
.exit-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.exit-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.exit-modal-panel {
    position: relative;
    width: 100%;
    max-width: 480px;
    padding: 36px 32px 30px;
    border-radius: 24px;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(26, 8, 12, 0.88) 0%, rgba(12, 4, 7, 0.92) 100%);
    border: 1px solid rgba(225, 10, 23, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 40px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(225, 10, 23, 0.22),
        0 0 60px rgba(225, 10, 23, 0.3);
    transform: translateY(16px) scale(0.96);
    transition:
        transform 0.45s var(--ease-out),
        opacity 0.35s var(--ease-out);
    opacity: 0;
    isolation: isolate;
}
.exit-modal.is-visible .exit-modal-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.exit-modal-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(225, 10, 23, 0.22), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.exit-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.exit-modal-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.exit-modal-close:focus-visible {
    outline: 2px solid var(--red-hot);
    outline-offset: 2px;
}
.exit-modal-close svg { width: 16px; height: 16px; }

.exit-modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, #F0131F 0%, #C10813 100%);
    border: 1px solid rgba(255, 80, 90, 0.45);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 12px 32px rgba(225, 10, 23, 0.5);
    position: relative;
    animation: exitIconPulse 2s ease-in-out infinite;
}
.exit-modal-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(225, 10, 23, 0.4);
    opacity: 0;
    animation: exitIconRing 2s ease-out infinite;
}
@keyframes exitIconPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}
@keyframes exitIconRing {
    0%   { opacity: 0.7; transform: scale(1); }
    100% { opacity: 0;   transform: scale(1.45); }
}
.exit-modal-icon svg { width: 30px; height: 30px; }

.exit-modal-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.55rem, 3.2vw, 2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 14px;
    text-wrap: balance;
}

.exit-modal-sub {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
    margin: 0 0 10px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.exit-modal-text {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.55;
    margin: 0 0 26px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.exit-modal-cta {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
    margin: 0 0 14px;
    font-size: 14px;
    animation: exitCtaPulse 2.4s ease-in-out infinite;
}
@keyframes exitCtaPulse {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28),
            0 10px 28px rgba(225, 10, 23, 0.4),
            0 0 0 0 rgba(225, 10, 23, 0.3);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.32),
            0 14px 36px rgba(225, 10, 23, 0.55),
            0 0 0 6px rgba(225, 10, 23, 0.12);
    }
}

.exit-modal-dismiss {
    display: inline-block;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.42);
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.18);
    text-underline-offset: 3px;
    transition: color 0.25s var(--ease-out), text-decoration-color 0.25s var(--ease-out);
    padding: 4px 8px;
}
.exit-modal-dismiss:hover {
    color: rgba(255, 255, 255, 0.65);
    text-decoration-color: rgba(255, 255, 255, 0.35);
}
.exit-modal-dismiss:focus-visible {
    outline: 2px solid var(--red-hot);
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .exit-modal { padding: 16px; }
    .exit-modal-panel { padding: 32px 22px 26px; border-radius: 20px; max-width: 100%; }
    .exit-modal-icon { width: 56px; height: 56px; margin-bottom: 18px; }
    .exit-modal-icon svg { width: 26px; height: 26px; }
    .exit-modal-title { margin-bottom: 12px; }
    .exit-modal-sub { font-size: 14px; }
    .exit-modal-text { font-size: 13px; margin-bottom: 22px; }
    .exit-modal-cta { padding: 16px 22px; font-size: 13.5px; }
    .exit-modal-dismiss { font-size: 12px; }
}

/* ============================================================
   SOCIAL PROOF TOAST
   ============================================================ */
.social-proof {
    position: fixed;
    z-index: 80;
    left: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px 12px 12px;
    min-width: 268px;
    max-width: 340px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(20, 6, 10, 0.88), rgba(10, 4, 7, 0.92));
    backdrop-filter: blur(22px) saturate(140%);
    -webkit-backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 22px 50px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(225, 10, 23, 0.16),
        0 0 30px rgba(225, 10, 23, 0.18);
    opacity: 0;
    transform: translateY(14px) scale(0.98);
    pointer-events: none;
    transition:
        opacity 0.45s var(--ease-out),
        transform 0.5s var(--ease-out);
    will-change: transform, opacity;
}
.social-proof.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.sp-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(180deg, var(--red-hot), var(--red));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 18px rgba(225, 10, 23, 0.45);
    position: relative;
}
.sp-icon::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 1px solid rgba(225, 10, 23, 0.35);
    opacity: 0;
    animation: spIconRing 2s ease-out infinite;
}
.social-proof.is-visible .sp-icon::after { animation-play-state: running; }
@keyframes spIconRing {
    0%   { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0;   transform: scale(1.35); }
}
.sp-icon svg { width: 18px; height: 18px; }

.sp-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1 1 auto;
}
.sp-title {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.25;
}
.sp-meta {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.01em;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-close {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    border: 0;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.sp-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}
.sp-close:focus-visible {
    outline: 2px solid var(--red-hot);
    outline-offset: 2px;
}
.sp-close svg { width: 14px; height: 14px; }

@media (max-width: 640px) {
    .social-proof {
        left: 12px;
        right: 12px;
        bottom: 12px;
        min-width: 0;
        max-width: none;
        padding: 10px 12px 10px 10px;
        border-radius: 14px;
    }
    .sp-icon { width: 32px; height: 32px; border-radius: 10px; }
    .sp-icon svg { width: 16px; height: 16px; }
    .sp-title { font-size: 12.5px; }
    .sp-meta { font-size: 11px; }
}

/* Reduced motion */
/* ============================================================
   MICRO-ANIMAÇÕES PREMIUM
   (overrides unificadores + stagger de grids + reduções mobile)
   ============================================================ */

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* 1. HOVER UNIFICADO DOS CARDS — lift -6px + scale 1.03 */
.benefit-card:hover,
.variety-card:hover,
.testi-card:hover,
.top-card:hover,
.plan-card:hover {
    transform: translateY(-6px) scale(1.03);
}
.price-card:hover {
    /* price-cards são menores, aumento menor pra não invadir vizinhos */
    transform: translateY(-6px) scale(1.025);
}
.plan-card-featured:hover {
    /* preserva o scale base 1.035 + incremento de 0.03 = 1.065 */
    transform: scale(1.065) translateY(-6px);
}

/* 2. IMAGENS DENTRO DOS CARDS — zoom 1.05 */
.variety-card:hover .variety-card-img,
.top-card:hover .top-card-poster,
.price-card:hover .price-logo img {
    transform: scale(1.05);
}

/* 3. BOTÕES — scale no hover, compressão no active */
.btn-primary { transition: transform 0.25s var(--ease-out), box-shadow 0.3s var(--ease-out), filter 0.25s var(--ease-out); }
.btn-primary:hover { transform: translateY(-1px) scale(1.03); }
.btn-primary:active { transform: scale(0.97); transition-duration: 0.1s; }

.btn-ghost:hover { transform: translateY(-1px) scale(1.02); }
.btn-ghost:active { transform: scale(0.97); transition-duration: 0.1s; }

/* 4. STAGGER ESTENDIDO — para siblings além de nth-child(5) */
[data-reveal]:nth-child(6) { transition-delay: 0.4s; }
[data-reveal]:nth-child(7) { transition-delay: 0.48s; }
[data-reveal]:nth-child(8) { transition-delay: 0.56s; }

/* 5. STAGGER PARA PRICE GRID (12 cards sem data-reveal individual) */
.price-grid.is-visible > .price-card {
    animation: fadeSlideUp 0.7s var(--ease-out) both;
}
.price-grid.is-visible > .price-card:nth-child(1)  { animation-delay: 0ms; }
.price-grid.is-visible > .price-card:nth-child(2)  { animation-delay: 50ms; }
.price-grid.is-visible > .price-card:nth-child(3)  { animation-delay: 100ms; }
.price-grid.is-visible > .price-card:nth-child(4)  { animation-delay: 150ms; }
.price-grid.is-visible > .price-card:nth-child(5)  { animation-delay: 200ms; }
.price-grid.is-visible > .price-card:nth-child(6)  { animation-delay: 250ms; }
.price-grid.is-visible > .price-card:nth-child(7)  { animation-delay: 300ms; }
.price-grid.is-visible > .price-card:nth-child(8)  { animation-delay: 350ms; }
.price-grid.is-visible > .price-card:nth-child(9)  { animation-delay: 400ms; }
.price-grid.is-visible > .price-card:nth-child(10) { animation-delay: 450ms; }
.price-grid.is-visible > .price-card:nth-child(11) { animation-delay: 500ms; }
.price-grid.is-visible > .price-card:nth-child(12) { animation-delay: 550ms; }

/* 6. STAGGER PARA FAQ LIST */
.faq-list.is-visible > .faq-item {
    animation: fadeSlideUp 0.55s var(--ease-out) both;
}
.faq-list.is-visible > .faq-item:nth-child(1) { animation-delay: 0ms; }
.faq-list.is-visible > .faq-item:nth-child(2) { animation-delay: 60ms; }
.faq-list.is-visible > .faq-item:nth-child(3) { animation-delay: 120ms; }
.faq-list.is-visible > .faq-item:nth-child(4) { animation-delay: 180ms; }
.faq-list.is-visible > .faq-item:nth-child(5) { animation-delay: 240ms; }
.faq-list.is-visible > .faq-item:nth-child(6) { animation-delay: 300ms; }

/* 7. MOBILE — reduzir intensidade pra preservar performance */
@media (max-width: 640px) {
    .benefit-card:hover,
    .variety-card:hover,
    .testi-card:hover,
    .price-card:hover,
    .top-card:hover,
    .plan-card:hover {
        transform: translateY(-3px) scale(1.01);
    }
    .plan-card-featured:hover {
        transform: scale(1.035) translateY(-3px);
    }
    .btn-primary:hover { transform: translateY(0) scale(1.02); }
    .btn-ghost:hover   { transform: translateY(0) scale(1.01); }

    /* Encurta stagger em mobile — entra mais rápido */
    .price-grid.is-visible > .price-card:nth-child(n) {
        animation-duration: 0.5s;
    }
    .price-grid.is-visible > .price-card:nth-child(6)  { animation-delay: 180ms; }
    .price-grid.is-visible > .price-card:nth-child(7)  { animation-delay: 210ms; }
    .price-grid.is-visible > .price-card:nth-child(8)  { animation-delay: 240ms; }
    .price-grid.is-visible > .price-card:nth-child(9)  { animation-delay: 270ms; }
    .price-grid.is-visible > .price-card:nth-child(10) { animation-delay: 300ms; }
    .price-grid.is-visible > .price-card:nth-child(11) { animation-delay: 330ms; }
    .price-grid.is-visible > .price-card:nth-child(12) { animation-delay: 360ms; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
