/* =========================================================================
   VARIABLES & RESET
========================================================================== */
:root {
    --bg-color: #120512;
    --text-color: #e0e0f5;
    --neon-cyan: #fdf500;
    --neon-purple: #ff007f;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gold: #ff5e00;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(253, 245, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(255, 0, 127, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================================================
   UTILITIES
========================================================================== */
.container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(253, 245, 0, 0.3);
}

.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(253, 245, 0, 0.6);
}

.text-neon {
    color: var(--neon-cyan);
}

.line-through {
    text-decoration: line-through;
    opacity: 0.5;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition-slow);
}

.glass-card:hover {
    transform: translateY(-5px) rotate(1deg) scale(1.02);
    box-shadow: 0 15px 40px rgba(253, 245, 0, 0.15);
    border-color: rgba(253, 245, 0, 0.2);
}

/* Glowing Border */
.glowing-border {
    position: relative;
}
.glowing-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-purple));
    z-index: -1;
    opacity: 0.5;
    filter: blur(8px);
    transition: var(--transition-fast);
}
.glowing-border:hover::before {
    opacity: 1;
    filter: blur(12px);
}

/* Glowing Button */
.glowing-btn {
    font-style: italic;
    transform: skewX(-10deg);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #ff007f 0%, #ff5e00 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.5);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.glowing-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.glowing-btn:hover {
    transform: scale(1.05) skewX(-10deg);
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.8);
}

/* Animations Scroll Reveal */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================================
   HEADER / URGENCY
========================================================================== */
.urgency-banner {
    background: rgba(255, 0, 127, 0.1);
    border-bottom: 1px solid rgba(255, 0, 127, 0.3);
    text-align: center;
    padding: 10px 0;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.urgency-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0%, 100% { opacity: 0.8; text-shadow: 0 0 5px var(--neon-cyan); }
    50% { opacity: 1; text-shadow: 0 0 20px var(--neon-cyan); }
}

/* =========================================================================
   HERO
========================================================================== */
.hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(253, 245, 0, 0.1) 0%, transparent 60%);
    z-index: -1;
}

.hero-title {
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -1px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
}
.number-500 {
    color: var(--neon-cyan);
    position: relative;
    display: inline-block;
}
.bonus-text {
    color: var(--gold);
    display: block;
    font-size: 1.5rem;
    margin-top: 10px;
    text-shadow: 0 0 15px rgba(255, 94, 0, 0.5);
}
.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #b0b0d0;
    font-weight: 300;
}
.hero-subtitle strong {
    color: #fff;
    font-weight: 600;
}
.video-wrapper {
    max-width: 800px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    padding: 10px;
    background: rgba(255,255,255,0.02);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 20px 50px rgba(0,0,0,0.5);
    position: relative;
}
.video-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--neon-cyan), transparent, var(--neon-purple));
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
}

/* =========================================================================
   GRID SECTIONS (What You Get, Exclusives)
========================================================================== */
.what-you-get, .exclusive-benefits, .bonus-section {
    padding: 80px 0;
}

.benefits-grid, .exclusive-grid, .bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.icon-wrap, .bonus-image-placeholder {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: rgba(253, 245, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(253, 245, 0, 0.3);
    color: var(--neon-cyan);
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(253, 245, 0, 0.2);
    transition: var(--transition-fast);
}

.glass-card:hover .icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: var(--neon-cyan);
    color: #000;
    box-shadow: 0 0 25px var(--neon-cyan);
}

.benefit-card h3, .exclusive-card h3, .bonus-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
}
.benefit-card p, .exclusive-card p, .bonus-card p {
    font-size: 0.95rem;
    color: #a0a0c0;
}

/* =========================================================================
   BONUS SECTION
========================================================================== */
.bonus-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.bonus-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bonus-image {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 15px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.bonus-image-placeholder {
    width: 80px; height: 80px;
    font-size: 2rem;
    border-radius: 20px;
    background: rgba(255, 94, 0, 0.1);
    border-color: rgba(255, 94, 0, 0.3);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(255, 94, 0, 0.2);
}
.glass-card:hover .bonus-image-placeholder {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 25px var(--gold);
}
.bonus-value {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.total-bonus {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.8rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}
.free {
    font-weight: 800;
}

/* =========================================================================
   PRICING PLANS
========================================================================== */
.pricing-plans {
    padding: 80px 0;
    position: relative;
}
.plans-timer {
    text-align: center;
    margin-bottom: 40px;
}
.timer-text {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
}
.countdown-plans {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.time-unit {
    padding: 15px 25px;
    text-align: center;
    min-width: 90px;
}
.time-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px var(--neon-cyan);
}
.time-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #8888b0;
    letter-spacing: 1px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
}
.plan-header h3 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #fff;
}
.price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.old-price {
    display: block;
    text-decoration: line-through;
    color: #8888b0;
    font-size: 1.2rem;
}
.new-price {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.new-price small { font-size: 1.5rem; }
.neon-price {
    color: var(--neon-cyan);
    text-shadow: 0 0 20px rgba(253, 245, 0, 0.4);
}
.period {
    display: block;
    font-size: 0.9rem;
    color: #a0a0c0;
    margin-bottom: 10px;
}
.savings-amount {
    display: inline-block;
    background: rgba(0, 255, 100, 0.1);
    color: #fdf500;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.highlight-savings {
    background: rgba(253, 245, 0, 0.1);
    color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(253, 245, 0, 0.2);
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}
.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #d0d0e0;
}
.plan-features li i {
    color: #fdf500;
    font-size: 0.9rem;
}
.plan-features li.no-benefit {
    opacity: 0.5;
}
.plan-features li.no-benefit i {
    color: #ff3366;
}
.plan-features li.gold-item {
    font-weight: 700;
    color: var(--gold);
}
.plan-features li.gold-item i { color: var(--gold); }
.plan-features li.bonus-item { color: #fff; }
.plan-features li.bonus-item i { color: var(--neon-cyan); }

.plan-button {
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition-fast);
}
.basic-button {
    border: 1px solid var(--glass-border);
    color: #fff;
    background: rgba(255,255,255,0.05);
}
.basic-button:hover {
    background: rgba(255,255,255,0.1);
}

.popular-badge {
    position: absolute;
    top: -15px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff007f, #fdf500);
    color: #fff;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
}
.premium-social-proof {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
}

/* =========================================================================
   TESTIMONIALS
========================================================================== */
.testimonials { padding: 80px 0; }
.whatsapp-carousel-container {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 0 30px 0;
}
.whatsapp-carousel {
    display: flex;
    align-items: center;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-left: calc(50% - clamp(100px, 32.5%, 130px));
    padding-right: calc(50% - clamp(100px, 32.5%, 130px));
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.whatsapp-carousel::-webkit-scrollbar {
    display: none;
}
.whatsapp-slide {
    flex: 0 0 clamp(200px, 65%, 260px);
    width: clamp(200px, 65%, 260px);
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    scroll-snap-align: center;
    object-fit: contain;
    background: var(--glass-bg);
    cursor: pointer;
}

/* =========================================================================
   ABOUT AUTHOR
========================================================================== */
.about-author { padding: 80px 0; }
.author-container {
    background: radial-gradient(circle at right, rgba(255, 0, 127, 0.1) 0%, var(--glass-bg) 100%);
}
.author-content {
    display: flex;
    align-items: center;
    gap: 50px;
}
.author-info { flex: 1; }
.author-info h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
.author-info h3 { font-size: 2.5rem; color: #fff; margin-bottom: 5px; }
.author-title { color: var(--neon-cyan); font-weight: 500; margin-bottom: 2rem; }
.author-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}
.stat {
    padding: 15px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
}
.stat strong {
    display: block;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 800;
}
.stat span {
    font-size: 0.8rem;
    color: #a0a0c0;
}
.author-info p { color: #d0d0e0; font-style: italic; }
.author-image-placeholder {
    width: 300px; height: 300px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 8rem; color: rgba(255,255,255,0.1);
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.1);
}

/* Mobile responsive adjustments relocated to bottom of file */

/* =========================================================================
   FAQ
========================================================================== */
.faq { padding: 80px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
}
.faq-question i {
    transition: transform 0.3s;
    color: var(--neon-cyan);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s;
    color: #a0a0c0;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}

/* =========================================================================
   GUARANTEE
========================================================================== */
.guarantee { padding: 40px 0 100px; }
.guarantee-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
}
.guarantee-badge {
    width: 80px; height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--neon-cyan), #ff5e00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(253, 245, 0, 0.4);
}
.guarantee-badge i { font-size: 2rem; color: #fff; position: absolute; opacity: 0.3; }
.badge-text { position: relative; z-index: 1; display: flex; flex-direction: column; line-height: 1; }
.badge-number { font-size: 1.8rem; font-weight: 800; color: #fff; }
.badge-label { font-size: 0.6rem; color: #fff; font-weight: 700; letter-spacing: 1px; }

.guarantee h2 { margin-bottom: 1rem; color: #fff; }
.guarantee p { margin-bottom: 2rem; color: #a0a0c0; }

/* =========================================================================
   FOOTER
========================================================================== */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #606080;
    background: rgba(0,0,0,0.5);
}

/* =========================================================================
   NOTIFICATIONS
========================================================================== */
.notification-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.notification {
    background: rgba(20, 20, 35, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 245, 0, 0.2);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
}
.notification.show {
    transform: translateX(0);
    opacity: 1;
}
.notification-icon {
    width: 30px; height: 30px;
    background: #fdf500;
    color: #000;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}
.notification-name { color: #fff; font-weight: 700; font-size: 0.9rem; }
.notification-product { color: var(--neon-cyan); font-size: 0.8rem; }
.notification-location { color: #8888a0; font-size: 0.75rem; }

/* =========================================================================
   UPGRADE POPUP
========================================================================== */
.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.popup-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.popup-card {
    width: 90%;
    max-width: 450px;
    padding: 3rem 2rem;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.popup-overlay.active .popup-card {
    transform: scale(1);
}
.popup-close {
    position: absolute;
    top: 15px; right: 15px;
    font-size: 1.5rem;
    color: #a0a0c0;
    cursor: pointer;
    transition: color 0.2s;
}
.popup-close:hover { color: #fff; }
.popup-title { font-size: 1.8rem; margin-bottom: 5px; color: #fff; }
.popup-subtitle { margin-bottom: 20px; color: #d0d0e0; }
.popup-price { margin-bottom: 20px; }
.popup-old-price { text-decoration: line-through; color: #8888a0; margin-right: 10px; }
.popup-new-price { font-size: 2.5rem; font-weight: 800; display: block; }
.popup-benefits { text-align: left; list-style: none; margin-bottom: 25px; padding-left: 10%; }
.popup-benefits li { margin-bottom: 10px; color: #e0e0f0; }
.popup-buttons { display: flex; flex-direction: column; gap: 15px; }
.popup-btn { padding: 15px; border-radius: 50px; font-weight: 700; cursor: pointer; text-transform: uppercase; }
.popup-btn-accept { font-size: 1.1rem; }
.popup-btn-decline { background: transparent; color: #8888a0; font-size: 0.9rem; text-decoration: underline; border: none; }
.popup-btn-decline:hover { color: #fff; }

/* =========================================================================
   MOBILE-ONLY GLOBAIS (APLICADO PRA QUALQUER TELA COMO UM APP)
========================================================================== */
    /* 6. REGRA GLOBAL (OVERFLOW) */
    html, body {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    * { /* Reset garantido pra mobile */
        box-sizing: border-box !important;
    }

    /* 1. BARRA DESCONTO SÓ HOJE */
    .urgency-banner {
        position: fixed;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 12px 0 !important;
        left: 0; top: 0; right: 0;
        z-index: 999;
        box-sizing: border-box !important;
    }
    .urgency-banner .container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    .urgency-text {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: block !important;
        width: auto !important;
    }
    
    /* 2. HERO */
    .hero {
        padding: 90px 20px 40px 20px !important; /* Padding lateral */
        text-align: center !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    .hero-content {
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        word-break: normal !important; /* Mantém as palavras inteiras */
        letter-spacing: -1px !important;
        margin-bottom: 20px !important;
    }
    .hero-subtitle {
        font-size: 1.05rem !important;
        line-height: 1.5 !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
    }
    
    /* 3. IMAGEM GALERA DANÇANDO */
    .hero-image-wrapper {
        width: 100% !important;
        margin: 0 auto 30px auto !important;
        text-align: center !important;
        display: block;
    }
    .hero-image-wrapper img {
        width: 80% !important;
        max-width: 280px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
    }

    /* 4. SEÇÃO PLAYLISTS EXCLUSIVAS (E BÔNUS) */
    .bonus-card {
        padding: 20px 15px !important;
        overflow: hidden !important;
        text-align: center !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .bonus-image {
        width: 90% !important;
        max-width: 120px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto 15px auto !important;
        object-fit: contain !important;
    }

    /* 5. ESPAÇAMENTO ENTRE SEÇÕES & AJUSTES GERAIS */
    .container {
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .what-you-get, .exclusive-benefits, .bonus-section, .pricing-plans, .testimonials, .about-author, .faq, .guarantee {
        padding: 40px 0 !important; /* Espaçamento padronizado */
        text-align: center !important;
        width: 100% !important;
        overflow: hidden !important; /* Segurança global pra vácuos laterais */
        box-sizing: border-box !important;
    }
    
    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
        margin-bottom: 30px !important;
        word-break: break-word;
    }

    /* CTA BUTTON HERO & OUTROS BOTÕES */
    .cta-button, .plan-button, .glowing-btn, .guarantee-cta {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 90% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        padding: 16px 10px !important;
        font-size: 1rem !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    /* Impede esticamento do gradient do background de vazar o celular */
    .hero::before, .video-wrapper::after, .glowing-border::before {
        width: 100% !important;
        max-width: 100vw !important;
        left: 0 !important;
        transform: none !important;
        overflow: hidden !important;
    }

    /* Layout de Colunas forçado para Grids */
    .benefits-grid, .exclusive-grid, .bonus-grid, .testimonials-grid, .plans-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 30px !important;
        margin: 0 !important;
    }
    
    .plan-features li {
        text-align: left;
        justify-content: flex-start;
    }

    /* Ajustes finais pra fechar os cards */
    .author-content { flex-direction: column-reverse !important; gap: 20px !important; text-align: center !important; }
    .author-image-placeholder { width: 100% !important; max-width: 200px !important; height: 200px !important; margin: 0 auto !important; }
    .author-stats { flex-direction: column !important; gap: 15px !important; }
    .author-info h3 { font-size: 2rem !important; }
    .price .new-price { font-size: 2.2rem !important; }
    .plan-card { padding: 1.5rem !important; margin: 0 auto; }
    .popup-card { width: 90% !important; max-width: 350px !important; padding: 20px 15px !important; }
    .popup-title { font-size: 1.5rem !important; line-height: 1.2 !important; }
    .popup-benefits { padding-left: 0 !important; text-align: left !important; }
    .popup-benefits li { justify-content: flex-start !important; }
    .countdown-plans { flex-wrap: wrap !important; justify-content: center !important; }
    .faq-question { font-size: 1.05rem !important; text-align: left !important; }
    .faq-answer { text-align: left !important; }

