:root {
  --bg: #ffffff;
  --bg-soft: #fff6fa;
  --text: #111827;
  --muted: #6b7280;
  --accent: #e11d48; /* urgência (pink/red) */
  --brand: #16c060;  /* CTA verde vivo */
  --brand-dark: #109a4c;
  --brand-glow: rgba(22, 192, 96, 0.28);
  --card: #ffffff;
  --border: #e5e7eb;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% 10%, #ffe3ec 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,1) 70%),
    linear-gradient(180deg, #fff 0%, #ffeef5 100%);
  color: var(--text);
}

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

.topbar {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.offer-headbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
}
.offer-headbar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  font-weight: 800;
}
.headbar-label {
  opacity: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 0 6px rgba(225, 29, 72, 0.6), 0 0 16px rgba(225, 29, 72, 0.45);
}
.headbar-timer {
  font-variant-numeric: tabular-nums;
  background: rgba(255,255,255,0.18);
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.35);
}

/* Toast de compra */
.purchase-toast {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 2000;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--brand);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px; /* um pouco mais quadrado */
  box-shadow: 0 10px 26px -10px var(--brand-glow);
}
.purchase-toast .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff; /* destaca no fundo verde */
  box-shadow: 0 0 8px var(--brand);
}
.purchase-toast .text { font-weight: 700; }
.purchase-toast .sub { color: rgba(255,255,255,0.9); font-size: 12px; }
.purchase-toast.show { display: flex; animation: toast-in .40s ease-out forwards; }
.purchase-toast.hide { animation: toast-out .35s ease-in forwards; }
@keyframes toast-in {
  from { transform: translateY(26px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes toast-out {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(26px); opacity: 0; }
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.logo {
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 6px;
}
.product-name { color: var(--muted); font-weight: 600; }
.trust { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  background: var(--card);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.hero {
  padding: 48px 0 28px;
  background:
    radial-gradient(1200px 600px at 90% 0%, rgba(255, 215, 230, 0.6) 0%, rgba(255,255,255,0.0) 50%),
    linear-gradient(180deg, rgba(255,237,244,0.7) 0%, rgba(255,255,255,1) 65%);
}
.hero-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: center; }
.hero-copy { max-width: 840px; text-align: center; margin: 0 auto; }
.headline {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin: 12px 0 8px;
}
.headline .highlight { color: var(--brand); }
.subheadline {
  color: var(--muted);
  font-size: 18px;
}
.hero-urgency {
  display: flex; gap: 20px; flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 10px;
  margin: 18px 0;
}
.countdown strong, .stock strong { color: var(--accent); }
.cta-group { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 18px 0 6px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 14px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #18c56a 0%, var(--brand) 60%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 0 0 0 var(--brand-glow);
}
.btn-primary:hover {
  transform: scale(1.06);
  filter: saturate(1.15);
  box-shadow: 0 10px 26px -6px var(--brand-glow), 0 0 0 2px rgba(22,192,96,0.15);
}
.btn-primary:active { transform: scale(0.98); }
.btn-lg { padding: 16px 22px; font-size: 18px; }
.cta-note { color: var(--muted); font-size: 14px; }
.hero-trust { display: flex; gap: 12px; margin-top: 8px; }
.trust-img { width: 72px; height: 32px; background: var(--card); border: 1px dashed var(--border); border-radius: 8px; }

/* Hero media */
.hero-media { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.hero-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 120px rgba(0,0,0,0.35); pointer-events: none; }
.hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-caption { position: absolute; left: 12px; bottom: 12px; color: #fff; font-size: 12px; background: rgba(0,0,0,0.45); padding: 6px 10px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1); }
.zoom-hover img { transition: transform .28s ease, filter .28s ease; }
.zoom-hover:hover img { transform: scale(1.04); filter: contrast(1.02) saturate(1.05); }

.social-proof { padding: 36px 0 10px; }
.social-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.stat-number { font-size: 26px; font-weight: 800; }
.stat-label { color: var(--muted); }
.testimonials { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 16px; }
.testimonial { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.testimonial { position: relative; }
.avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); position: absolute; top: 16px; right: 16px; }
.quote { font-style: italic; }
.author { color: var(--muted); margin-top: 6px; }

/* WhatsApp print style */
.whatsapp-print {
  background: #ECE5DD; /* chat bg */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.whatsapp-header {
  background: linear-gradient(180deg, #0b806f 0%, #075E54 100%); /* header green */
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
}
.wh-avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.35); }
.whatsapp-header .dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; }
.whatsapp-header .title { font-weight: 700; }
.whatsapp-header .muted { opacity: .8; font-size: 12px; }
.chat { padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.msg { max-width: 76%; padding: 8px 10px; border-radius: 12px; box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
.msg.in { background: #ffffff; align-self: flex-start; border-top-left-radius: 4px; }
.msg.out { background: #dcf8c6; align-self: flex-end; border-top-right-radius: 4px; }
.msg .time { display: block; text-align: right; font-size: 11px; color: #6b7280; margin-top: 4px; }

.benefits { padding: 32px 0; }
.benefits h2 { font-size: 28px; text-align: center; }
.benefit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 12px; }
.benefit { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.benefit { transition: transform .18s ease, box-shadow .18s ease; }
.benefit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(0,0,0,0.45); }
.benefit .icon { font-size: 24px; }
.benefit h3 { margin: 8px 0 6px; }
.benefit p { color: var(--muted); }

.objections { padding: 32px 0; }
.objections h2 { text-align: center; }
.faq-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 12px; }
.faq { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.faq:hover { border-color: rgba(255,255,255,0.16); }
.faq h3 { color: var(--text); margin: 0 0 8px; }
.faq p { color: var(--muted); }

.offer { padding: 36px 0; }
.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.offer-card { box-shadow: 0 18px 36px -18px rgba(17,24,39,0.18); text-align: center; }
.offer-head h2 { margin: 0 0 6px; }
.price { font-size: 22px; }
.old { text-decoration: line-through; color: var(--muted); }
.new { color: var(--text); font-weight: 800; }
.split { color: var(--muted); font-size: 14px; margin-left: 8px; }
.urgency-inline { display: flex; gap: 16px; color: var(--muted); margin: 8px 0 14px; }
.bullets { list-style: none; padding: 0; margin: 0 0 16px; }
.bullets li { padding: 6px 0; border-bottom: 1px dashed var(--border); }
.secure, .guarantee { color: var(--muted); margin-top: 10px; }

/* Galeria visual */
.gallery { padding: 24px 0; }
.gallery h2 { font-size: 26px; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 12px; }
.tile { position: relative; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); background: var(--card); }
.tile img { width: 100%; height: 200px; object-fit: cover; display: block; }
.tile::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(0,0,0,0.35); pointer-events: none; }

.disclaimer { padding: 24px 0; }
.disclaimer p { color: var(--muted); font-size: 14px; }

/* Garantia 7 dias */
.guarantee-section { padding: 24px 0; }
.guarantee-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}
.guarantee-seal { width: 88px; height: auto; border-radius: 8px; border: 1px solid var(--border); }
.guarantee-copy h3 { margin: 0 0 6px; }
.guarantee-copy p { color: var(--muted); margin: 0; }
.guarantee-note { color: var(--muted); font-size: 12px; margin-top: 6px; }

.footer { padding: 24px 0; border-top: 1px solid var(--border); background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.footer-link { display: inline-block; color: var(--muted); text-decoration: none; margin-right: 10px; }
.footer-link:hover { color: var(--brand); }
.copyright { color: var(--muted); font-size: 12px; margin-top: 10px; }

.sticky-cta {
  position: fixed;
  bottom: -80px;
  left: 0; right: 0;
  background: rgba(255, 246, 250, 0.88);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: bottom .25s ease-out;
}
.sticky-cta.show { bottom: 0; }
.sticky-container { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; }
.sticky-container span { color: var(--muted); }

/* Animations: reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .social-stats { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; }
}