:root {
    --bg-dark: #060606;
    --bg-darker: #000000;
    --neon-green: #39ff14;
    --neon-green-glow: rgba(57, 255, 20, 0.6);
    --gold: #ffd700;
    --gold-glow: rgba(255, 215, 0, 0.6);
    --text-main: #f0f0f0;
    --text-muted: #a0a0a0;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(57, 255, 20, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 215, 0, 0.05), transparent 25%);
    background-attachment: fixed;
}

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

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

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

.highlight-gold {
    color: var(--gold);
    text-shadow: 0 0 15px var(--gold-glow);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
}

.neon-border {
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}

.neon-glow {
    box-shadow: 0 0 30px var(--neon-green-glow);
}

.neon-glow-heavy {
    box-shadow: 0 0 50px rgba(57, 255, 20, 0.15), inset 0 0 20px rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.sub-headline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.benefit-list-quick {
    list-style: none;
    margin-bottom: 40px;
}

.benefit-list-quick li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.neon-icon {
    color: var(--neon-green);
    font-size: 1.5rem;
}

.gold-icon {
    color: var(--gold);
}

.huge-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pricing-box {
    text-align: center;
    padding: 25px;
}

.pricing-box .price {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.old-price {
    color: #ff4d4d;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.new-price {
    font-size: 1.5rem;
    color: var(--text-main);
}

.new-price strong {
    font-size: 2.5rem;
    color: var(--neon-green);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(90deg, #1fa30b, var(--neon-green));
    color: #000;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(57, 255, 20, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); transform: scale(1); }
}

.secure-checkout {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(0,0,0,0.5));
}

.hero-image video {
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.mockup-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.2);
    font-size: 4rem;
}
.mockup-placeholder span {
    display: block;
    font-size: 1.2rem;
    margin-top: 10px;
    font-family: var(--font-heading);
}

/* Sections */
section {
    padding: 80px 0;
}

/* Problem Solution */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.problem-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.problem-icon {
    font-size: 3rem;
    color: #ff4d4d;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.solution-banner {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(to right, rgba(57, 255, 20, 0.05), transparent);
}

.solution-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--neon-green);
    margin-bottom: 10px;
}

/* Detailed Benefits */
.detailed-benefits {
    background-color: var(--bg-darker);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    font-size: 2rem;
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.gold-glow {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.benefit-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #fff;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* How It Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step-card {
    text-align: center;
    position: relative;
    padding-top: 50px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 20px var(--gold-glow);
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Bonuses */
.bonuses {
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" /><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)" /></svg>');
}

.bonus-wrapper {
    padding: 60px 40px;
}

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

.bonus-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.bonus-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Updates Notice */
.updates-notice {
    padding: 30px 0;
}
.alert-banner {
    background: rgba(57, 255, 20, 0.1);
    border: 1px dashed var(--neon-green);
    color: var(--neon-green);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Testimonials */
/* Testimonials Carousel */
.testimonial-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.whatsapp-print {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: center;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-print img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    
    /* Proteção contra cópias/downloads casuais */
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

@media (min-width: 600px) {
    .whatsapp-print {
        width: 320px;
    }
}

/* Final CTA */
.final-cta .pricing-box.large {
    max-width: 600px;
    margin: 40px auto 0;
    padding: 50px 30px;
}

.final-cta .old-price { font-size: 1.3rem; }
.final-cta .new-price { font-size: 2rem; }
.final-cta .new-price strong { font-size: 3.5rem; }

.cta-button.large {
    font-size: 1.4rem;
    padding: 22px 40px;
    margin-top: 20px;
    margin-bottom: 25px;
}

.secure-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.secure-badges .badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-item.active .faq-question {
    color: var(--gold);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 200px; /* arbitrary large value for transition */
}

.faq-answer p {
    color: var(--text-muted);
}

/* Footer */
footer {
    background-color: var(--bg-darker);
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--neon-green);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0 25px;
}

.copyright {
    color: #666;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 400px;
    }

    .benefit-list-quick {
        display: inline-block;
        text-align: left;
    }
    
    .solution-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .final-cta .new-price strong {
        font-size: 2.8rem;
    }
    
    .secure-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
