* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: hsl(340 50% 98%);
  --rose: hsl(338 90% 52%);
  --rose-d: hsl(342 88% 44%);
  --rose-tint: hsl(340 80% 95%);
  --rose-mid: hsl(340 65% 88%);
  --green: hsl(142 72% 40%);
  --green-d: hsl(150 75% 33%);
  --gold: hsl(42 95% 52%);
  --ink: hsl(342 22% 14%);
  --muted: hsl(342 8% 45%);
  --line: hsl(340 30% 90%);
  --red: hsl(0 78% 55%);
  --grad-hero: linear-gradient(135deg, hsl(340 80% 96%), hsl(340 65% 89%));
  --grad-cta: linear-gradient(135deg, hsl(142 72% 42%), hsl(150 75% 35%));
  --shadow-card: 0 6px 24px -10px hsl(342 50% 28% / .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: var(--ink);
  color: #fff; text-align: center; font-size: .72rem; font-weight: 800;
  padding: 9px 10px; display: flex; gap: 9px; justify-content: center; align-items: center;
  flex-wrap: nowrap; white-space: nowrap;
}
.topbar-ship { white-space: nowrap; letter-spacing: .2px; }
.topbar-dot { color: var(--rose); font-size: .9rem; }
.topbar-timer { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.topbar-timer i { font-style: normal; color: #fff; font-weight: 800; opacity: .7; }
.cd-box {
  font-variant-numeric: tabular-nums; letter-spacing: .4px; font-size: .8rem;
  background: #fff; color: var(--ink); padding: 2px 5px; border-radius: 5px;
  min-width: 23px; text-align: center; box-shadow: 0 1px 4px rgba(0,0,0,.25);
}
@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: 3;
  width: 38px; height: 38px; border: none; cursor: pointer; border-radius: 50%;
  background: #fff; color: var(--ink); font-size: 1.5rem; line-height: 1;
  display: grid; place-items: center; opacity: .96; transition: opacity .15s;
  box-shadow: 0 2px 10px rgba(0,0,0,.16);
}
.car-arrow:hover { opacity: 1; }
.car-prev { left: 8px; } .car-next { right: 8px; }
.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(338 70% 92%); }
.bnf-ico.ico-gold { background: hsl(38 80% 90%); }
.bnf-ico.ico-blue { background: hsl(330 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(338 60% 45% / .35); }
.kit-top { position: relative; background: var(--grad-hero); padding: 6px; display: flex; justify-content: center; }
.kit-top img { width: 100%; max-width: 340px; height: auto; aspect-ratio: 1 / 1; 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-gift { display: inline-block; font-size: .82rem; font-weight: 800; color: hsl(280 60% 42%); background: hsl(280 60% 96%); border: 1px dashed hsl(280 55% 65%); border-radius: 999px; padding: 4px 12px; margin: 0 0 12px; }
.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(330 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(338 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 88px; 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; }

/* ===== HEAD (estrutura estilo screenshot) — paleta/preços/fotos da casa ===== */
.hero { text-align: left; }

.live-viewers { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; color: var(--muted); font-weight: 600; margin: 2px 0 12px; }
.live-viewers strong { color: var(--ink); }
.lv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose); animation: lvPulse 1.6s infinite; }
@keyframes lvPulse { 0% { box-shadow: 0 0 0 0 hsl(338 90% 52% / .55); } 70% { box-shadow: 0 0 0 7px hsl(338 90% 52% / 0); } 100% { box-shadow: 0 0 0 0 hsl(338 90% 52% / 0); } }

/* selo ORIGINAL no carrossel */
.car-seal {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  width: 60px; height: 60px; border-radius: 50%;
  background: radial-gradient(circle, #fff 58%, #f6ecd8 100%);
  border: 2px solid var(--gold); color: var(--rose-d);
  display: grid; place-items: center; text-align: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: .52rem; line-height: 1.15; letter-spacing: .4px;
  box-shadow: 0 3px 10px rgba(0,0,0,.16); transform: rotate(-12deg);
}

/* barra de estoque */
.stock-bar { background: var(--rose-tint); border: 1px solid var(--line); border-radius: 12px; padding: 10px 14px; font-size: .86rem; font-weight: 600; color: var(--ink); margin: 4px 0 14px; }
.stock-bar strong { color: var(--rose-d); }

/* linha spec (pill verde) + nota */
.spec-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.spec-pill { background: hsl(142 60% 92%); color: var(--green-d); font-weight: 800; font-size: .68rem; letter-spacing: .3px; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.spec-rating { display: inline-flex; align-items: center; gap: 5px; font-size: .82rem; font-weight: 700; white-space: nowrap; }
.spec-rating .rating-count { color: var(--muted); font-weight: 500; }

/* subtítulo (marca · palavras-chave) */
.hero-sub { max-width: none; margin: 2px 0 16px; color: var(--muted); font-size: .92rem; }

/* card de preço */
.price-card { background: hsl(340 40% 97%); border: 1px solid var(--line); border-radius: 16px; padding: 16px 18px; margin-bottom: 12px; }
.pc-main { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.pc-main strong { font-family: 'Montserrat', sans-serif; font-size: 1.9rem; font-weight: 900; color: var(--ink); margin-left: 4px; }
.pc-old { display: flex; align-items: center; gap: 10px; margin: 4px 0 8px; }
.pc-from { color: var(--red); text-decoration: line-through; font-weight: 700; font-size: .95rem; }
.pc-off { background: var(--red); color: #fff; font-weight: 800; font-size: .78rem; padding: 2px 8px; border-radius: 6px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: .8rem; font-weight: 600; color: var(--muted); }
.pc-tags .fire { color: var(--rose-d); }

/* linha "já compraram" */
.bought-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; margin-bottom: 14px; text-decoration: none; color: var(--ink); font-size: .86rem; font-weight: 600; box-shadow: var(--shadow-card); }
.bought-row .br-arrow { color: var(--muted); font-size: 1.2rem; }

/* CTA de 2 linhas */
.cta-2line { flex-direction: column; gap: 2px; padding: 14px 18px; border-radius: 14px; }
.cta-2line .cta-main { font-size: 1.05rem; font-weight: 900; letter-spacing: .3px; }
.cta-2line .cta-sub { font-size: .76rem; font-weight: 600; opacity: .95; }

/* linha "finalizando agora" */
.hero-finalizing { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 10px; }
.hero-finalizing strong { color: var(--ink); }

/* ===== RESPONSIVO MOBILE ===== */
/* nunca deixa imagem/elemento estourar a largura da tela */
img, .carousel, .kit-top img, .rev-photo { max-width: 100%; }

/* celulares comuns (≤ 400px): aperta espaçamentos e tamanhos com folga */
@media (max-width: 400px) {
  .wrap { padding: 0 14px 116px; }
  .header { padding: 12px 14px; }
  .topbar { gap: 7px; padding: 8px 8px; }
  .cd-box { min-width: 21px; padding: 2px 4px; }
  .hero-title { font-size: 1.75rem; }
  .pc-main strong { font-size: 1.75rem; }
  .sec-title { font-size: 1.4rem; }
  .kit-top img { max-width: 320px; }
  .kit-body { padding: 16px; }
  .kit-body h3 { font-size: 1.1rem; }
  .spec-row { flex-wrap: wrap; row-gap: 6px; }
  .finalcta-card { padding: 28px 18px; }
}

/* celulares pequenos (≤ 345px, ex. iPhone SE / Galaxy Fold capa): reduz a base */
@media (max-width: 345px) {
  html { font-size: 15px; }
  .topbar { gap: 5px; padding: 7px 6px; }
  .cd-box { min-width: 18px; padding: 2px 3px; }
  .kit-top img { max-width: 280px; }
  .trust-card { padding: 12px 6px; }
  .bnf-card { padding: 16px 10px; }
  .bnf-ico { width: 46px; height: 46px; }
  .car-seal { width: 52px; height: 52px; font-size: .48rem; }
}

/* telas largas (tablet/desktop): mantém a coluna mobile centralizada sobre um fundo suave */
@media (min-width: 560px) {
  body { background: linear-gradient(180deg, var(--rose-tint), var(--bg) 240px); }
  .wrap, .header, .site-footer { background: transparent; }
}

/* ===== FitHair: fotos de frasco com fundo branco no card rosa ===== */
.kit-top img { mix-blend-mode: multiply; }

/* ===== FitHair: hero compacto — preço + CTA acima da dobra no mobile ===== */
.hero { padding-top: 4px; }
.live-viewers { margin: 0 0 8px; }
.carousel { max-width: 258px; }
.car-dots { margin: 10px 0 2px; }
.hero-title { font-size: 1.7rem; margin: 6px 0 6px; }
.spec-row { margin-bottom: 10px; }
.price-card { padding: 12px 16px; margin-bottom: 12px; }
.hero .hero-cta { margin-bottom: 12px; }
.hero .stock-bar { margin: 0 0 12px; }
.hero .hero-sub { margin: 2px 0 14px; }

/* ===== FitHair v5: anti-quebra de layout + responsividade fina (ref. fits36/colageno) ===== */
html, body { max-width: 100%; overflow-x: hidden; }   /* nada estoura a largura da tela */
img { height: auto; }                                  /* mantém proporção mesmo com width/height fixos */
/* títulos longos (bundles) quebram equilibrado, sem cortar palavra */
.kit-body h3, .sec-title, .finalcta-card h2, .hero-sub { text-wrap: balance; overflow-wrap: break-word; }
/* selos/pills/brinde não estouram nem quebram no meio */
.topbar, .kit-gift, .spec-pill, .kit-badge, .kit-ship, .stock-bar { white-space: nowrap; }
.kit-gift, .spec-pill { max-width: 100%; }
/* preço: nome+valor sempre na mesma linha, alinhados */
.kit-price { flex-wrap: wrap; }
