:root {
  --bg: #fff8ec;
  --cream: #fdf3dc;
  --foreground: #2a1a0a;
  --muted: #6b5a47;
  --red: #d62828;
  --green: #16a34a;
  --green-hover: #15803d;
  --premium: #b45309;
  --premium-bg: #fef3c7;
  --border: #e6d9bd;
  --card: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Baloo 2', cursive; font-weight: 800; line-height: 1.2; }
img { max-width: 100%; display: block; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); text-align: center; margin-bottom: 24px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.bg-cream { background: var(--cream); }
.text-red { color: var(--red); }
.mt-3 { margin-top: 12px; }
.mt-6 { margin-top: 24px; }
.mb-8 { margin-bottom: 32px; }

#planos { scroll-margin-top: 20px; }

/* Urgency bar */
.urgency-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Bandeirinhas */
.bandeirinhas {
  height: 18px;
  background: repeating-linear-gradient(90deg,
    var(--red) 0 30px, #f59e0b 30px 60px, var(--green) 60px 90px, #2563eb 90px 120px);
  position: absolute; top: 0; left: 0; right: 0;
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream), var(--bg));
  padding: 60px 20px;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; padding-top: 30px; }
.hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); }
.hero-image { margin-top: 28px; max-width: 480px; }
.hero-image img { border-radius: 18px; box-shadow: 0 20px 50px -10px rgba(0,0,0,.25); }
.hero-sub { margin-top: 20px; font-size: 1.1rem; color: var(--muted); max-width: 600px; }

/* CTA buttons */
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 1.05rem;
  padding: 14px 28px; border-radius: 12px; cursor: pointer; border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s;
  margin-top: 20px;
}
.cta:hover { transform: scale(1.03); }
.cta-primary { background: var(--green); color: #fff; box-shadow: 0 6px 20px -4px rgba(22,163,74,.5); animation: pulse-cta 2s infinite; }
.cta-primary:hover { background: var(--green-hover); }
.cta-premium { background: var(--premium); color: #fff; box-shadow: 0 6px 20px -4px rgba(180,83,9,.5); animation: pulse-cta 2s infinite; width: 100%; }
.cta-outline { background: transparent; border: 2px solid var(--green); color: var(--green); width: 100%; }
.cta-outline:hover { background: var(--green); color: #fff; }

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 6px 20px -4px rgba(22,163,74,.5); }
  50% { box-shadow: 0 6px 30px 0 rgba(22,163,74,.8); }
}

/* Cards */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.card { background: var(--card); border-radius: 16px; padding: 24px; box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.card h3 { margin-bottom: 14px; }
.card ul { list-style: none; }
.card li { padding: 6px 0; }
.card-before { border-left: 4px solid var(--red); }
.card-after { border-left: 4px solid var(--green); }

/* Check list */
.check-list { list-style: none; max-width: 640px; margin: 0 auto; }
.check-list li { padding: 8px 0 8px 28px; position: relative; }
.check-list li::before { content: "✔"; color: var(--green); position: absolute; left: 0; font-weight: bold; }
.check-premium li::before { color: var(--premium); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img { border-radius: 12px; aspect-ratio: 1; object-fit: cover; box-shadow: 0 4px 12px rgba(0,0,0,.1); }

/* Testimonials */
.testimonials { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  background: var(--card); padding: 24px; border-radius: 16px; text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.testimonial img {
  width: 70px; height: 70px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 12px; border: 3px solid var(--cream);
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
.stars { color: #f59e0b; margin-bottom: 8px; }
.testimonial p { font-style: italic; margin-bottom: 8px; }

/* Pricing */
.pricing { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: end; max-width: 880px; margin: 0 auto; }
@media (min-width: 768px) { .pricing { grid-template-columns: 1fr 1fr; } }
.plan { background: var(--card); border-radius: 18px; padding: 28px; text-align: left; position: relative; }
.plan h3 { font-size: 1.2rem; margin-bottom: 16px; }
.plan-basic { border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,.05); }
.plan-premium {
  border: 4px solid var(--premium);
  box-shadow: 0 20px 50px -10px rgba(180,83,9,.4), 0 0 0 4px rgba(180,83,9,.15);
  transform: scale(1.02);
  background: linear-gradient(180deg, #fffaf0, var(--card));
}
.plan .check-list { margin: 0 0 20px; }
.badge {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--premium); color: #fff;
  font-family: 'Baloo 2', cursive; font-weight: 800; font-size: .85rem;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(180,83,9,.4);
}
.premium-reinforce { color: var(--premium); font-weight: 700; font-style: italic; font-size: .9rem; margin-bottom: 16px; }
.price { font-family: 'Baloo 2', cursive; font-weight: 800; font-size: 2.5rem; }
.price-premium { font-size: 3rem; color: var(--premium); }
.price-old { color: var(--muted); text-decoration: line-through; font-size: 1.1rem; }
.premium-quote { font-style: italic; font-weight: 600; margin: 8px 0; }

/* FAQ */
details { background: var(--card); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; box-shadow: 0 2px 6px rgba(0,0,0,.04); }
summary { font-weight: 700; cursor: pointer; }
details p { margin-top: 8px; color: var(--muted); }

/* Modal */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6);
  align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--card); border-radius: 18px; padding: 28px; max-width: 480px; width: 100%;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal h3 { margin-bottom: 12px; color: var(--premium); }
.modal-close {
  position: absolute; top: 12px; right: 12px; background: none; border: none;
  font-size: 1.8rem; cursor: pointer; color: var(--muted);
}

.footer { padding: 28px 20px; text-align: center; color: var(--muted); font-size: .9rem; }

/* VSL */
.hero-eyebrow { font-family: var(--font-display, 'Baloo 2', sans-serif); font-weight: 700; color: var(--festa-red, #b32a1a); font-size: clamp(1rem, 2.5vw, 1.4rem); margin-bottom: 18px; }
.vsl-wrapper { width: 100%; max-width: 460px; position: relative; margin: 0 auto; aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px -10px rgba(0,0,0,.35); background: #000; }
.vsl-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 768px) { .vsl-wrapper { max-width: 460px; } }
