@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

html { scroll-behavior: smooth; }

body { font-family: 'Inter', system-ui, sans-serif; color: #1f2937; background: #fff; line-height: 1.6; }

/* HERO */

.hero {
  background: linear-gradient(135deg, #db2777 0%, #ec4899 50%, #a855f7 100%);
  padding: 60px 24px 100px; position: relative; overflow: hidden;
}

.hero-blob-1 { position: absolute; top: 60px; left: 20px; width: 300px; height: 300px; background: white; border-radius: 50%; filter: blur(80px); opacity: 0.15; }

.hero-blob-2 { position: absolute; bottom: 20px; right: 20px; width: 400px; height: 400px; background: white; border-radius: 50%; filter: blur(80px); opacity: 0.15; }

.nav { display: flex; align-items: center; justify-content: space-between; max-width: 1100px; margin: 0 auto; position: relative; z-index: 10; }

.logo { display: flex; align-items: center; gap: 8px; }

.logo img { height: 60px; width: auto; border-radius: 12px; }

.logo svg { width: 36px; height: 36px; }

.whatsapp-btn { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); padding: 10px 18px; border-radius: 50px; color: white; text-decoration: none; font-size: 14px; font-weight: 600; transition: 0.3s; }

.whatsapp-btn:hover { background: rgba(255,255,255,0.25); }

.hero-content { max-width: 1100px; margin: 50px auto 0; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; position: relative; z-index: 10; }

.hero-text { color: white; }

.hero-badge { display: inline-block; background: rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; margin-bottom: 20px; }

.hero-title { font-size: 48px; font-weight: 900; line-height: 1.15; margin-bottom: 16px; }

.hero-title span { color: #fde047; }

.hero-subtitle { font-size: 24px; font-weight: 600; margin-bottom: 10px; opacity: 0.95; }

.hero-desc { font-size: 17px; margin-bottom: 24px; opacity: 0.85; max-width: 500px; }

.hero-prova { display: flex; gap: 16px; margin-bottom: 28px; font-size: 14px; flex-wrap: wrap; }

.hero-prova span { display: flex; align-items: center; gap: 6px; opacity: 0.9; }

.cta-btn-hero { display: inline-flex; align-items: center; gap: 10px; background: #fde047; color: #111827; font-weight: 800; padding: 18px 36px; border-radius: 60px; font-size: 18px; text-decoration: none; transition: 0.3s; box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

.cta-btn-hero:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.2); }

.hero-price { margin-top: 20px; }

.old-price { font-size: 20px; opacity: 0.7; text-decoration: line-through; margin-right: 12px; }

.new-price { font-size: 28px; font-weight: 800; }

.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-card { width: 280px; height: 280px; background: url(https://images.unsplash.com/photo-1604654894610-df63bc536371?w=600&q=80) center/cover; border: 3px solid rgba(255,255,255,0.3); border-radius: 32px; padding: 10px; backdrop-filter: blur(8px); }

.hero-card-inner { display: none; }

.price-badge { position: absolute; bottom: -20px; right: -20px; background: #fde047; color: #111827; padding: 16px 24px; border-radius: 16px; text-align: center; box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

.price-badge .save { display: block; font-size: 13px; font-weight: 600; }

.price-badge .price { display: block; font-size: 32px; font-weight: 900; }

/* SECTIONS */

.section { padding: 80px 24px; }

.section-alt { background: linear-gradient(180deg, #fce7f3 0%, #fff 100%); }

.container { max-width: 1100px; margin: 0 auto; }

.section-title { font-size: 38px; font-weight: 800; text-align: center; margin-bottom: 12px; color: #111827; }

.section-desc { text-align: center; color: #6b7280; margin-bottom: 50px; font-size: 18px; }

/* PROBLEM */

.problem { background: #fff; }

.problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 40px auto 0; }

.problem-item { display: flex; gap: 16px; padding: 24px; background: #fef2f2; border-radius: 16px; border: 1px solid #fecaca; }

.problem-item svg { width: 40px; height: 40px; color: #dc2626; flex-shrink: 0; }

.problem-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }

.problem-item p { color: #6b7280; font-size: 15px; }

/* BENEFITS */

.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.benefit-card { background: white; border-radius: 20px; padding: 28px 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #fce7f3; transition: 0.3s; }

.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

.benefit-icon { width: 60px; height: 60px; background: linear-gradient(135deg, #db2777 0%, #a855f7 100%); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }

.benefit-icon svg { width: 28px; height: 28px; color: white; }

.benefit-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }

.benefit-card p { color: #6b7280; font-size: 14px; }

/* MODULES */

.modules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.module-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: white; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.04); border: 1px solid #fce7f3; }

.module-num { width: 44px; height: 44px; background: linear-gradient(135deg, #db2777 0%, #a855f7 100%); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; flex-shrink: 0; }

.module-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }

.module-card p { color: #6b7280; font-size: 14px; }

.module-img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }

/* BONUS */

.bonus { background: linear-gradient(135deg, #111827 0%, #1f2937 100%); color: white; }

.bonus .section-title { color: white; }

.bonuses-list { display: flex; flex-direction: column; gap: 14px; max-width: 700px; margin: 0 auto 30px; }

.bonus-card { display: flex; align-items: center; gap: 16px; padding: 20px; background: rgba(255,255,255,0.08); border-radius: 14px; border: 1px solid rgba(255,255,255,0.15); }

.bonus-card svg { width: 28px; height: 28px; color: #34d399; flex-shrink: 0; }

.bonus-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }

.bonus-card p { color: #9ca3af; font-size: 14px; }

.bonus-value { margin-left: auto; color: #34d399; font-weight: 700; font-size: 16px; }

.bonus-total { text-align: center; padding: 20px; background: rgba(52, 211, 153, 0.15); border-radius: 14px; max-width: 700px; margin: 0 auto; }

.bonus-total span { display: block; font-size: 18px; }

.bonus-total strong { color: #34d399; font-weight: 800; }

/* TESTIMONIALS */

.testimonials { background: linear-gradient(135deg, #db2777 0%, #a855f7 100%); color: white; }

.testimonials .section-title { color: white; }

.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.testimonial-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 28px; text-align: center; }

.testimonial-avatar { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 3px solid rgba(255,255,255,0.5); }

.stars { display: flex; gap: 4px; margin-bottom: 14px; justify-content: center; }

.stars svg { width: 22px; height: 22px; }

.testimonial-card p { font-size: 17px; margin-bottom: 16px; line-height: 1.5; }

.testimonial-card strong { display: block; font-size: 16px; }

.testimonial-card span { color: rgba(255,255,255,0.7); font-size: 14px; }

/* FOR WHO */

.for-who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* VSL VIDEO */

.vsl { background: #111827; padding: 80px 24px; }

.vsl .section-title { color: white; }

.video-container { max-width: 800px; margin: 40px auto 0; border-radius: 16px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.video-container iframe { width: 100%; aspect-ratio: 16/9; border: none; }

.for-card { background: white; border-radius: 20px; padding: 28px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border: 1px solid #fce7f3; }

.for-card svg { width: 48px; height: 48px; color: #db2777; margin-bottom: 14px; }

.for-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }

.for-card p { color: #6b7280; font-size: 14px; }

/* OFFER */

.offer { background: #fff; padding-bottom: 40px; }

.offer-box { max-width: 650px; margin: 0 auto; background: linear-gradient(135deg, #db2777 0%, #a855f7 100%); border-radius: 32px; padding: 50px 40px; text-align: center; color: white; }

.offer-header { margin-bottom: 30px; }

.offer-header .badge { display: inline-block; background: #fde047; color: #111827; padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 700; margin-bottom: 16px; }

.offer-header h2 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }

.offer-header p { opacity: 0.9; font-size: 17px; }

.offer-price { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; }

.price-anchor span { display: block; font-size: 18px; opacity: 0.8; }

.price-main { text-align: left; }

.price-huge { font-size: 56px; font-weight: 900; }

.price-sub { font-size: 20px; opacity: 0.9; }

.cta-btn-big { display: inline-flex; align-items: center; gap: 12px; background: #fde047; color: #111827; font-weight: 800; padding: 22px 48px; border-radius: 60px; font-size: 20px; text-decoration: none; transition: 0.3s; width: 100%; max-width: 400px; justify-content: center; }

.cta-btn-big:hover { transform: scale(1.03); }

.offer-garranty { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 24px; font-size: 15px; opacity: 0.9; }

.offer-garranty svg { width: 22px; height: 22px; }

.offer-icons { display: flex; justify-content: center; gap: 24px; margin-top: 20px; font-size: 14px; opacity: 0.8; }

/* FAQ */

.faq { background: #f9fafb; }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { background: white; border-radius: 14px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); overflow: hidden; }

.faq-question { width: 100%; padding: 20px 24px; text-align: left; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 16px; background: none; border: none; cursor: pointer; }

.faq-question svg { width: 24px; height: 24px; color: #db2777; transition: 0.3s; }

.faq-answer { padding: 0 24px 20px; color: #4b5563; font-size: 15px; line-height: 1.6; }

/* FOOTER */

.footer { background: #111827; padding: 50px 24px; color: white; text-align: center; }

.footer-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 14px; }

.footer-logo img { height: 50px; width: auto; border-radius: 12px; }

.footer-logo svg { width: 32px; height: 32px; }

.footer p { color: #9ca3af; margin-bottom: 20px; }

.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }

.footer-contact a { color: #f472b6; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; }

.footer-contact a:hover { color: #f9a8d4; }

.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 24px; }

.footer-links a { color: #6b7280; text-decoration: none; font-size: 14px; }

.copy { color: #4b5563; font-size: 13px; margin-top: 20px; }

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 36px; }
  .hero-desc { max-width: 100%; margin: 0 auto 24px; }
  .hero-prova { justify-content: center; }
  .hero-visual { display: none; }
  .benefits-grid, .for-who-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid, .modules-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .offer-price { flex-direction: column; gap: 10px; }
  .price-anchor, .price-main { text-align: center; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 18px; }
  .section-title { font-size: 28px; }
  .benefits-grid, .for-who-grid { grid-template-columns: 1fr; }
}