﻿/* LUCRE PÁSCOA — Compact & Elegant V3 */

:root {
    --brown-900: #1A0F0A;
    --brown-800: #2C1810;
    --brown-700: #3D2317;
    --brown-600: #4E2E1E;
    --gold-500: #D4A76A;
    --gold-400: #E0BC86;
    --gold-gradient: linear-gradient(135deg, #D4A76A, #F0D9A8, #D4A76A);
    --cream: #FFF8F0;
    --green: #4CAF50;
    --bg-primary: var(--brown-900);
    --bg-secondary: var(--brown-800);
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-muted: rgba(255, 255, 255, 0.45);
    --border-subtle: rgba(212, 167, 106, 0.12);
    --border-hover: rgba(212, 167, 106, 0.3);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --shadow-gold: 0 4px 30px rgba(212, 167, 106, 0.25);
    --shadow-gold-lg: 0 8px 50px rgba(212, 167, 106, 0.35);
    --t-fast: 0.2s cubic-bezier(.4, 0, .2, 1);
    --t-base: 0.3s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.gold {
    color: var(--gold-500);
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    background: rgba(212, 167, 106, 0.08);
    border: 1px solid rgba(212, 167, 106, 0.15);
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 1.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ANIMATIONS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 167, 106, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 167, 106, 0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: translateY(-4px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(4px);
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }

    20% {
        opacity: .7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-180px) scale(0);
    }
}

@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(255, 68, 68, 0);
    }
}

@keyframes glow {

    0%,
    100% {
        filter: drop-shadow(0 0 6px rgba(212, 167, 106, .2));
    }

    50% {
        filter: drop-shadow(0 0 16px rgba(212, 167, 106, .5));
    }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--t-base);
    background: transparent;
}

.header.scrolled {
    background: rgba(26, 15, 10, 0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.5rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 1001;
}

.logo-icon {
    font-size: 1.3rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
}

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(26, 15, 10, 0.98);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: right 0.4s ease;
    z-index: 1000;
    border-left: 1px solid var(--border-subtle);
}

.nav.open {
    right: 0;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--t-fast);
}

.nav-link:hover {
    color: var(--gold-500);
}

.nav-cta {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brown-900) !important;
    background: var(--gold-gradient);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold-500);
    border-radius: 2px;
    transition: var(--t-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 80px 0 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 15, 10, 0.35) 0%, rgba(26, 15, 10, 0.6) 30%, rgba(26, 15, 10, 0.88) 65%, var(--brown-900) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-400);
    background: rgba(212, 167, 106, 0.06);
    border: 1px solid rgba(212, 167, 106, 0.15);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.25rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #FF4444;
    border-radius: 50%;
    animation: pulse-badge 2s infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    animation: fadeInUp .7s ease .1s forwards;
    opacity: 0;
}

.highlight-pascoa {
    color: var(--gold-500);
    position: relative;
}

.highlight-pascoa::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    animation: fadeInUp .7s ease .2s forwards;
    opacity: 0;
}

.hero-subtitle strong {
    color: var(--gold-400);
}

.hero-ctas {
    margin-bottom: 1.75rem;
    animation: fadeInUp .7s ease .3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    animation: fadeInUp .7s ease .4s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-500);
}

.stat-star,
.stat-percent {
    font-size: 0.85rem;
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 26px;
    background: var(--border-subtle);
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.68rem;
    color: var(--text-muted);
    animation: fadeInUp .7s ease .5s forwards;
    opacity: 0;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    transition: all var(--t-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: var(--brown-900);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background-position: right center;
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.btn-lg {
    padding: 0.85rem 1.6rem;
    font-size: 0.82rem;
}

.btn-xl {
    padding: 1rem 1.8rem;
    font-size: 0.9rem;
    border-radius: var(--radius-lg);
}

/* FLOATING CTA */
.floating-cta {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
    display: none;
    align-items: center;
    gap: 0.4rem;
    background: var(--gold-gradient);
    background-size: 200% auto;
    color: var(--brown-900);
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold-lg);
    animation: pulse-gold 2s infinite;
}

.floating-cta.visible {
    display: inline-flex;
}

/* LIVE NOTIFICATION */
.live-notification {
    position: fixed;
    bottom: 70px;
    left: 16px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.6rem 0.9rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
    opacity: 0;
    pointer-events: none;
    transform: translateX(-80px);
    transition: all .4s ease;
}

.live-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.live-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-badge 2s infinite;
}

/* SOCIAL PROOF */
.social-proof {
    padding: 0.85rem 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.proof-avatars {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg-secondary);
    margin-left: -6px;
}

.avatar:first-child {
    margin-left: 0;
}

/* PAIN SECTION */
.pain-section { padding: 3rem 0; }
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.pain-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 1rem; transition: all var(--t-base); position: relative; }
.pain-card::before { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--gold-gradient); opacity: 0; transition: opacity var(--t-base); border-radius: 2px 0 0 2px; }
.pain-card:hover { border-color: var(--border-hover); }
.pain-card:hover::before { opacity: 1; }
.pain-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pain-card h3 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--cream); }
.pain-card p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }

/* BENEFITS */
.benefits-section { padding: 3rem 0; background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 1.25rem; text-align: center; transition: all var(--t-base); }
.benefit-card:hover { border-color: var(--border-hover); transform: translateY(-3px); box-shadow: 0 4px 20px rgba(0,0,0,.3); }
.benefit-icon-wrapper { width: 48px; height: 48px; margin: 0 auto 0.6rem; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); background: rgba(212,167,106,0.06); border: 1px solid rgba(212,167,106,0.1); transition: all var(--t-base); }
.benefit-card:hover .benefit-icon-wrapper { background: rgba(212,167,106,0.12); transform: scale(1.08); }
.benefit-icon { font-size: 1.4rem; }
.benefit-card h3 { font-family: var(--font-display); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.benefit-card p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; }

/* MENTOR */
.mentor-section { padding: 3rem 0; }
.mentor-card { background: linear-gradient(145deg, rgba(212,167,106,0.04), rgba(212,167,106,0.01)); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); padding: 1.5rem; }
.mentor-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.mentor-image-wrapper { flex-shrink: 0; text-align: center; }
.mentor-image-placeholder { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(145deg, var(--brown-700), var(--brown-600)); border: 2px solid var(--gold-500); display: flex; align-items: center; justify-content: center; animation: glow 3s ease-in-out infinite; }
.mentor-initials { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--gold-500); }
.mentor-badge-verified { display: inline-flex; align-items: center; gap: 0.2rem; font-size: 0.6rem; font-weight: 600; color: var(--gold-400); margin-top: 0.4rem; }
.mentor-info { flex: 1; }
.mentor-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; margin-bottom: 0.1rem; }
.mentor-title { font-size: 0.72rem; color: var(--gold-400); font-weight: 500; margin-bottom: 0.75rem; }
.mentor-achievements { display: flex; gap: 0.75rem; }
.achievement { text-align: center; }
.achievement-number { display: block; font-family: var(--font-display); font-size: 0.9rem; font-weight: 800; color: var(--gold-500); }
.achievement-text { font-size: 0.6rem; color: var(--text-muted); }
.mentor-bio { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; }
.mentor-bio strong { color: var(--text-primary); }

/* MODULES — COMPACT LIST */
.modules-section { padding: 3rem 0; background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary)); }
.modules-compact { display: flex; flex-direction: column; gap: 0.5rem; }
.module-item { display: flex; align-items: center; gap: 0.85rem; background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); padding: 0.85rem 1rem; transition: all var(--t-base); }
.module-item:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }
.module-num { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; color: var(--gold-500); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--gold-500); border-radius: 50%; flex-shrink: 0; }
.module-item h3 { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.1rem; }
.module-meta { font-size: 0.7rem; color: var(--text-muted); }
.modules-summary { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.25rem; font-size: 0.78rem; color: var(--text-secondary); padding: 0.75rem; background: rgba(212,167,106,0.04); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); }
.modules-summary strong { color: var(--gold-500); }
.dot-sep { color: var(--text-muted); }

/* BONUS — COMPACT HORIZONTAL */
.bonus-section { padding: 3rem 0; background: var(--bg-secondary); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.bonus-card { display: flex; align-items: center; gap: 0.75rem; background: rgba(212,167,106,0.04); border: 1px solid rgba(212,167,106,0.15); border-radius: var(--radius-md); padding: 0.85rem; transition: all var(--t-base); }
.bonus-card:hover { border-color: var(--gold-500); }
.bonus-icon { font-size: 1.5rem; flex-shrink: 0; }
.bonus-card h3 { font-size: 0.78rem; font-weight: 600; margin-bottom: 0.1rem; }
.bonus-val { font-size: 0.65rem; color: var(--text-muted); text-decoration: line-through; }

/* TESTIMONIALS */
.testimonials-section { padding: 3rem 0; }
.testimonials-carousel { display: flex; gap: 0.75rem; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 0.5rem; }
.testimonials-carousel::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 calc(100% - 1.5rem); scroll-snap-align: start; background: linear-gradient(145deg, rgba(212,167,106,0.04), var(--bg-card)); border: 1px solid var(--border-subtle); border-radius: var(--radius-lg); padding: 1.25rem; }
.testimonial-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.testimonial-stars { color: var(--gold-500); font-size: 0.82rem; letter-spacing: 2px; }
.testimonial-verified { display: inline-flex; align-items: center; gap: 3px; font-size: 0.62rem; font-weight: 600; color: var(--green); background: rgba(76,175,80,0.08); padding: 0.15rem 0.45rem; border-radius: var(--radius-full); }
.testimonial-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.6rem; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: white; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: 0.82rem; margin-bottom: 1px; }
.testimonial-author span { font-size: 0.68rem; color: var(--gold-400); }
.carousel-dots { display: flex; justify-content: center; gap: 0.4rem; margin-top: 1rem; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(212,167,106,0.15); border: none; cursor: pointer; transition: all var(--t-fast); padding: 0; }
.carousel-dot.active { background: var(--gold-500); width: 20px; border-radius: var(--radius-full); }

/* PRICING */
.pricing-section { padding: 3rem 0; background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 50%, var(--bg-secondary) 100%); }
.pricing-card { background: linear-gradient(145deg, rgba(212,167,106,0.06), rgba(212,167,106,0.01)); border: 2px solid rgba(212,167,106,0.25); border-radius: var(--radius-xl); padding: 2rem 1.25rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.pricing-ribbon { position: absolute; top: 0; left: 0; right: 0; background: var(--gold-gradient); color: var(--brown-900); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em; padding: 0.35rem; }
.pricing-header { margin-top: 1rem; margin-bottom: 1.25rem; }
.pricing-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 0.2rem; }
.pricing-header p { font-size: 0.78rem; color: var(--text-secondary); }
.pricing-includes { text-align: left; margin-bottom: 1.25rem; }
.include-item { display: flex; align-items: center; gap: 0.6rem; padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.03); font-size: 0.82rem; color: var(--text-secondary); }
.include-item svg { flex-shrink: 0; }
.bonus-tag { font-size: 0.56rem; font-weight: 800; color: var(--gold-500); background: rgba(212,167,106,0.08); padding: 0.1rem 0.35rem; border-radius: var(--radius-sm); margin-left: 0.2rem; letter-spacing: 0.04em; }
.pricing-price { margin-bottom: 1.25rem; padding: 1rem 0; }
.price-original { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.price-original s { color: #FF6B6B; }
.price-current { display: flex; align-items: flex-start; justify-content: center; gap: 2px; line-height: 1; }
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--gold-500); margin-top: 6px; }
.price-value { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: var(--gold-500); }
.price-cents { font-size: 1.1rem; font-weight: 700; color: var(--gold-500); margin-top: 6px; }
.price-installment { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.4rem; }
.price-installment strong { color: var(--text-primary); }
.price-savings { font-size: 0.75rem; font-weight: 700; color: var(--green); margin-top: 0.4rem; background: rgba(76,175,80,0.06); display: inline-block; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); }
.pricing-btn { width: 100%; margin-bottom: 0.75rem; }
.pricing-secure { display: flex; align-items: center; justify-content: center; gap: 0.4rem; font-size: 0.68rem; color: var(--text-muted); margin-bottom: 1rem; }
.pricing-countdown { background: rgba(0,0,0,0.25); border-radius: var(--radius-md); padding: 1rem; margin-bottom: 1rem; }
.pricing-countdown p { font-size: 0.72rem; color: var(--gold-400); font-weight: 600; margin-bottom: 0.6rem; }
.countdown-timer { display: flex; align-items: center; justify-content: center; gap: 0.4rem; }
.countdown-block { text-align: center; }
.countdown-number { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--gold-500); background: rgba(212,167,106,0.06); border: 1px solid rgba(212,167,106,0.15); border-radius: var(--radius-sm); padding: 0.2rem 0.5rem; min-width: 50px; }
.countdown-label { font-size: 0.58rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; display: block; }
.countdown-separator { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; color: var(--gold-500); margin-bottom: 14px; }

/* GUARANTEE INSIDE PRICING */
.pricing-guarantee { display: flex; align-items: center; gap: 0.75rem; text-align: left; padding: 1rem; background: rgba(212,167,106,0.04); border: 1px solid rgba(212,167,106,0.12); border-radius: var(--radius-md); }
.pricing-guarantee strong { display: block; font-size: 0.82rem; color: var(--gold-400); margin-bottom: 0.1rem; }
.pricing-guarantee span { font-size: 0.72rem; color: var(--text-muted); }
.pricing-guarantee svg { flex-shrink: 0; animation: glow 3s ease-in-out infinite; }

/* FAQ */
.faq-section { padding: 3rem 0; }
.faq-list { display: flex; flex-direction: column; gap: 0.4rem; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; transition: all var(--t-base); }
.faq-item.active { border-color: var(--border-hover); background: rgba(212,167,106,0.02); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; padding: 0.85rem 1rem; font-size: 0.82rem; font-weight: 600; text-align: left; transition: color var(--t-fast); }
.faq-question:hover { color: var(--gold-400); }
.faq-icon { flex-shrink: 0; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(212,167,106,0.08); transition: all var(--t-base); }
.faq-item.active .faq-icon { transform: rotate(45deg); background: rgba(212,167,106,0.15); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1rem 0.85rem; font-size: 0.8rem; color: var(--text-secondary); line-height: 1.6; }

/* FOOTER */
.footer { padding: 1.5rem 0; background: var(--bg-primary); border-top: 1px solid var(--border-subtle); text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-bottom: 1rem; }
.footer-trust-seals { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; padding: 0.75rem 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); }
.trust-seal { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.trust-seal span { font-size: 0.6rem; color: var(--text-muted); }
.footer-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.75rem; }
.footer-links a { font-size: 0.72rem; color: var(--text-muted); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--gold-400); }
.footer-copy { font-size: 0.68rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-disclaimer { font-size: 0.6rem; color: rgba(255,255,255,0.25); line-height: 1.4; max-width: 380px; margin: 0 auto; }

/* RESPONSIVE */
@media (min-width: 768px) {
    .container { max-width: 660px; }
    .hero-title { font-size: 2.6rem; }
    .section-title { font-size: 1.8rem; }
    .pain-grid, .benefits-grid { grid-template-columns: repeat(4, 1fr); }
    .bonus-grid { grid-template-columns: repeat(4, 1fr); }
    .hamburger { display: none; }
    .nav { position: static; width: auto; height: auto; background: transparent; flex-direction: row; gap: 1.25rem; border: none; backdrop-filter: none; }
    .nav-link { font-size: 0.82rem; }
    .testimonial-card { flex: 0 0 calc(50% - 0.5rem); }
}

/* UTILITY */
::selection { background: rgba(212,167,106,0.3); color: var(--text-primary); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; } }
