/* ==========================================================================
   GARCIA TRADER — Design System
   Replicado do Genesis Group: Dark Mode Premium + Neon Green
   ========================================================================== */

:root {
    --color-bg-dark:    #000000;
    --color-bg-panel:   #111111;
    --color-neon-green: #CCFF00;
    --color-neon-glow:  rgba(204, 255, 0, 0.25);
    --color-text-title: #FFFFFF;
    --color-text-body:  #98989D;
    --glass-bg:         rgba(20, 20, 22, 0.45);
    --glass-border:     rgba(255, 255, 255, 0.09);
    --font:             'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition:       color 0.3s ease, background-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    --bottom-bar-h:     112px;
}

/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-body);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font);
    color: var(--color-text-title);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul { list-style: none; }

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

.text-center { text-align: center; }

/* ===================== NEON TEXT ===================== */
.neon-text {
    color: var(--color-neon-green);
    text-shadow: 0 0 15px var(--color-neon-glow);
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    border-radius: 999px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-neon-green);
    color: #000;
}

.glow-btn {
    box-shadow: 0 0 20px var(--color-neon-glow);
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(204, 255, 0, 0.5);
    background-color: #d9ff1a;
}

.btn-large {
    width: 100%;
    max-width: 420px;
    padding: 20px 32px;
    font-size: 1.05rem;
}

/* CTA Pulse Animation */
@keyframes pulse-cta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(204, 255, 0, 0.4), 0 8px 25px rgba(0,0,0,0.4);
    }
    50% {
        transform: scale(1.035);
        box-shadow: 0 0 55px rgba(204, 255, 0, 0.65), 0 12px 30px rgba(0,0,0,0.5);
    }
}

.btn-cta-pulse {
    animation: pulse-cta 2s ease-in-out infinite;
}

.btn-cta-pulse:hover {
    animation-play-state: paused;
}

/* ===================== TRADING TICKER ===================== */
.trading-ticker {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(8, 8, 10, 0.55);
    border-bottom: 1px solid var(--glass-border);
    padding: 9px 0;
    z-index: 200;
    overflow: hidden;
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}

.ticker-content {
    display: flex;
    gap: 44px;
    padding-right: 44px;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-body);
    white-space: nowrap;
}

.ticker-item strong { display: inline-flex; align-items: center; gap: 3px; }
.ticker-item .up   { color: var(--color-neon-green); }
.ticker-item .down { color: #FF3333; }
.ticker-item i     { width: 13px; height: 13px; }

@keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================== CANDLE LOADER ===================== */
.candle-bar {
    width: 4px;
    height: 22px;
    background: var(--color-neon-green);
    border-radius: 4px;
    animation: candle-bounce 0.6s infinite alternate ease-in-out;
    box-shadow: 0 0 6px rgba(204, 255, 0, 0.4);
    transform-origin: bottom;
    will-change: transform;
}
.candle-bar:nth-child(2) { background:#FF3333; box-shadow:0 0 6px rgba(255,51,51,0.4); animation-delay:.15s; }
.candle-bar:nth-child(3) { animation-delay:.3s; }
.candle-bar:nth-child(4) { background:#FF3333; box-shadow:0 0 6px rgba(255,51,51,0.4); animation-delay:.1s; }
.candle-bar:nth-child(5) { animation-delay:.45s; }

@keyframes candle-bounce {
    0%   { transform: scaleY(0.18); }
    100% { transform: scaleY(1); }
}

/* ===================== NAVBAR ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 150;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
    padding: 14px 0;
    will-change: transform;
    transform: translateZ(0);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-body);
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover { color: var(--color-text-title); }

.btn-nav {
    padding: 10px 22px;
    font-size: 0.78rem;
}

.nav-menu-btn {
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--color-text-title);
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-menu-btn:hover { border-color: rgba(204, 255, 0, 0.4); color: var(--color-neon-green); }
.nav-menu-btn i { width: 20px; height: 20px; }

/* Mobile Nav Drawer */
.nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(40px);
    z-index: 300;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.nav-links.open a {
    font-size: 1.3rem;
    color: var(--color-text-title);
}

.nav-close-btn {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: 1px solid var(--glass-border);
    color: var(--color-text-title);
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
}

/* ===================== SECTION BASE ===================== */
.section {
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(204, 255, 0, 0.3);
    border-radius: 50px;
    color: var(--color-neon-green);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag i { width: 14px; height: 14px; }

.section-title {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin: 0;
}

/* ===================== BLUR BLOBS ===================== */
.blur-blob {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(90px);
    animation: drift 12s infinite alternate ease-in-out;
    pointer-events: none;
    opacity: 0.45;
    will-change: transform;
}

.blob-1 { width: 380px; height: 380px; background: rgba(204,255,0,0.35); top: -10%; left: -15%; }
.blob-2 { width: 280px; height: 280px; background: rgba(0,255,80,0.25); bottom: -5%; right: -10%; animation-direction: alternate-reverse; animation-duration: 15s; }
.blob-3 { width: 320px; height: 320px; background: rgba(204,255,0,0.2); top: 20%; right: -10%; animation-duration: 18s; }
.blob-4 { width: 350px; height: 350px; background: rgba(0,200,100,0.2); bottom: 10%; left: -10%; animation-duration: 14s; }
.blob-5 { width: 300px; height: 300px; background: rgba(204,255,0,0.15); top: 30%; right: -5%; animation-duration: 20s; }
.blob-6 { width: 400px; height: 400px; background: rgba(204,255,0,0.25); top: 0; left: 50%; transform: translateX(-50%); animation-duration: 16s; }

@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -25px) scale(1.1); }
    100% { transform: translate(-25px, 35px) scale(0.92); }
}

/* ===================== FADE UP ANIMATION ===================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.1s; }
.fade-delay-2 { transition-delay: 0.2s; }
.fade-delay-3 { transition-delay: 0.3s; }

/* ===================== ICON SIZES ===================== */
.icon-small { width: 16px; height: 16px; }
.icon-xs    { width: 14px; height: 14px; }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 150px 0 90px; /* 37px ticker + ~70px navbar + espaço */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background-image: url('assets/images/cle200.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.65) 50%,
        rgba(0,0,0,0.92) 100%
    );
    z-index: -1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Coluna de texto da hero */
.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    width: 100%;
}

/* Coluna do vídeo na hero — oculto no mobile, abaixo do texto */
.hero-video-col {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Desktop — layout 2 colunas */
@media (min-width: 900px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 56px;
        text-align: left;
        max-width: 1100px;
        margin: 0 auto;
    }
    .hero-video-col {
        flex-shrink: 0;
        width: 280px;
        max-width: 280px;
        margin: 0;
    }
    .hero-text {
        flex: 1;
        min-width: 0;
        align-items: flex-start;
        text-align: left;
    }
    .hero-text .headline,
    .hero-text .subheadline { text-align: left; margin: 0; }
    .hero-text .hero-counter-row,
    .hero-text .hero-actions { justify-content: flex-start; }
    .hero-text .trust-badges { justify-content: flex-start; }
}

/* Ribbon Badge */
.ribbon-badge {
    position: absolute;
    top: 90px; left: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, var(--color-neon-green), #99CC00);
    color: #000;
    padding: 9px 18px 9px 14px;
    border-radius: 0 40px 40px 0;
    box-shadow: 4px 4px 25px rgba(204,255,0,0.3);
    z-index: 10;
    animation: slideInRibbon 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transform: translateX(-100%);
    opacity: 0;
}

.ribbon-badge i { width: 22px; height: 22px; }

.ribbon-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-family: var(--font);
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 700;
}

.ribbon-text strong { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.5px; }

@keyframes slideInRibbon {
    0%   { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Tagline */
.tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(204,255,0,0.12);
    border: 1px solid rgba(204,255,0,0.35);
    border-radius: 50px;
    color: var(--color-neon-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
}

/* Headline */
.headline {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    line-height: 1.15;
    text-align: center;
}

/* Subheadline */
.subheadline {
    font-size: 0.95rem;
    color: #DCDCE0;
    max-width: 600px;
    font-weight: 400;
    letter-spacing: -0.2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    line-height: 1.5;
    opacity: 0.9;
    text-align: center;
    margin: 0 auto;
}

/* Hero Counter */
.hero-counter-row {
    display: flex;
    justify-content: center;
}

.hero-counter-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 12px 22px;
    border-radius: 50px;
    backdrop-filter: blur(12px);
}

.hero-counter-box i { width: 20px; height: 20px; color: var(--color-neon-green); }

.counter-num {
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.counter-label {
    font-size: 0.8rem;
    color: var(--color-text-body);
}

/* Offer */
.hero-offer {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.offer-from {
    font-size: 0.9rem;
    color: var(--color-text-body);
    text-decoration: line-through;
}

.offer-arrow {
    font-size: 0.9rem;
    color: var(--color-text-body);
}

.offer-price {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.offer-badge {
    background: rgba(255, 80, 0, 0.15);
    border: 1px solid rgba(255, 80, 0, 0.3);
    color: #FF7040;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Actions */
.hero-actions { width: 100%; display: flex; justify-content: center; }

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #AAAAAА;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}

.trust-item i { color: var(--color-neon-green); }

/* ==========================================================================
   PREMIUM CARD SYSTEM (Genesis Group Clone)
   ========================================================================== */
.premium-card {
    position: relative;
    border-radius: 20px;
    background: transparent;
    padding: 1px;
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
    z-index: 2;
}

/* Gradient border via mask */
.premium-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(204,255,0,0.3), rgba(255,255,255,0) 50%, rgba(204,255,0,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background 0.5s ease;
}

.card-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-radius: 19px;
    padding: 36px 28px;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

/* Dynamic glow */
.card-glow {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(204,255,0,0.1) 0%, transparent 60%);
    border-radius: 50%;
    top: -50px; right: -50px;
    opacity: 0.3;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.7), 0 0 40px rgba(204,255,0,0.08);
}

.premium-card:hover .card-glow { transform: scale(1.6) translate(-10%, 10%); opacity: 1; }

.premium-card:hover::before {
    background: linear-gradient(135deg, rgba(204,255,0,0.7), rgba(204,255,0,0.2) 60%, rgba(204,255,0,0.4));
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    z-index: 1;
}

.icon-box {
    width: 60px; height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(204,255,0,0.14) 0%, rgba(204,255,0,0.02) 100%);
    border: 1px solid rgba(204,255,0,0.22);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-neon-green);
    box-shadow: inset 0 0 18px rgba(204,255,0,0.05);
    transition: var(--transition);
}

.premium-card:hover .icon-box {
    background: linear-gradient(135deg, rgba(204,255,0,0.22) 0%, rgba(204,255,0,0.05) 100%);
    border-color: rgba(204,255,0,0.45);
    box-shadow: inset 0 0 22px rgba(204,255,0,0.12), 0 0 12px rgba(204,255,0,0.25);
}

.icon-box i { width: 28px; height: 28px; filter: drop-shadow(0 0 6px rgba(204,255,0,0.3)); }

.step-num {
    font-family: var(--font);
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.12);
    opacity: 0.6;
    line-height: 0.8;
    transition: var(--transition);
}

.premium-card:hover .step-num {
    -webkit-text-stroke: 1px rgba(204,255,0,0.35);
    opacity: 1;
    transform: translateY(-4px);
}

.card-inner h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: #FFF;
    z-index: 1;
}

.card-inner p {
    color: var(--color-text-body);
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.88;
    z-index: 1;
}

/* Card List */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    z-index: 1;
}

.card-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--color-text-body);
}

.card-list li i { color: var(--color-neon-green); flex-shrink: 0; }

/* ==========================================================================
   SEÇÃO 2 — RESULTADOS REAIS
   ========================================================================== */
.results-section { background: transparent; }

.highlight-testimonial {
    margin-bottom: 40px;
}

.ht-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--glass-bg);
    border: 1px solid rgba(204,255,0,0.2);
    border-radius: 20px;
    padding: 24px 28px;
    backdrop-filter: blur(20px);
    flex-wrap: wrap;
}

.ht-avatar {
    width: 54px; height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-neon-green), #034f1e);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
}

.ht-content { flex: 1; min-width: 160px; }
.ht-name    { font-size: 1rem; font-weight: 700; color: #FFF; }
.ht-result  { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.ht-quote   { font-size: 0.85rem; color: var(--color-text-body); margin: 0; }

.ht-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(204,255,0,0.1);
    border: 1px solid rgba(204,255,0,0.25);
    border-radius: 14px;
    padding: 12px 18px;
    color: var(--color-neon-green);
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.3;
}

.ht-badge i { width: 18px; height: 18px; }

/* Results Carousel — carrossel em todas as telas */
.results-photos {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
    perspective: 1100px;
}

.results-photos-track {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
    will-change: transform;
}

.results-photos-track > .rc-phone-frame {
    flex: 0 0 38%;
    max-width: 38%;
}

/* Setas e dots visíveis em todas as telas para esta seção */
.results-photos .peek-btn-prev,
.results-photos .peek-btn-next { display: flex; }
.results-photos .peek-dots      { display: flex; }

/* Efeito 3D coverflow para todos os tamanhos de tela */
.results-photos-track > .rc-phone-frame.peek-left {
    transform: scale(0.82) rotateY(14deg);
    opacity: 0.6;
    z-index: 1;
}
.results-photos-track > .rc-phone-frame.peek-right {
    transform: scale(0.82) rotateY(-14deg);
    opacity: 0.6;
    z-index: 1;
}
.results-photos-track > .rc-phone-frame.peek-active {
    transform: scale(1) rotateY(0deg);
    opacity: 1;
    z-index: 3;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.65),
        0  0  40px rgba(204,255,0,0.14);
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
                opacity   0.5s ease,
                box-shadow 0.5s ease;
}


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

.rc-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(20px);
    max-width: 480px;
    margin: 0 auto;
}

.rc-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.rc-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-neon-green), #034f1e);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
}

.rc-name   { font-size: 0.95rem; font-weight: 700; color: #FFF; }
.rc-meta   { font-size: 0.78rem; color: var(--color-text-body); }

.rc-win-badge {
    margin-left: auto;
    background: rgba(204,255,0,0.12);
    border: 1px solid rgba(204,255,0,0.3);
    color: var(--color-neon-green);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.rc-result {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.rc-sub {
    font-size: 0.82rem;
    color: var(--color-text-body);
    margin-bottom: 18px;
}

.rc-candles {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 24px;
}


.rc-hint {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   SEÇÃO 3 — BENEFÍCIOS
   ========================================================================== */
.features { background: transparent; }

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* ==========================================================================
   SEÇÃO 4 — DEMONSTRAÇÃO
   ========================================================================== */
.demo-section { background: transparent; }

.demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.demo-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.demo-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(204,255,0,0.2), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.demo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(204,255,0,0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 30px rgba(204,255,0,0.05);
}

.demo-icon-box {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(204,255,0,0.1);
    border: 1px solid rgba(204,255,0,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-neon-green);
    margin-bottom: 20px;
}

.demo-icon-box i { width: 26px; height: 26px; }

.demo-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.demo-card p {
    font-size: 0.88rem;
    color: var(--color-text-body);
    margin-bottom: 24px;
}

/* Demo Candles visualization */
.demo-candles {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.demo-candle {
    flex: 1;
    background: var(--color-neon-green);
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(204,255,0,0.3);
    min-height: 10px;
    transition: height 1s ease;
}

.demo-candle.red {
    background: #FF3333;
    box-shadow: 0 0 5px rgba(255,51,51,0.3);
}

/* Signal badge */
.demo-signal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(204,255,0,0.08);
    border: 1px solid rgba(204,255,0,0.3);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-neon-green);
    letter-spacing: 1px;
}

@keyframes blink-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.signal-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-neon-green);
    animation: blink-dot 1.2s ease-in-out infinite;
    box-shadow: 0 0 6px var(--color-neon-green);
}

/* Demo Stats */
.demo-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.demo-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    background: rgba(0,0,0,0.3);
    border-radius: 14px;
    padding: 18px 12px;
    border: 1px solid var(--glass-border);
    min-width: 80px;
}

.demo-stat-num   { font-size: 1.6rem; font-weight: 900; letter-spacing: -0.5px; }
.demo-stat-label { font-size: 0.72rem; color: var(--color-text-body); text-align: center; text-transform: uppercase; letter-spacing: 0.5px; }

/* Demo Proof Banner */
.demo-proof-banner {
    background: var(--glass-bg);
    border: 1px solid rgba(204,255,0,0.2);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(20px);
    text-align: center;
}

.dpb-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.dpb-number { font-size: 2.4rem; font-weight: 900; letter-spacing: -1px; }
.dpb-arrow  { width: 24px; height: 24px; color: var(--color-text-body); animation: bounce-arrow 1.4s ease-in-out infinite; }
.dpb-text   { font-size: 1rem; font-weight: 600; color: var(--color-text-title); }

@keyframes bounce-arrow {
    0%, 100% { transform: translateX(0); }
    50%       { transform: translateX(5px); }
}

/* ==========================================================================
   SEÇÃO 5 — DEPOIMENTOS
   ========================================================================== */
.testimonials { background: transparent; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.testimonial-card {
    position: relative;
    border-radius: 20px;
    padding: 1px;
    transition: var(--transition);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(204,255,0,0.25), rgba(255,255,255,0) 50%, rgba(204,255,0,0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6), 0 0 30px rgba(204,255,0,0.07);
}

.testimonial-card:hover::before {
    background: linear-gradient(135deg, rgba(204,255,0,0.6), rgba(204,255,0,0.15) 60%, rgba(204,255,0,0.35));
}

.tc-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-radius: 19px;
    padding: 32px 26px;
    height: 100%;
    position: relative;
}

.tc-quote-icon {
    position: absolute;
    top: 22px; left: 26px;
    width: 40px; height: 40px;
    color: rgba(204,255,0,0.05);
}

.tc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tc-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-neon-green), #034f1e);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #000;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(204,255,0,0.2);
}

.tc-name  { font-size: 0.95rem; font-weight: 700; color: #FFF; }
.tc-stars { font-size: 0.85rem; color: #FFB800; letter-spacing: 1px; }

.tc-result-badge {
    margin-left: auto;
    font-size: 0.82rem;
    font-weight: 800;
    background: rgba(204,255,0,0.08);
    border: 1px solid rgba(204,255,0,0.2);
    border-radius: 50px;
    padding: 5px 14px;
}

.tc-text {
    font-size: 0.88rem;
    color: var(--color-text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.tc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--glass-border);
    padding-top: 16px;
}

.tc-candles { display: flex; align-items: flex-end; gap: 4px; height: 22px; }

.tc-result {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

/* ==========================================================================
   SEÇÃO 6 — SOBRE (PROFILE CARD)
   ========================================================================== */
.authority-micro { background: transparent; }

.premium-profile-card {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 1px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: var(--transition);
}

.premium-profile-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(204,255,0,0.4), rgba(255,255,255,0) 40%, rgba(204,255,0,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.premium-profile-card:hover {
    box-shadow: 0 40px 80px rgba(0,0,0,0.8), 0 0 40px rgba(204,255,0,0.12);
}

.premium-profile-card:hover::before {
    background: linear-gradient(135deg, rgba(204,255,0,0.7), rgba(255,255,255,0) 40%, rgba(204,255,0,0.3));
}

.premium-profile-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-radius: 23px;
    padding: 56px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-glow {
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(204,255,0,0.07) 0%, transparent 60%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.quote-icon {
    position: absolute;
    top: 28px; left: 36px;
    width: 52px; height: 52px;
    color: rgba(204,255,0,0.04);
}

.profile-img-wrapper {
    width: 150px; height: 150px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 24px;
    z-index: 2;
    padding: 5px;
    background: linear-gradient(135deg, var(--color-neon-green), #034f1e);
    box-shadow: 0 0 35px rgba(204,255,0,0.3);
}

.profile-placeholder-img {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #111;
    border: 4px solid var(--color-bg-panel);
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-neon-green);
}

.profile-real-img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid var(--color-bg-panel);
}

.profile-info { z-index: 2; }

.profile-info h3 {
    font-size: 2rem;
    color: #FFF;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.profile-info p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-body);
    max-width: 580px;
    margin: 0 auto 28px;
}

.profile-info strong {
    color: #000;
    background: var(--color-neon-green);
    padding: 2px 7px;
    border-radius: 5px;
    font-weight: 700;
}

.profile-credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-body);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 10px 14px;
}

.cred-item i { color: var(--color-neon-green); flex-shrink: 0; }

/* ==========================================================================
   SEÇÃO 7 — LIVES
   ========================================================================== */
.lives-section { background: transparent; overflow: hidden; }

.lives-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.lives-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.live-badge {
    background: #FF3333;
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    animation: blink-dot 1.5s ease-in-out infinite;
}

.live-students {
    font-size: 0.72rem;
    color: var(--color-neon-green);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Schedule Card */
.schedule-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    margin-bottom: 28px;
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 26px;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-title);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(204,255,0,0.04);
}

.schedule-header i { width: 16px; height: 16px; color: var(--color-neon-green); }

.schedule-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 26px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    flex-wrap: wrap;
    transition: background 0.3s;
}

.schedule-row:last-of-type { border-bottom: none; }
.schedule-row:hover        { background: rgba(204,255,0,0.03); }

.schedule-row.highlight {
    background: rgba(204,255,0,0.05);
    border-left: 3px solid var(--color-neon-green);
}

.sch-time    { font-size: 1.15rem; font-weight: 900; letter-spacing: -0.5px; min-width: 60px; }
.sch-period  { font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-text-body); min-width: 100px; }
.sch-content { font-size: 0.85rem; color: var(--color-text-body); }

.schedule-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    font-size: 0.8rem;
    color: var(--color-text-body);
    border-top: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.2);
    margin: 0;
}

.schedule-note i { color: var(--color-neon-green); }

/* Special Live Card */
.special-live-card {
    background: rgba(204,255,0,0.04);
    border: 1px solid rgba(204,255,0,0.2);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(12px);
}

.slc-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.slc-icon {
    width: 54px; height: 54px;
    border-radius: 14px;
    background: rgba(204,255,0,0.12);
    border: 1px solid rgba(204,255,0,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-neon-green);
    flex-shrink: 0;
}

.slc-icon i { width: 24px; height: 24px; }

.slc-content { flex: 1; min-width: 200px; }
.slc-content h4 { font-size: 1.05rem; font-weight: 700; color: #FFF; margin-bottom: 12px; }

.slc-content ul { display: flex; flex-direction: column; gap: 7px; }
.slc-content li { font-size: 0.85rem; color: var(--color-text-body); padding-left: 14px; position: relative; }
.slc-content li::before { content: '→'; position: absolute; left: 0; color: var(--color-neon-green); font-size: 0.75rem; }

.slc-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.slc-hour {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

.slc-time span:last-child {
    font-size: 0.72rem;
    color: var(--color-text-body);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   SEÇÃO 8 — OFERTA
   ========================================================================== */
.pricing-section { background: transparent; overflow: hidden; }

.pricing-card {
    position: relative;
    border-radius: 24px;
    padding: 1px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 28px;
}

.pricing-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(204,255,0,0.5), rgba(204,255,0,0.1) 50%, rgba(204,255,0,0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border-radius: 23px;
    padding: 40px 28px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-text-body);
}

.pricing-item i { width: 20px; height: 20px; color: var(--color-neon-green); flex-shrink: 0; }

.pricing-item.highlight-item {
    color: var(--color-text-title);
    font-weight: 700;
    background: rgba(204,255,0,0.05);
    border: 1px solid rgba(204,255,0,0.15);
    border-radius: 10px;
    padding: 10px 14px;
    margin-top: 4px;
}

.pricing-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.price-old {
    font-size: 1rem;
    color: var(--color-text-body);
    text-decoration: line-through;
}

.price-current { display: flex; align-items: baseline; gap: 8px; }
.price-label   { font-size: 0.9rem; color: var(--color-text-body); }
.price-value   { font-size: 3.5rem; font-weight: 900; letter-spacing: -2px; }
.price-note    { font-size: 0.8rem; color: var(--color-text-body); }

.instant-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.instant-note i { color: var(--color-neon-green); flex-shrink: 0; }

/* Guarantee Card */
.guarantee-card {
    border: 1px solid rgba(204,255,0,0.2);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(204,255,0,0.03);
    backdrop-filter: blur(12px);
}

.guarantee-inner {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 28px;
    flex-wrap: wrap;
}

.guarantee-icon {
    width: 64px; height: 64px;
    border-radius: 18px;
    background: rgba(204,255,0,0.1);
    border: 1px solid rgba(204,255,0,0.25);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-neon-green);
    flex-shrink: 0;
}

.guarantee-icon i { width: 30px; height: 30px; }

.guarantee-content { flex: 1; min-width: 200px; }
.guarantee-content h4 { font-size: 1.1rem; font-weight: 700; color: #FFF; margin-bottom: 10px; }
.guarantee-content > p { font-size: 0.88rem; color: var(--color-text-body); margin-bottom: 20px; }

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.gi {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-body);
}

.gi i { width: 16px; height: 16px; color: var(--color-neon-green); flex-shrink: 0; }

.guarantee-tip {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 12px 16px;
    border-left: 3px solid var(--color-neon-green);
    margin: 0;
}

/* ==========================================================================
   SEÇÃO 9 — FAQ
   ========================================================================== */
.faq-section { background: transparent; }

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(204,255,0,0.25);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-title);
    transition: color 0.3s;
}

.faq-question:hover { color: var(--color-neon-green); }

.faq-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    color: var(--color-text-body);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), color 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--color-neon-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.3s;
}

.faq-answer.open {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 22px;
    font-size: 0.875rem;
    color: var(--color-text-body);
    line-height: 1.7;
    margin: 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 16px;
}

.faq-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq-cta p {
    font-size: 1rem;
    color: var(--color-text-body);
    margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    padding: 60px 0 40px;
    background: #000;
    border-top: 1px solid var(--glass-border);
    font-size: 0.88rem;
}

.footer-top {
    margin-bottom: 48px;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: inline-block;
}

/* Logo inline no meio do texto/títulos */
.inline-logo {
    height: 22px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

.inline-logo-lg {
    height: 36px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.inline-logo-xl {
    height: 52px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.footer-tagline {
    color: var(--color-text-body);
    margin-bottom: 6px;
}

.footer-stats {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    margin: 0;
}

.footer-links-row {
    display: flex;
    gap: 48px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding: 0 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 140px;
}

.footer-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-title);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 0.85rem;
    color: var(--color-text-body);
    transition: color 0.3s;
}

.footer-col a:hover { color: var(--color-neon-green); }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 24px;
}

.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 8px; }
.footer-bottom p:last-child { margin: 0; }

.disclaimer { font-size: 0.72rem !important; opacity: 0.7; max-width: 700px; margin: 0 auto !important; }

/* ==========================================================================
   BOTTOM BAR
   ========================================================================== */
.bottom-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 500;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

/* Animated Banner */
.bb-banner {
    background: var(--color-neon-green);
    overflow: hidden;
    padding: 6px 0;
}

.bb-banner-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 18s linear infinite;
}

.bb-banner-track span {
    font-size: 0.72rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding-right: 20px;
}

/* Bottom Nav */
.bb-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 16px;
}

.bb-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-text-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 6px 10px;
    border-radius: 10px;
}

.bb-link i     { width: 20px; height: 20px; }
.bb-link:hover { color: var(--color-text-title); }

.bb-link.bb-cta {
    background: var(--color-neon-green);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    flex-direction: row;
    gap: 6px;
    animation: pulse-cta 2s ease-in-out infinite;
}

.bb-link.bb-cta:hover { animation-play-state: paused; background: #d9ff1a; }

/* ==========================================================================
   RESPONSIVE — TABLET & DESKTOP
   ========================================================================== */
@media (min-width: 640px) {
    .features-grid    { grid-template-columns: repeat(2, 1fr); }
    .lives-grid       { grid-template-columns: repeat(2, 1fr); }
    .demo-grid        { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid{ grid-template-columns: repeat(2, 1fr); }

    .pricing-inner {
        flex-direction: row;
        align-items: flex-start;
    }

    .pricing-list     { flex: 1; }
    .pricing-cta-block{ flex: 0 0 280px; border-top: none; padding-top: 0; border-left: 1px solid var(--glass-border); padding-left: 32px; }
}

@media (min-width: 768px) {
    .headline          { font-size: 2.4rem; }
    .subheadline       { font-size: 1rem; }
    .section-title     { font-size: 2.2rem; }
    .features-grid     { grid-template-columns: repeat(3, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
    .nav-links         { display: flex; }
    .nav-menu-btn      { display: none; }
    .ribbon-badge      { top: 15%; }
    .profile-credentials { grid-template-columns: repeat(2, 1fr); }
    .guarantee-inner   { flex-wrap: nowrap; }
    .demo-chart-bg img { max-height: 320px; }
}

@media (min-width: 1024px) {
    .hero { padding: 140px 0 100px; }
    .premium-profile-inner { padding: 60px 56px; }
}

/* ==========================================================================
   CARROSSEL DE SCREENSHOTS REAIS (WhatsApp provas)
   ========================================================================== */
.rc-phone-frame {
    position: relative;
    width: 260px;
    flex-shrink: 0;
}

.rc-phone-frame img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 20px 50px rgba(0,0,0,0.7),
        0 0 30px rgba(204,255,0,0.06);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
}

.rc-phone-frame img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 0 0 1px rgba(204,255,0,0.2),
        0 28px 60px rgba(0,0,0,0.8),
        0 0 40px rgba(204,255,0,0.12);
}

.rc-phone-frame--video video {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.06),
        0 20px 50px rgba(0,0,0,0.7),
        0 0 30px rgba(204,255,0,0.06);
}

.rc-phone-label {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-neon-green), #99CC00);
    color: #000;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(204,255,0,0.3);
}

/* ==========================================================================
   DEMO SECTION — gráfico de trading como background decorativo
   ========================================================================== */
.demo-chart-bg {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
}

.demo-chart-bg img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    filter: brightness(0.55) saturate(1.2);
}

.demo-chart-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(204,255,0,0.05));
    border-radius: 20px;
    border: 1px solid rgba(204,255,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px;
}

.dco-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(204,255,0,0.2);
    border-radius: 14px;
    padding: 14px 20px;
    min-width: 100px;
}

.dco-num   { font-size: 1.8rem; font-weight: 900; letter-spacing: -0.8px; }
.dco-label { font-size: 0.68rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; text-align: center; }

/* ==========================================================================
   GALERIA LIFESTYLE DUBAI
   ========================================================================== */
.galeria-dubai {
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Carrossel wrapper */
.galeria-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.galeria-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.galeria-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    flex: 0 0 100%;
    transition: box-shadow 0.4s;
}

.galeria-item:hover {
    box-shadow: 0 25px 55px rgba(0,0,0,0.7), 0 0 30px rgba(204,255,0,0.08);
}

.galeria-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.galeria-item:hover .galeria-img {
    transform: scale(1.06);
}

.galeria-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 2;
    padding: 20px 20px 22px;
}

.galeria-caption-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(204,255,0,0.12);
    border: 1px solid rgba(204,255,0,0.3);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-neon-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.galeria-caption-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Setas/dots da galeria usam as classes .peek-btn e .peek-dot */

/* neon border no hover */
.galeria-item::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: border-color 0.4s;
    pointer-events: none;
    z-index: 2;
}

.galeria-item:hover::after {
    border-color: rgba(204,255,0,0.25);
}

/* ==========================================================================
   VÍDEO PLAYER — Lives Section
   ========================================================================== */
.live-video-block {
    margin-bottom: 28px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
    border: 1px solid rgba(204,255,0,0.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(204,255,0,0.05);
}

.live-video-block video {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.live-video-header {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 8px 16px;
}

.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #FF3333;
    box-shadow: 0 0 6px #FF3333;
    animation: blink-dot 1.2s ease-in-out infinite;
}

.live-video-header span {
    font-size: 0.72rem;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   TRADING TICKER (top bar)
   ========================================================================== */
.trading-ticker-wrap {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 200;
}

/* ==========================================================================
   BOTTOM BAR (restored)
   ========================================================================== */
.bottom-bar {
    position: fixed;
    bottom: 0; left: 0;
    width: 100%;
    z-index: 500;
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.bb-banner {
    background: var(--color-neon-green);
    overflow: hidden;
    padding: 6px 0;
}

.bb-banner-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 18s linear infinite;
}

.bb-banner-track span {
    font-size: 0.72rem;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    padding-right: 20px;
}

.bb-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 16px;
}

.bb-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--color-text-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    padding: 6px 10px;
    border-radius: 10px;
}

.bb-link i     { width: 20px; height: 20px; }
.bb-link:hover { color: var(--color-text-title); }

.bb-link.bb-cta {
    background: var(--color-neon-green);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    flex-direction: row;
    gap: 6px;
    animation: pulse-cta 2s ease-in-out infinite;
}

.bb-link.bb-cta:hover { animation-play-state: paused; background: #d9ff1a; }

/* Mobile adjustments */
@media (max-width: 480px) {
    .headline      { font-size: 1.4rem; }
    .section-title { font-size: 1.4rem; }
    .price-value   { font-size: 2.8rem; }
    .hero-offer    { flex-direction: column; align-items: center; gap: 6px; }
    .ht-inner      { flex-direction: column; align-items: flex-start; }
    .ht-badge      { align-self: flex-end; }
    .slc-inner     { flex-direction: column; }
    .schedule-row  { flex-direction: column; align-items: flex-start; gap: 4px; }
    .sch-period    { min-width: auto; }
}

/* ==========================================================================
   DEPOIMENTOS EM VÍDEO
   ========================================================================== */
.video-depo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.video-depo-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-bg-panel);
    border: 1px solid var(--glass-border);
    aspect-ratio: 9 / 16;
}

.video-depo-item video,
.video-depo-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.video-depo-item.depo-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   PEEK CAROUSEL — 3D coverflow (mobile) | side-by-side (desktop)
   ========================================================================== */

/* Botões de seta */
.peek-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CCFF00, #66cc00);
    border: none;
    display: none; /* oculto por padrão, mostrado no mobile */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    box-shadow: 0 4px 14px rgba(204,255,0,0.45);
    transition: background 0.2s;
    flex-shrink: 0;
}
.peek-btn:hover { background: linear-gradient(135deg, #d9ff1a, #4db800); }
.peek-btn svg   { width: 20px; height: 20px; }

.peek-btn-prev,
.peek-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}
.peek-btn-prev { left: 6px; }
.peek-btn-next { right: 6px; }

/* Dots — ocultos por padrão */
.peek-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.peek-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none; cursor: pointer; padding: 0;
    transition: background 0.25s, transform 0.25s;
}
.peek-dot.active { background: linear-gradient(135deg, #CCFF00, #66cc00); transform: scale(1.35); }

/* Wrapper */
.peek-outer { position: relative; }

/* ==== BASE dos itens: sem efeito no desktop ==== */
.peek-track > * {
    position: relative;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
                opacity   0.5s ease,
                box-shadow 0.5s ease,
                z-index   0s 0.25s;
}

/* ============================================================
   DESKTOP: todos os itens lado a lado — sem carrossel
   ============================================================ */

/* galeria desktop: side-by-side, sem carrossel */
@media (min-width: 768px) {
    .galeria-carousel {
        max-width: 100%;
        overflow: visible;
        border-radius: 0;
    }
    .galeria-carousel-track {
        display: flex;
        justify-content: center;
        gap: 24px;
        transform: none !important;
        transition: none;
    }
    .galeria-carousel-track > .galeria-item {
        flex: 1;
        max-width: 320px;
        min-width: 0;
    }
    .galeria-img {
        aspect-ratio: 3 / 4;
    }
    /* ocultar setas e dots no desktop */
    .galeria-carousel .peek-btn-prev,
    .galeria-carousel .peek-btn-next,
    .galeria-carousel .peek-dots { display: none !important; }
}

/* ============================================================
   MOBILE: carrossel 3D coverflow
   ============================================================ */
@media (max-width: 767px) {

    /* Setas e dots visíveis */
    .peek-btn-prev,
    .peek-btn-next      { display: flex; }
    .results-photos .peek-dots,
    .peek-outer > .peek-dots,
    .galeria-carousel .peek-dots { display: flex; }

    /* Perspectiva 3D nos wrappers */
    .results-photos,
    .galeria-carousel,
    .peek-outer { perspective: 1100px; }

    /* Overflow hidden para clipar o track */
    .results-photos,
    .galeria-carousel,
    .peek-outer { overflow: hidden; }

    /* --- Track: flex, sem gap, transição --- */
    .results-photos-track,
    .galeria-carousel-track,
    .video-depo-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0;
        margin-top: 0;
        transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1);
        will-change: transform;
    }

    /* Cada item ocupa 80% */
    .results-photos-track > .rc-phone-frame { flex: 0 0 80%; max-width: 80%; }
    .galeria-carousel-track > .galeria-item,
    .video-depo-grid > .video-depo-item { flex: 0 0 80%; max-width: 80%; }

    /* Itens laterais esquerda — rotação 3D */
    .peek-track > *.peek-left {
        transform: scale(0.84) rotateY(14deg);
        opacity: 0.65;
        z-index: 1;
        box-shadow: 8px 12px 40px rgba(0,0,0,0.55);
    }

    /* Itens laterais direita — rotação 3D inversa */
    .peek-track > *.peek-right {
        transform: scale(0.84) rotateY(-14deg);
        opacity: 0.65;
        z-index: 1;
        box-shadow: -8px 12px 40px rgba(0,0,0,0.55);
    }

    /* Item central ativo — frente, sem rotação, sombra neon */
    .peek-track > *.peek-active {
        transform: scale(1) rotateY(0deg);
        opacity: 1;
        z-index: 3;
        box-shadow:
            0 20px 60px rgba(0,0,0,0.65),
            0  0  30px rgba(204,255,0,0.12);
        transition: transform 0.5s cubic-bezier(0.2,0.8,0.2,1),
                    opacity   0.5s ease,
                    box-shadow 0.5s ease,
                    z-index   0s;
    }
}

/* ==========================================================================
   SEÇÃO METODOLOGIA — Vídeo vertical + texto
   ========================================================================== */
.method-section { background: transparent; overflow: hidden; }

.method-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

/* Quando não há vídeo — texto centralizado */
.method-grid--text-only {
    max-width: 780px;
    margin: 0 auto;
}

/* Wrapper do vídeo */
.method-video-wrap {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
}

/* Frame do vídeo vertical */
.method-video-frame {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(204,255,0,0.25);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 30px 70px rgba(0,0,0,0.75),
        0 0 50px rgba(204,255,0,0.12);
    aspect-ratio: 9 / 16;
}

.method-video-frame video,
.method-video-frame iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    border-radius: 28px;
}

/* Badge ao vivo dentro do frame */
.method-live-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 7px 14px;
}

.method-live-badge span:last-child {
    font-size: 0.68rem;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Glow neon ao redor do vídeo */
.method-video-wrap::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(204,255,0,0.35), transparent 50%, rgba(204,255,0,0.15));
    z-index: -1;
    filter: blur(18px);
    opacity: 0.7;
    pointer-events: none;
}

/* Coluna de texto */
.method-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-cta {
    align-self: flex-start;
}

@media (max-width: 767px) {
    .method-cta {
        align-self: center;
    }
}

/* Cards de pontos */
.method-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.method-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 16px 18px;
    backdrop-filter: blur(20px);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.method-point:hover {
    border-color: rgba(204,255,0,0.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 16px rgba(204,255,0,0.05);
}

.method-point-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(204,255,0,0.1);
    border: 1px solid rgba(204,255,0,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neon-green);
    flex-shrink: 0;
}

.method-point-icon i { width: 18px; height: 18px; }

.method-point-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 3px;
}

.method-point-text span {
    font-size: 0.82rem;
    color: var(--color-text-body);
    line-height: 1.5;
}

/* Desktop: vídeo à esquerda, texto à direita */
@media (min-width: 768px) {
    .method-grid:not(.method-grid--text-only) {
        grid-template-columns: 340px 1fr;
        gap: 64px;
    }
    .method-video-wrap {
        max-width: 100%;
    }
}

/* ==========================================================================
   MOBILE — Correção de overflow e proporções de cards
   ========================================================================== */
@media (max-width: 767px) {

    /* Padding reduzido nos cards para não comprimir o conteúdo interno */
    .card-inner {
        padding: 24px 18px;
    }

    .demo-card {
        padding: 24px 18px 32px;
    }

    .demo-stats {
        gap: 0;
        justify-content: space-between;
        width: 100%;
    }

    .demo-stat {
        flex: 1;
        min-width: 0;
        padding: 0 4px;
    }

    .demo-stat-num   { font-size: 1.25rem; }
    .demo-stat-label { font-size: 0.62rem; }

    .tc-inner {
        padding: 24px 18px;
    }

    .pricing-inner {
        padding: 28px 18px;
    }

    .guarantee-inner {
        padding: 22px 18px;
        gap: 16px;
    }

    .special-live-card {
        padding: 22px 18px;
    }

    /* Profile credentials: 1 coluna em mobile para textos longos não transbordarem */
    .profile-credentials {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* Garante que o texto dentro dos itens de credencial não saia da célula */
    .cred-item {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Guarantee content: remove min-width que causa overflow no card pai */
    .guarantee-content {
        min-width: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* SLC content (special live card): remove min-width para caber no card */
    .slc-content {
        min-width: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Highlight testimonial content: remove min-width em mobile */
    .ht-content {
        min-width: 0;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Textos dos cards: quebra de palavra para não sair do card */
    .card-inner h3,
    .card-inner p,
    .demo-card h3,
    .demo-card p,
    .tc-text,
    .tc-name,
    .tc-result-badge {
        word-break: break-word;
        overflow-wrap: break-word;
    }

    /* Testimonial badge: evita que saia do card quando o texto é longo */
    .tc-result-badge {
        max-width: 100%;
        white-space: normal;
    }

    /* Demo chart overlay: stats menores para 4 items caberem em 2x2 */
    .dco-stat {
        min-width: 80px;
        padding: 10px 12px;
    }

    .dco-num {
        font-size: 1.4rem;
    }

    /* Schedule row: padding lateral reduzido em mobile */
    .schedule-row {
        padding: 14px 16px;
    }

    .schedule-header {
        padding: 14px 18px;
    }

    .schedule-note {
        padding: 12px 18px;
    }
}
