/* --- Variáveis e Reset --- */
:root {
    --primary-color: #7c3aed;
    --primary-hover: #6d28d9;
    --bg-dark: #1a0b2e;
    --secondary-color: #1f2937;
    --text-body: #4b5563;
    --text-light: #d1d5db;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --success-green: #10b981;
    --accent-yellow: #fbbf24;
    --accent-text: #92400e;
    --bonus-gold: #f59e0b;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --max-width: 1200px;
    --header-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif; color: var(--text-body);
    background-color: var(--bg-white); line-height: 1.6; overflow-x: hidden; width: 100%;
}

/* --- CORREÇÃO DE IMAGENS --- */
/* Isso impede que as imagens fiquem distorcidas */
img { height: auto; max-width: 100%; }

/* --- ANIMAÇÕES --- */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

@keyframes pulse-btn {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.floating-anim { animation: float 4s ease-in-out infinite; }

/* Utilitários */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }
.section-padding { padding: 80px 0; }
.section-bg { background-color: var(--bg-light); }

.section-dark { background-color: var(--bg-dark); color: white; padding: 80px 0; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: white; }
.section-dark p { color: var(--text-light); }
.text-highlight { color: var(--primary-color); }
.section-dark .text-highlight { color: #a78bfa; }
.align-center { align-items: center; }

/* Grids */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- RECURSOS DETALHADOS --- */
.feature-row { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-img { flex: 1; }
.feature-img img { width: 100%; border-radius: var(--radius-md); box-shadow: none; border: none; transition: transform 0.3s ease; }
.feature-img img:hover { transform: translateY(-5px); }
.feature-eyebrow { color: var(--primary-color); font-weight: 800; text-transform: uppercase; font-size: 0.85rem; margin-bottom: 10px; display: block; letter-spacing: 0.5px; }
.feature-text h3 { font-size: 2rem; color: var(--secondary-color); margin-bottom: 25px; line-height: 1.2; }
.feature-list-check { list-style: none; }
.feature-list-check li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 1.05rem; color: var(--text-body); }
.feature-list-check li i { color: var(--primary-color); font-size: 1.3rem; margin-top: 3px; font-weight: bold; }

/* --- DEPOIMENTOS --- */
.masonry-grid { column-count: 3; column-gap: 20px; }
.masonry-item { break-inside: avoid; margin-bottom: 20px; }
.masonry-item img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-md); display: block; transition: transform 0.3s ease; }
.masonry-item img:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.video-card video { width: 100%; border-radius: var(--radius-md); display: block; border: 2px solid var(--primary-color); box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2); }

/* --- NOVA SEÇÃO BÔNUS (Cardápio) --- */
.bonus-section h2 { font-size: 2.5rem; margin-bottom: 20px; }
.bonus-badge-exclusive { display: inline-block; background-color: var(--accent-yellow); color: var(--accent-text); padding: 6px 16px; border-radius: 20px; font-weight: 800; font-size: 0.85rem; margin-bottom: 15px; letter-spacing: 0.5px; }
.bonus-testimonials { margin-top: 40px; }
.bonus-testi-img { width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 2px solid rgba(255,255,255,0.1); transition: transform 0.3s ease; }
.bonus-testi-img:hover { transform: translateY(-5px); border-color: var(--primary-color); }

/* Mockup de Celular CSS */
.bonus-mockup-wrapper { display: flex; justify-content: center; }
.phone-frame { width: 300px; height: 600px; background-color: #1f2937; border-radius: 40px; padding: 15px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); position: relative; border: 4px solid #374151; }
.phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 30px; background-color: #1f2937; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; z-index: 10; }
.phone-screen { width: 100%; height: 100%; background-color: black; border-radius: 25px; overflow: hidden; position: relative; }
.phone-slideshow { width: 100%; height: 100%; position: relative; }
.phone-slideshow .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s ease-in-out; }
.phone-slideshow .slide.active { opacity: 1; z-index: 2; }

/* --- GARANTIA --- */
.guarantee { border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.guarantee-content { display: flex; align-items: center; justify-content: center; gap: 30px; text-align: left; max-width: 900px; }
.guarantee-icon i { font-size: 5rem; color: var(--primary-color); }
.guarantee-text h2 { font-size: 2rem; color: var(--secondary-color); margin-bottom: 10px; }
.guarantee-text p { font-size: 1.1rem; color: var(--text-body); }

/* --- VIDEO WRAPPER --- */
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.4); background-color: #000; cursor: pointer; }
.video-wrapper video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: block; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.3); transition: opacity 0.3s ease; }
.video-wrapper:hover .video-overlay { background: rgba(0, 0, 0, 0.1); }
.play-btn-container { display: flex; flex-direction: column; align-items: center; gap: 10px; color: white; }
.play-icon { width: 70px; height: 70px; background-color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; animation: pulse-btn 2s infinite; transition: transform 0.2s ease; }
.play-icon i { font-size: 2rem; color: #ffffff !important; display: block; } 
.video-wrapper:hover .play-icon { transform: scale(1.1); background-color: var(--primary-hover); }
.play-text { font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

/* Wrapper para Vídeos de Depoimento */
.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    background-color: #000;
}
.testimonial-video-wrapper video { width: 100%; height: auto; display: block; object-fit: cover; }
.testimonial-video-wrapper:hover .video-overlay { background: rgba(0,0,0,0.1); }
.testimonial-video-wrapper:hover .play-icon { transform: scale(1.1); background-color: var(--primary-hover); }

/* Botões */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; border: none; }
.btn-sm { padding: 8px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.125rem; }
.btn-primary { background-color: var(--primary-color); color: white; box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.39); }
.btn-primary:hover { background-color: var(--primary-hover); transform: translateY(-2px); }
.btn-outline { background-color: transparent; border: 2px solid var(--primary-color); color: var(--primary-color); }
.btn-outline:hover { background-color: var(--bg-light); }
.btn-outline-light { background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.3); color: white; }
.btn-outline-light:hover { background-color: rgba(255, 255, 255, 0.1); border-color: white; }
.full-width { width: 100%; }

/* Header & Hero */
.header { height: var(--header-height); position: absolute; width: 100%; top: 0; z-index: 1000; background: transparent; }
.header-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 1.5rem; color: white; z-index: 1001; }
.logo-icon { color: #a78bfa; }
.nav-menu { display: flex; align-items: center; gap: 20px; }
.nav-menu a.nav-link { text-decoration: none; color: rgba(255, 255, 255, 0.8); font-weight: 500; transition: color 0.3s; }
.nav-menu a.nav-link:hover { color: white; }
.btn-header { background-color: rgba(255,255,255,0.1); color: white; backdrop-filter: blur(5px); }
.btn-header:hover { background-color: white; color: var(--primary-color); }
.mobile-menu-btn { display: none; }
.mobile-only-btn { display: none !important; }
.hero { min-height: 100vh; padding-top: calc(var(--header-height) + 40px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
.hero h1 { font-size: 3rem; line-height: 1.2; margin-bottom: 20px; font-weight: 800; }
.hero-sub { font-size: 1.25rem; margin-bottom: 30px; }
.hero-cta-group { display: flex; gap: 15px; margin-bottom: 30px; }
.hero-badges { display: flex; gap: 20px; font-size: 0.9rem; color: var(--text-light); }
.hero-badges span { display: flex; align-items: center; gap: 5px; }
.hero-badges i { color: var(--success-green); }
.mockup-placeholder img { width: 100%; border-radius: var(--radius-md); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* Benefits & Audience & How */
.benefits-bar { background-color: white; padding: 40px 0; border-bottom: 1px solid #eee; }
.benefit-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.benefit-item i { font-size: 2rem; color: var(--primary-color); }
.benefit-item p { font-weight: 600; color: var(--secondary-color); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px auto; }
.section-header h2 { font-size: 2.25rem; color: var(--secondary-color); margin-bottom: 15px; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.audience-card { background: var(--bg-white); border: 1px solid #eee; padding: 25px; border-radius: var(--radius-md); transition: transform 0.3s ease; }
.audience-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: var(--shadow-md); }
.audience-card i { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 15px; display: block; }
.audience-card h3 { margin-bottom: 10px; color: var(--secondary-color); }
.how-it-works { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 40px; }
.how-content { max-width: 800px; width: 100%; }
.how-image { margin: 30px auto; max-width: 700px; width: 100%; }
.how-image img { width: 100%; border-radius: var(--radius-md); box-shadow: none; background: transparent; }
.steps-wrapper { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; align-items: flex-start; text-align: left; max-width: 600px; margin: 0 auto; padding-left: 15px; }
.step-item { display: flex; gap: 20px; }
.step-number { width: 40px; height: 40px; background-color: var(--primary-color); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; flex-shrink: 0; }
.step-text h3 { margin-bottom: 5px; color: var(--secondary-color); }

/* --- Pricing --- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: flex-start; }
.pricing-card { background: var(--bg-white); border: 2px solid #cbd5e1; border-radius: var(--radius-lg); padding: 30px; position: relative; display: flex; flex-direction: column; transition: all 0.3s ease; text-align: center; }
.pricing-card:hover { border-color: var(--primary-color); }

.pricing-header-centered { display: flex; flex-direction: column; align-items: center; margin-bottom: 20px; }
.plan-cycle { background-color: #e5e7eb; color: #374151; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 4px 10px; border-radius: 12px; margin-bottom: 8px; letter-spacing: 0.5px; }
.old-price-wrapper { font-size: 0.9rem; color: #9ca3af; margin-bottom: 5px; }
.strikethrough { text-decoration: line-through; }
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 5px; }
.price-prefix-inline { font-size: 0.9rem; font-weight: 500; color: var(--text-body); }
.cash-price { font-size: 0.85rem; color: #6b7280; margin-top: 5px; font-weight: 500; }

/* Destaque Bônus Atualizado (Ouro) */
.bonus-highlight {
    background: rgba(245, 158, 11, 0.15); /* Fundo amarelado suave */
    border: 2px dashed var(--bonus-gold);
    color: white;
    padding: 15px; 
    border-radius: 12px; 
    margin: 20px 0;
    display: flex; flex-direction: column; 
    text-align: left;
    position: relative;
    overflow: hidden;
}
.bonus-tag-corner {
    position: absolute; top: 0; right: 0;
    background-color: var(--bonus-gold); color: #000;
    font-size: 0.65rem; font-weight: 800; padding: 3px 8px;
    border-bottom-left-radius: 8px;
}
.bonus-row { display: flex; align-items: center; gap: 12px; }
.bonus-highlight i { font-size: 2rem; color: var(--bonus-gold); }
.bonus-text { font-size: 0.9rem; line-height: 1.4; }
.bonus-text strong { color: var(--bonus-gold); display: block; font-size: 0.95rem; }
.bonus-value { display: block; margin-top: 4px; font-size: 0.85rem; opacity: 0.9; }
.bonus-value .strike { text-decoration: line-through; opacity: 0.7; }
.bonus-value strong { display: inline; color: #10b981; font-weight: 800; } /* GRÁTIS em verde */

/* Popular Card (Dark) */
.pricing-card.popular { 
    background: linear-gradient(160deg, #1a0b2e 0%, #3b0764 100%); 
    border: 2px solid #7c3aed; 
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.4); 
    transform: scale(1.05); z-index: 2; 
    transition: transform 0.3s ease; 
}
.pricing-card.popular:hover { transform: scale(1.08); }
.pricing-card.popular h3,
.pricing-card.popular .price,
.pricing-card.popular .price span,
.pricing-card.popular .price-desc,
.pricing-card.popular .price-features li { color: white; }
.pricing-card.popular .plan-cycle { background-color: rgba(255,255,255,0.2); color: white; } 
.pricing-card.popular .old-price-wrapper { color: rgba(255,255,255, 0.6); }
.pricing-card.popular .price-prefix-inline { color: rgba(255,255,255, 0.9); }
.pricing-card.popular .cash-price { color: rgba(255,255,255, 0.8); }
.pricing-card.popular .price-features li i { color: #10b981; }
.pricing-card.popular .btn-primary { background-color: #10b981; color: #064e3b; box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4); }
.pricing-card.popular .btn-primary:hover { background-color: #059669; color: white; }

.badge-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background-color: var(--primary-color); color: white; padding: 4px 16px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; white-space: nowrap; width: max-content; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.pricing-card .price { font-size: 2.5rem; font-weight: 800; color: var(--secondary-color); margin: 0; }
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--text-body); }
.pricing-card hr { margin: 20px 0; border: 0; border-top: 1px solid #eee; }
.price-features { list-style: none; margin-bottom: 20px; flex-grow: 1; text-align: left; }
.price-features li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.price-features i { color: var(--primary-color); margin-top: 4px; }
.price-features li.unavailable { color: #9ca3af; text-decoration: line-through; opacity: 0.8; }
.price-features li.unavailable i { color: #d1d5db; }

/* FAQ & CTA & Footer */
.faq-wrapper { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 1.1rem; font-weight: 600; color: var(--secondary-color); cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Inter', sans-serif; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 20px; color: var(--text-body); }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.cta-content { text-align: center; max-width: 700px; }
.cta-content h2 { margin-bottom: 15px; font-size: 2.5rem; }
.cta-content p { margin-bottom: 30px; font-size: 1.2rem; }
.footer { background-color: var(--secondary-color); color: #9ca3af; padding: 40px 0; }
.footer-content { display: flex; justify-content: space-between; align-items: center; }
.footer-links a { color: #9ca3af; margin-left: 20px; text-decoration: none; font-size: 0.9rem; }
.footer-links a:hover { color: white; }

/* MEDIA QUERIES */
@media (max-width: 960px) {
    .container { padding: 0 30px; }
    .section-padding { padding: 50px 0; }
    .hero { min-height: auto; padding-top: 100px; padding-bottom: 50px; }
    .hero h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 1.8rem; }
    .header { background-color: var(--bg-dark); height: 70px; }
    .nav-menu { position: fixed; top: 70px; left: 0; width: 100%; background-color: var(--bg-dark); flex-direction: column; padding: 30px; gap: 20px; transform: translateY(-150%); transition: transform 0.3s ease; z-index: 999; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .nav-menu.active { transform: translateY(0); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
    .nav-menu a.nav-link { font-size: 1.2rem; display: block; width: 100%; text-align: center; padding: 10px 0;}
    .desktop-only-btn { display: none !important; }
    .mobile-only-btn { display: flex !important; width: 100%; }
    .mobile-menu-btn { display: block; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; z-index: 1002; }
    .hero-grid, .grid-2, .grid-3, .grid-4, .pricing-grid, .audience-grid { grid-template-columns: 1fr; }
    .hero-grid { text-align: center; gap: 40px; }
    .hero-cta-group { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-image { order: 0; }
    
    /* Ajuste Mobile Seção Bônus */
    .bonus-mockup-wrapper { margin-top: 40px; }
    .phone-frame { width: 260px; height: 520px; }

    .pricing-grid { max-width: 450px; margin: 0 auto; gap: 50px; }
    .pricing-card { margin: 0 5px; } 
    .pricing-card.popular { transform: scale(1); margin: 0 5px; }
    .footer-content { flex-direction: column; gap: 20px; }
    .footer-links { text-align: center; }
    .footer-links a { display: block; margin: 10px 0; }
    .feature-row, .feature-row.reverse { flex-direction: column-reverse; text-align: center; gap: 30px; margin-bottom: 60px; }
    .feature-list-check li { justify-content: center; text-align: left; display: flex; }
    .feature-list-check { display: inline-block; text-align: left; }
    .masonry-grid { column-count: 2; }
    .guarantee-content { flex-direction: column; text-align: center; }
    .guarantee-icon i { font-size: 3.5rem; }
}
@media (max-width: 600px) {
    .masonry-grid { column-count: 1; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero-cta-group { flex-direction: column; }
    .btn { width: 100%; }
    .cta-content h2 { font-size: 1.8rem; }
}