/* ==========================================================================
   FLUXORA MINIMALIST THEME - GUI | FILMMAKER (@guicampossx)
   Featuring Featured Video (o3fpWqb41wQ), Profile Avatar & Fallbacks
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #0D1017;
    --bg-card: #141923;
    --bg-card-hover: #1D2433;
    
    /* Swatch Accents */
    --color-slate-dark: #121721;
    --color-slate-medium: #242D3D;
    --color-slate-light: #384358;
    --color-coral: #FFA586;
    --color-crimson: #B61A2B;
    --color-burgundy: #4A1525;
    
    /* Text & Borders */
    --text-primary: #FFFFFF;
    --text-secondary: #9EA6C8;
    --text-muted: #626C85;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-crimson: rgba(182, 26, 43, 0.4);
    
    /* Fonts */
    --font-heading: 'Archivo', 'Space Grotesk', -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-main: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.06;
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 { font-weight: 900; }

.italic-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--color-coral);
}

/* ===== Escala tipográfica ampliada ===== */
.hero-headline { font-size: clamp(2.3rem, 4.6vw, 3.5rem) !important; line-height: 1.02; }
.hero-lead { font-size: clamp(1.02rem, 1.5vw, 1.22rem); }
.section-title-clean h2 { font-size: clamp(2rem, 4.6vw, 3.2rem) !important; letter-spacing: -0.025em; }
.section-title-clean .sub-label { font-size: 0.8rem; letter-spacing: 2px; }
.authority-text h2, .final-cta-inner h2 { font-size: clamp(2rem, 4.6vw, 3.1rem) !important; }
.section-lead { font-size: clamp(0.98rem, 1.4vw, 1.12rem); max-width: 720px; margin-left: auto; margin-right: auto; }

/* ===== Animações minimalistas de scroll ===== */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== Janela estilo macOS (mockup) ===== */
.mac-window {
    position: relative;
    background: #101014;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.75), 0 0 0 1px rgba(255,255,255,.03) inset;
}
.mac-window::before {
    content: "";
    position: absolute;
    inset: -30% -10% auto -10%;
    height: 70%;
    background: radial-gradient(60% 100% at 50% 0%, rgba(226,120,60,.20), transparent 70%);
    pointer-events: none;
}
.mac-window .timeline-window-header {
    margin: 0;
    padding: 12px 16px;
    background: #1a1a1f;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mac-dots span { width: 11px; height: 11px; }
.mac-dots span:nth-child(1) { background: #ff5f57; }
.mac-dots span:nth-child(2) { background: #febc2e; }
.mac-dots span:nth-child(3) { background: #28c840; }
.mac-window .window-title-text { font-weight: 600; color: #cfd3e0; }
.mac-window .timeline-print-shot { margin: 0; border: 0; border-radius: 0; }
.mac-window .timeline-card-footer { margin: 0; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.07); background: #131318; }

.text-center { text-align: center; }
.text-coral { color: var(--color-coral) !important; }

/* Smooth Scroll Margin for Sections */
section[id] {
    scroll-margin-top: 90px;
}

/* ZOOM-IN HOVER ANIMATION */
.zoom-hover {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease !important;
    will-change: transform;
}

.zoom-hover:hover {
    transform: scale(1.03) !important;
    border-color: var(--color-crimson) !important;
    box-shadow: 0 20px 45px rgba(182, 26, 43, 0.35) !important;
    z-index: 5;
}

/* Top Announcement Bar */
.top-announcement {
    background: linear-gradient(90deg, #4A1525, #B61A2B, #242D3D);
    color: #fff;
    padding: 8px 16px;
    font-size: 0.85rem;
    text-align: center;
    position: relative;
    z-index: 100;
}

.top-announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-coral);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-coral);
    animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Navbar */
.navbar {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-glass);
    position: sticky;
    top: 0;
    background: rgba(13, 16, 23, 0.9);
    backdrop-filter: blur(16px);
    z-index: 99;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.avatar-circle-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
}

.brand-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-crimson);
}

.avatar-fallback {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-crimson);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid var(--color-coral);
}

.brand-name {
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.v-icon { color: var(--color-crimson); font-size: 0.85rem; }

.brand-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: #fff; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--color-crimson);
    border-color: var(--color-crimson);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--color-crimson);
}

/* Hero Section Style Fluxora */
.hero-fluxora {
    position: relative;
    padding: 70px 0 90px;
}

.crimson-glow-bg {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 750px;
    height: 550px;
    background: radial-gradient(circle, rgba(182, 26, 43, 0.3) 0%, rgba(74, 21, 37, 0.15) 50%, rgba(13, 16, 23, 0) 80%);
    pointer-events: none;
    z-index: 0;
}

.hero-fluxora-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(182, 26, 43, 0.15);
    border: 1px solid var(--border-crimson);
    color: var(--color-coral);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tag-dot {
    width: 6px;
    height: 6px;
    background: var(--color-coral);
    border-radius: 50%;
}

.hero-headline {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.hero-lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 520px;
}

/* SOCIAL PROOF BAR */
.social-proof-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 10px 18px;
    border-radius: 50px;
    display: inline-flex;
}

.avatar-group { display: flex; align-items: center; }

.av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #fff;
    border: 2px solid var(--bg-dark);
    margin-left: -8px;
}

.av:first-child { margin-left: 0; }
.av-k { background: #C85A17; }
.av-d { background: #3B4859; }
.av-m { background: #E68A00; }
.av-j { background: #2A3342; }
.av-plus { background: #FF7A00; }

.proof-meta { display: flex; flex-direction: column; }
.stars { color: #FF7A00; font-size: 0.85rem; letter-spacing: 2px; line-height: 1; }
.proof-meta p { font-size: 0.82rem; color: var(--text-secondary); margin-top: 2px; }
.proof-meta strong { color: #fff; }

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-primary-crimson {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-crimson);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(182, 26, 43, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-crimson:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(182, 26, 43, 0.6);
}

.btn-secondary-slate {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
}

.btn-secondary-slate:hover { background: rgba(255, 255, 255, 0.1); }

.stats-row {
    display: flex;
    gap: 32px;
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.stat-card { display: flex; flex-direction: column; }
.stat-num { font-size: 1.5rem; font-weight: 800; font-family: var(--font-heading); color: #fff; }
.stat-lbl { font-size: 0.8rem; color: var(--text-muted); }

/* Hero Visual Block */
.hero-visual-wrapper { display: flex; flex-direction: column; gap: 20px; }

.gui-portrait-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    background: radial-gradient(circle, rgba(182, 26, 43, 0.25) 0%, rgba(20, 25, 35, 0.8) 100%);
    border: 1px solid var(--border-crimson);
    max-height: 280px;
}

.gui-main-img {
    height: 280px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Timeline Card */
.hero-timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-crimson);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.timeline-window-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-glass);
}

.window-dots { display: flex; gap: 6px; }
.window-dots span { width: 8px; height: 8px; border-radius: 50%; background: var(--color-slate-light); }
.window-status { color: var(--color-coral); font-weight: 700; font-size: 0.7rem; }

.timeline-real-display {
    background: #0A0D13;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.t-track { display: flex; gap: 6px; align-items: center; height: 28px; }

.clip {
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6px;
    font-size: 0.65rem;
    font-weight: 600;
}

.purple-clip { background: #8A2BE2; color: #fff; border: 1px solid #9D4EDD; }
.blue-clip { background: #0078D7; color: #fff; border: 1px solid #2899F5; }

.w-10 { width: 10%; } .w-15 { width: 15%; } .w-20 { width: 20%; }
.w-25 { width: 25%; } .w-30 { width: 30%; } .w-35 { width: 35%; }
.w-40 { width: 40%; } .w-80 { width: 80%; } .w-100 { width: 100%; }

.clip-txt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fx-badge { background: rgba(0,0,0,0.4); font-size: 0.6rem; padding: 1px 3px; border-radius: 3px; }

.a-track-green { height: 38px; }
.green-audio { background: #558B2F; border: 1px solid #7CB342; border-radius: 4px; height: 100%; display: flex; align-items: center; padding: 0 6px; overflow: hidden; }
.waveform-svg { width: 100%; height: 24px; }
.sfx-clip { background: #33691E; border-radius: 4px; height: 20px; }

.timeline-card-footer { display: flex; align-items: center; gap: 10px; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border-glass); }
.mini-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-crimson); }
.mini-meta strong { display: block; font-size: 0.8rem; }
.mini-meta span { font-size: 0.7rem; color: var(--text-secondary); }

/* SEÇÃO DE VÍDEO EM DESTAQUE (o3fpWqb41wQ) */
.section-featured-video {
    background: linear-gradient(180deg, #0D1017 0%, #14101A 100%);
    border-bottom: 1px solid var(--border-glass);
}

.featured-video-container {
    max-width: 480px;
    margin: 36px auto 0;
    background: var(--bg-card);
    border: 2px solid var(--color-crimson);
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 50px rgba(182, 26, 43, 0.35);
    position: relative;
}

.featured-video-badge {
    background: var(--color-crimson);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.featured-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%; /* Proporção 9:16 Vertical */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.featured-video-wrapper iframe,
.featured-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.featured-video-info {
    padding: 14px 6px 4px;
    text-align: center;
}

.featured-video-info h3 { font-size: 1.25rem; margin-bottom: 4px; }
.featured-video-info p { font-size: 0.88rem; color: var(--text-secondary); }

/* Section Clean */
.section-clean { padding: 80px 0; }
.bg-darker { background: #0A0D13; border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass); }

.sub-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--color-coral);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title-clean h2 { font-size: 2.2rem; letter-spacing: -0.5px; }
.section-lead { font-size: 0.95rem; color: var(--text-secondary); margin-top: 6px; }

/* Cards Clean Grid */
.cards-clean-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.clean-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 28px;
}

.card-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(182, 26, 43, 0.15);
    color: var(--color-coral);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.clean-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.clean-card p { font-size: 0.9rem; color: var(--text-secondary); }

/* Showcase de Vídeos Marcos Vianna */
.videos-vianna-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.vianna-video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 14px;
}

.vianna-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.77%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}

.vianna-video-wrapper iframe,
.vianna-video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; object-fit: cover; background: #000; }

.video-floating-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(182, 26, 43, 0.9);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    pointer-events: none;
    z-index: 2;
}

.vianna-card-footer { padding: 14px 6px 4px; }
.vianna-card-footer h4 { font-size: 1.05rem; margin-bottom: 2px; }
.vianna-card-footer p { font-size: 0.85rem; color: var(--text-secondary); }

/* PDF Banner Minimal */
.pdf-minimal-banner {
    background: linear-gradient(135deg, var(--color-burgundy), var(--color-slate-dark));
    border: 1px solid var(--border-crimson);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.pdf-banner-text h2 { font-size: 2rem; margin: 8px 0 12px; }
.pdf-banner-text p { color: var(--text-secondary); max-width: 550px; }

.pdf-banner-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 3rem;
    color: var(--color-coral);
}

.pdf-banner-badge span { font-size: 0.8rem; font-weight: 800; color: #fff; }

/* PRICING SECTION */
.pricing-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.pricing-card-minimal {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.featured-crimson {
    border: 2px solid var(--color-crimson);
    box-shadow: 0 20px 50px rgba(182, 26, 43, 0.25);
    background: linear-gradient(180deg, #1C1322 0%, #141923 100%);
}

.featured-badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-crimson);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-tag-slate { background: rgba(255, 255, 255, 0.08); color: var(--text-secondary); font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; }
.plan-tag-coral { background: rgba(255, 165, 134, 0.15); color: var(--color-coral); font-size: 0.75rem; font-weight: 800; padding: 4px 12px; border-radius: 50px; }

.card-head h3 { font-size: 1.6rem; margin: 12px 0 4px; }
.plan-time { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 20px; }

.price-highlight-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.original-price-strike { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }

.p-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 4px 0;
}

.p-amount .curr { font-size: 1.3rem; font-weight: 700; color: var(--color-coral); }
.p-amount .val { font-size: 3.4rem; font-weight: 800; font-family: var(--font-heading); color: #fff; line-height: 1; }
.p-amount .cents { font-size: 1.3rem; font-weight: 700; }
.p-amount.coral-text .val { color: var(--color-coral); }

.p-installment-lbl { font-size: 0.85rem; color: var(--text-secondary); display: block; margin-top: 4px; }

.bonus-quick-tag {
    background: rgba(255, 165, 134, 0.12);
    border: 1px dashed var(--color-coral);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-coral);
    margin-bottom: 20px;
    text-align: center;
}

.plan-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #D1D5DB; }

.btn-trigger-modal { cursor: pointer; border: none; font-family: inherit; }

.btn-plan-slate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    transition: background 0.2s ease;
}

.btn-plan-slate:hover { background: rgba(255, 255, 255, 0.15); }

.btn-plan-crimson {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-crimson);
    color: #fff;
    padding: 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    box-shadow: 0 8px 24px rgba(182, 26, 43, 0.4);
    transition: all 0.2s ease;
}

.btn-plan-crimson:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(182, 26, 43, 0.6);
}

/* MODAL DE BENEFÍCIOS & DESCONTO */
.modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 10, 15, 0.88);
    backdrop-filter: blur(14px);
}

.modal-container {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--color-crimson);
    border-radius: 28px;
    width: 90%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(182, 26, 43, 0.3);
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-wrapper.active .modal-container { transform: translateY(0); }

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(255,255,255,0.08);
    border: none;
    color: #fff;
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.modal-close-btn:hover { background: var(--color-crimson); }

.savings-tag {
    background: var(--color-crimson);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 10px;
}

.modal-header h2 { font-size: 2rem; margin-bottom: 4px; }
.modal-sub { color: var(--text-secondary); font-size: 0.9rem; }

.modal-pricing-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.strike-price { font-size: 0.95rem; color: var(--text-muted); text-decoration: line-through; display: block; }
.main-price { font-size: 2.2rem; font-weight: 800; color: var(--color-coral); font-family: var(--font-heading); margin: 2px 0; }
.sub-installment { font-size: 0.9rem; color: var(--text-secondary); }

.modal-body-content h3 { font-size: 1.1rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }

.modal-benefits-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.modal-benefits-ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: #E2E8F0;
    line-height: 1.4;
}

.modal-bonus-box {
    background: linear-gradient(135deg, rgba(74, 21, 37, 0.6), rgba(36, 45, 61, 0.6));
    border: 1px solid var(--color-coral);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
}

.bonus-box-title { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.bonus-box-title h4 { font-size: 0.9rem; letter-spacing: 0.5px; color: var(--color-coral); }

.bonus-items-grid { display: flex; flex-direction: column; gap: 12px; }

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(0,0,0,0.3);
    padding: 12px;
    border-radius: 12px;
}

.bonus-icon { font-size: 1.4rem; color: var(--color-coral); margin-top: 2px; }
.bonus-item strong { display: block; font-size: 0.9rem; color: #fff; }
.bonus-item p { font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }

.modal-footer-cta { text-align: center; }

.btn-modal-final {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1rem;
}

.modal-micro-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Footer Clean */
.footer-clean { padding: 40px 0; border-top: 1px solid var(--border-glass); }
.footer-clean-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-crimson); }
.footer-brand strong { display: block; font-size: 0.9rem; }
.footer-brand p { font-size: 0.75rem; color: var(--text-secondary); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 992px) {
    .hero-fluxora-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-headline { font-size: 2.4rem; }
    .hero-lead { margin: 0 auto 24px; }
    .social-proof-bar { justify-content: center; }
    .hero-cta-row { justify-content: center; }
    .stats-row { justify-content: center; }
    .nav-links { display: none; }
    .modal-container { padding: 24px; }
    .pdf-minimal-banner { flex-direction: column; text-align: center; }
    .footer-clean-inner { flex-direction: column; gap: 20px; text-align: center; }
}


/* ==========================================================================
   AUTOPLAY VIDEOS + SOUND TOGGLE
   ========================================================================== */
.featured-video-wrapper,
.vianna-video-wrapper { position: relative; }

.sound-toggle {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-glass);
    background: rgba(13, 16, 23, 0.72);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sound-toggle:hover { transform: translateY(-2px); border-color: var(--color-crimson); }
.sound-toggle.is-on { background: var(--color-crimson); border-color: var(--color-crimson); }
.sound-toggle i { font-size: 0.9rem; }

@media (max-width: 640px) {
    .sound-toggle span { display: none; }
    .sound-toggle { padding: 10px 12px; }
}


/* ===== Foto de perfil / prova social ===== */
.proof-photo {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    background: #12161F;
    border: 2px solid var(--color-coral);
    margin-right: 10px;
}

/* ===== Print real da timeline ===== */
.timeline-print-shot {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    background: #000;
    margin-bottom: 12px;
}
.timeline-print-shot img { display: block; width: 100%; height: auto; }

/* ===== Galeria de vídeos ===== */
.video-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
    margin-top: 40px;
}

.gallery-stage {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
    gap: 10px;
    max-height: 620px;
    overflow-y: auto;
    padding-right: 4px;
}

.gallery-thumb {
    position: relative;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    aspect-ratio: 9 / 16;
    transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    opacity: 0.72;
}

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-thumb:hover { transform: translateY(-3px); opacity: 1; }
.gallery-thumb.is-active { border-color: var(--color-coral); opacity: 1; }

.thumb-label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 6px 6px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    text-align: left;
    background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
}

@media (max-width: 900px) {
    .video-gallery { grid-template-columns: 1fr; }
    .gallery-thumbs { max-height: none; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); }
}

/* ===== Nota discreta do PDF ===== */
.pdf-note-section { padding: 8px 0 24px; }
.pdf-note-strip {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 0.82rem;
    color: var(--text-secondary);
    border: 1px dashed var(--border-glass);
    border-radius: 12px;
    padding: 10px 16px;
}
.pdf-note-strip i { color: var(--text-secondary); font-size: 0.95rem; }
.pdf-note-strip strong { color: #fff; font-weight: 700; }

/* ===== Preço: parcela em destaque ===== */
.inst-prefix {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.inst-suffix { display: block; font-size: 0.8rem; color: var(--text-secondary); margin-top: 2px; }
.p-amount .val { font-size: 4.2rem; }
.p-cash-lbl {
    display: block;
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
}
.p-cash-lbl s { opacity: 0.7; }

/* ===== Chips de qualidade dos pacotes ===== */
.quality-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.quality-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #E5E7EB;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 5px 12px;
}
.quality-chip i { color: var(--color-coral); }

.plan-checklist .li-soft { font-size: 0.8rem; color: var(--text-muted); }
.plan-checklist .li-soft i { color: var(--text-muted); }

.modal-price-calc .main-price { font-size: 2.2rem; font-weight: 800; color: var(--color-coral); }
.modal-price-calc .sub-installment { display: block; font-size: 0.9rem; color: var(--text-secondary); }
.modal-price-calc .strike-price { display: block; font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }

/* Player principal: comporta vídeos verticais e horizontais */
.gallery-stage .featured-video-wrapper {
    padding-bottom: 0;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-stage .featured-video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}
@media (max-width: 900px) {
    .gallery-stage .featured-video-wrapper { height: 460px; }
}

/* ---- Botão flutuante do WhatsApp ---- */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #25D366;
    color: #06231A;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45); }
.wa-float i { font-size: 1.35rem; }
@media (max-width: 640px) {
    .wa-float span { display: none; }
    .wa-float { padding: 14px; }
}

/* ==========================================================================
   OTIMIZAÇÃO DE CONVERSÃO — dor, transformação, autoridade, FAQ, CTAs
   ========================================================================== */

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.82rem; font-weight: 600; letter-spacing: .01em;
}
.hero-badge i { color: var(--color-coral); font-size: .85rem; }

/* DOR */
.pain-grid {
    display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; margin-top: 44px;
}
.pain-item {
    display: flex; align-items: flex-start; gap: 14px;
    background: var(--bg-card); border: 1px solid var(--border-glass);
    border-radius: 16px; padding: 20px;
}
.pain-item i { color: var(--color-crimson); font-size: 1.05rem; margin-top: 3px; flex-shrink: 0; }
.pain-item p { color: var(--text-secondary); font-size: .96rem; line-height: 1.5; margin: 0; }
.pain-closer {
    text-align: center; margin-top: 36px; font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2.4vw, 1.5rem); color: var(--text-secondary);
}
.pain-closer strong { color: #fff; }

/* TRANSFORMAÇÃO */
.ba-grid {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; margin-top: 44px;
}
.ba-col { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 20px; padding: 28px; }
.ba-col h3 { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 18px; }
.ba-before h3 i { color: var(--color-crimson); }
.ba-after { border-color: rgba(255,165,134,.35); background: linear-gradient(180deg, rgba(182,26,43,.12), var(--bg-card)); }
.ba-after h3 i { color: var(--color-coral); }
.ba-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ba-col li { color: var(--text-secondary); font-size: .95rem; padding-left: 16px; position: relative; }
.ba-col li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--color-slate-light); }
.ba-after li::before { background: var(--color-coral); }
.ba-arrow { color: var(--color-coral); font-size: 1.5rem; text-align: center; }

/* AUTORIDADE */
.authority-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.authority-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.authority-thumbs img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; border: 1px solid var(--border-glass); }
.authority-text h2 { font-family: var(--font-heading); font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin: 12px 0 16px; }
.authority-text p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.65; }
.authority-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 28px; }
.authority-chips span { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--text-secondary); background: rgba(255,255,255,.04); border: 1px solid var(--border-glass); padding: 8px 13px; border-radius: 999px; }
.authority-chips i { color: var(--color-coral); }

/* POR QUE MENTORIA */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.why-col { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 20px; padding: 28px; }
.why-col h3 { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 18px; }
.why-mentoria { border-color: rgba(255,165,134,.35); background: linear-gradient(180deg, rgba(182,26,43,.14), var(--bg-card)); }
.why-mentoria h3 i { color: var(--color-coral); }
.why-yt h3 i { color: var(--text-muted); }
.flow-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; counter-reset: flow; }
.flow-list li { counter-increment: flow; color: var(--text-secondary); font-size: .95rem; display: flex; align-items: center; gap: 12px; }
.flow-list li::before { content: counter(flow); width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; background: rgba(255,255,255,.06); color: var(--text-primary); }
.why-mentoria .flow-list li::before { background: var(--color-crimson); color: #fff; }
.why-closer { text-align: center; margin-top: 34px; font-family: var(--font-heading); font-size: clamp(1.02rem, 2.3vw, 1.4rem); color: var(--text-secondary); }
.why-closer strong { color: #fff; }

/* TABELA COMPARATIVA */
.compare-wrap { margin-top: 56px; overflow-x: auto; }
.compare-title { font-family: var(--font-heading); font-size: 1.2rem; text-align: center; margin-bottom: 20px; }
.compare-table { width: 100%; min-width: 520px; border-collapse: collapse; background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 16px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; font-size: .9rem; border-bottom: 1px solid var(--border-glass); }
.compare-table th { font-family: var(--font-heading); color: #fff; background: rgba(255,255,255,.03); }
.compare-table th span { display: block; font-size: .78rem; color: var(--color-coral); font-weight: 700; margin-top: 4px; }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; color: var(--text-secondary); }
.compare-table .col-featured { background: rgba(182,26,43,.12); }
.compare-table .ok { color: #4ade80; }
.compare-table .no { color: var(--text-muted); }
.compare-table tr:last-child td { border-bottom: none; }

/* PROVA SOCIAL */
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.proof-slot { display: grid; place-items: center; gap: 10px; padding: 34px 16px; border-radius: 16px; border: 1px dashed rgba(255,255,255,.14); background: rgba(255,255,255,.02); color: var(--text-muted); font-size: .85rem; text-align: center; }
.proof-slot i { font-size: 1.4rem; color: var(--color-slate-light); }
.proof-note { text-align: center; margin-top: 22px; color: var(--text-muted); font-size: .88rem; }

/* FAQ */
.faq-list { max-width: 780px; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 14px; padding: 0 20px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 0; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .98rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--color-coral); font-size: .85rem; transition: transform .2s ease; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p { color: var(--text-secondary); font-size: .93rem; line-height: 1.6; padding: 0 0 20px; margin: 0; }

/* CTA FINAL */
.final-cta-section { background: linear-gradient(180deg, rgba(182,26,43,.16), transparent 70%); }
.final-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.final-cta-inner h2 { font-family: var(--font-heading); font-size: clamp(1.7rem, 4.2vw, 2.7rem); line-height: 1.15; }
.final-cta-inner p { color: var(--text-secondary); font-size: 1.02rem; line-height: 1.65; margin: 18px 0 30px; }
.btn-final-big { font-size: 1rem; padding: 20px 34px; }
.final-note { font-size: .85rem; color: var(--text-muted); margin-top: 18px; }

/* CTA FIXO MOBILE */
.mobile-sticky-cta { display: none; }
@media (max-width: 900px) {
    .pain-grid { grid-template-columns: 1fr; }
    .ba-grid { grid-template-columns: 1fr; }
    .ba-arrow { transform: rotate(90deg); }
    .authority-grid { grid-template-columns: 1fr; gap: 28px; }
    .why-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: flex; align-items: center; justify-content: space-between; gap: 12px;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 999;
        padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
        background: rgba(13, 16, 23, 0.96);
        border-top: 1px solid var(--border-glass);
        backdrop-filter: blur(12px);
    }
    .msc-info { display: flex; flex-direction: column; min-width: 0; }
    .msc-info strong { font-size: .84rem; color: #fff; }
    .msc-info span { font-size: .78rem; color: var(--color-coral); font-weight: 700; }
    .msc-btn {
        flex-shrink: 0; background: var(--color-crimson); color: #fff; font-weight: 700;
        padding: 13px 20px; border-radius: 12px; font-size: .86rem; text-decoration: none;
    }
    body { padding-bottom: 74px; }
    .wa-float { bottom: 88px; }
}

@media (max-width: 640px) {
    .hero-cta-row { flex-direction: column; align-items: stretch; }
    .hero-cta-row .btn-primary-crimson,
    .hero-cta-row .btn-secondary-slate { width: 100%; justify-content: center; text-align: center; }
    .brand-name { white-space: nowrap; }
    .btn-nav span { display: none; }
}
