:root {
    /* === CLASSIC PREMIUM PALETTE === */
    --primary-color: #1A365D;
    /* Deep Navy Blue */
    --primary-dark: #0D1B2A;
    /* Darker Navy */
    --accent-color: #10B981;
    /* Emerald Green */

    --text-color: #4A5568;
    /* Slate Grey */
    --text-heading: #1A365D;
    /* Navy for Headlines */

    --bg-body: #FEFEFE;
    /* Pure White */
    --bg-section-alt: #F7FAFC;
    /* Cool Grey Tint */
    --bg-dark-theme: #1A365D;
    /* Navy for Dark Sections */

    /* Emerald Green CTAs */
    --cta-color: #10B981;
    /* Emerald */
    --cta-gradient: linear-gradient(145deg, #10B981, #059669);
    --cta-shadow: #065f46;
    --cta-hover: #059669;

    --pain-color: #DC2626;
    /* Bright Red for Pain */
    --pleasure-color: #10B981;
    /* Emerald for Pleasure */

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: blur(12px);

    --shadow-soft: 0 10px 40px rgba(26, 54, 93, 0.08);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.06);

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --border-radius: 16px;
}

/* Interactive Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(180deg, #FEFEFE 0%, #F7FAFC 100%);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 15px;
    /* Added side padding */
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    line-height: 1.25;
    margin-bottom: 0.6em;
    font-weight: 800;
    /* Stronger Titles */
    letter-spacing: -0.5px;
}

section,
header {
    position: relative;
    padding: 100px 0;
    /* Balanced breathing room */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
        transform: scale(1);
    }
}

/* Bible Verse Style */
.bible-verse {
    margin-bottom: 25px;
    display: inline-block;
}

.verse-ref {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    color: #10B981;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.verse-text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    color: #1A365D;
    opacity: 0.8;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-up {
    animation: fadeIn 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* Hero Section - Desktop Side-by-Side */
.hero-section {
    text-align: center;
    background: radial-gradient(circle at top right, #fffdf5 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    overflow: visible;
}

@media (min-width: 992px) {
    .container.hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        /* Text larger than video (smaller video) */
        gap: 60px;
        align-items: center;
        text-align: left;
    }

    .hero-text-content {
        padding-right: 20px;
    }

    .subheadline {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        font-size: 1.25rem;
    }

    .headline {
        font-size: 3.5rem;
        /* Larger on desktop */
    }

    /* Smaller Video on Desktop */
    .vsl-container {
        margin: 0;
        /* Reset margin */
        max-width: 320px;
        /* Force smaller width */
        margin-left: auto;
        /* Push to right */
    }
}

.headline {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.subheadline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.vsl-container {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    /* Deep Shadow */
    background: #000;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.vsl-placeholder {
    color: #fff;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, #111, #222);
    /* Subtle texture */
    cursor: pointer;
    transition: background 0.3s;
}

.vsl-placeholder:hover {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.play-button {
    font-size: 4rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2) !important;
}

/* 3D Button Transformation */
.cta-button {
    display: inline-block;
    width: 100%;
    background: var(--cta-gradient);
    color: #fff;
    padding: 24px 35px;
    text-decoration: none;
    border-radius: 12px;
    /* Smoother corner for 3D feel */
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 8px 0 var(--cta-shadow), 0 15px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transform: translateY(-4px);
    position: relative;
    overflow: hidden;
    /* For Ripple */
}

.cta-button:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 0 var(--cta-shadow), 0 20px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 var(--cta-shadow), 0 5px 10px rgba(0, 0, 0, 0.2);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50%;
    animation: ripple-animation 0.4s ease-out;
}

@keyframes ripple-animation {
    from {
        width: 0;
        height: 0;
        opacity: 0.5;
    }

    to {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

/* Reading Progress Bar Premium */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #10B981, #34D399);
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
    border-radius: 0 2px 2px 0;
}

/* Parallax Image Enhancement */
.parallax-img {
    transition: transform 0.1s ease-out;
}

.cta-button.pulse,
.cta-button.big-pulse {
    animation: pulse 2s infinite;
}

/* Social Proof - Alternating Background */
.social-proof-section {
    background-color: var(--bg-section-alt);
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 1.8rem;
    color: var(--text-heading);
}

.reviews-stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    /* Hug content */
}

.stars-gold {
    color: #F1C40F;
    letter-spacing: 3px;
    font-size: 1.3rem;
}

.rating-number {
    font-weight: 800;
    font-size: 2rem;
    color: var(--text-heading);
    line-height: 1;
}

.rating-count {
    color: #95a5a6;
    font-size: 0.85rem;
    margin-top: 5px;
}

.satisfaction-badge {
    background: #F0F7FF;
    /* Very light blue bg */
    padding: 10px 20px;
    border-radius: 15px;
    box-shadow: none;
    /* Removed shadow for flat feel inside container */
    border: 1px solid #E1E8EE;
}

.satisfaction-percent {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2980B9;
}

.satisfaction-label {
    font-size: 0.75rem;
    color: #576574;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.profile-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-heading);
}

.card-stars {
    color: #F1C40F;
    font-size: 0.9rem;
    margin-top: 4px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

.social-verification {
    text-align: center;
    color: var(--cta-color);
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Objection & Solution - Dark Themed Section */
.objection-section {
    background: var(--bg-dark-theme);
    /* Dark Background */
    padding: 100px 0;
    color: #fff;
    position: relative;
}

.objection-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(60, 60, 60, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.objection-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.objection-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #D4AF37;
    /* Gold Title on Dark */
}

.enemy-text {
    font-size: 1.2rem;
    color: #ccc;
    /* Light text */
    max-width: 600px;
    margin: 0 auto 50px;
}

.method-visual {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 25px;
    overflow: hidden;
    /* Prevent image bleed */
    box-shadow: 0 0 50px rgba(241, 196, 15, 0.2);
    /* Dazzling gold glow */
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    aspect-ratio: 16 / 8;
    /* Mantém uma proporção elegante */
    justify-content: center;
    cursor: pointer;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Aura Pulsante no Fundo */
.method-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: auraPulse 4s ease-in-out infinite;
    pointer-events: none;
}

/* Brilho "Laser" (Shimmer) Passante */
.method-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-25deg);
    transition: none;
    animation: shimmerScan 6s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes auraPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes shimmerScan {
    0% {
        left: -150%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.method-image {
    width: 100%;
    height: 120%;
    display: block;
    object-fit: cover;
    transition: none;
    transform: scale(1.15);
}

.method-visual:hover .method-image {
    transform: scale(1.05);
    /* Premium zoom effect */
}

.secret-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.secret-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.secret-card:hover,
.secret-card:active {
    transform: translateY(-10px) rotateX(5deg) !important;
    /* 3D tilt effect */
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.secret-icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #D4AF37;
    /* Gold Icon */
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.secret-icon-circle.blue {
    background: rgba(0, 0, 0, 0.3);
    /* Override the old blue */
}

.secret-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
    /* White title */
}

.secret-desc {
    font-size: 0.95rem;
    color: #ccc;
    /* Light desc */
    line-height: 1.5;
}

/* Comparison Section - Alternating */
.comparison-section {
    background-color: var(--bg-section-alt);
    /* Light Grey */
}

/* Icons improvement */
.comparison-col.pain li::before {
    content: '✖';
    /* Stronger X */
    color: var(--pain-color);
    font-weight: 800;
    position: absolute;
    left: 0;
    font-size: 1rem;
    top: 2px;
}

.comparison-col.pleasure li::before {
    content: '✔';
    /* Stronger Check */
    color: var(--cta-color);
    font-weight: 800;
    position: absolute;
    left: 0;
    font-size: 1rem;
    top: 2px;
}

/* Bonuses */
.bonus-section {
    background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
    color: #fff;
    padding: 80px 0;
}

.bonus-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
}

.bonus-list {
    display: grid;
    gap: 20px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphish */
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.bonus-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.bonus-item h3 {
    color: #fff;
    font-size: 1.2rem;
}

.bonus-item .value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* How it Works - Card Grid Reference Style */
.how-it-works-section {
    background-color: #f7f9fc;
    text-align: center;
}

.how-it-works-header {
    margin-bottom: 50px;
}

.how-it-works-header .subtitle {
    color: #718096;
    margin-top: -10px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.work-card {
    background: #fff;
    padding: 50px 30px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #3B82F6;
    /* Primary blue from reference */
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.work-icon-box {
    background: #eff6ff;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.work-card h4 {
    font-size: 1.15rem;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.work-card p {
    font-size: 0.95rem;
    color: #718096;
    line-height: 1.5;
}

/* Final Anchor Section - Reference Style */
.final-anchor-section {
    position: relative;
    padding: 100px 0;
    background-color: #f8fbff;
    text-align: center;
}

.final-anchor-section .dotted-bg {
    background-image: radial-gradient(#cbd5e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.4;
}

.anchor-header h2 {
    font-size: 2.2rem;
    color: var(--text-heading);
    margin-bottom: 5px;
}

.anchor-header .subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 40px;
}

.blue-text {
    color: #3B82F6;
    font-weight: 700;
}

.anchor-banner {
    max-width: 600px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.anchor-img {
    width: 100%;
    display: block;
}

.checkout-card {
    background: #fff;
    border-radius: 24px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.ribbon {
    position: absolute;
    top: 25px;
    right: -35px;
    background: #10B981;
    /* Green from reference */
    color: #fff;
    padding: 8px 45px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(45deg);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.checkout-content {
    padding: 40px 30px;
}

.checkout-content h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.checkout-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.checkout-pricing .old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 1.1rem;
}

.checkout-pricing .new {
    font-size: 3rem;
    font-weight: 900;
    color: #3B82F6;
    /* Blue price from reference */
}

.savings-text {
    color: #10B981;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.checkout-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.checkout-list li {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.checkout-list li .check {
    color: #10B981;
    font-weight: bold;
    margin-right: 12px;
}

.checkout-list li .item-name {
    flex-grow: 1;
    color: #475569;
}

.checkout-list li .item-value {
    color: #94a3b8;
    font-size: 0.8rem;
    text-decoration: line-through;
}

.checkout-security-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.8rem;
    color: #94a3b8;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

/* New Guarantee Box Style - Reference */
.guarantee-box-clean {
    margin: 40px auto 0;
    max-width: 500px;
    background: #ecfdf5;
    /* Emerald-50 */
    padding: 30px 20px;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #10B981;
}

.guarantee-box-clean h4 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    font-weight: 800;
}

.guarantee-box-clean p {
    font-size: 0.9rem;
    color: #475569;
    max-width: 350px;
    margin: 0;
}

/* success-stories-section - Reference Style */
.success-stories-section {
    background-color: #f8fbff;
    text-align: center;
}

.success-stories-section .section-header {
    margin-bottom: 50px;
}

.success-stories-section .subtitle {
    color: #718096;
    margin-top: -10px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.story-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.card-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3B82F6;
    /* Color from reference */
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-heading);
}

.user-badge {
    font-size: 0.85rem;
    color: #3B82F6;
    font-weight: 700;
}

.story-text {
    font-size: 0.95rem;
    color: #4A5568;
    line-height: 1.6;
    font-style: italic;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    /* Prevent stacking */
    max-width: 500px;
    margin: 0 auto;
}

.stat-item {
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    flex: 1;
    /* Equal width */
    min-width: 0;
    /* Box-sizing safety */
}

@media (max-width: 480px) {
    .stats-row {
        gap: 10px;
    }

    .stat-item {
        padding: 12px 10px;
        gap: 8px;
    }

    .stat-icon {
        font-size: 1.4rem;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }
}

.stat-icon {
    font-size: 1.8rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #718096;
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 0;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2C3E50;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: #666;
    font-size: 0.95rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item.active .faq-question::after {
    content: '-';
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    font-size: 0.85rem;
    color: #95a5a6;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

/* Media Queries */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .headline {
        font-size: 3rem;
    }

    .comparison-grid,
    .bonus-list,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .comparison-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== DYNAMIC ELEMENTS ===== */

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--cta-gradient);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
}

/* Countdown Banner - Normal Flow (Doesn't follow scroll) */
.countdown-banner {
    position: relative;
    top: 0;
    /* Aligned to the top */
    z-index: 100;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #1A365D 0%, #0D1B2A 100%);
    /* Navy Gradient */
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 2px 10px rgba(26, 54, 93, 0.3);
    animation: countdownPulse 2s infinite;
}

@keyframes countdownPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.countdown-icon {
    font-size: 1.2rem;
}

.countdown-text strong {
    font-size: 1.1rem;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}



/* Hero Aurora Background Animation */
.hero-section {
    overflow: hidden;
    position: relative;
}

.hero-bg-animation {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(26, 54, 93, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(26, 54, 93, 0.04) 0%, transparent 50%);
    animation: auroraMove 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes auroraMove {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(2%, 2%) rotate(1deg);
    }

    50% {
        transform: translate(-1%, 3%) rotate(-1deg);
    }

    75% {
        transform: translate(3%, -1%) rotate(0.5deg);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Adjust body padding for elements */
body {
    padding-top: 0;
    /* Reset since we're using absolute or normal flow */
}

/* Enhanced hover effects */
.testimonial-card,
.secret-card,
.bonus-item,
.step,
.comparison-col {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Icon pulse animation for secret cards */
.secret-icon-circle {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Glow effect on CTA hover */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Mobile adjustments for fixed elements */
@media (max-width: 480px) {
    .countdown-banner {
        font-size: 0.8rem;
        padding: 8px 10px;
    }


}

/* ===== CTA CARD STYLE (Etapa 2 Reference) ===== */
.cta-section-card-style {
    position: relative;
    padding: 80px 0;
    background-color: #f8fbff;
    /* Very light blue tint base */
    overflow: hidden;
    text-align: center;
}

.dotted-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(#cbd5e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.cta-section-card-style .container {
    position: relative;
    z-index: 1;
}

.offer-card-clean {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.limited-badge-pill {
    background: #ecfdf5;
    /* Light green/mint tint */
    color: var(--cta-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 25px;
    border: 1px solid rgba(16, 128, 67, 0.1);
    display: inline-block;
}

.card-old-price {
    font-size: 0.95rem;
    color: #95a5a6;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.card-price-display {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cta-color);
    /* Matching our green theme instead of blue for consistency */
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.card-price-display .currency {
    font-size: 1.5rem;
    vertical-align: super;
    font-weight: 700;
    margin-right: 2px;
}

.card-savings {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 700;
    background: #fffdf0;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
}

.card-security-footer {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: #7f8c8d;
}

.sec-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== BONUS SECTION V2 (Reference Style) ===== */
.bonus-section-v2 {
    background-color: var(--bg-section-alt);
    text-align: center;
}

.bonus-card-unified {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    max-width: 500px;
    /* Slightly wider to fit items */
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Unified card shadow */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.bonus-header h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bonus-banner-container {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    /* Aspect ratio 18:6 approx 3:1 */
    aspect-ratio: 18/6;
    background: #eee;
}

.bonus-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mini-bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.mini-bonus-item {
    background: #F0FDF4;
    /* Emerald-50 tint */
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    transition: transform 0.2s;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.mini-bonus-item:hover {
    transform: translateY(-2px);
    background: #ECFDF5;
    /* Emerald-100 */
}

.mini-icon {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    /* Emerald gradient */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #059669;
    /* Emerald-600 */
}

.mini-info {
    display: flex;
    flex-direction: column;
}

.mini-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2C3E50;
    line-height: 1.2;
}

.mini-desc {
    font-size: 0.75rem;
    color: #7f8c8d;
}

.bonus-price-reinforce {
    font-size: 1rem;
    color: #7f8c8d;
    margin-top: 10px;
    margin-bottom: 10px;
}

.highlight-price {
    font-weight: 900;
    color: var(--cta-color);
    font-size: 1.2rem;
}

/* ===== COMPARISON SECTION V2 (Problem/Solution Layout) ===== */
.comparison-section-v2 {
    position: relative;
    background-color: #FEFEFE;
    overflow: hidden;
    text-align: center;
}

.comparison-section-v2 .dotted-bg {
    background-image: radial-gradient(#E2E8F0 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.6;
}

.comparison-header h2 {
    font-size: 1.8rem;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.comparison-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 30px;
}

.comparison-subtitle strong {
    color: var(--text-heading);
}

/* Problem Grid 2x2 */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.problem-card {
    background: #FFF5F5;
    /* Light Red/Pink Tint */
    padding: 20px 15px;
    border-radius: 16px;
    text-align: left;
    border: 1px solid rgba(220, 38, 38, 0.1);
    transition: transform 0.2s;
}

.problem-card:hover {
    transform: translateY(-2px);
}

.problem-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.problem-icon.red {
    background: #FEE2E2;
    /* Red-100 */
    color: #DC2626;
}

.problem-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.problem-card p {
    font-size: 0.8rem;
    color: #9CA3AF;
    margin: 0;
}

/* Solution Bar */
.solution-bar {
    background: #F0FDF4;
    /* Emerald-50 */
    border-radius: 16px;
    padding: 25px 20px;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.solution-bar h3 {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 20px;
}

.solution-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.solution-item lottie-player {
    flex-shrink: 0;
}

.check-green {
    width: 24px;
    height: 24px;
    background: #10B981;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.solution-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.solution-text strong {
    font-size: 0.9rem;
    color: var(--text-heading);
}

.solution-text span {
    font-size: 0.7rem;
    color: #9CA3AF;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .solution-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
    }

    .solution-item {
        width: 100%;
        justify-content: flex-start;
    }
}