:root{
  /* MoodUP brand: laranja #FA4A31 · rosa escuro #EE98CD · rosa claro #FCEEEC · preto/branco */
  --bg:#FCEEEC;
  --canvas:#FCEEEC;
  --surface:#FFFFFF;
  --surface-2:#FBE5F3;
  --surface-3:#FCEEEC;
  --ink:#000000;
  --ink-2:#1A1A1A;
  --muted:#726B69;
  --line:#FCEAF5;
  --line-soft:#FDF3F8;
  --primary:#EE98CD;
  --primary-strong:#C36FA0;
  --primary-tint:#FBE5F3;
  --accent:#FA4A31;
  --accent-strong:#D53F2A;
  --accent-tint:#FDECE9;
  --star:#E8A93B;
  --stop:#1A1A1A;
  --stop-tint:#F1F1F1;
  --shadow: 0 1px 2px rgba(0,0,0,.05), 0 12px 28px -14px rgba(0,0,0,.20);
  --shadow-lg: 0 20px 48px -20px rgba(0,0,0,.35);
  --radius-card:20px;
  --radius-pill:999px;
  --font-display:'Fraunces', ui-serif, Georgia, serif;
  --font-body:'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}

.stage{
  position:relative;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding:0;
  overflow-x:hidden;
}

.blob{
  position:fixed;
  z-index:0;
  filter:blur(0px);
  opacity:.6;
  pointer-events:none;
}
.blob-a{ top:-180px; left:-160px; width:520px; height:520px; }
.blob-b{ bottom:-220px; right:-200px; width:560px; height:560px; }

.frame{
  position:relative;
  z-index:1;
  width:100%;
  max-width:520px;
  min-height:100vh;
  background:var(--surface);
  box-shadow:0 0 0 1px var(--line-soft), var(--shadow-lg);
  display:flex;
  flex-direction:column;
}
@media(min-width:560px){
  .stage{ padding:40px 16px; }
  .frame{ min-height:calc(100vh - 80px); border-radius:28px; }
}

.topbar{
  position:relative;
  padding:22px 20px 14px;
  flex-shrink:0;
}
.progress-track{
  position:absolute;
  top:0; left:0; right:0;
  height:4px;
  background:var(--line-soft);
  overflow:hidden;
}
.progress-fill{
  height:100%;
  background:linear-gradient(90deg, var(--primary), var(--accent));
  transition:width .5s cubic-bezier(.4,0,.2,1);
}
.back-row{
  display:flex;
  align-items:center;
  min-height:20px;
  margin-bottom:2px;
}
.back-btn{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border:none;
  background:none;
  color:var(--muted);
  font:600 13px var(--font-body);
  cursor:pointer;
  padding:4px 2px;
}
.back-btn:hover{ color:var(--ink); }
.logo-row{
  display:flex;
  justify-content:center;
  padding:2px 0 6px;
}
.logo{
  display:inline-flex;
  align-items:center;
}
.logo-img{
  height:33px;
  width:auto;
  display:block;
}

.dots{
  display:flex;
  justify-content:center;
  gap:10px;
  padding-top:6px;
}
.dot-step{
  width:30px;height:30px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font:700 13px var(--font-body);
  background:var(--surface-2);
  color:var(--muted);
  border:1px solid var(--line);
  transition:all .25s ease;
}
.dot-step.active{
  background:var(--primary);
  border-color:var(--primary);
  color:var(--ink);
}
.dot-step.done{
  background:var(--primary-tint);
  border-color:var(--primary-tint);
  color:var(--ink);
}

.content{
  flex:1;
  padding:8px 24px 40px;
  display:flex;
  flex-direction:column;
}

.eyebrow{
  font:700 11px var(--font-body);
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--accent-strong);
  margin:0 0 10px;
}
h1.q{
  font-family:var(--font-display);
  font-weight:600;
  font-size:26px;
  line-height:1.22;
  letter-spacing:-.01em;
  color:var(--ink);
  margin:4px 0 6px;
  text-wrap:balance;
}
p.sub{
  font:500 14px/1.5 var(--font-body);
  color:var(--muted);
  margin:0 0 22px;
}

.options{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:8px;
}
.opt{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
  text-align:left;
  padding:16px 18px;
  border:1.5px solid var(--line);
  background:var(--surface);
  border-radius:16px;
  cursor:pointer;
  font:600 15px/1.3 var(--font-body);
  color:var(--ink);
  transition:border-color .15s ease, background .15s ease, transform .1s ease;
}
.opt:hover{ border-color:var(--primary); background:var(--primary-tint); }
.opt:active{ transform:scale(.995); }
.opt.selected{
  border-color:var(--primary);
  background:var(--primary-tint);
}
.opt .radio{
  width:20px;height:20px;border-radius:50%;
  border:2px solid var(--line);
  flex-shrink:0;
  position:relative;
  background:#fff;
}
.opt.selected .radio{ border-color:var(--primary); }
.opt.selected .radio::after{
  content:"";
  position:absolute; inset:3px;
  border-radius:50%;
  background:var(--primary);
}
.opt .body{ display:flex; flex-direction:column; gap:2px; }
.opt .desc{ font:500 12.5px/1.4 var(--font-body); color:var(--muted); }

.hero-img{
  margin-top:26px;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line-soft);
}
.hero-img svg{ display:block; width:100%; height:auto; }

.legal{
  margin-top:26px;
  font:500 11.5px/1.6 var(--font-body);
  color:var(--muted);
  text-align:center;
}
.legal a{ color:var(--ink); text-decoration:underline; }

.btn{
  appearance:none;
  border:none;
  cursor:pointer;
  font:700 15.5px var(--font-body);
  border-radius:var(--radius-pill);
  padding:17px 24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  transition:transform .12s ease, box-shadow .12s ease, background .15s ease;
}
.btn:active{ transform:scale(.98); }
.btn-accent{
  background:var(--accent);
  color:#fff;
  box-shadow:0 14px 28px -12px rgba(250,74,49,.5);
}
.btn-accent:hover{ background:var(--accent-strong); }
.btn-primary{
  background:var(--primary);
  color:var(--ink);
  box-shadow:0 14px 28px -12px rgba(238,152,205,.55);
}
.btn-primary:hover{ background:var(--primary-strong); }
.btn-ghost{
  background:var(--surface-2);
  color:var(--ink);
}
.btn-ghost:hover{ background:var(--line-soft); }
.btn-dark{
  background:var(--ink);
  color:#fff;
  box-shadow:0 14px 28px -12px rgba(0,0,0,.4);
}
.btn-dark:hover{ background:#2A2A2A; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

.meta-row{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:18px;
  font:600 12px var(--font-body);
  color:var(--muted);
}
.meta-row span{ display:inline-flex; align-items:center; gap:6px; }

.avatars{
  display:flex;
  justify-content:center;
  margin-top:26px;
}
.avatar{
  width:34px;height:34px;border-radius:50%;
  border:2px solid var(--surface);
  margin-left:-10px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  object-fit:cover;
  font:700 12px var(--font-body);
  color:#fff;
}
.avatar:first-child{ margin-left:0; }

.proof-count{
  text-align:center;
  font:700 15px var(--font-body);
  color:var(--ink);
  margin-top:12px;
}

.rating-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  background:var(--primary-tint);
  padding:9px 16px;
  border-radius:var(--radius-pill);
  font:700 13px var(--font-body);
  color:var(--ink);
  white-space:nowrap;
}
.rating-pill .stars{ font-size:13px; letter-spacing:1px; }
.rating-pill .verified{ font:600 12.5px var(--font-body); color:var(--muted); }

/* Landing */
.landing-hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding-top:64px;
}
@media (max-width:559px){
  .landing-hero{ padding-top:16px; }
}
.landing-hero h1{
  font-family:var(--font-display);
  font-weight:600;
  font-size:34px;
  line-height:1.18;
  letter-spacing:-.015em;
  color:var(--ink);
  margin:22px 0 12px;
  text-wrap:balance;
  max-width:380px;
}
.landing-hero .sub{
  font:500 15px/1.55 var(--font-body);
  color:var(--muted);
  max-width:340px;
  margin:0 0 30px;
}

/* Interstitial / loading */
.center-col{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding-top:26px;
}
.status-line{
  font:600 12.5px var(--font-body);
  color:var(--muted);
  letter-spacing:.02em;
  margin-bottom:18px;
}
.ring-wrap{ position:relative; width:150px; height:150px; margin:0 0 22px; }
.ring-wrap svg{ width:100%; height:100%; transform:rotate(-90deg); }
.ring-label{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  font:700 15px var(--font-body);
  color:var(--ink);
  text-align:center;
  padding:0 20px;
  line-height:1.3;
}
.stars{ color:var(--star); font-size:14px; letter-spacing:2px; }
.social-card{
  background:var(--surface-3);
  border:1px solid var(--line-soft);
  border-radius:18px;
  padding:20px;
  margin-top:6px;
  width:100%;
}
.social-card .stat{
  font-family:var(--font-display);
  font-weight:600;
  font-size:15px;
  color:var(--ink);
  margin:6px 0 2px;
}
.social-card .cap{ font:500 12.5px var(--font-body); color:var(--muted); }

/* Checklist (loading tela 14) */
.checklist{ width:100%; margin-top:8px; text-align:left; }
.check-item{
  display:flex; align-items:center; gap:12px;
  padding:14px 4px;
  border-bottom:1px solid var(--line-soft);
  font:600 14px var(--font-body);
  color:var(--muted);
  opacity:.5;
  transition:opacity .3s ease, color .3s ease;
}
.check-item:last-child{ border-bottom:none; }
.check-item.on{ opacity:1; color:var(--ink); }
.check-item .mark{
  width:22px;height:22px;border-radius:50%;
  background:var(--line-soft);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:background .3s ease;
}
.check-item.on .mark{ background:var(--primary); }
.check-item.on .mark svg{ stroke:var(--ink); }
.check-item .mark svg{ stroke:var(--muted); }

/* Stop screen */
.stop-avatar{
  width:96px;height:96px;border-radius:50%;
  background:var(--stop-tint);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:22px;
}
.stop-card{
  background:var(--stop-tint);
  border:1px solid #E2E2E2;
  border-radius:16px;
  padding:18px 20px;
  font:500 14px/1.6 var(--font-body);
  color:var(--ink-2);
  text-align:left;
  margin:14px 0 26px;
}

/* Testimonials (tela 9 / offer) */
.testi{
  display:flex;
  gap:14px;
  padding:16px;
  border:1px solid var(--line-soft);
  border-radius:16px;
  background:var(--surface);
  margin-bottom:12px;
}
.testi-avatar{
  width:46px;height:46px;border-radius:14px;
  flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font:700 15px var(--font-body); color:#fff;
}
.testi h4{
  margin:0 0 4px; font:800 11px var(--font-body);
  letter-spacing:.04em; color:var(--accent-strong); text-transform:uppercase;
}
.testi p{ margin:0 0 6px; font:500 13.5px/1.5 var(--font-body); color:var(--ink-2); }
.testi .who{ font:700 12px var(--font-body); color:var(--ink); }
.testi .who .st{ color:var(--star); margin-left:6px; }
.testi .who .verified{ color:var(--muted); font-weight:600; margin-left:6px; }

/* Offer page */
.offer-badge{
  display:inline-flex; align-items:center; gap:6px;
  background:var(--primary-tint); color:var(--primary-strong);
  font:700 12px var(--font-body); padding:8px 14px; border-radius:var(--radius-pill);
  margin:0 auto 14px; align-self:center;
}
.offer-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:15px;
  letter-spacing:.06em;
  color:var(--accent-strong);
  text-align:center;
  text-transform:uppercase;
  margin:0 0 2px;
}
h2.offer-h{
  font-family:var(--font-display);
  font-weight:600;
  font-size:24px;
  line-height:1.25;
  text-align:center;
  color:var(--ink);
  margin:6px 0 18px;
  text-wrap:balance;
}
/* Carrossel da oferta */
.carousel-wrap{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  margin-bottom:26px;
  user-select:none;
}
.carousel-track{
  display:flex;
  touch-action:pan-y;
  cursor:grab;
}
.carousel-track:active{ cursor:grabbing; }
.carousel-slide{
  flex:0 0 100%;
  width:100%;
  box-sizing:border-box;
  padding:18px;
}
.carousel-slide img{ width:100%; height:auto; border-radius:12px; display:block; pointer-events:none; -webkit-user-drag:none; }

/* slides de foto: imagem preenchendo o card todo, sem margem */
.carousel-slide.slide-photo{
  padding:0;
}
.photo-frame{
  width:100%;
  aspect-ratio:415/250;
  overflow:hidden;
}
.photo-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  margin:0;
  border-radius:0;
}
.carousel-dots{
  position:absolute;
  left:0; right:0; bottom:10px;
  display:flex; justify-content:center; gap:6px;
  z-index:2;
}
.carousel-dot{
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,.55);
  box-shadow:0 1px 3px rgba(0,0,0,.35);
  cursor:pointer;
  transition:background .2s ease, width .2s ease;
}
.carousel-dot.active{ background:var(--accent); width:18px; border-radius:4px; }

.caffeine-note{
  display:flex; gap:10px; align-items:flex-start;
  background:var(--accent-tint);
  border:1px solid #FBD2C8;
  border-radius:14px;
  padding:14px 16px;
  margin-bottom:22px;
  font:500 13px/1.5 var(--font-body);
  color:var(--ink-2);
}

.plan-toggle{
  text-align:center; font:600 13px var(--font-body); color:var(--ink); margin:2px 0 14px;
}
.plans{ display:flex; flex-direction:column; gap:12px; }
.plan{
  position:relative;
  border:1.5px solid var(--line);
  border-radius:16px;
  padding:16px 18px;
  cursor:pointer;
  background:var(--surface);
  transition:border-color .15s ease, background .15s ease;
}
.plan.selected{ border-color:var(--primary); background:var(--primary-tint); box-shadow:0 0 0 1px var(--primary) inset; }
.plan-tag{
  position:absolute; top:-11px; right:16px;
  font:800 10.5px var(--font-body); letter-spacing:.03em;
  padding:4px 10px; border-radius:var(--radius-pill); color:#fff;
}
.plan-tag.best{ background:var(--accent); }
.plan-tag.save{ background:var(--primary); color:var(--ink); }
.plan-top{ display:flex; justify-content:space-between; align-items:baseline; }
.plan-name{ font:800 14.5px var(--font-body); color:var(--ink); letter-spacing:.01em; }
.plan-units{ font:600 12px var(--font-body); color:var(--muted); margin-top:2px; }
.plan-price{ text-align:right; }
.plan-old{ font:600 11.5px var(--font-body); color:var(--muted); text-decoration:line-through; }
.plan-new{ font:800 18px var(--font-body); color:var(--ink); }
.plan-bottom{ display:flex; justify-content:space-between; align-items:center; margin-top:8px; }
.plan-free{ font:700 11.5px var(--font-body); color:var(--ink); display:flex; gap:4px; align-items:center; }
.plan-unit{ font:600 11.5px var(--font-body); color:var(--muted); }

.checkout-summary{
  text-align:center; margin:20px 0 6px;
}
.checkout-summary .amount{ font-family:var(--font-display); font-weight:700; font-size:30px; color:var(--ink); }
.checkout-summary .old{ font:600 13px var(--font-body); color:var(--muted); }

.trust-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:10px;
  margin:22px 0 20px; text-align:center;
}
.trust-row div{ display:flex; flex-direction:column; align-items:center; gap:6px; font:600 10.5px var(--font-body); color:var(--muted); }
.trust-row svg{ color:var(--ink); }

.rating-row{ display:flex; justify-content:center; align-items:center; gap:8px; margin-bottom:26px; }
.rating-row .stars{ font-size:15px; }
.rating-row span{ font:600 13px var(--font-body); color:var(--muted); }

.section-title{
  font-family:var(--font-display);
  font-weight:600; font-size:19px; color:var(--ink);
  margin:8px 0 14px;
}

.faq{
  border-top:1px solid var(--line-soft);
}
.faq details{
  border-bottom:1px solid var(--line-soft);
  padding:14px 2px;
}
.faq summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  font:700 14px/1.4 var(--font-body);
  color:var(--ink);
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary .plus{
  flex-shrink:0; width:22px;height:22px; border-radius:50%;
  background:var(--surface-2); display:flex; align-items:center; justify-content:center;
  font:700 15px var(--font-body); color:var(--ink);
}
.faq details[open] summary .plus{ transform:rotate(45deg); }
.faq p{ font:500 13.5px/1.6 var(--font-body); color:var(--muted); margin:10px 0 0; }

.guarantee{
  display:flex; flex-direction:column; align-items:center; text-align:center;
  padding:28px 10px 8px; gap:14px;
}
.guarantee-badge{ width:104px; height:104px; }
.guarantee h4{ font-family:var(--font-display); font-weight:700; font-size:16px; color:var(--ink); margin:0; }
.guarantee p{ font:500 13px/1.6 var(--font-body); color:var(--muted); max-width:340px; margin:0; }

.sticky-cta{
  position:sticky; bottom:0; left:0; right:0;
  background:linear-gradient(180deg, rgba(255,255,255,0), var(--surface) 30%);
  padding:14px 0 4px;
  margin-top:4px;
}

/* Botão flutuante fixo, só na versão mobile */
.floating-cta{ margin-top:8px; }
.cta-spacer{ height:0; }
@media (max-width:559px){
  .cta-spacer{ height:84px; }
  .floating-cta{
    position:fixed;
    left:0; right:0; bottom:0;
    max-width:520px;
    margin:0 auto;
    padding:14px 24px calc(14px + env(safe-area-inset-bottom));
    background:linear-gradient(180deg, rgba(252,238,236,0), var(--bg) 45%);
    z-index:15;
  }
}

/* Terms modal */
.terms-overlay{
  position:fixed; inset:0; z-index:30;
  background:rgba(18,10,8,.55);
  display:flex; align-items:center; justify-content:center;
  padding:24px;
  opacity:0; pointer-events:none;
  transition:opacity .2s ease;
}
.terms-overlay.open{ opacity:1; pointer-events:auto; }
.terms-modal{
  position:relative;
  width:100%; max-width:560px; max-height:85vh;
  background:var(--surface);
  border-radius:20px;
  box-shadow:var(--shadow-lg);
  overflow-y:auto;
  padding:32px 28px 28px;
  transform:translateY(10px) scale(.98);
  transition:transform .2s ease;
}
.terms-overlay.open .terms-modal{ transform:translateY(0) scale(1); }
.terms-close{
  position:absolute; top:16px; right:16px;
  width:32px;height:32px;border-radius:50%;
  background:var(--surface-2); border:none; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  color:var(--ink);
}
.terms-modal h2{
  font-family:var(--font-display); font-weight:600; font-size:22px;
  color:var(--ink); text-align:center; margin:0 0 20px;
}
.terms-body{
  background:var(--surface-3); border-radius:14px; padding:20px 22px;
  font:500 13.5px/1.65 var(--font-body); color:var(--ink-2);
}
.terms-body p{ margin:0 0 12px; }
.terms-body h3{ font:800 13.5px var(--font-body); color:var(--ink); margin:18px 0 6px; }
.terms-body h3:first-child{ margin-top:0; }
.terms-body .muted{ color:var(--muted); font-size:12.5px; }
.terms-body hr{ border:none; border-top:1px solid var(--line); margin:16px 0; }

.fade-in{ animation:fadeIn .35s ease both; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(6px);} to{ opacity:1; transform:translateY(0);} }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001s !important; transition-duration:.001s !important; }
}
