/* ============ VAIDOSA SHOP — Página de Vendas ============ */
:root {
  --pink: #e91e78;
  --pink-dark: #c2185b;
  --pink-light: #fce4ef;
  --pink-bg: #fff5f9;
  --rose: #b76e79;
  --gold: #d4a373;
  --dark: #2b1b23;
  --gray: #6d5a63;
  --white: #ffffff;
  --grad: linear-gradient(135deg, #e91e78 0%, #ad1457 100%);
  --grad-soft: linear-gradient(135deg, #fce4ef 0%, #fff5f9 100%);
  --shadow: 0 10px 30px rgba(194, 24, 91, .15);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
.container { width: min(1140px, 92%); margin: 0 auto; }

h1, h2 { font-family: 'Playfair Display', serif; line-height: 1.2; }
em { font-style: italic; color: var(--pink); }

/* ---------- Topbar (letreiro correndo) ---------- */
.topbar {
  background: var(--grad);
  color: #fff;
  padding: 9px 0;
  font-size: .85rem;
  letter-spacing: .4px;
  overflow: hidden;
  white-space: nowrap;
}
.topbar__track {
  display: inline-flex;
  animation: marquee 22s linear infinite;
}
.topbar__track span {
  padding: 0 34px;
  font-weight: 600;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 14px rgba(43,27,35,.07);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--dark); text-decoration: none; }
.logo span { color: var(--pink); }
.nav { display: flex; gap: 26px; }
.nav a { color: var(--gray); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .2s; }
.nav a:hover { color: var(--pink); }

/* Botão do menu (só aparece no celular) */
.menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 42px; height: 42px; padding: 10px; flex-shrink: 0;
  flex-direction: column; justify-content: space-between;
}
.menu-btn span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: var(--dark); transition: transform .28s, opacity .2s;
}
.menu-btn.aberto span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.menu-btn.aberto span:nth-child(2) { opacity: 0; }
.menu-btn.aberto span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: var(--shadow);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(194, 24, 91, .3); }
.btn--small { padding: 9px 20px; font-size: .82rem; line-height: 1.25; text-align: center; }
.btn--small span { font-weight: 600; opacity: .92; }
.btn--big { padding: 17px 36px; font-size: 1rem; letter-spacing: .4px; }
.btn--light { background: #fff; color: var(--pink-dark); }
.btn--buy { display: block; width: 100%; padding: 19px 20px; font-size: 1.1rem; margin-top: 18px; }
.btn--rec { display: block; padding: 13px 18px; font-size: .9rem; margin-top: 14px; }
.btn--sticky { padding: 13px 26px; font-size: .9rem; flex-shrink: 0; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 120, .45); }
  50% { box-shadow: 0 0 0 14px rgba(233, 30, 120, 0); }
}
.pulse { animation: pulse 2s infinite; }

/* ---------- Hero ---------- */
.hero { background: var(--grad-soft); overflow: hidden; }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 40px; align-items: center; padding: 60px 0 70px;
}
.tag {
  display: inline-block; background: var(--pink-light); color: var(--pink-dark);
  font-size: .8rem; font-weight: 600; padding: 7px 16px; border-radius: 50px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); margin-bottom: 18px; }
.hero__sub { color: var(--gray); font-size: 1.02rem; margin-bottom: 22px; }
.hero__checks { list-style: none; margin-bottom: 28px; }
.hero__checks li { font-weight: 500; font-size: .95rem; padding: 4px 0; }
.hero__rating { margin-top: 14px; font-size: .85rem; }
.hero__rating span { color: var(--gray); }

/* Preço no topo (a cliente vê antes de rolar) */
.hero__preco {
  background: #fff; border-radius: 16px; padding: 18px 22px;
  margin-bottom: 20px; display: inline-block;
  box-shadow: 0 8px 24px rgba(194, 24, 91, .12);
  border: 1px solid #f8dcea;
}
.hero__preco-topo { display: flex; align-items: center; gap: 10px; margin-bottom: 2px; }
.hero__preco-de { color: var(--gray); font-size: .85rem; }
.hero__preco-de s { color: #c94f7c; }
.hero__preco-off {
  background: var(--grad); color: #fff; font-size: .7rem; font-weight: 700;
  padding: 3px 9px; border-radius: 20px; letter-spacing: .3px;
}
.hero__preco-valor {
  font-size: 2.6rem; font-weight: 800; color: var(--pink);
  line-height: 1.1; margin-bottom: 2px;
}
.hero__preco-parcela { color: var(--gray); font-size: .84rem; }
.hero__preco-parcela strong { color: var(--dark); }
.hero__link-detalhes {
  display: block; margin-top: 12px; color: var(--gray);
  font-size: .85rem; text-decoration: none;
}
.hero__link-detalhes:hover { color: var(--pink); text-decoration: underline; }
.hero__selos { margin-top: 14px; font-size: .8rem; color: var(--gray); }
.hero__img { position: relative; }
.hero__img img {
  border-radius: 30px 120px 30px 30px;
  box-shadow: 0 24px 60px rgba(183, 110, 121, .35);
  aspect-ratio: 4/3.6; object-fit: cover;
}
/* Fotos em pé (antes e depois) aparecem inteiras, sem corte */
.hero__img img.retrato {
  aspect-ratio: 4/4.6; object-fit: contain; background: #fff;
}
.hero__thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 14px;
}
.hero__thumbs img {
  border-radius: 12px; aspect-ratio: 1; object-fit: cover; cursor: pointer;
  border: 3px solid transparent; opacity: .7; transition: all .2s; background: #fff;
  box-shadow: 0 4px 12px rgba(183,110,121,.15);
}
.hero__thumbs img:hover, .hero__thumbs img.active { border-color: var(--pink); opacity: 1; }
.hero__badge {
  position: absolute; top: -24px; left: -24px;
  background: #fff; color: var(--pink-dark);
  width: 135px; height: 135px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1.25;
  font-weight: 800; font-size: 1.08rem;
  box-shadow: 0 12px 34px rgba(43, 27, 35, .18);
}
.hero__badge-icon { font-size: 2rem; margin-bottom: 4px; }

/* ---------- Trust ---------- */
.trust { background: #fff; border-bottom: 1px solid #f8e3ee; }
.trust__inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; padding: 26px 0;
}
.trust__item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trust__item span { font-size: 1.7rem; }
.trust__item strong { display: block; font-size: .9rem; }
.trust__item small { color: var(--gray); font-size: .78rem; }

/* ---------- Seções ---------- */
.section-title {
  text-align: center; font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  margin-bottom: 44px;
}
.section-title.left { text-align: left; margin-bottom: 30px; }

/* ---------- Dor ---------- */
.pain { padding: 80px 0; background: #fff; }
.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pain__card {
  background: var(--pink-bg); border-radius: var(--radius);
  padding: 34px 26px; text-align: center;
  border: 1px solid #f8dcea;
}
.pain__card span { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.pain__card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.pain__card p { color: var(--gray); font-size: .92rem; }
.pain__solution { text-align: center; margin-top: 40px; font-size: 1.15rem; }

/* ---------- Benefícios ---------- */
.benefits { padding: 80px 0; background: var(--grad-soft); }
.benefits__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.benefits__img img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(183,110,121,.3); }
.benefit { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.benefit span {
  font-size: 1.4rem; background: #fff; width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px; box-shadow: 0 6px 18px rgba(194,24,91,.12);
}
.benefit h3 { font-size: 1.05rem; margin-bottom: 3px; }
.benefit p { color: var(--gray); font-size: .92rem; }
.benefits .btn { margin-top: 10px; }

/* ---------- Resultados ---------- */
.results { padding: 80px 0; background: #fff; }
.results__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.results__grid figure img { border-radius: var(--radius); box-shadow: var(--shadow); }
.results__grid figcaption { text-align: center; color: var(--gray); font-size: .85rem; margin-top: 12px; }

/* Galeria de antes e depois */
.resultados__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.resultados__thumbs img {
  aspect-ratio: 4/3; object-fit: cover; cursor: pointer;
  border-radius: 12px; border: 3px solid transparent; opacity: .65;
  box-shadow: 0 4px 12px rgba(183,110,121,.15);
  transition: opacity .2s, border-color .2s, transform .2s;
}
.resultados__thumbs img:hover { opacity: 1; transform: translateY(-2px); }
.resultados__thumbs img.active { opacity: 1; border-color: var(--pink); }
#resultadoLegenda { min-height: 2.4em; }
.benefits__legenda { text-align: center; color: var(--gray); font-size: .85rem; margin-top: 12px; }
.results__list h3 { font-size: 1.25rem; margin-bottom: 16px; }
.results__list ul { list-style: none; margin-bottom: 28px; }
.results__list li { padding: 9px 0 9px 34px; position: relative; color: var(--gray); }
.results__list li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  background: var(--pink-light); color: var(--pink-dark);
  width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700;
}
.results__list strong { color: var(--dark); }

/* ---------- Como usar ---------- */
.how { padding: 80px 0; background: var(--pink-bg); }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how__step {
  background: #fff; border-radius: var(--radius); padding: 40px 28px;
  text-align: center; box-shadow: 0 8px 24px rgba(183,110,121,.1);
}
.how__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--grad); color: #fff; font-weight: 800; font-size: 1.4rem;
  margin-bottom: 16px;
}
.how__step h3 { margin-bottom: 6px; }
.how__step p { color: var(--gray); font-size: .92rem; }

/* ---------- Oferta ---------- */
.offer { padding: 80px 0; background: var(--grad); }
.offer__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.offer__gallery img#offerMainImg {
  border-radius: var(--radius); background: #fff;
  aspect-ratio: 1; object-fit: cover; width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.offer__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.offer__thumbs img {
  border-radius: 12px; aspect-ratio: 1; object-fit: cover; cursor: pointer;
  border: 3px solid transparent; opacity: .75; transition: all .2s; background: #fff;
}
.offer__thumbs img:hover, .offer__thumbs img.active { border-color: #fff; opacity: 1; }
.offer__box {
  background: #fff; border-radius: 24px; padding: 38px 34px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.offer__flag {
  display: inline-block; background: #ffe9f3; color: var(--pink-dark);
  font-size: .78rem; font-weight: 700; letter-spacing: .5px;
  padding: 7px 14px; border-radius: 50px; margin-bottom: 12px;
}
.offer__box h2 { font-size: 1.7rem; margin-bottom: 6px; }
.offer__stars { font-size: .9rem; margin-bottom: 18px; }
.offer__stars small { color: var(--gray); }
.offer__old { color: var(--gray); font-size: .9rem; }
.offer__old s { color: #c94f7c; }
.offer__now { font-size: 3rem; font-weight: 800; color: var(--pink); font-family: 'Poppins', sans-serif; line-height: 1.1; }
.offer__now strong { font-weight: 800; }
.offer__installments { color: var(--gray); font-size: .85rem; }
.offer__timer { margin-top: 20px; background: var(--pink-bg); border-radius: 14px; padding: 14px 18px; }
.offer__timer p { font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.timer { display: flex; gap: 12px; }
.timer div { text-align: center; }
.timer span {
  display: block; background: var(--dark); color: #fff;
  font-weight: 700; font-size: 1.3rem; border-radius: 10px;
  min-width: 54px; padding: 8px 6px;
}
.timer small { font-size: .68rem; color: var(--gray); }
.offer__safe { text-align: center; font-size: .8rem; color: var(--gray); margin-top: 12px; }
.offer__pay {
  text-align: center; font-size: .76rem; color: var(--gray);
  margin-top: 8px; padding-top: 10px; border-top: 1px solid #f6e6ef;
}
.offer__pay strong { color: var(--dark); }
.offer__cep {
  display: flex; gap: 8px; align-items: center; justify-content: center;
  background: var(--pink-bg); border: 1px dashed #f0cede; border-radius: 12px;
  padding: 10px 14px; margin-top: 10px;
  font-size: .8rem; color: var(--pink-dark); text-align: center;
}
.offer__includes { list-style: none; margin-top: 18px; border-top: 1px dashed #f0cede; padding-top: 16px; }
.offer__includes li { font-size: .9rem; padding: 3px 0; color: var(--gray); }

/* ---------- Recomendados ---------- */
.recs { padding: 80px 0; background: #fff; }
.recs__sub { text-align: center; color: var(--gray); margin: -28px 0 44px; }
.recs__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rec {
  background: #fff; border: 1px solid #f5dcE9; border-radius: 20px;
  padding: 20px; display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.rec:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.rec--featured { border: 2px solid var(--pink); position: relative; }
.rec__imgwrap { position: relative; margin-bottom: 16px; }
.rec__imgwrap img {
  border-radius: 14px; aspect-ratio: 1; object-fit: cover; width: 100%;
  background: var(--pink-bg);
}
.rec__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--dark); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .6px;
  padding: 5px 12px; border-radius: 50px;
}
.rec__badge--pink { background: var(--grad); }
.rec h3 { font-size: 1.05rem; margin-bottom: 6px; }
.rec p { color: var(--gray); font-size: .87rem; flex-grow: 1; }
.rec__colors { display: flex; align-items: center; gap: 8px; margin-top: 10px; font-size: .8rem; color: var(--gray); }
.swatch {
  width: 22px; height: 22px; border-radius: 50%; cursor: pointer;
  border: 2px solid #fff; outline: 2px solid transparent; transition: outline .2s;
}
.swatch.active, .swatch:hover { outline-color: var(--pink); }
.swatch--rosa { background: #f48fb1; }
.swatch--azul { background: #64b5f6; }
.swatch--laranja { background: #ffa06a; }
.swatch--roxa { background: #ba68c8; }
.rec__stars { font-size: .8rem; margin-top: 10px; }
.rec__stars small { color: var(--gray); }
.rec__price { margin-top: 4px; }
.rec__price s { color: var(--gray); font-size: .85rem; margin-right: 6px; }
.rec__price strong { color: var(--pink); font-size: 1.35rem; }
.rec__price small { display: block; color: var(--gray); font-size: .78rem; }

/* ---------- Depoimentos ---------- */
.reviews { padding: 80px 0; background: var(--pink-bg); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  box-shadow: 0 8px 24px rgba(183,110,121,.1);
}
.review__stars { margin-bottom: 12px; }
.review p { color: var(--gray); font-size: .92rem; font-style: italic; margin-bottom: 18px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.review__author strong { display: block; font-size: .92rem; }
.review__author small { color: var(--gray); font-size: .78rem; }

/* ---------- Garantia ---------- */
.guarantee { padding: 70px 0; background: #fff; }
.guarantee__inner {
  display: flex; gap: 34px; align-items: center;
  background: var(--grad-soft); border: 1px solid #f8dcea;
  border-radius: 24px; padding: 44px 48px;
}
.guarantee__seal {
  flex-shrink: 0; width: 120px; height: 120px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 2.6rem; font-weight: 800; font-family: 'Poppins', sans-serif;
  box-shadow: var(--shadow);
}
.guarantee__seal small { font-size: .8rem; letter-spacing: 2px; font-weight: 600; }
.guarantee h2 { font-size: 1.6rem; margin-bottom: 8px; }
.guarantee p { color: var(--gray); }

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; background: var(--pink-bg); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq details {
  background: #fff; border-radius: 14px; margin-bottom: 12px;
  padding: 20px 24px; box-shadow: 0 4px 14px rgba(183,110,121,.08);
}
.faq summary {
  font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 1.4rem; color: var(--pink); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--gray); font-size: .92rem; margin-top: 12px; }

/* ---------- CTA final ---------- */
.final { padding: 90px 0; background: var(--grad); text-align: center; color: #fff; }
.final h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-bottom: 12px; }
.final em { color: #ffd7ea; }
.final p { opacity: .92; margin-bottom: 30px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #cbb4c0; padding: 46px 0 40px; text-align: center; }
.logo--footer { color: #fff; }
.footer p { font-size: .88rem; margin-top: 10px; }
.footer__contato { margin-top: 16px !important; font-size: .88rem !important; }
.footer__contato a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.footer__contato a:hover { border-bottom-color: #fff; }
.footer__contato span { opacity: .4; margin: 0 6px; }
.footer__legal { opacity: .6; font-size: .75rem !important; margin-top: 16px !important; }

/* ---------- Sticky CTA mobile ---------- */
/* ---------- WhatsApp ---------- */
.whats {
  position: fixed; bottom: 22px; right: 22px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s;
}
.whats:hover { transform: scale(1.1); }

/* ---------- Animações de scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Página de produto ---------- */
.pp-back {
  display: inline-block;
  color: var(--gray);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  margin: 22px 0 0;
}
.pp-back:hover { color: var(--pink); }
.pp-hero { padding: 30px 0 70px; background: var(--grad-soft); }
.pp-hero .offer__box { box-shadow: 0 18px 44px rgba(183,110,121,.22); }
.pp-hero .offer__gallery img#offerMainImg { box-shadow: 0 18px 44px rgba(183,110,121,.28); }
.pp-colors { margin: 16px 0 4px; }
.pp-colors p { font-size: .88rem; font-weight: 600; margin-bottom: 8px; }
.pp-colors .swatch { width: 34px; height: 34px; margin-right: 8px; }
.pp-figs { padding: 80px 0; background: #fff; }
.pp-figs__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.pp-figs figure img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.pp-figs figcaption { text-align: center; color: var(--gray); font-size: .85rem; margin-top: 10px; }

/* Especificações do produto */
.pp-specs { background: var(--pink-bg); border-radius: 14px; padding: 18px 20px; margin-top: 16px; }
.pp-specs h4 { font-size: .9rem; margin-bottom: 8px; }
.pp-specs ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 4px 14px; }
.pp-specs li { font-size: .82rem; color: var(--gray); }
.pp-specs li strong { color: var(--dark); }
.pp-int {
  display: inline-flex; gap: 7px; align-items: center;
  background: #e8f1fd; border: 1px solid #bcd6f5; color: #1e4e79;
  border-radius: 50px; padding: 6px 14px; margin: 10px 0 4px;
  font-size: .78rem; font-weight: 600;
}
.pp-envio {
  display: flex; gap: 10px; align-items: flex-start;
  background: #eef7f0; border: 1px solid #bfe0c8; border-radius: 12px;
  padding: 12px 14px; margin-top: 14px; font-size: .82rem; color: #2e5f3c;
}
.pp-sortidas {
  display: flex; gap: 10px; align-items: flex-start;
  background: #fff8e6; border: 1px solid #f5e0a3; border-radius: 12px;
  padding: 12px 14px; margin-top: 14px; font-size: .82rem; color: #7a5c1e;
}

/* ---------- Avaliações de clientes ---------- */
.av { padding: 80px 0; background: #fff; }
.av__inner { display: grid; grid-template-columns: 1fr .85fr; gap: 46px; align-items: start; }
.av-resumo {
  display: flex; gap: 16px; align-items: center;
  background: var(--pink-bg); border-radius: 16px; padding: 20px 24px; margin-bottom: 24px;
}
.av-nota { font-size: 2.6rem; font-weight: 800; color: var(--pink); line-height: 1; }
.av-estrelas-fixas { font-size: .95rem; }
.av-resumo small { color: var(--gray); font-size: .85rem; }
.av-vazio { color: var(--gray); font-size: .95rem; }
.av-item { border-bottom: 1px solid #f8e3ee; padding: 20px 0; }
.av-item:last-child { border-bottom: none; }
.av-item__topo { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.av-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad); color: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.av-item__topo strong { display: block; font-size: .93rem; }
.av-item__topo small { color: var(--gray); font-size: .78rem; }
.av-item__nota { margin-left: auto; font-size: .8rem; }
.av-item p { color: var(--gray); font-size: .93rem; }
.av-foto { display: inline-block; margin-top: 10px; }
.av-foto img {
  max-width: 150px; border-radius: 12px; border: 1px solid #f0cede;
  transition: transform .2s;
}
.av-foto:hover img { transform: scale(1.04); }

.av-file { margin-bottom: 16px; }
.av-file input[type="file"] { display: none; }
.av-file__botao {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px dashed var(--pink); color: var(--pink-dark);
  border-radius: 10px; padding: 11px 16px; cursor: pointer;
  font-size: .87rem; font-weight: 600; transition: background .2s;
}
.av-file__botao:hover { background: var(--pink-light); }
.av-file small { display: block; color: var(--gray); font-size: .75rem; margin-top: 6px; }
.av-previa { position: relative; display: inline-block; margin-top: 12px; }
.av-previa:empty { display: none; }
.av-previa img { max-width: 120px; border-radius: 10px; display: block; }
.av-previa__x {
  position: absolute; top: -8px; right: -8px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--pink); color: #fff; border: none; cursor: pointer;
  font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center;
}

.av-form {
  background: var(--grad-soft); border: 1px solid #f8dcea;
  border-radius: 20px; padding: 28px 26px; position: sticky; top: 100px;
}
.av-form h3 { font-size: 1.15rem; margin-bottom: 4px; }
.av-form > p { color: var(--gray); font-size: .87rem; margin-bottom: 18px; }
.av-form label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.av-form input, .av-form textarea {
  width: 100%; border: 1px solid #f0cede; border-radius: 10px;
  padding: 11px 14px; font-family: inherit; font-size: .92rem;
  margin-bottom: 16px; background: #fff; color: var(--dark);
}
.av-form input:focus, .av-form textarea:focus { outline: 2px solid var(--pink); border-color: transparent; }
.av-form textarea { resize: vertical; min-height: 110px; }
.av-estrelas { display: flex; gap: 4px; margin-bottom: 16px; }
.av-estrelas button {
  background: none; border: none; cursor: pointer; padding: 2px;
  font-size: 1.7rem; line-height: 1; filter: grayscale(1); opacity: .45;
  transition: filter .15s, opacity .15s, transform .15s;
}
.av-estrelas button:hover { transform: scale(1.15); }
.av-estrelas button.on { filter: none; opacity: 1; }
.av-form button[type="submit"] { width: 100%; padding: 14px; font-size: .95rem; }
.av-form button[type="submit"]:disabled { opacity: .6; cursor: default; transform: none; }
/* Campo-armadilha: invisível para pessoas, visível para robôs de spam.
   Não usamos display:none porque alguns robôs ignoram campos escondidos assim. */
.av-armadilha {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.av-aviso-lgpd { font-size: .75rem; color: var(--gray); text-align: center; margin-top: 10px; }
.av-aviso-lgpd a { color: var(--pink); }
.av-aviso { font-size: .85rem; margin-top: 14px; padding: 11px 14px; border-radius: 10px; display: none; }
.av-aviso.sucesso { display: block; background: #eef7f0; border: 1px solid #bfe0c8; color: #2e5f3c; }
.av-aviso.erro { display: block; background: #fdeaea; border: 1px solid #f3c2c2; color: #a02929; }

/* ---------- Páginas legais ---------- */
.legal { padding: 30px 0 70px; background: #fff; }
.legal h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 20px 0 6px; }
.legal__data { color: var(--gray); font-size: .85rem; margin-bottom: 28px; }
.legal h2 { font-size: 1.2rem; margin: 32px 0 10px; }
.legal h3 { font-size: 1rem; margin: 20px 0 6px; color: var(--pink-dark); }
.legal p { color: var(--gray); margin-bottom: 12px; max-width: 760px; }
.legal ul { margin: 0 0 16px 20px; max-width: 760px; }
.legal li { color: var(--gray); padding: 3px 0; }
.legal strong { color: var(--dark); }
.legal a { color: var(--pink); }
.footer__legal a { color: inherit; }

/* ---------- Produto pausado ---------- */
.btn--esgotado {
  background: #d7cbd2 !important; color: #6d5a63 !important;
  box-shadow: none !important; cursor: not-allowed; pointer-events: none;
}
.esgotado-aviso {
  display: block; background: #fdeaea; border: 1px solid #f3c2c2;
  border-radius: 12px; padding: 14px 16px; margin-bottom: 16px;
  color: #a02929; font-size: .85rem;
}
.esgotado-aviso strong { display: block; margin-bottom: 3px; }
.rec--esgotado { opacity: .55; }
.rec--esgotado .rec__imgwrap { filter: grayscale(.85); }
.rec--esgotado .btn--rec {
  background: #d7cbd2; color: #6d5a63; box-shadow: none; pointer-events: none;
}

/* Bandeiras de pagamento */
.pay {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center; justify-content: center;
  margin-top: 18px;
}
.pay span {
  background: #fff; color: var(--dark);
  border-radius: 7px; padding: 5px 11px;
  font-size: .7rem; font-weight: 700; letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* Cross-sell nas páginas de produto */
.cross { padding: 76px 0; background: var(--pink-bg); }
.cross .recs__grid { grid-template-columns: repeat(3, 1fr); }

/* Card de recomendado clicável */
.rec__link { text-decoration: none; color: inherit; display: block; }
.rec__link h3:hover { color: var(--pink); }

/* ---------- Responsivo ---------- */
@media (max-width: 900px) {
  /* --- Menu do celular --- */
  .menu-btn { display: flex; order: 3; }
  .header__inner { gap: 10px; }
  .logo { font-size: 1.3rem; order: 1; margin-right: auto; }
  .btn--small { order: 2; padding: 7px 13px; font-size: .68rem; }
  .btn--small span { display: block; font-size: .62rem; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: #fff; box-shadow: 0 12px 26px rgba(43,27,35,.14);
    border-top: 1px solid #f8e3ee;
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .nav.aberto { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a {
    padding: 15px 22px; font-size: .95rem; color: var(--dark);
    border-bottom: 1px solid #fdf0f6;
  }
  .nav a:last-child { border-bottom: none; }

  /* --- Botões cabendo em uma linha só --- */
  .btn--big { padding: 15px 18px; font-size: .84rem; letter-spacing: 0; }
  .btn--buy { padding: 17px 12px; font-size: .88rem; letter-spacing: 0; }
  .btn--sticky { padding: 13px 20px; font-size: .82rem; }
  .hero__inner, .benefits__inner, .results__grid, .offer__inner { grid-template-columns: 1fr; }
  .hero__inner { padding: 22px 0 46px; gap: 20px; }
  .hero__img { order: -1; }
  .hero__img img { border-radius: 24px; }
  /* No celular a cliente vê foto → título → preço → botão sem rolar */
  .hero__content { display: flex; flex-direction: column; }
  .hero__content .tag { order: 1; align-self: flex-start; margin-bottom: 8px; padding: 5px 13px; }
  .hero h1 { order: 2; font-size: 1.55rem; margin-bottom: 10px; }
  .hero__preco { order: 3; }
  .hero__cta { order: 4; }
  .hero__sub { order: 5; margin: 22px 0 14px; }
  .hero__checks { order: 6; margin-bottom: 0; }
  .hero__preco { display: block; width: 100%; padding: 13px 16px; margin-bottom: 12px; }
  .hero__preco-valor { font-size: 2.05rem; }
  .hero__preco-parcela { font-size: .8rem; }
  .hero__sub { font-size: .95rem; }
  .hero__img img { aspect-ratio: 4/3; }
  .hero__img img.retrato { aspect-ratio: 4/4.4; }
  .hero__thumbs { gap: 7px; margin-top: 8px; }
  .hero__thumbs img { border-width: 2px; }
  .hero__selos { margin-top: 10px; font-size: .75rem; }
  .hero__link-detalhes { margin-top: 10px; font-size: .8rem; }
  .hero__badge { width: 108px; height: 108px; font-size: .92rem; top: -12px; left: -6px; }
  .hero__badge-icon { font-size: 1.5rem; }
  .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px 0; }
  .trust__item { justify-content: flex-start; }
  .pain__grid, .how__grid, .recs__grid, .reviews__grid, .cross .recs__grid { grid-template-columns: 1fr; }
  .av__inner { grid-template-columns: 1fr; gap: 30px; }
  .av-form { position: static; padding: 24px 20px; }
  .pp-specs ul { grid-template-columns: 1fr; }
  .pp-figs__grid { grid-template-columns: 1fr; }
  .offer__box h2 { font-size: 1.4rem; }
  .offer__now { font-size: 2.5rem; }
  .benefits__img { max-width: 480px; margin: 0 auto; }
  .guarantee__inner { flex-direction: column; text-align: center; padding: 36px 26px; }
  .offer__box { padding: 30px 22px; }
  /* No celular a barra de compra fica sempre visível */
  .hero__thumbs img { aspect-ratio: 4/3; }
}
