* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: hsl(330 40% 98%);
  --rose: hsl(330 75% 55%);
  --rose-d: hsl(330 75% 45%);
  --rose-tint: hsl(330 60% 96%);
  --rose-mid: hsl(330 50% 90%);
  --green: hsl(142 72% 40%);
  --green-d: hsl(150 75% 33%);
  --gold: hsl(38 80% 52%);
  --ink: hsl(330 22% 14%);
  --muted: hsl(330 8% 45%);
  --line: hsl(330 25% 90%);
  --red: hsl(0 78% 55%);
  --grad-hero: linear-gradient(135deg, hsl(330 60% 96%), hsl(330 50% 90%));
  --grad-cta: linear-gradient(135deg, hsl(142 72% 42%), hsl(150 75% 35%));
  --shadow-card: 0 6px 24px -10px hsl(330 50% 30% / .18);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.55;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
h1, h2, h3 { font-family: 'Montserrat', 'Inter', sans-serif; line-height: 1.15; }
img { max-width: 100%; display: block; }

.wrap { max-width: 480px; margin: 0 auto; padding: 0 16px 120px; }

/* ===== BOTÕES ===== */
.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--grad-cta); color: #fff; font-weight: 800; font-family: 'Inter', sans-serif;
  border: none; cursor: pointer; text-decoration: none; letter-spacing: .3px;
  padding: 16px 22px; border-radius: 14px; font-size: 1.02rem;
  box-shadow: 0 10px 22px -8px hsl(142 72% 38% / .55); transition: transform .12s, box-shadow .12s;
}
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -8px hsl(142 72% 38% / .6); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .9rem; border-radius: 10px; }

/* ===== TOPBAR ===== */
.topbar {
  background: linear-gradient(90deg, var(--rose-d), var(--rose));
  color: #fff; text-align: center; font-size: .8rem; font-weight: 800;
  padding: 9px 12px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap;
}
.topbar-ship { letter-spacing: .3px; }
.topbar-timer { display: inline-flex; align-items: center; gap: 6px; }
.topbar-timer strong {
  font-variant-numeric: tabular-nums; letter-spacing: .5px; font-size: .95rem;
  background: #fff; color: var(--rose-d); padding: 2px 9px; border-radius: 6px;
  box-shadow: 0 1px 5px rgba(0,0,0,.2); animation: timerPulse 1.5s ease-in-out infinite;
}
@keyframes timerPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.07); } }

/* ===== HEADER ===== */
.header {
  max-width: 480px; margin: 0 auto; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem; color: var(--ink); text-decoration: none; letter-spacing: -.3px; }
.logo span { color: var(--rose); }

/* ===== HERO (layout estilo print: limpo e centralizado) ===== */
.hero { background: transparent; padding: 8px 6px 22px; margin-top: 6px; text-align: center; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 hsl(142 72% 45% / .55); } 70% { box-shadow: 0 0 0 8px hsl(142 72% 45% / 0); } 100% { box-shadow: 0 0 0 0 hsl(142 72% 45% / 0); } }

/* Carrossel — imagem centralizada, setas-chevron nas laterais */
.carousel { position: relative; max-width: 300px; margin: 0 auto; }
.car-viewport { overflow: hidden; border-radius: 18px; background: #fff; }
.car-track { display: flex; transition: transform .5s cubic-bezier(.22,1,.36,1); }
.car-track img { min-width: 100%; aspect-ratio: 1/1; object-fit: contain; background: #fff; }
.car-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 32px; height: 32px; border: none; cursor: pointer;
  background: none; color: var(--rose); font-size: 2rem; line-height: 1;
  display: grid; place-items: center; opacity: .85; transition: opacity .15s;
}
.car-arrow:hover { opacity: 1; }
.car-prev { left: -26px; } .car-next { right: -26px; }
.car-dots { display: flex; gap: 7px; justify-content: center; margin: 14px 0 2px; }
.car-dots button { width: 7px; height: 7px; border-radius: 999px; border: none; background: var(--rose-mid); cursor: pointer; padding: 0; transition: width .3s, background .3s; }
.car-dots button.active { width: 22px; background: var(--rose); }

/* Rating */
.rating { display: inline-flex; align-items: center; gap: 8px; margin: 18px 0 6px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; }
.stars.small { font-size: .9rem; letter-spacing: 1px; }
.rating-num { font-weight: 800; font-size: .95rem; }
.rating-count { color: var(--muted); font-weight: 500; }

/* Titulo / subtitulo / preco */
.hero-title { font-size: 1.9rem; font-weight: 900; margin: 4px 0 8px; line-height: 1.12; }
.hero-title span { color: var(--rose); }
.hero-sub { color: var(--muted); font-size: .98rem; max-width: 340px; margin: 0 auto 18px; line-height: 1.45; }
.hero-price { margin-bottom: 18px; }
.hero-price .price-from { font-size: 1.05rem; font-weight: 600; color: var(--muted); font-family: 'Inter', sans-serif; }
.hero-price strong { font-family: 'Montserrat', sans-serif; font-size: 2.1rem; font-weight: 900; color: var(--green-d); margin-left: 8px; vertical-align: middle; }

.hero-cta { font-size: 1.08rem; padding: 17px; border-radius: 999px; }
.hero-note { font-size: .85rem; color: var(--muted); font-weight: 500; margin-top: 12px; }

/* ===== SEÇÕES (genérico) ===== */
.eyebrow { font-size: .74rem; font-weight: 800; letter-spacing: 1.5px; color: var(--rose); text-transform: uppercase; margin-bottom: 8px; }
.eyebrow.center, .sec-title.center, .sec-sub.center { text-align: center; }
.sec-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.sec-sub { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
section { margin-top: 40px; }

/* ===== TRUST ===== */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.trust-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 8px; text-align: center; box-shadow: var(--shadow-card); }
.trust-ico { font-size: 1.5rem; margin-bottom: 4px; }
.trust-card strong { display: block; font-size: .82rem; }
.trust-card span { font-size: .72rem; color: var(--muted); }

/* ===== PROBLEMA ===== */
.prob-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.prob-list li { display: flex; align-items: flex-start; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: .92rem; font-weight: 500; box-shadow: var(--shadow-card); }
.prob-list .x { color: var(--red); font-weight: 800; flex-shrink: 0; }
.solution { display: flex; gap: 12px; align-items: flex-start; background: var(--grad-cta); color: #fff; border-radius: 16px; padding: 18px; box-shadow: 0 10px 22px -10px hsl(142 72% 38% / .5); }
.solution .check { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.25); display: grid; place-items: center; font-weight: 800; flex-shrink: 0; }
.solution strong { display: block; font-size: 1.02rem; margin-bottom: 4px; }
.solution p { font-size: .88rem; opacity: .95; }

/* ===== BENEFÍCIOS ===== */
.bnf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.bnf-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 14px; text-align: center; box-shadow: var(--shadow-card); }
.bnf-ico { width: 52px; height: 52px; margin: 0 auto 10px; border-radius: 14px; display: grid; place-items: center; font-size: 1.5rem; background: var(--rose-tint); }
.bnf-ico.ico-rose { background: hsl(330 70% 92%); }
.bnf-ico.ico-gold { background: hsl(38 80% 90%); }
.bnf-ico.ico-blue { background: hsl(200 70% 92%); }
.bnf-card strong { display: block; font-size: .95rem; margin-bottom: 6px; }
.bnf-card p { font-size: .82rem; color: var(--muted); }
.bnf-urgency { text-align: center; font-size: .85rem; color: var(--rose-d); font-weight: 700; margin-top: 12px; }

/* ===== KITS ===== */
.kit { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; margin-bottom: 18px; box-shadow: var(--shadow-card); scroll-margin-top: 16px; }
.kit.featured { border: 2px solid var(--rose); box-shadow: 0 12px 30px -12px hsl(330 60% 45% / .35); }
.kit-top { position: relative; background: var(--grad-hero); padding: 16px; display: flex; justify-content: center; }
.kit-top img { width: 200px; height: 200px; object-fit: contain; }
.kit-badge { position: absolute; top: 12px; font-size: .68rem; font-weight: 800; padding: 4px 10px; border-radius: 999px; letter-spacing: .3px; }
.kit-badge.dark { left: 12px; background: var(--ink); color: #fff; }
.kit-badge.off { right: 12px; background: var(--red); color: #fff; }
.kit-body { padding: 18px; text-align: center; }
.kit-body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 4px; }
.kit-meta { font-size: .85rem; color: var(--muted); margin-bottom: 10px; }
.kit-price { display: flex; align-items: baseline; justify-content: center; gap: 10px; margin-bottom: 4px; }
.kit-price .ko { color: var(--red); text-decoration: line-through; font-size: .95rem; font-weight: 700; }
.kit-price .kn { font-family: 'Montserrat', sans-serif; font-size: 1.7rem; font-weight: 900; color: var(--green-d); }
.kit-ship { display: block; font-size: .8rem; color: var(--green-d); font-weight: 700; margin-bottom: 14px; }
.secure-line { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 4px; }

/* ===== AVALIAÇÕES ===== */
.rev-rating { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.1rem; font-weight: 800; margin-bottom: 2px; }
.rev-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; margin-bottom: 14px; box-shadow: var(--shadow-card); }
.rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rev-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--rose); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; flex-shrink: 0; }
.rev-avatar.c2 { background: hsl(280 60% 58%); }
.rev-avatar.c3 { background: hsl(38 80% 52%); }
.rev-avatar.c4 { background: hsl(200 70% 50%); }
.rev-who strong { display: block; font-size: .92rem; }
.rev-check { color: var(--green); font-size: .72rem; font-weight: 700; }
.rev-who span { font-size: .76rem; color: var(--muted); }
.rev-text { font-size: .9rem; margin-top: 6px; }
.rev-photo { width: 100%; height: 190px; object-fit: cover; border-radius: 14px; margin-top: 12px; border: 2px solid var(--rose-tint); box-shadow: 0 2px 10px hsl(330 50% 30% / .1); }

/* ===== FAQ ===== */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-card); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 700; font-size: .95rem; color: var(--ink); text-align: left; padding: 16px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-ico { color: var(--rose); font-size: 1.3rem; font-weight: 400; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 16px 16px; font-size: .88rem; color: var(--muted); }

/* ===== URGÊNCIA FINAL ===== */
.finalcta-card { background: var(--ink); color: #fff; border-radius: 24px; padding: 30px 22px; text-align: center; }
.finalcta-alert { color: hsl(38 90% 62%); font-weight: 800; font-size: .9rem; margin-bottom: 12px; }
.finalcta-card h2 { font-size: 1.7rem; font-weight: 900; margin-bottom: 10px; color: #fff; }
.finalcta-sub { font-size: .92rem; opacity: .85; margin-bottom: 16px; }
.finalcta-sub strong { color: hsl(38 90% 65%); }
.finalcta-price { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; margin-bottom: 18px; color: hsl(142 70% 60%); }
.finalcta-guarantee { font-size: .8rem; opacity: .85; margin-top: 14px; }

/* ===== FOOTER ===== */
.site-footer { max-width: 480px; margin: 0 auto; padding: 30px 16px 40px; text-align: center; }
.sf-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 22px; }
.sf-trust-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px; box-shadow: var(--shadow-card); }
.sf-trust-item span { font-size: 1.3rem; }
.sf-trust-item strong { display: block; font-size: .8rem; margin-top: 4px; }
.sf-trust-item small { font-size: .7rem; color: var(--muted); }
.sf-pay { margin-bottom: 18px; }
.sf-pay span { display: block; font-size: .78rem; color: var(--muted); margin-bottom: 2px; }
.sf-pay strong { color: var(--green-d); }
.sf-company { margin-bottom: 18px; }
.sf-company strong { font-family: 'Montserrat', sans-serif; font-size: 1rem; }
.sf-company p { font-size: .78rem; color: var(--muted); }
.sf-links { font-size: .78rem; margin-bottom: 8px; }
.sf-links a { color: var(--rose-d); text-decoration: none; }
.sf-secure { font-size: .72rem; color: var(--muted); margin-bottom: 6px; }
.sf-copy { font-size: .76rem; color: var(--muted); margin-top: 10px; }

/* ===== STICKY BAR ===== */
.sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); z-index: 50; padding: 10px 16px; padding-bottom: max(10px, env(safe-area-inset-bottom)); box-shadow: 0 -4px 20px -8px rgba(0,0,0,.15); }
.sticky-inner { max-width: 480px; margin: 0 auto; display: flex; align-items: center; gap: 14px; }
.sticky-price { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-old { font-size: .78rem; color: var(--red); text-decoration: line-through; font-weight: 600; }
.sticky-now { font-size: 1.25rem; font-weight: 900; color: var(--green-d); font-family: 'Montserrat', sans-serif; }
.sticky-btn { flex: 1; }
