/* ============================================
   CAB - COMUNIDADE ADVOGADOS BRASIL
   Design System v2.0 — Premium & Professional
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --azul-escuro: #08163C;
    --azul-base: #13308F;
    --azul-vivo: #1C3FAE;
    --branco: #FFFFFF;
    --dourado: #D6B56A;
    --dourado-claro: #F5D77A;
    --dourado-escuro: #B8924A;
    --texto: rgba(255, 255, 255, 0.92);
    --texto-muted: rgba(255, 255, 255, 0.65);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(214, 181, 106, 0.15);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--texto);
    background: var(--azul-escuro);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.section-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.2rem;
    height: 2px;
    background: var(--dourado);
    transform: translateY(-50%);
}

.section-tag.text-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    padding-left: 0;
}

.section-tag.text-center::before,
.section-tag.text-center::after {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(214,181,106,0.45);
    border-bottom: 2px solid rgba(214,181,106,0.45);
    transform: rotate(45deg);
    position: static;
    background: none;
    animation: sectionTagBounce 2s ease-in-out infinite;
    flex-shrink: 0;
}

.section-tag.text-center::after {
    animation-delay: 0.15s;
}

@keyframes sectionTagBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.45; }
    50%      { transform: rotate(45deg) translateY(3px); opacity: 0.8; }
}

.text-gold {
    color: var(--dourado);
}

.text-center {
    text-align: center;
}

/* --- LAYOUT --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

/* Section Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 106, 0.3), transparent);
    max-width: 600px;
    margin: 0 auto;
}

/* --- SCROLL REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children .reveal {
    transition-delay: calc(var(--i, 0) * 0.12s);
}

/* Desktop: planos cards appear instantly together when section is visible */
@media (min-width: 769px) {
    .planos-grid.stagger-children .plano-card.reveal {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0s;
    }
}

/* Mobile: planos cards appear instantly — no entrance transition */
@media (max-width: 768px) {
    .planos-grid .plano-card.reveal {
        opacity: 1 !important;
        transform: translateY(0) !important;
        transition: none !important;
    }
}

/* ============================================
   GEO TOPBAR
   ============================================ */
.geo-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(90deg, rgba(8, 22, 60, 1), rgba(19, 48, 143, 1), rgba(8, 22, 60, 1));
    border-bottom: none;
    padding: 0.3rem 0 0.05rem;
    animation: geoSlideDown 0.5s ease-out;
}

.geo-topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.geo-topbar-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: geoPulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
}

.geo-topbar-text strong {
    color: var(--dourado);
}

/* Número de advogados sempre verde */
#geoCount {
    display: inline-block;
    color: #4ade80 !important;
    transition: transform 0.3s ease, color 0.3s ease;
}
#geoCount.geo-count-flash {
    color: #86efac !important;
    transform: scale(1.45);
    text-shadow: 0 0 8px rgba(74, 222, 128, 0.6);
}

.geo-topbar-cta {
    color: var(--dourado);
    font-weight: 700;
    font-size: 0.78rem;
    text-decoration: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.2s;
}
.geo-topbar-cta:hover {
    color: var(--dourado-claro);
    text-decoration: underline;
}

/* Desktop: topbar pushes header down, both fixed */
body.has-geo-topbar header {
    top: var(--geo-topbar-h, 32px);
}

/* Desktop: hero needs extra top padding to clear fixed topbar + header */
@media (min-width: 769px) {
    body.has-geo-topbar .hero {
        padding-top: 9rem;
    }
}

@keyframes geoSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes geoPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 6px rgba(34, 197, 94, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 12px rgba(34, 197, 94, 0.9); }
}

/* Mobile: topbar fixed, header NOT fixed */
@media (max-width: 768px) {
    .geo-topbar {
        position: fixed;
        z-index: 1001;
        padding: 0;
        background: none;
        border-bottom: none;
        pointer-events: none;
    }
    .geo-topbar-inner {
        pointer-events: auto;
        font-size: 0.78rem;
        gap: 0.5rem;
        padding: 0.55rem 1.2rem;
        margin: 0;
        justify-content: center;
        text-align: center;
        line-height: 1.4;
        background: linear-gradient(135deg, rgba(8, 22, 60, 0.95), rgba(19, 48, 143, 0.9));
        border: 1px solid rgba(214, 181, 106, 0.2);
        border-top: none;
        border-radius: 0 0 14px 14px;
        box-shadow:
            0 4px 20px rgba(0, 0, 0, 0.35),
            0 1px 0 rgba(214, 181, 106, 0.1) inset;
        position: relative;
        overflow: hidden;
    }
    /* Gold shimmer bottom edge */
    .geo-topbar-inner::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--dourado), var(--dourado-claro), var(--dourado), transparent);
        opacity: 0.6;
    }
    .geo-topbar-text {
        font-weight: 500;
    }
    .geo-topbar-text strong {
        font-size: 1.05em;
    }
    .geo-topbar-pulse {
        width: 7px;
        height: 7px;
    }
    body.has-geo-topbar header {
        top: auto;
    }
}

/* ============================================
   HEADER
   ============================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 22, 60, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(8, 22, 60, 0.95);
    padding: 0.35rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Mobile: header static, not fixed */
@media (max-width: 768px) {
    header {
        position: relative;
        background: rgba(8, 22, 60, 0.95);
    }
    header.scrolled {
        padding: 0.8rem 0;
        box-shadow: none;
    }
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header {
    height: 55px;
    transition: height 0.3s ease;
}

header.scrolled .logo-header {
    height: 42px;
}

nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--texto-muted);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dourado);
    transition: width var(--transition);
}

nav a:hover {
    color: var(--branco);
}

nav a:hover::after {
    width: 100%;
}

.btn-header {
    background: linear-gradient(135deg, var(--dourado-claro), var(--dourado), var(--dourado-escuro));
    color: var(--azul-escuro);
    padding: 0.65rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all var(--transition);
    box-shadow: 0 4px 15px rgba(214, 181, 106, 0.3);
    letter-spacing: 0.3px;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 181, 106, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--branco);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
    /* Bottom fades gently into numbers-bar */
    margin-bottom: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 22, 60, 0.7) 0%,
        rgba(8, 22, 60, 0.5) 35%,
        rgba(8, 22, 60, 0.8) 75%,
        rgba(8, 22, 60, 0.95) 100%
    );
}

.plexus-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-hero {
    max-width: 200px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInDown 0.8s ease 0.2s forwards;
}

.hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--texto-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-cta-wrap {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero .btn-primary {
    font-size: 1.05rem;
    padding: 1.2rem 3rem;
}

.hero-microcopy {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--texto-muted);
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

.hero-scroll {
    position: relative;
    z-index: 3;
    margin-top: auto;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}
.hero-scroll:hover {
    opacity: 0.8;
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--texto-muted);
}

.hero-scroll svg {
    color: var(--dourado);
    animation: chevronBounce 2s ease-in-out infinite;
}

@keyframes chevronBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.5; }
}

/* ============================================
   NUMBERS BAR
   ============================================ */
.numbers-bar {
    background: linear-gradient(180deg,
        rgba(10, 28, 72, 0)    0%,
        rgba(12, 32, 82, 0.5)  18%,
        rgba(15, 38, 100, 0.7) 40%,
        rgba(15, 38, 100, 0.7) 60%,
        rgba(12, 32, 82, 0.5)  82%,
        rgba(10, 28, 72, 0)    100%
    );
    padding: 4rem 0 5rem;
    position: relative;
    overflow: visible;
}

/* Top decorative line — gold glow */
.numbers-bar::before {
    content: '';
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 106, 0.2), transparent);
}

/* Bottom decorative line — gold glow */
.numbers-bar::after {
    content: '';
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 106, 0.2), transparent);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.number-item {
    text-align: center;
    padding: 1rem;
}

.number-value-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.number-prefix, .number-suffix {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--dourado);
    font-weight: 600;
}

.number-value {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--dourado);
    line-height: 1;
}

.number-label {
    display: block;
    font-size: 0.85rem;
    color: var(--texto-muted);
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto;
}

/* ============================================
   DIAGNÓSTICO — Fullwidth Background Parallax
   ============================================ */
.diagnostico {
    position: relative;
    overflow: hidden;
    padding: 0;
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background image layer — uses background-position-y for parallax + breathing */
.diagnostico-bg {
    position: absolute;
    top: -3%;
    left: -3%;
    right: -3%;
    bottom: -3%;
    z-index: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    filter: brightness(0.5) saturate(0.8);
    will-change: transform;
    pointer-events: none;
    animation: diagBreathing 12s ease-in-out infinite;
}

@keyframes diagBreathing {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.04); }
    100% { transform: scale(1); }
}

/* Gradient overlay — blends image edges into site background */
.diagnostico-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        /* Top fade — very long blend from site dark bg */
        linear-gradient(180deg, 
            var(--azul-escuro) 0%, 
            rgba(8, 22, 60, 0.92) 5%, 
            rgba(8, 22, 60, 0.7) 12%, 
            rgba(8, 22, 60, 0.35) 22%, 
            transparent 35%
        ),
        /* Bottom fade — long blend into azul-escuro */
        linear-gradient(0deg, 
            var(--azul-escuro) 0%, 
            rgba(8, 22, 60, 0.92) 6%, 
            rgba(8, 22, 60, 0.7) 14%, 
            rgba(8, 22, 60, 0.35) 24%, 
            transparent 38%
        ),
        /* Light overall tint for text readability */
        linear-gradient(135deg, rgba(8, 22, 60, 0.3) 0%, rgba(19, 48, 143, 0.1) 50%, rgba(8, 22, 60, 0.35) 100%);
    pointer-events: none;
}

/* Pulsing vignette — claustrophobic breathing darkness */
.diagnostico::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
    animation: diagVignettePulse 8s ease-in-out infinite;
}

@keyframes diagVignettePulse {
    0%, 100% { opacity: 0.4; }
    50%      { opacity: 0.8; }
}

/* Content container on top */
.diagnostico-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 10rem 2rem;
    max-width: 860px;
    margin: 0 auto;
}

.diagnostico-headline {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

/* Pain points — centered grid */
.pain-points-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

/* Staggered reveal for diagnostico elements */
.diag-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    transition-delay: calc(var(--diag-i, 0) * 0.12s + 0.05s);
}

.diag-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.diagnostico .pain-point {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.3rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(8, 22, 60, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(214, 181, 106, 0.06);
    text-align: left;
}

/* Active state glow — red-ish urgency on reveal */
.diagnostico .pain-point.diag-reveal.active {
    border-color: rgba(180, 80, 60, 0.2);
    box-shadow: 0 0 30px rgba(180, 80, 60, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
    background: rgba(12, 18, 45, 0.35);
}

.diagnostico .pain-point:hover {
    background: rgba(8, 22, 60, 0.3);
    border-color: rgba(214, 181, 106, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pain-icon {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dourado);
    background: rgba(214, 181, 106, 0.15);
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(214, 181, 106, 0.25);
    flex-shrink: 0;
}

.pain-point h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 0.25rem;
}

.pain-point p {
    font-size: 0.92rem;
    color: var(--texto-muted);
    line-height: 1.5;
}

.diagnostico .diagnostico-quote {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(214, 181, 106, 0.08), rgba(214, 181, 106, 0.02));
    border-left: 3px solid var(--dourado);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1.15rem;
    color: var(--dourado);
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* Snow particles — 40 flakes falling */
.diag-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.diag-particles span {
    position: absolute;
    top: -5%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    opacity: 0;
    animation: snowFall linear infinite;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

/* 40 snowflakes with varied positions, sizes, speeds, delays */
.diag-particles span:nth-child(1)  { left: 2%;  width: 4px; height: 4px; animation-duration: 8s;  animation-delay: 0s; }
.diag-particles span:nth-child(2)  { left: 7%;  width: 3px; height: 3px; animation-duration: 11s; animation-delay: 1s; }
.diag-particles span:nth-child(3)  { left: 12%; width: 5px; height: 5px; animation-duration: 9s;  animation-delay: 0.5s; }
.diag-particles span:nth-child(4)  { left: 17%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 3s; }
.diag-particles span:nth-child(5)  { left: 22%; width: 4px; height: 4px; animation-duration: 10s; animation-delay: 2s; }
.diag-particles span:nth-child(6)  { left: 27%; width: 6px; height: 6px; animation-duration: 7s;  animation-delay: 0s; }
.diag-particles span:nth-child(7)  { left: 32%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 4s; }
.diag-particles span:nth-child(8)  { left: 37%; width: 4px; height: 4px; animation-duration: 9s;  animation-delay: 1.5s; }
.diag-particles span:nth-child(9)  { left: 42%; width: 5px; height: 5px; animation-duration: 11s; animation-delay: 0.3s; }
.diag-particles span:nth-child(10) { left: 47%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 5s; }
.diag-particles span:nth-child(11) { left: 52%; width: 4px; height: 4px; animation-duration: 8s;  animation-delay: 2.5s; }
.diag-particles span:nth-child(12) { left: 57%; width: 6px; height: 6px; animation-duration: 10s; animation-delay: 0.8s; }
.diag-particles span:nth-child(13) { left: 62%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 3.5s; }
.diag-particles span:nth-child(14) { left: 67%; width: 5px; height: 5px; animation-duration: 9s;  animation-delay: 1s; }
.diag-particles span:nth-child(15) { left: 72%; width: 4px; height: 4px; animation-duration: 11s; animation-delay: 0s; }
.diag-particles span:nth-child(16) { left: 77%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 6s; }
.diag-particles span:nth-child(17) { left: 82%; width: 5px; height: 5px; animation-duration: 8s;  animation-delay: 2s; }
.diag-particles span:nth-child(18) { left: 87%; width: 4px; height: 4px; animation-duration: 10s; animation-delay: 4.5s; }
.diag-particles span:nth-child(19) { left: 92%; width: 6px; height: 6px; animation-duration: 7s;  animation-delay: 1s; }
.diag-particles span:nth-child(20) { left: 97%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: 0s; }
.diag-particles span:nth-child(21) { left: 4%;  width: 5px; height: 5px; animation-duration: 10s; animation-delay: 3s; }
.diag-particles span:nth-child(22) { left: 10%; width: 3px; height: 3px; animation-duration: 9s;  animation-delay: 7s; }
.diag-particles span:nth-child(23) { left: 19%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 1.5s; }
.diag-particles span:nth-child(24) { left: 25%; width: 5px; height: 5px; animation-duration: 8s;  animation-delay: 5.5s; }
.diag-particles span:nth-child(25) { left: 34%; width: 3px; height: 3px; animation-duration: 11s; animation-delay: 0s; }
.diag-particles span:nth-child(26) { left: 39%; width: 6px; height: 6px; animation-duration: 9s;  animation-delay: 2.5s; }
.diag-particles span:nth-child(27) { left: 45%; width: 4px; height: 4px; animation-duration: 13s; animation-delay: 4s; }
.diag-particles span:nth-child(28) { left: 54%; width: 3px; height: 3px; animation-duration: 7s;  animation-delay: 1s; }
.diag-particles span:nth-child(29) { left: 59%; width: 5px; height: 5px; animation-duration: 10s; animation-delay: 6.5s; }
.diag-particles span:nth-child(30) { left: 65%; width: 4px; height: 4px; animation-duration: 8s;  animation-delay: 0.5s; }
.diag-particles span:nth-child(31) { left: 70%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: 3s; }
.diag-particles span:nth-child(32) { left: 76%; width: 3px; height: 3px; animation-duration: 9s;  animation-delay: 8s; }
.diag-particles span:nth-child(33) { left: 80%; width: 4px; height: 4px; animation-duration: 11s; animation-delay: 0s; }
.diag-particles span:nth-child(34) { left: 86%; width: 5px; height: 5px; animation-duration: 7s;  animation-delay: 2s; }
.diag-particles span:nth-child(35) { left: 90%; width: 3px; height: 3px; animation-duration: 10s; animation-delay: 5s; }
.diag-particles span:nth-child(36) { left: 95%; width: 4px; height: 4px; animation-duration: 13s; animation-delay: 1s; }
.diag-particles span:nth-child(37) { left: 14%; width: 5px; height: 5px; animation-duration: 8s;  animation-delay: 4s; }
.diag-particles span:nth-child(38) { left: 30%; width: 6px; height: 6px; animation-duration: 9s;  animation-delay: 0s; }
.diag-particles span:nth-child(39) { left: 50%; width: 4px; height: 4px; animation-duration: 11s; animation-delay: 7s; }
.diag-particles span:nth-child(40) { left: 74%; width: 5px; height: 5px; animation-duration: 8s;  animation-delay: 3.5s; }

@keyframes snowFall {
    0%   { transform: translateY(-5%) translateX(0); opacity: 0; }
    5%   { opacity: 0.8; }
    25%  { transform: translateY(25vh) translateX(15px); opacity: 0.6; }
    50%  { transform: translateY(50vh) translateX(-10px); opacity: 0.7; }
    75%  { transform: translateY(75vh) translateX(20px); opacity: 0.5; }
    95%  { opacity: 0.6; }
    100% { transform: translateY(105vh) translateX(-5px); opacity: 0; }
}

/* ============================================
   SOLUÇÃO (TRANSITION)
   ============================================ */
.solucao-transition {
    background: linear-gradient(180deg, 
        rgba(8, 22, 60, 0) 0%,
        rgba(12, 28, 70, 0.5) 15%,
        rgba(15, 38, 110, 0.6) 40%,
        rgba(19, 48, 143, 0.7) 70%,
        var(--azul-base) 100%
    );
    padding: 6rem 0;
    text-align: center;
}

.solucao-transition h2 {
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.solucao-transition p {
    max-width: 650px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--texto-muted);
    line-height: 1.8;
}

/* ============================================
   4 FASES — TIMELINE
   ============================================ */
.fases {
    background: linear-gradient(180deg,
        var(--azul-base) 0%,
        var(--azul-base) 50%,
        rgba(12, 24, 58, 0.97) 70%,
        rgba(8, 16, 40, 0.98) 85%,
        #050a1a 100%
    );
    padding: 6rem 0 8rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* Soft fade at bottom of fases into cinema */
.fases::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg,
        transparent 0%,
        #050a1a 100%
    );
    pointer-events: none;
    z-index: 1;
}

.fases h2 {
    margin-bottom: 3.5rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--dourado), rgba(214, 181, 106, 0.15));
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-left: 0;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
    color: var(--azul-escuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 25px rgba(214, 181, 106, 0.3);
}

.step-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    flex: 1;
    transition: all var(--transition);
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 181, 106, 0.2);
    transform: translateX(8px);
}

.step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--dourado);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--texto-muted);
    line-height: 1.6;
}

/* ============================================
   MOCKUP — CINEMATIC SHOWCASE
   ============================================ */
.mockup-cinema {
    position: relative;
    background: #050a1a;
    padding: 2rem 0 6rem;
    margin-top: -4rem;
    overflow: hidden;
    z-index: 1;
}

/* Soft fade at bottom of cinema into entregaveis */
.mockup-cinema::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(180deg,
        transparent 0%,
        #050a1a 100%
    );
    pointer-events: none;
    z-index: 10;
}

/* Radial ambient glow — disabled, was causing edge artifacts */
.mockup-cinema-glow {
    display: none;
}

/* === STAGE: contains image + all overlays === */
.cinema-stage {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
    z-index: 3;
}

/* Image wrapper — handles the zoom + dissolves edges */
.cinema-img-wrap {
    animation: cinemaZoom 24s ease-in-out infinite;
    will-change: transform;
    -webkit-mask-image: radial-gradient(
        ellipse 52% 55% at 50% 46%,
        black 55%,
        rgba(0,0,0,0.5) 75%,
        transparent 100%
    );
    mask-image: radial-gradient(
        ellipse 52% 55% at 50% 46%,
        black 55%,
        rgba(0,0,0,0.5) 75%,
        transparent 100%
    );
}

@keyframes cinemaZoom {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.08); }
    100% { transform: scale(1); }
}

.mockup-img {
    display: block;
    width: 100%;
}

/* Light sweep — disabled, was causing edge artifacts */
.cinema-light-sweep {
    display: none;
}

/* Vignette — simple center darken for headline readability */
.cinema-vignette {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(5, 10, 26, 0.2) 0%, rgba(5, 10, 26, 0.35) 100%);
}

/* === ANIMATED HEADLINES OVERLAY === */
.cinema-headlines {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinema-hl {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: scale(0.85);
    /* dark pill backdrop for contrast */
    background: radial-gradient(ellipse at center, rgba(5, 10, 26, 0.75) 0%, rgba(5, 10, 26, 0.45) 50%, transparent 80%);
    padding: 2rem 3rem;
    border-radius: 20px;
}

/* Gold number/text — BRIGHT + heavy shadow for max readability */
.cinema-hl-gold {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5rem);
    color: #FFE08A;
    text-shadow:
        0 0 10px rgba(255, 224, 138, 0.9),
        0 0 40px rgba(214, 181, 106, 0.8),
        0 0 80px rgba(214, 181, 106, 0.5),
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 20px rgba(0, 0, 0, 0.95),
        0 8px 40px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
    letter-spacing: 2px;
}

/* Subtitle under number — fully white, heavy shadow */
.cinema-hl-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 2.2vw, 1.25rem);
    font-weight: 600;
    color: #FFFFFF;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 1),
        0 4px 15px rgba(0, 0, 0, 0.95),
        0 8px 30px rgba(0, 0, 0, 0.6);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Big statement text — fully opaque white, max shadow */
.cinema-hl-big {
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: #FFFFFF;
    text-shadow:
        0 0 10px rgba(0, 0, 0, 1),
        0 2px 4px rgba(0, 0, 0, 1),
        0 4px 20px rgba(0, 0, 0, 0.9),
        0 8px 40px rgba(0, 0, 0, 0.6);
    line-height: 1.15;
    letter-spacing: 3px;
}

.cinema-hl-big.cinema-hl-gold {
    font-size: clamp(2rem, 5.5vw, 3.6rem);
}

/* Logo flash — HUGE + intense glow */
.cinema-logo-flash {
    max-width: clamp(240px, 45vw, 480px);
    filter:
        drop-shadow(0 0 25px rgba(255, 224, 138, 0.95))
        drop-shadow(0 0 70px rgba(214, 181, 106, 0.7))
        drop-shadow(0 0 120px rgba(214, 181, 106, 0.45))
        brightness(1.35);
}

/* === ANIMATION SEQUENCE — 24s total loop (infinite) ===
   Headline windows within 24s cycle:
   HL1: 2%–14%   (0.5s–3.4s)
   HL2: 17%–29%  (4.1s–7.0s)
   HL3: 32%–45%  (7.7s–10.8s)
   HL4: 48%–58%  (11.5s–13.9s)  — logo flash, slightly different
   HL5: 61%–73%  (14.6s–17.5s)
   HL6: 76%–94%  (18.2s–22.6s)  — final, longer hold
*/

.cinema-hl-1 { animation: hl1Cycle 24s ease infinite; }
.cinema-hl-2 { animation: hl2Cycle 24s ease infinite; }
.cinema-hl-3 { animation: hl3Cycle 24s ease infinite; }
.cinema-hl-4 { animation: hl4Cycle 24s ease infinite; }
.cinema-hl-5 { animation: hl5Cycle 24s ease infinite; }
.cinema-hl-6 { animation: hl6Cycle 24s ease infinite; }

/* HL1 — R$200K+ | PULSE: scale overshoot 1.18 + brightness flash */
@keyframes hl1Cycle {
    0%, 1%   { opacity: 0; transform: scale(0.5); filter: blur(10px) brightness(0.5); }
    3%       { opacity: 1; transform: scale(1.18); filter: blur(0) brightness(1.4); }
    5%       { transform: scale(0.96); filter: brightness(1.1); }
    6%       { transform: scale(1.02); filter: brightness(1); }
    7%       { transform: scale(1); }
    12%      { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
    15%, 100%{ opacity: 0; transform: scale(1.15); filter: blur(6px) brightness(0.6); }
}

/* HL2 — 91% | PULSE */
@keyframes hl2Cycle {
    0%, 16%  { opacity: 0; transform: scale(0.5); filter: blur(10px) brightness(0.5); }
    18%      { opacity: 1; transform: scale(1.18); filter: blur(0) brightness(1.4); }
    20%      { transform: scale(0.96); filter: brightness(1.1); }
    21%      { transform: scale(1.02); filter: brightness(1); }
    22%      { transform: scale(1); }
    27%      { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
    30%, 100%{ opacity: 0; transform: scale(1.15); filter: blur(6px) brightness(0.6); }
}

/* HL3 — PARCERIAS NÃO ANÚNCIOS | PULSE */
@keyframes hl3Cycle {
    0%, 31%  { opacity: 0; transform: scale(0.5); filter: blur(10px) brightness(0.5); }
    33%      { opacity: 1; transform: scale(1.15); filter: blur(0) brightness(1.35); }
    35%      { transform: scale(0.97); filter: brightness(1.1); }
    36%      { transform: scale(1.01); filter: brightness(1); }
    37%      { transform: scale(1); }
    43%      { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
    46%, 100%{ opacity: 0; transform: scale(1.12); filter: blur(5px) brightness(0.6); }
}

/* HL4 — LOGO FLASH | MEGA PULSE: scale 0.2→1.35 bounce + intense brightness */
@keyframes hl4Cycle {
    0%, 47%  { opacity: 0; transform: scale(0.2); filter: blur(12px) brightness(3); }
    49%      { opacity: 1; transform: scale(1.35); filter: blur(0) brightness(1.8); }
    51%      { transform: scale(0.88); filter: brightness(1.2); }
    52.5%    { transform: scale(1.08); filter: brightness(1.1); }
    54%      { transform: scale(0.98); filter: brightness(1); }
    55%      { transform: scale(1); }
    57%      { opacity: 1; transform: scale(1); filter: brightness(1); }
    59%, 100%{ opacity: 0; transform: scale(1.5); filter: blur(10px) brightness(0.3); }
}

/* HL5 — 23 CANAIS | PULSE */
@keyframes hl5Cycle {
    0%, 60%  { opacity: 0; transform: scale(0.5); filter: blur(10px) brightness(0.5); }
    62%      { opacity: 1; transform: scale(1.18); filter: blur(0) brightness(1.4); }
    64%      { transform: scale(0.96); filter: brightness(1.1); }
    65%      { transform: scale(1.02); filter: brightness(1); }
    66%      { transform: scale(1); }
    72%      { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
    75%, 100%{ opacity: 0; transform: scale(1.15); filter: blur(6px) brightness(0.6); }
}

/* HL6 — SUA CADEIRA NA MESA | PULSE + lift */
@keyframes hl6Cycle {
    0%, 76%  { opacity: 0; transform: scale(0.5) translateY(20px); filter: blur(10px) brightness(0.5); }
    78%      { opacity: 1; transform: scale(1.15) translateY(-5px); filter: blur(0) brightness(1.35); }
    80%      { transform: scale(0.97) translateY(2px); filter: brightness(1.1); }
    81%      { transform: scale(1.01) translateY(0); filter: brightness(1); }
    82%      { transform: scale(1) translateY(0); }
    92%      { opacity: 1; transform: scale(1) translateY(0); filter: blur(0) brightness(1); }
    96%, 100%{ opacity: 0; transform: scale(1.1) translateY(-15px); filter: blur(5px) brightness(0.6); }
}

/* Caption below */
.cinema-caption {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: var(--texto-muted);
    font-style: italic;
    letter-spacing: 0.5px;
    opacity: 0.5;
}

/* === PARTICLES (upgraded) === */
.mockup-cinema-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.mockup-cinema-particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(214, 181, 106, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(214, 181, 106, 0.3);
    animation: particleFloat 12s linear infinite;
    opacity: 0;
}

.mockup-cinema-particles span:nth-child(1) { left: 8%;  animation-delay: 0s;   animation-duration: 10s; width: 2px; height: 2px; }
.mockup-cinema-particles span:nth-child(2) { left: 20%; animation-delay: 1.5s; animation-duration: 14s; width: 3px; height: 3px; }
.mockup-cinema-particles span:nth-child(3) { left: 35%; animation-delay: 3s;   animation-duration: 11s; width: 1.5px; height: 1.5px; }
.mockup-cinema-particles span:nth-child(4) { left: 50%; animation-delay: 0.8s; animation-duration: 13s; width: 2.5px; height: 2.5px; }
.mockup-cinema-particles span:nth-child(5) { left: 65%; animation-delay: 4s;   animation-duration: 9s;  width: 2px; height: 2px; }
.mockup-cinema-particles span:nth-child(6) { left: 78%; animation-delay: 2s;   animation-duration: 12s; width: 1.5px; height: 1.5px; }
.mockup-cinema-particles span:nth-child(7) { left: 88%; animation-delay: 5s;   animation-duration: 15s; width: 2px; height: 2px; }
.mockup-cinema-particles span:nth-child(8) { left: 95%; animation-delay: 3.5s; animation-duration: 10s; width: 3px; height: 3px; }

@keyframes particleFloat {
    0%   { transform: translateY(120%); opacity: 0; }
    10%  { opacity: 0.7; }
    50%  { opacity: 0.5; }
    90%  { opacity: 0.7; }
    100% { transform: translateY(-120%); opacity: 0; }
}

/* Cinema responsive — mobile */
@media (max-width: 768px) {
    .mockup-cinema { padding: 2rem 0 3rem; }
    .cinema-stage { padding: 0 1rem; }
    .cinema-hl-gold { font-size: clamp(2rem, 10vw, 3.2rem); }
    .cinema-hl-big  { font-size: clamp(1.3rem, 7vw, 2.2rem); }
    .cinema-hl-sub  { font-size: clamp(0.65rem, 2.5vw, 0.9rem); }
    .cinema-logo-flash { max-width: clamp(180px, 40vw, 320px); }
    .cinema-hl { padding: 1.2rem 1.5rem; }
    .cinema-caption { font-size: 0.72rem; margin-top: 1rem; }
}

@media (max-width: 480px) {
    .cinema-stage { padding: 0 0.5rem; }
    .cinema-hl-gold { font-size: clamp(1.6rem, 12vw, 2.6rem); }
    .cinema-hl-big  { font-size: clamp(1.1rem, 8vw, 1.8rem); }
    .cinema-hl-sub  { font-size: clamp(0.55rem, 3vw, 0.75rem); }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .cinema-img-wrap { animation: none; }
    .cinema-light-sweep { animation: none; display: none; }
    .cinema-hl { animation: none !important; opacity: 0; }
    .cinema-hl-1 { opacity: 1; transform: scale(1); filter: none; }
    .mockup-cinema-particles span { animation: none; }
}

/* ============================================
   ENTREGÁVEIS — CAROUSEL
   ============================================ */
/* Scroll-jacking wrapper */
.carousel-scroll-wrapper {
    position: relative;
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transition: all 0.3s ease;
}
.carousel-dot.active {
    background: var(--dourado);
    transform: scale(1.35);
    box-shadow: 0 0 6px rgba(214,181,106,0.5);
}

.entregaveis {
    position: relative;
    background:
        radial-gradient(ellipse 85% 70% at 50% 50%,
            var(--azul-base) 0%,
            rgba(12, 28, 70, 0.92) 50%,
            var(--azul-escuro) 75%,
            #050a1a 100%),
        #050a1a;
    padding: 6rem 0;
    margin-top: -2rem;
    z-index: 2;
}

.entregaveis h2 {
    margin-bottom: 3rem;
}

.carousel-wrapper {
    position: relative;
    margin: 0 -1rem;
    /* Fade left & right edges */
    -webkit-mask-image: linear-gradient(to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
    mask-image: linear-gradient(to right,
        transparent 0%,
        black 6%,
        black 94%,
        transparent 100%
    );
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    opacity: 0;
    transition: opacity var(--transition);
}

.carousel-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 181, 106, 0.25);
    transform: translateY(-6px);
}

.carousel-card:hover::before {
    opacity: 1;
}

.carousel-icon {
    width: 56px;
    height: 56px;
    background: rgba(214, 181, 106, 0.1);
    border: 1px solid rgba(214, 181, 106, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.carousel-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.carousel-card p {
    font-size: 0.92rem;
    color: var(--texto-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.carousel-value {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(214, 181, 106, 0.2);
    color: var(--dourado);
    font-size: 0.9rem;
    font-weight: 600;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.entregaveis .carousel-nav {
    display: none;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--branco);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(214, 181, 106, 0.15);
    border-color: var(--dourado);
    color: var(--dourado);
}

.total-value {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(214, 181, 106, 0.08), rgba(214, 181, 106, 0.02));
    border: 1px solid rgba(214, 181, 106, 0.15);
    border-radius: var(--radius-lg);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.total-value span {
    display: block;
    font-size: 0.9rem;
    color: var(--texto-muted);
    margin-bottom: 0.25rem;
}

.total-value strong {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--dourado);
    display: block;
    margin-bottom: 0.25rem;
}

.total-sub {
    font-size: 0.85rem !important;
    color: var(--texto-muted) !important;
}

/* ============================================
   FUNDADORES
   ============================================ */
.fundadora {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    background:
        radial-gradient(ellipse 85% 70% at 50% 50%,
            var(--azul-base) 0%,
            rgba(12, 28, 70, 0.92) 50%,
            var(--azul-escuro) 75%,
            #050a1a 100%),
        #050a1a;
}

.fundadora::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(214, 181, 106, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.fundadora .container {
    position: relative;
    z-index: 2;
}

.fundadora-titulo-centralizado {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    text-align: center;
}

.fundadores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.fundador-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.fundador-card:hover {
    border-color: rgba(214, 181, 106, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.fundadora-img-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.fundadora-img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
    aspect-ratio: 16/10;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fundador-nome {
    font-family: 'Cinzel', serif;
    color: var(--dourado);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.fundador-titulo {
    color: var(--texto-muted);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.fundadora-quote {
    background: rgba(214, 181, 106, 0.06);
    border-left: 3px solid var(--dourado);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin: 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.92rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--texto);
    position: relative;
}

.fundadora-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 3rem;
    color: var(--dourado);
    opacity: 0.35;
    font-family: Georgia, serif;
}

.fundadora-info-centralizada {
    margin-top: 3rem;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.fundadora-missao {
    position: relative;
    background: linear-gradient(160deg, rgba(214,181,106,0.07) 0%, rgba(8,22,60,0.9) 50%, rgba(214,181,106,0.05) 100%);
    border: 1px solid rgba(214,181,106,0.2);
    border-radius: 16px;
    padding: 2.5rem 2.5rem 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}
.fundadora-missao::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dourado), var(--dourado-claro), var(--dourado), transparent);
    border-radius: 16px 16px 0 0;
}
.fundadora-missao-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(214,181,106,0.15), rgba(214,181,106,0.05));
    border: 1px solid rgba(214,181,106,0.3);
    color: var(--dourado);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.fundadora-missao p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--texto-muted);
    margin: 0;
}
.fundadora-missao p strong {
    color: var(--dourado);
}

.fundadora-bullets {
    list-style: none;
    margin: 0 auto 2.5rem;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fundadora-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(214,181,106,0.1);
    text-align: left;
}
.fundadora-bullets li:last-child {
    border-bottom: none;
}

.bullet-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(214,181,106,0.12), rgba(214,181,106,0.04));
    border: 1px solid rgba(214,181,106,0.25);
    color: var(--dourado);
    font-size: 1.2rem;
}

.fundadora-bullets li strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 0.2rem;
}
.fundadora-bullets li span:not(.bullet-icon) {
    font-size: 0.88rem;
    color: var(--texto-muted);
    line-height: 1.5;
}

/* ============================================
   DEPOIMENTOS — CAROUSEL
   ============================================ */
.depoimentos {
    background:
        radial-gradient(ellipse 85% 70% at 50% 50%,
            var(--azul-base) 0%,
            rgba(12, 28, 70, 0.92) 50%,
            var(--azul-escuro) 75%,
            #050a1a 100%),
        #050a1a;
    padding: 6rem 0;
}

.depoimentos h2 {
    margin-bottom: 1rem;
}

.depoimentos-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--texto-muted);
    font-size: 1.05rem;
}

.depo-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 1rem;
}

.depo-carousel::-webkit-scrollbar {
    display: none;
}

.depo-card {
    flex: 0 0 380px;
    scroll-snap-align: start;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: all var(--transition);
}

.depo-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: var(--dourado);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.depo-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(214, 181, 106, 0.2);
}

.depo-stars {
    color: var(--dourado);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.depo-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--texto);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.depo-author {
    padding-top: 1rem;
    border-top: 1px solid rgba(214, 181, 106, 0.15);
}

.depo-author strong {
    display: block;
    color: var(--dourado);
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.depo-author span {
    font-size: 0.82rem;
    color: var(--texto-muted);
}

.depo-confidential {
    text-align: center;
    margin-top: 1.5rem;
}

.depo-confidential span {
    display: inline-block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
    max-width: 600px;
    line-height: 1.6;
}

.depo-badge {
    display: inline-block;
    margin-top: 2rem;
    text-align: center;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dourado);
    padding: 1rem 2rem;
    background: rgba(214, 181, 106, 0.08);
    border-radius: var(--radius-md);
    border: 1px solid rgba(214, 181, 106, 0.15);
}

/* ============================================
   ÁREAS
   ============================================ */
.areas {
    background:
        radial-gradient(ellipse 85% 70% at 50% 50%,
            var(--azul-base) 0%,
            rgba(12, 28, 70, 0.92) 50%,
            var(--azul-escuro) 75%,
            #050a1a 100%),
        #050a1a;
    padding: 6rem 0 5rem;
    overflow: hidden;
    position: relative;
}

/* — radial glow accents — */
.areas::before,
.areas::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
}

.areas::before {
    width: 500px; height: 500px;
    top: -10%; left: -8%;
    background: radial-gradient(circle, rgba(214,181,106,0.10) 0%, transparent 70%);
}

.areas::after {
    width: 600px; height: 600px;
    bottom: -15%; right: -10%;
    background: radial-gradient(circle, rgba(19,48,143,0.25) 0%, transparent 70%);
}

/* — floating orbs decoration — */
.areas-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.areas-orbs span {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(214,181,106,0.12) 0%, transparent 70%);
    animation: areaOrbFloat 18s ease-in-out infinite;
}

.areas-orbs span:nth-child(1) { width: 120px; height: 120px; top: 8%;  left: 12%; animation-delay: 0s; }
.areas-orbs span:nth-child(2) { width: 80px;  height: 80px;  top: 55%; right: 8%;  animation-delay: -4s; animation-duration: 22s; }
.areas-orbs span:nth-child(3) { width: 60px;  height: 60px;  bottom: 15%; left: 30%; animation-delay: -8s; animation-duration: 15s; }
.areas-orbs span:nth-child(4) { width: 100px; height: 100px; top: 25%; right: 20%; animation-delay: -12s; animation-duration: 20s; background: radial-gradient(circle, rgba(19,48,143,0.15) 0%, transparent 70%); }

@keyframes areaOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50%      { transform: translateY(-30px) scale(1.15); opacity: 1; }
}

.areas .container {
    position: relative;
    z-index: 1;
}

.areas h2 {
    margin-bottom: 0.5rem;
}

.areas-subtitle {
    text-align: center;
    color: var(--texto-muted);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

/* — category stat — */
.areas-category-stat {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--dourado);
    opacity: 0.8;
    letter-spacing: 0.04em;
    font-weight: 500;
    min-height: 1.4em;
    transition: opacity 0.3s ease;
}

/* — premium tabs — */
.areas-tabs {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    background: rgba(0,0,0,0.25);
    border-radius: 60px;
    padding: 0.3rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255,255,255,0.06);
}

.area-tab-btn {
    background: transparent;
    border: 1px solid transparent;
    color: var(--texto-muted);
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    letter-spacing: 0.02em;
}

.area-tab-btn:hover {
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.05);
}

.area-tab-btn.active {
    background: linear-gradient(135deg, rgba(214,181,106,0.18) 0%, rgba(214,181,106,0.08) 100%);
    border-color: rgba(214,181,106,0.35);
    color: var(--dourado);
    box-shadow:
        0 0 20px rgba(214,181,106,0.10),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

/* — tab content — */
.area-tab-content {
    display: none;
}

.area-tab-content.active {
    display: block;
    animation: areaFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes areaFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* — cards grid — */
.area-tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
    justify-content: center;
}

.area-tags-grid .area-card {
    flex: 0 0 calc(25% - 0.75rem);
    min-width: 200px;
}

/* — glass area card — */
.area-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.1rem 1.2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(214,181,106,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.area-card:hover {
    transform: translateY(-3px);
    border-color: rgba(214,181,106,0.25);
    box-shadow:
        0 8px 32px rgba(0,0,0,0.3),
        0 0 0 1px rgba(214,181,106,0.08);
}

.area-card:hover::before {
    opacity: 1;
}

.area-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(214,181,106,0.08);
    border: 1px solid rgba(214,181,106,0.15);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.area-card-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    position: relative;
    z-index: 1;
}

.area-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--texto);
    line-height: 1.3;
}

.area-card-desc {
    font-size: 0.78rem;
    color: var(--texto-muted);
    line-height: 1.4;
}

/* — legacy .area-tag fallback — */
.area-tag {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.7rem 1.3rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--texto);
    transition: all var(--transition);
    cursor: default;
}

.area-tag:hover {
    background: rgba(214, 181, 106, 0.1);
    border-color: rgba(214, 181, 106, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   PLANOS
   ============================================ */
.planos {
    background: linear-gradient(135deg, var(--azul-escuro) 0%, var(--azul-vivo) 50%, var(--azul-base) 100%);
    position: relative;
    padding: 6rem 0;
}

.planos::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(214, 181, 106, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.planos h2 {
    margin-bottom: 0.75rem;
}

.planos-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--texto-muted);
    font-size: 1.05rem;
}

.scarcity-box {
    position: relative;
    z-index: 1;
    margin: 0 auto 3rem;
    max-width: 640px;
    text-align: center;
    padding: 2.5rem 2.5rem 2rem;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(214,181,106,0.08) 0%, rgba(8,22,60,0.95) 40%, rgba(8,22,60,0.95) 60%, rgba(214,181,106,0.06) 100%);
    border: 1px solid rgba(214,181,106,0.25);
    box-shadow:
        0 0 30px rgba(214,181,106,0.08),
        inset 0 1px 0 rgba(214,181,106,0.15);
    overflow: hidden;
}
.scarcity-box::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--dourado), var(--dourado-claro), var(--dourado), transparent);
    border-radius: 16px 16px 0 0;
}

.scarcity-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(214,181,106,0.15), rgba(214,181,106,0.05));
    border: 1px solid rgba(214,181,106,0.3);
    color: var(--dourado);
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.scarcity-price-old {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.8rem;
    line-height: 1;
    letter-spacing: 1px;
}
.scarcity-price-old .scarcity-strike {
    font-size: 1em;
    padding: 0 4px;
}
.scarcity-price-old .scarcity-strike::before,
.scarcity-price-old .scarcity-strike::after {
    height: 5px;
}
.scarcity-price-per {
    font-size: 0.45em;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0;
}
/* Activate X animation on scarcity box when it becomes visible */
.scarcity-box.active .price-strike::before {
    animation: xLoop1 4.5s ease 0.8s infinite;
}
.scarcity-box.active .price-strike::after {
    animation: xLoop2 4.5s ease 0.8s infinite;
}

.scarcity-headline {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.scarcity-headline em {
    font-style: italic;
    color: var(--dourado);
}

.scarcity-vagas-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(214,181,106,0.12);
    border-bottom: 1px solid rgba(214,181,106,0.12);
}
.scarcity-vagas-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--texto-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}
.scarcity-vagas {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dourado);
    line-height: 1;
    display: inline-block;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.4s ease;
    text-shadow: 0 0 20px rgba(214,181,106,0.3);
}
.scarcity-vagas.vagas-urgency {
    color: #ff2d2d;
    transform: scale(1.6);
    text-shadow: 0 0 20px rgba(255, 45, 45, 0.7), 0 0 40px rgba(255, 45, 45, 0.3);
}

.scarcity-desc {
    color: var(--branco);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.6rem;
}
.scarcity-desc strong {
    color: var(--dourado);
    font-weight: 600;
}

.scarcity-sub {
    color: var(--texto-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.8;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.plano-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.plano-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.plano-card.destaque {
    border: 2px solid rgba(214, 181, 106, 0.6);
    box-shadow: 
        0 0 50px rgba(214, 181, 106, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(214, 181, 106, 0.15);
    background: linear-gradient(175deg, rgba(214, 181, 106, 0.08) 0%, rgba(19, 48, 143, 0.15) 40%, rgba(8, 22, 60, 0.95) 100%);
    position: relative;
    z-index: 2;
}

/* Desktop: destaque card visually bigger and elevated */
@media (min-width: 769px) {
    .plano-card.destaque {
        transform: scale(1.08);
        padding: 2.5rem 1.8rem;
        margin-top: -1.5rem;
        margin-bottom: -1.5rem;
    }
    .plano-card.destaque .plano-preco-grande {
        font-size: 4.2rem;
    }
    .plano-card.destaque .plano-titulo {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }
    .plano-card.destaque .plano-btn {
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
    }
}

.plano-card.destaque::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(214, 181, 106, 0.5), rgba(214, 181, 106, 0.05) 60%, rgba(214, 181, 106, 0.3));
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.plano-card.destaque:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 
        0 0 70px rgba(214, 181, 106, 0.35),
        0 25px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(214, 181, 106, 0.2);
}
@media (min-width: 769px) {
    .plano-card.destaque:hover {
        transform: scale(1.11) translateY(-10px);
    }
}

.plano-card.destaque:hover::before {
    opacity: 0.9;
}

/* Premium price styling for destaque */
.plano-card.destaque .plano-preco-grande {
    color: var(--branco);
    text-shadow: 0 2px 20px rgba(214, 181, 106, 0.15);
}

.plano-card.destaque .plano-titulo {
    color: var(--dourado);
    letter-spacing: 3px;
}

.plano-card.destaque .plano-desconto {
    background: transparent;
    color: var(--dourado);
    box-shadow: none;
    border-bottom: 1.5px solid rgba(214, 181, 106, 0.5);
    text-shadow: 0 0 12px rgba(214, 181, 106, 0.2);
}

.plano-badge {
    background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
    color: var(--azul-escuro);
    padding: 0.5rem 1.4rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 800;
    font-size: 0.72rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 0.5px;
    white-space: nowrap;
    z-index: 5;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.plano-titulo {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--texto-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 2rem 0 1rem;
}

.plano-preco-antigo {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.plano-preco-antigo s {
    text-decoration: line-through;
    text-decoration-color: #ff4444;
    text-decoration-thickness: 2px;
}

/* Animated Price X-Strike — Infinite Loop */
.price-strike {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 1.15em;
    padding: 0 2px;
}

.price-strike::before,
.price-strike::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    background: rgba(255, 68, 68, 0.85);
    border-radius: 2px;
    opacity: 0;
    transform-origin: center center;
}

.price-strike::before {
    transform: translateY(-50%) rotate(16deg) scaleX(0);
}

.price-strike::after {
    transform: translateY(-50%) rotate(-16deg) scaleX(0);
}

/* Loop: draw X → hold 2s → fade out → pause → repeat */
.plano-card.active .price-strike::before {
    animation: xLoop1 4.5s ease 1.2s infinite;
}

.plano-card.active .price-strike::after {
    animation: xLoop2 4.5s ease 1.2s infinite;
}

@keyframes xLoop1 {
    0% {
        transform: translateY(-50%) rotate(16deg) scaleX(0);
        opacity: 0;
    }
    3% { opacity: 0.85; }
    8% {
        transform: translateY(-50%) rotate(16deg) scaleX(1);
        opacity: 0.85;
    }
    55% {
        transform: translateY(-50%) rotate(16deg) scaleX(1);
        opacity: 0.85;
    }
    70% {
        transform: translateY(-50%) rotate(16deg) scaleX(1);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) rotate(16deg) scaleX(0);
        opacity: 0;
    }
}

@keyframes xLoop2 {
    0%, 5% {
        transform: translateY(-50%) rotate(-16deg) scaleX(0);
        opacity: 0;
    }
    8% { opacity: 0.85; }
    15% {
        transform: translateY(-50%) rotate(-16deg) scaleX(1);
        opacity: 0.85;
    }
    55% {
        transform: translateY(-50%) rotate(-16deg) scaleX(1);
        opacity: 0.85;
    }
    70% {
        transform: translateY(-50%) rotate(-16deg) scaleX(1);
        opacity: 0;
    }
    100% {
        transform: translateY(-50%) rotate(-16deg) scaleX(0);
        opacity: 0;
    }
}

/* Price pulse — ONLY on destaque (197) card */
.plano-card.destaque.active .plano-preco-grande {
    animation: pricePulse197 4.5s ease 1.5s infinite;
}

@keyframes pricePulse197 {
    0%, 12% { transform: scale(1); color: var(--branco); text-shadow: none; }
    16% { transform: scale(1.12); color: var(--dourado); text-shadow: 0 0 30px rgba(214, 181, 106, 0.5); }
    22% { transform: scale(1.02); color: var(--dourado-claro); text-shadow: 0 0 15px rgba(214, 181, 106, 0.2); }
    28% { transform: scale(1); color: var(--branco); text-shadow: none; }
    100% { transform: scale(1); color: var(--branco); text-shadow: none; }
}

.plano-preco-grande {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--branco);
    line-height: 1;
    font-family: 'Cinzel', serif;
    margin-bottom: 0.25rem;
}

.plano-preco-grande span {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.plano-mes {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.plano-desconto {
    background: transparent;
    color: var(--dourado);
    padding: 0.25rem 0;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0.5rem 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(214, 181, 106, 0.3);
    position: relative;
}

.plano-pagamento {
    font-size: 0.8rem;
    color: var(--texto-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
}

.plano-beneficios {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.plano-beneficios li {
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.85rem;
    color: var(--texto);
}

.plano-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--dourado-claro), var(--dourado), var(--dourado-escuro));
    color: var(--azul-escuro);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 1rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(214, 181, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.plano-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 181, 106, 0.5);
}

/* Shine animation on featured plan */
.plano-card.destaque .plano-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.plano-microcopy {
    font-size: 0.78rem;
    color: var(--texto-muted);
    margin-top: 0.6rem;
}

.planos-seguranca {
    text-align: center;
    margin: 2rem 0 1rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--texto-muted);
    position: relative;
    z-index: 1;
}

/* ============================================
   GARANTIA
   ============================================ */
.garantia {
    background: var(--azul-escuro);
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
}

/* — premium divider between planos & garantia — */
.planos-garantia-divider {
    position: relative;
    height: 1px;
    background: var(--azul-escuro);
    overflow: visible;
}

.planos-garantia-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(500px, 60%);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(214,181,106,0.15) 20%,
        rgba(214,181,106,0.5) 50%,
        rgba(214,181,106,0.15) 80%,
        transparent 100%);
}

.planos-garantia-divider::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--azul-escuro);
    border: 1px solid rgba(214,181,106,0.35);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(214,181,106,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantia-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.garantia-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.garantia-image {
    width: 100%;
    max-width: 300px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.garantia-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 1.5rem;
    color: var(--dourado);
}

.garantia-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--texto);
}

.garantia-destaque {
    background: rgba(214, 181, 106, 0.1);
    border-left: 3px solid var(--dourado);
    padding: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.garantia-email {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(214, 181, 106, 0.08);
    border: 1px solid rgba(214, 181, 106, 0.3);
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
}

.garantia-email a {
    color: var(--dourado);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dashed rgba(214, 181, 106, 0.5);
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.garantia-email a:hover {
    color: var(--dourado-claro);
    border-bottom-color: var(--dourado-claro);
    border-bottom-style: solid;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    background: var(--azul-escuro);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: border-color var(--transition), opacity 0.7s ease, transform 0.7s ease;
    opacity: 0;
    transform: translateY(25px);
}

.faq-item.faq-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(214, 181, 106, 0.2);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--branco);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-icon {
    font-size: 1.3rem;
    transition: transform 0.3s;
    color: var(--dourado);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.25rem;
    color: var(--texto-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: #050e24;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 130px;
    margin-bottom: 0.75rem;
}

.footer-slogan {
    color: var(--texto-muted);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--texto-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--dourado);
}

.footer-legal {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--texto-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ============================================
   BUTTONS (GLOBAL)
   ============================================ */
.btn-primary {
    background: linear-gradient(135deg, var(--dourado-claro), var(--dourado), var(--dourado-escuro));
    color: var(--azul-escuro);
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    transition: all var(--transition);
    box-shadow: 0 6px 20px rgba(214, 181, 106, 0.4);
    letter-spacing: 0.3px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 181, 106, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--branco);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--branco);
    transform: translateY(-2px);
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 22, 60, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal::-webkit-scrollbar {
    display: none;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul-base));
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    animation: slideUp 0.3s ease;
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: var(--azul-escuro);
    z-index: 10;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--dourado);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--branco);
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    font-size: 1.3rem;
    color: var(--dourado);
    margin: 1.5rem 0 0.75rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.modal-body ul, .modal-body ol {
    margin: 0.75rem 0 1.25rem 1.5rem;
    color: rgba(255, 255, 255, 0.85);
}

.modal-body li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.modal-body strong {
    color: var(--dourado);
}

.modal-body a {
    color: var(--dourado);
    transition: opacity 0.3s;
}

.modal-body a:hover {
    opacity: 0.7;
}

/* ============================================
   EXIT INTENT POPUP
   ============================================ */
.exit-popup {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}
.exit-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: exitFadeIn 0.35s ease;
}
.exit-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}
.exit-popup-container {
    position: relative;
    z-index: 2;
    max-width: 860px;
    width: 92%;
    max-height: 92vh;
    overflow-y: auto;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE / Edge */
    background: linear-gradient(160deg, #0a1a45 0%, #08163C 50%, #0d1f50 100%);
    border-radius: 28px;
}
.exit-popup-container::-webkit-scrollbar {
    display: none;
}
.exit-popup-container::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff4444, #ff6b6b, #ff4444, transparent);
    border-radius: 28px 28px 0 0;
}

.exit-popup-close {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 10;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    line-height: 1;
}
.exit-popup-close:hover {
    background: rgba(255,70,70,0.15);
    border-color: rgba(255,70,70,0.3);
    color: #ff6b6b;
    transform: rotate(90deg);
}

.exit-popup-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100%;
}

.exit-popup-img {
    position: relative;
    overflow: hidden;
    border-radius: 28px 0 0 28px;
}
.exit-popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.exit-popup-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 60%, #08163C 100%);
}

.exit-popup-content {
    padding: 2.5rem 2.5rem 2rem;
}

.exit-popup-badge {
    display: inline-block;
    background: rgba(255,68,68,0.12);
    border: 1px solid rgba(255,68,68,0.3);
    color: #ff6b6b;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: exitPulse 2s ease-in-out infinite;
}

.exit-popup-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--branco);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.exit-popup-title em {
    font-style: italic;
    color: #ff6b6b;
}

.exit-popup-lead {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.exit-popup-lead strong {
    color: var(--branco);
}

.exit-popup-pains {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.exit-popup-pains li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}
.exit-popup-pains li strong {
    color: var(--branco);
}
.pain-x {
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,68,68,0.12);
    color: #ff4444;
    font-size: 0.7rem;
    font-weight: 900;
    margin-top: 2px;
}

.exit-popup-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214,181,106,0.25), transparent);
    margin: 1.2rem 0;
}

.exit-popup-cta-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align: center;
}
.exit-popup-cta-text strong {
    color: var(--dourado);
}

.exit-popup-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--dourado), var(--dourado-claro), var(--dourado));
    background-size: 200% auto;
    color: var(--azul-escuro);
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 20px rgba(214,181,106,0.3),
        0 0 40px rgba(214,181,106,0.1);
    animation: exitBtnShimmer 3s ease-in-out infinite;
}
.exit-popup-btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow:
        0 6px 30px rgba(214,181,106,0.4),
        0 0 60px rgba(214,181,106,0.15);
}

.exit-popup-sub {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.75rem;
}

@keyframes exitFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes exitSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes exitPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
@keyframes exitBtnShimmer {
    0% { background-position: 0% center; }
    50% { background-position: 100% center; }
    100% { background-position: 0% center; }
}

/* Exit popup mobile */
@media (max-width: 768px) {
    .exit-popup-grid {
        grid-template-columns: 1fr;
    }
    .exit-popup-img {
        height: 180px;
        border-radius: 28px 28px 0 0;
    }
    .exit-popup-img::after {
        background: linear-gradient(180deg, transparent 40%, #08163C 100%);
    }
    .exit-popup-content {
        padding: 1.5rem 1.5rem 1.8rem;
    }
    .exit-popup-title {
        font-size: 1.4rem;
    }
    .exit-popup-container {
        width: 95%;
        max-height: 95vh;
    }
    .exit-popup-btn {
        font-size: 0.8rem;
        padding: 0.9rem 1.5rem;
    }
}

/* ===== EXIT POPUP 2 — Objection variant ===== */
.exit-popup-badge--gold {
    background: rgba(214,181,106,0.12);
    border-color: rgba(214,181,106,0.3);
    color: var(--dourado);
    animation: exitPulse 2s ease-in-out infinite;
}

.exit-popup-container--v2::before {
    background: linear-gradient(90deg, transparent, var(--dourado), var(--dourado-claro), var(--dourado), transparent);
}

.exit-popup-objections {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.exit-popup-objections li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(214,181,106,0.25);
}
.objection-q {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}
.objection-a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.objection-a strong {
    color: var(--dourado);
}

.exit-popup-proof {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(214,181,106,0.06);
    border: 1px solid rgba(214,181,106,0.15);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    margin-bottom: 1.2rem;
}
.proof-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(214,181,106,0.1);
    border: 1px solid rgba(214,181,106,0.2);
    border-radius: 10px;
    color: var(--dourado);
    font-size: 1.2rem;
}
.exit-popup-proof p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin: 0;
}
.exit-popup-proof strong {
    color: var(--branco);
}

/* ===== EXIT TOAST — Social Proof Notification ===== */
.exit-toast {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0d1f50, #08163C);
    border: 1px solid rgba(214,181,106,0.25);
    border-radius: 14px;
    padding: 14px 18px;
    max-width: 380px;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.4),
        0 0 20px rgba(214,181,106,0.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    pointer-events: none;
}
.exit-toast.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.exit-toast-close {
    position: absolute;
    top: -6px; right: -6px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
}
.exit-toast-close:hover {
    background: rgba(255,70,70,0.2);
    color: #ff6b6b;
}

.exit-toast-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(214,181,106,0.1);
    border: 1px solid rgba(214,181,106,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    animation: exitPulse 2s ease-in-out infinite;
}

.exit-toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.exit-toast-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--branco);
}
.exit-toast-action {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
}
.exit-toast-vagas {
    font-size: 0.78rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-top: 2px;
}
.exit-toast-vagas strong {
    font-size: 1rem;
}

.exit-toast-link {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--dourado);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border: 1px solid rgba(214,181,106,0.3);
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}
.exit-toast-link:hover {
    background: rgba(214,181,106,0.1);
    border-color: var(--dourado);
}

/* Toast mobile responsive */
@media (max-width: 768px) {
    .exit-toast {
        left: 10px;
        right: 10px;
        top: 12px;
        max-width: none;
        padding: 12px 14px;
        gap: 10px;
        border-radius: 12px;
    }
    .exit-toast-close {
        top: -5px;
        right: -5px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .planos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    /* Diagnostico fullwidth adjustments */
    .diagnostico-content {
        padding: 6rem 2rem;
    }
    .diagnostico-headline {
        font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    }

    .fundadores-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .garantia-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .garantia-image {
        margin: 0 auto;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    section { padding: 4rem 0; }

    .container { padding: 0 1.25rem; }

    /* Header — hidden on mobile */
    .header-container { display: none; }
    header { padding: 0; border-bottom: none; min-height: 0; }

    /* Hero */
    .hero {
        padding: 3rem 1.5rem 3rem;
        min-height: 90vh;
    }

    .logo-hero {
        max-width: 220px;
        margin-bottom: 1.5rem;
    }

    .hero h1 { font-size: 1.6rem; }
    .hero h2 { font-size: 0.95rem; margin-bottom: 0.6rem; }

    .hero-content {
        gap: 0;
    }

    .hero .btn-primary {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .hero-scroll { display: none; }

    /* Numbers */
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .number-value { font-size: 2rem; }
    .number-label { font-size: 0.78rem; }

    /* Diagnostico */
    .diagnostico { min-height: auto; }
    .diagnostico-content { padding: 5rem 1.25rem; }
    .diagnostico-headline { font-size: 1.5rem; margin-bottom: 2rem; }
    .pain-points-grid { gap: 1rem; }
    .diagnostico .pain-point { padding: 1rem 1.2rem; background: rgba(8, 22, 60, 0.10); }
    .diagnostico .diagnostico-quote { padding: 1.2rem 1.5rem; font-size: 1rem; }
    /* bg wider for horizontal pan — 180% width so it has room to travel */
    .diagnostico-bg {
        background-size: 180% auto;
        background-position: 0% 50%;
    }
    .diag-reveal {
        transition-delay: calc(var(--diag-i, 0) * 0.4s + 0.3s);
    }

    /* Timeline */
    .timeline-step { gap: 1rem; }
    .step-number { width: 44px; min-width: 44px; height: 44px; font-size: 1.1rem; }
    .timeline-line { left: 21px; }
    .step-content { padding: 1.2rem; }
    .step-content h3 { font-size: 1rem; }

    /* Carousel */
    .carousel-card { flex: 0 0 280px; padding: 2rem 1.5rem; }
    .depo-card { flex: 0 0 300px; }

    /* Planos */
    .scarcity-box { padding: 2rem 1.5rem; margin-bottom: 2rem; }
    .scarcity-headline { font-size: 1.25rem; }
    .scarcity-vagas { font-size: 3rem; }
    .scarcity-vagas-label { font-size: 0.75rem; letter-spacing: 1px; }
    .scarcity-desc { font-size: 0.9rem; }

    .planos-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .plano-card:nth-child(1) { order: 4; }
    .plano-card:nth-child(2) { order: 1; }
    .plano-card:nth-child(3) { order: 2; }
    .plano-card:nth-child(4) { order: 3; }

    .plano-card.destaque {
        transform: scale(1);
        z-index: 2;
        border: 2px solid rgba(214, 181, 106, 0.7);
        box-shadow:
            0 0 35px rgba(214, 181, 106, 0.25),
            0 12px 40px rgba(0, 0, 0, 0.4),
            inset 0 1px 0 rgba(214, 181, 106, 0.2);
        background: linear-gradient(175deg, rgba(214, 181, 106, 0.12) 0%, rgba(19, 48, 143, 0.18) 35%, rgba(8, 22, 60, 0.97) 100%);
    }
    .plano-card.destaque:hover { transform: translateY(-8px); }
    .plano-card.destaque::before {
        inset: -1px;
        background: linear-gradient(180deg, rgba(214, 181, 106, 0.6), rgba(214, 181, 106, 0.05) 50%, rgba(214, 181, 106, 0.35));
        opacity: 0.5;
    }
    .plano-card.destaque .plano-titulo {
        color: var(--dourado);
        text-shadow: 0 0 20px rgba(214, 181, 106, 0.3);
    }
    .plano-card.destaque .plano-badge {
        box-shadow: 0 4px 15px rgba(214, 181, 106, 0.35);
    }
    .plano-card.destaque .plano-desconto {
        background: transparent;
        color: var(--dourado);
        box-shadow: none;
        border-bottom: 1.5px solid rgba(214, 181, 106, 0.5);
    }

    .plano-preco-grande { font-size: 2.8rem; }
    .plano-preco-grande span { font-size: 1.3rem; }

    .planos-seguranca {
        flex-direction: column;
        gap: 0.6rem;
        font-size: 0.8rem;
    }

    /* Garantia */
    .garantia { padding: 3.5rem 0; overflow: hidden; }
    .garantia-content h2 { font-size: 1.35rem; word-wrap: break-word; }
    .garantia-content p { font-size: 0.95rem; }
    .garantia-destaque { padding: 1.2rem; font-size: 0.92rem; }
    .garantia-email {
        padding: 1rem;
        font-size: 0.88rem;
        word-break: break-all;
        line-height: 1.6;
    }
    .garantia-email a {
        font-size: 0.85rem;
        display: inline-block;
        word-break: break-all;
    }

    /* FAQ */
    .faq-question { font-size: 0.92rem; padding: 1rem 1.25rem; }
    .faq-answer-content { padding: 0 1.25rem 1rem; font-size: 0.9rem; }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo { margin: 0 auto; }
    .footer-links { display: flex; flex-direction: column; align-items: center; }

    /* Modals */
    .modal.active { padding: 0; align-items: flex-start; }
    .modal-content { border-radius: 0; max-height: 100vh; height: 100vh; }
    .modal-header { padding: 1.25rem; }
    .modal-header h2 { font-size: 1.2rem; }
    .modal-body { padding: 1.25rem; }

    /* Section titles */
    h2 { font-size: 1.4rem; }

    /* Areas */
    .areas,
    .entregaveis,
    .fundadora,
    .depoimentos {
        background:
            radial-gradient(ellipse 150% 65% at 50% 50%,
                var(--azul-base) 0%,
                rgba(12, 28, 70, 0.92) 50%,
                var(--azul-escuro) 75%,
                #050a1a 100%),
            #050a1a;
    }
    .areas-tabs { max-width: 100%; gap: 0.25rem; padding: 0.25rem; }
    .area-tab-btn { font-size: 0.72rem; padding: 0.5rem 0.8rem; }
    .area-tags-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; justify-items: center; }
    .area-tags-grid .area-card { flex: none; min-width: 0; width: 100%; }
    .area-tags-grid .area-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; }
    .area-card { padding: 0.7rem 0.65rem; gap: 0.5rem; }
    .area-card-icon { width: 30px; height: 30px; font-size: 0.9rem; border-radius: 8px; }
    .area-card-name { font-size: 0.82rem; }
    .area-card-desc { font-size: 0.68rem; }
    .area-tag { font-size: 0.82rem; padding: 0.5rem 1rem; }
}

@media (max-width: 480px) {
    .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .number-item { padding: 0.5rem; }
    .carousel-card { flex: 0 0 260px; }
    .depo-card { flex: 0 0 280px; }

    /* Diagnostico — small phones */
    .diagnostico-content { padding: 4rem 1rem; }
    .diagnostico-headline { font-size: 1.3rem; }
    .diagnostico .pain-point { padding: 0.9rem 1rem; gap: 0.8rem; background: rgba(8, 22, 60, 0.08); }
    .pain-icon { min-width: 36px; height: 36px; font-size: 0.95rem; }
    .pain-point h4 { font-size: 0.95rem; }
    .pain-point p { font-size: 0.85rem; }
    .diagnostico .diagnostico-quote { padding: 1rem 1.2rem; font-size: 0.95rem; }
    .diagnostico-bg { background-size: 220% auto; }
}

/* ============================================
   UTILITIES
   ============================================ */
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--texto-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* ============================================
   NETWORKING / MEDIA SHOWCASE — FLOATING WIDGET
   ============================================ */
.networking-float {
    position: fixed;
    bottom: 20px;
    left: 12px;
    z-index: 99999;
    width: 320px;
    animation: netFloatIn 0.6s ease-out;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* When carousel is open, expand widget for readable images */
.networking-float.is-expanded {
    width: 380px;
}

/* Close button — desktop only */
.networking-float-close {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 10;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(8, 22, 60, 0.9);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.networking-float-close:hover {
    background: rgba(214, 181, 106, 0.2);
    border-color: var(--dourado);
    color: var(--dourado);
    transform: scale(1.1);
}

/* Hide networking float when exit popup is active — DESKTOP ONLY */
@media (min-width: 769px) {
    .exit-popup.active ~ .networking-float,
    body.exit-popup-open .networking-float {
        display: none !important;
    }
}

/* Override accordion bg on floating to have solid dark background */
.networking-float .media-accordion {
    background: #08163C;
    border-color: rgba(214, 181, 106, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

/* Smooth hide animation */
.networking-float.hiding {
    animation: netFloatOut 0.3s ease-in forwards;
}

@keyframes netFloatIn {
    from { transform: translateX(-120px); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

@keyframes netFloatOut {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(-120px); opacity: 0; }
}

/* Intro text with decorative lines */
.networking-intro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.networking-intro-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 181, 106, 0.35), transparent);
}

.networking-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--texto-muted);
    text-align: center;
    white-space: normal;
    line-height: 1.5;
}

.networking-tagline strong {
    color: var(--dourado);
    font-weight: 600;
}

/* ---- ACCORDION ---- */
.media-accordion {
    max-width: 100%;
    margin: 0 auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: box-shadow var(--transition), border-color var(--transition);
}

.media-accordion:hover {
    border-color: rgba(214, 181, 106, 0.18);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.media-accordion.is-open {
    border-color: rgba(214, 181, 106, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2), var(--shadow-glow);
}

.media-accordion-trigger {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 1rem 0.4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background var(--transition);
}

.media-accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.accordion-logos-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.accordion-logos-img {
    max-width: 100%;
    height: auto;
    max-height: 28px;
    opacity: 1;
    filter: none;
    transition: opacity var(--transition), filter var(--transition);
}

.media-accordion-trigger:hover .accordion-logos-img,
.media-accordion.is-open .accordion-logos-img {
    opacity: 1;
    filter: none;
}

.accordion-hint {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity var(--transition);
}

.accordion-hint-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dourado);
    opacity: 0.6;
    transition: opacity var(--transition);
}

.media-accordion-trigger:hover .accordion-hint-text {
    opacity: 1;
}

.accordion-chevron {
    color: var(--dourado);
    opacity: 0.5;
    transition: transform 0.4s ease, opacity var(--transition);
}

.media-accordion.is-open .accordion-chevron {
    transform: rotate(180deg);
}

.media-accordion-trigger:hover .accordion-chevron {
    opacity: 0.9;
}

.media-accordion.is-open .accordion-hint-text {
    opacity: 0;
}

/* ---- CAROUSEL PANEL ---- */
.media-carousel-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.4s ease;
    opacity: 0;
}

.media-carousel-panel.is-expanded {
    opacity: 1;
}

.media-carousel-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #08163C;
    border-radius: 4px;
}

.media-carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-carousel-slide:first-child {
    position: absolute;
}

.media-carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Blurred background layer — desktop carousel */
.media-carousel-slide::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.35) saturate(1.2);
    z-index: 0;
}

.media-carousel-slide:nth-child(1)::before { background-image: url('../img/net1.png'); }
.media-carousel-slide:nth-child(2)::before { background-image: url('../img/net2.png'); }
.media-carousel-slide:nth-child(3)::before { background-image: url('../img/net3.png'); }

.media-carousel-slide img {
    width: 92%;
    max-height: 90%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* Dots */
.media-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 0 0.6rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(214, 181, 106, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--dourado);
    border-color: var(--dourado);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(214, 181, 106, 0.4);
}

.carousel-dot:hover:not(.active) {
    border-color: var(--dourado);
    background: rgba(214, 181, 106, 0.2);
}

/* Per-slide progress bar */
.media-carousel-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.3rem 1rem 0.8rem;
    border-radius: 2px;
    overflow: hidden;
}

.media-carousel-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    border-radius: 2px;
    transition: width 0.05s linear;
}

/* Auto-close bar — desktop carousel */
.media-carousel-autoclose {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.4rem 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.autoclose-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    color: var(--texto-muted);
    white-space: nowrap;
}

.autoclose-text strong {
    color: var(--dourado);
    font-weight: 700;
    font-size: 0.72rem;
    font-variant-numeric: tabular-nums;
}

.autoclose-bar {
    flex: 1;
    max-width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    margin-left: 0.8rem;
    overflow: hidden;
}

.autoclose-bar-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* ---- RESPONSIVE: Mobile — networking becomes inline above hero CTA ---- */
@media (max-width: 768px) {
    .networking-float {
        position: static;
        width: 100%;
        max-width: 100%;
        margin: 0.5rem auto 0.8rem;
        padding: 0 0.3rem;
        animation: none;
    }

    .networking-float-close {
        display: none;
    }

    .networking-float .media-accordion {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(214, 181, 106, 0.15);
        box-shadow: none;
    }

    .networking-intro {
        gap: 0.4rem;
        margin-bottom: 0.15rem;
    }

    .networking-intro-line {
        max-width: 40px;
    }

    .networking-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.8px;
        white-space: normal;
        line-height: 1.3;
    }

    .media-accordion {
        border-radius: var(--radius-sm);
    }

    .media-accordion-trigger {
        padding: 0.45rem 0.8rem 0.35rem;
        gap: 0.1rem;
    }

    .accordion-logos-img {
        max-height: 40px;
    }

    .accordion-hint {
        gap: 0.25rem;
    }

    .accordion-hint-text {
        font-size: 0.58rem;
        letter-spacing: 1px;
    }

    .accordion-chevron {
        width: 14px;
        height: 14px;
    }

    .media-carousel-progress {
        margin: 0.3rem 0.8rem 1rem;
    }
}

@media (max-width: 480px) {
    .networking-tagline {
        font-size: 0.5rem;
    }

    .accordion-logos-img {
        max-height: 34px;
    }

    .accordion-hint-text {
        font-size: 0.55rem;
    }
}

/* NEWS MODAL CSS REMOVIDO — Sr. Black: distração fatal na bridge page */


/* ============================================================
   TERMINAL DE FECHAMENTO — Estilos exclusivos /bl
   ============================================================ */

/* Badge "STATUS: PERFIL APROVADO" */
.status-badge-approved {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.35rem 1.2rem;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #00ff41;
    border: 1px solid rgba(0, 255, 65, 0.45);
    border-radius: 4px;
    background: rgba(0, 255, 65, 0.06);
    text-transform: uppercase;
    animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 6px rgba(0,255,65,0.15); }
    50%      { box-shadow: 0 0 18px rgba(0,255,65,0.35); }
}

/* Botão CTA com pulso constante */
.btn-pulse-cta {
    animation: ctaPulse 1.5s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 25px rgba(214,181,106,0.25);
    }
    50% {
        transform: scale(1.045);
        box-shadow: 0 6px 35px rgba(214,181,106,0.55), 0 0 60px rgba(214,181,106,0.15);
    }
}

/* Plano Mensal — visual abafado */
.plano-card.plano-muted {
    opacity: 0.55;
    border-color: rgba(255,255,255,0.06) !important;
    box-shadow: none !important;
    filter: grayscale(25%);
    transition: opacity 0.3s, filter 0.3s;
}
.plano-card.plano-muted:hover {
    opacity: 0.75;
    filter: grayscale(0%);
}

/* Planos com glow dourado forte */
.plano-card.plano-glow {
    border: 2px solid var(--dourado) !important;
    box-shadow: 0 0 20px rgba(214,181,106,0.25), 0 0 50px rgba(214,181,106,0.08) !important;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.plano-card.plano-glow:hover {
    box-shadow: 0 0 30px rgba(214,181,106,0.45), 0 0 70px rgba(214,181,106,0.15) !important;
}

/* ============ MOBILE NEWS MODAL ============ */
.news-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100000;
    align-items: center;
    justify-content: center;
}
.news-modal.active {
    display: flex;
    animation: newsModalFadeIn 0.3s ease;
}
@keyframes newsModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.news-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(6px);
}
.news-modal-container {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 440px;
    background: linear-gradient(160deg, #0a1a45 0%, #08163C 50%, #0d1f50 100%);
    border-radius: 16px;
    border: 1px solid rgba(214, 181, 106, 0.2);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(214, 181, 106, 0.08);
    overflow: hidden;
    animation: newsModalSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes newsModalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.news-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.news-modal-timer {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--texto-muted);
}
.news-modal-timer strong {
    color: var(--dourado);
    font-weight: 700;
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}
.news-modal-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
}
.news-modal-close:hover {
    background: rgba(214, 181, 106, 0.15);
    border-color: var(--dourado);
    color: var(--dourado);
}
.news-modal-track {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #08163C;
}
.news-modal-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-modal-slide:first-child {
    position: absolute;
}
.news-modal-slide.active {
    opacity: 1;
    z-index: 2;
}
.news-modal-slide::before {
    content: '';
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(25px) brightness(0.35) saturate(1.2);
    z-index: 0;
}
.news-modal-slide:nth-child(1)::before { background-image: url('../img/net1.png'); }
.news-modal-slide:nth-child(2)::before { background-image: url('../img/net2.png'); }
.news-modal-slide:nth-child(3)::before { background-image: url('../img/net3.png'); }
.news-modal-slide img {
    width: 92%;
    max-height: 90%;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 6px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}
.news-modal-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 0 0.4rem;
}
.news-modal-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid rgba(214, 181, 106, 0.4);
    background: transparent;
    transition: all 0.3s ease;
}
.news-modal-dot.active {
    background: var(--dourado);
    border-color: var(--dourado);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(214, 181, 106, 0.4);
}
.news-modal-progress {
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.3rem 1rem 0.8rem;
    border-radius: 2px;
    overflow: hidden;
}
.news-modal-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--dourado), var(--dourado-claro));
    border-radius: 2px;
    transition: width 0.05s linear;
}
@media (min-width: 769px) {
    .news-modal { display: none !important; }
}

/* SESSION ID Bar */
.session-bar {
    width: 100%;
    padding: 0.5rem 1rem;
    background: #0a0a0a;
    text-align: center;
    font-family: 'Courier New', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.30);
    border-top: 1px solid rgba(255,255,255,0.05);
}

