/* ============================================================================
   Tema "Casa da Gente" v6 — página de produto no estilo MALVA / Absortti.
   Carregado depois do CSS do Tailwind. Fica fora de @layer, então vence as
   utilities quando mira o mesmo elemento.
   Classes "pp-*": página nova (tema/pagina-produto.js)
   Classes "cdg-*": telas antigas que continuam em uso (checkout, PIX)
   ========================================================================== */

:root {
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --pp-bg: #f6f3ef;
  --pp-card: #ffffff;
  --pp-line: #ebe5dd;
  --pp-line-2: #f1ece6;
  --pp-ink: #1a1614;
  --pp-ink-2: #3b3531;
  --pp-muted: #756d66;
  --pp-accent: #e4572e;
  --pp-accent-600: #cc4521;
  --pp-accent-soft: #fdefe9;
  --pp-accent-line: #f6c9b8;
  --pp-dark: #161311;
  --pp-green: #0f7a53;
  --pp-green-soft: #e6f4ed;
  --pp-radius: 18px;
  --pp-shadow: 0 1px 2px rgba(26, 22, 20, .04), 0 8px 24px -16px rgba(26, 22, 20, .18);
}

html,
body {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html.pp-lock { overflow: hidden; }
::selection { background: var(--pp-accent-soft); color: var(--pp-ink); }

/* ---------- Base da página ---------- */
.pp-page {
  background: var(--pp-bg);
  color: var(--pp-ink);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.5;
}
:where(.pp-page, .pp-header) button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
:where(.pp-page) img { display: block; max-width: 100%; }
.pp-ico { width: 20px; height: 20px; flex-shrink: 0; }

.pp-main {
  max-width: 480px;
  margin: 0 auto;
  padding-bottom: 8px;
}
.pp-main > section { scroll-margin-top: 76px; }

.pp-card {
  background: var(--pp-card);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.pp-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pp-muted);
  margin: 0 0 6px;
}
.pp-eyebrow.is-accent { color: var(--pp-accent); }

.pp-h2 {
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}
.pp-sub { color: var(--pp-muted); font-size: 14px; margin: 8px 0 0; }
.pp-text { color: var(--pp-ink-2); font-size: 15px; line-height: 1.65; margin: 12px 0 0; }

.pp-sec { padding: 36px 16px 0; }
.pp-sec-head { margin-bottom: 16px; }
.pp-sec-head.is-center { text-align: center; }

.pp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--pp-green-soft);
  color: var(--pp-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}
.pp-chip .pp-ico { width: 13px; height: 13px; }

.pp-stars { display: inline-flex; gap: 1px; color: var(--pp-accent); }
.pp-stars .is-empty { color: #ddd5cc; }
.pp-stars-sm .pp-ico { width: 15px; height: 15px; }
.pp-stars-md .pp-ico { width: 20px; height: 20px; }

.pp-off {
  display: inline-block;
  background: #d93d23;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .02em;
}

/* ---------- Botão principal ---------- */
.pp-page .pp-cta,
.pp-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 14px;
  background: var(--pp-accent);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .005em;
  box-shadow: 0 14px 26px -14px rgba(228, 87, 46, .8), inset 0 1px 0 rgba(255, 255, 255, .18);
  transition: background-color .15s ease, transform .12s ease;
}
.pp-cta:hover { background: var(--pp-accent-600); }
.pp-cta:active { transform: scale(.985); }
.pp-cta:disabled { background: #efb4a1; box-shadow: none; cursor: default; }
.pp-cta .pp-ico { width: 20px; height: 20px; }

.pp-link {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--pp-ink-2);
  padding: 10px 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--pp-line);
}

/* ---------- Faixa preta ---------- */
.pp-promo {
  background: #0d0b0a;
  color: #f4ede4;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pp-promo-track {
  display: flex;
  width: max-content;
  animation: pp-marquee 28s linear infinite;
}
.pp-promo:hover .pp-promo-track { animation-play-state: paused; }
.pp-promo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  position: relative;
}
.pp-promo-item::after {
  content: "";
  position: absolute;
  right: -2px;
  width: 4px;
  height: 4px;
  border-radius: 99px;
  background: var(--pp-accent);
}
.pp-promo-item .pp-ico { width: 14px; height: 14px; color: #fff; }
@keyframes pp-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .pp-promo-track { animation: none; } }

/* ---------- Header ---------- */
.pp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--pp-line);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
}
.pp-header-in {
  max-width: 480px;
  margin: 0 auto;
  height: 62px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pp-header-in .pp-logo { margin-right: auto; }
.pp-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--pp-ink);
  transition: background-color .15s ease;
}
.pp-icon-btn:hover { background: var(--pp-line-2); }
.pp-icon-btn .pp-ico { width: 23px; height: 23px; }
.pp-cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--pp-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  border: 2px solid #fff;
  box-sizing: content-box;
}

.pp-logo { display: inline-flex; align-items: center; gap: 9px; text-align: left; }
.pp-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--pp-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-logo-mark .pp-ico { width: 19px; height: 19px; }
.pp-logo-txt { display: flex; flex-direction: column; line-height: 1; }
.pp-logo-txt strong { font-size: 18px; font-weight: 800; letter-spacing: -.02em; color: var(--pp-ink); }
.pp-logo-txt small {
  margin-top: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pp-muted);
}

/* ---------- Galeria ---------- */
.pp-gallery { padding: 14px 16px 0; }
.pp-gallery-stage {
  position: relative;
  border-radius: var(--pp-radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pp-line);
  aspect-ratio: 1 / 1;
}
.pp-gallery-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.pp-gallery-track::-webkit-scrollbar { display: none; }
.pp-gallery-slide { flex: 0 0 100%; height: 100%; scroll-snap-align: center; scroll-snap-stop: always; }
.pp-gallery-slide img { width: 100%; height: 100%; object-fit: cover; user-select: none; }
.pp-gallery-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--pp-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -8px rgba(228, 87, 46, .9);
}
.pp-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .95) !important;
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, .35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-gallery-arrow.is-left { left: 10px; }
.pp-gallery-arrow.is-right { right: 10px; }
.pp-gallery-arrow .pp-ico { width: 18px; height: 18px; }
.pp-dots { display: flex; justify-content: center; gap: 6px; padding: 12px 0 10px; }
.pp-dot { width: 7px; height: 7px; border-radius: 99px; background: #d9d1c7 !important; transition: width .2s ease, background-color .2s ease; }
.pp-dot.is-on { width: 22px; background: var(--pp-ink) !important; }
.pp-thumbs { position: relative; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.pp-thumbs::-webkit-scrollbar { display: none; }
.pp-thumb {
  flex: 0 0 62px;
  height: 62px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent !important;
  background: #fff !important;
  opacity: .72;
  transition: opacity .15s ease, border-color .15s ease;
}
.pp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pp-thumb.is-on { border-color: var(--pp-accent) !important; opacity: 1; }

/* ---------- Bloco de compra ---------- */
.pp-buy { margin: 16px 16px 0; padding: 20px 18px 18px; }
.pp-buy .pp-chip { margin-bottom: 14px; }
.pp-title {
  font-size: 23px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 0;
  text-wrap: balance;
}
.pp-rating { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-size: 13px; color: var(--pp-muted); }
.pp-rating strong { color: var(--pp-ink); font-weight: 800; }
.pp-lead { font-size: 19px; line-height: 1.3; font-weight: 700; letter-spacing: -.015em; margin: 16px 0 10px; }
.pp-checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pp-checks li { display: flex; gap: 10px; font-size: 14px; color: var(--pp-ink-2); line-height: 1.45; }
.pp-checks .pp-ico { width: 18px; height: 18px; color: var(--pp-accent); margin-top: 1px; }

.pp-price {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #faf7f3;
  border: 1px solid var(--pp-line-2);
}
.pp-price-top { display: flex; align-items: center; gap: 8px; color: var(--pp-muted); font-size: 14px; }
.pp-price-main { font-size: 36px; font-weight: 800; letter-spacing: -.035em; line-height: 1.1; margin-top: 2px; font-variant-numeric: tabular-nums; }
.pp-price-sub { margin: 4px 0 0; font-size: 13px; color: var(--pp-green); font-weight: 700; }

.pp-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7f5f2;
  font-size: 13px;
  color: var(--pp-ink-2);
  line-height: 1.45;
}
.pp-note .pp-ico { width: 18px; height: 18px; color: var(--pp-muted); }

.pp-step { display: flex; align-items: center; gap: 8px; margin: 22px 0 10px; font-size: 15px; font-weight: 800; }
.pp-step-n {
  width: 22px;
  height: 22px;
  border-radius: 99px;
  background: var(--pp-accent);
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pp-kits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; align-items: stretch; }
.pp-kit {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 6px 8px !important;
  border-radius: 14px;
  border: 1.5px solid var(--pp-line) !important;
  background: #fff !important;
  transition: border-color .15s ease, background-color .15s ease, box-shadow .15s ease;
}
.pp-kit.is-on {
  border-color: var(--pp-accent) !important;
  background: var(--pp-accent-soft) !important;
  box-shadow: 0 0 0 3px rgba(228, 87, 46, .12);
}
.pp-kit-ribbon {
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--pp-ink);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 99px;
}
.pp-radio {
  position: absolute;
  top: 12px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 99px;
  border: 1.5px solid #c9c0b6;
  background: #fff;
}
.pp-kit.is-on .pp-radio { border: 5px solid var(--pp-accent); }
.pp-kit-name { font-size: 13px; font-weight: 800; margin-top: 2px; }
.pp-kit-price { font-size: 19px; font-weight: 800; letter-spacing: -.03em; margin-top: 4px; line-height: 1.1; font-variant-numeric: tabular-nums; }
.pp-kit-price small { font-size: 11px; font-weight: 700; margin-right: 2px; letter-spacing: 0; }
.pp-kit-old { font-size: 11px; color: var(--pp-muted); margin-top: 2px; }
.pp-kit-save {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  color: var(--pp-green);
  background: var(--pp-green-soft);
  border-radius: 8px;
  padding: 3px 6px;
}
.pp-kit-img {
  position: relative;
  margin-top: 8px;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--pp-line-2);
}
.pp-kit-img img { width: 100%; height: 100%; object-fit: cover; }
.pp-kit-img b {
  position: absolute;
  right: 5px;
  bottom: 5px;
  background: var(--pp-ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 99px;
}
.pp-kit-hint { margin: 8px 0 0; text-align: center; font-size: 12px; color: var(--pp-muted); }

.pp-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 18px 0 12px;
  padding-top: 16px;
  border-top: 1px solid var(--pp-line-2);
  font-size: 14px;
  color: var(--pp-muted);
}
.pp-total strong { font-size: 24px; font-weight: 800; color: var(--pp-ink); letter-spacing: -.03em; font-variant-numeric: tabular-nums; }

.pp-under-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--pp-muted);
}
.pp-under-cta .pp-ico { width: 15px; height: 15px; }

.pp-trust3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--pp-line-2);
  text-align: center;
  font-size: 11.5px;
  line-height: 1.35;
  color: var(--pp-ink-2);
}
.pp-trust3 > div { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 4px; }
.pp-trust3 > div + div { border-left: 1px solid var(--pp-line-2); }
.pp-trust3 .pp-ico { width: 20px; height: 20px; color: var(--pp-accent); }

.pp-pay { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 12px; color: var(--pp-muted); }
.pp-pay-chip { display: inline-flex; padding: 5px 9px; border: 1px solid var(--pp-line); border-radius: 8px; background: #fff; }
.pp-pay-chip img { height: 14px; width: auto; }

/* ---------- Seções escuras ---------- */
.pp-dark {
  background: var(--pp-dark);
  color: #fff;
  margin-top: 36px;
  padding: 40px 24px;
  text-align: center;
}
.pp-dark .pp-sub { color: #b9b0a8; }
.pp-stats .pp-h2 { font-size: 26px; }
.pp-stats-list { display: grid; gap: 22px; margin-top: 28px; }
.pp-stat strong { display: block; font-size: 44px; font-weight: 800; letter-spacing: -.04em; line-height: 1; color: var(--pp-accent); font-variant-numeric: tabular-nums; }
.pp-stat span { display: block; margin-top: 6px; font-size: 14px; color: #d4ccc4; }

.pp-video-frame {
  margin: 22px auto 0;
  max-width: 300px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .8);
}
.pp-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pp-video-hint { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 14px 0 0; font-size: 12px; color: #b9b0a8; }
.pp-video-hint .pp-ico { width: 12px; height: 12px; color: var(--pp-accent); }

/* ---------- Benefícios ---------- */
.pp-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pp-benefit {
  background: #fff;
  border: 1px solid var(--pp-line);
  border-radius: 16px;
  padding: 14px 13px 15px;
  box-shadow: var(--pp-shadow);
}
.pp-benefit-ico {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--pp-accent-soft);
  color: var(--pp-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.pp-benefit-ico .pp-ico { width: 18px; height: 18px; }
.pp-benefit strong { display: block; font-size: 14px; font-weight: 800; letter-spacing: -.01em; }
.pp-benefit p { margin: 4px 0 0; font-size: 12.5px; line-height: 1.45; color: var(--pp-muted); }

/* ---------- Na prática ---------- */
.pp-story { padding: 14px 14px 18px; }
.pp-story-img { position: relative; margin: 0 0 18px; border-radius: 14px; overflow: hidden; aspect-ratio: 4 / 3; }
.pp-story-img img { width: 100%; height: 100%; object-fit: cover; }
.pp-story-img figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 99px;
}
.pp-story .pp-eyebrow,
.pp-story .pp-h2,
.pp-story .pp-text { padding: 0 4px; }
.pp-mini-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 16px 0 16px; }
.pp-mini-trust span { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--pp-ink-2); background: #faf7f3; border-radius: 12px; padding: 10px; }
.pp-mini-trust .pp-ico { width: 18px; height: 18px; color: var(--pp-accent); }

/* ---------- Peças ---------- */
.pp-pieces { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pp-piece { margin: 0; background: #fff; border: 1px solid var(--pp-line); border-radius: 14px; overflow: hidden; }
.pp-piece img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.pp-piece figcaption { padding: 7px 8px 9px; line-height: 1.2; }
.pp-piece strong { display: block; font-size: 12px; font-weight: 800; }
.pp-piece span { display: block; font-size: 10.5px; color: var(--pp-muted); margin-top: 2px; }

/* ---------- Comparação ---------- */
.pp-compare { overflow: hidden; }
.pp-compare table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pp-compare th {
  padding: 13px 12px;
  text-align: left;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pp-muted);
  border-bottom: 1px solid var(--pp-line);
}
.pp-compare th.is-us { color: var(--pp-accent); }
.pp-compare th:not(:first-child),
.pp-compare td:not(:first-child) { text-align: center; width: 76px; }
.pp-compare td { padding: 12px; border-bottom: 1px solid var(--pp-line-2); color: var(--pp-ink-2); line-height: 1.35; }
.pp-compare tr:last-child td { border-bottom: 0; }
.pp-compare td.is-us { background: #fff8f5; }
.pp-yes,
.pp-no { display: inline-flex; width: 22px; height: 22px; border-radius: 99px; align-items: center; justify-content: center; }
.pp-yes { background: var(--pp-green-soft); color: var(--pp-green); }
.pp-no { background: #fbe9e6; color: #c8412a; }
.pp-yes .pp-ico,
.pp-no .pp-ico { width: 13px; height: 13px; stroke-width: 3; }

/* ---------- Oferta ---------- */
.pp-offer { padding: 22px 18px 18px; text-align: center; }
.pp-offer-old { margin: 0; font-size: 14px; color: var(--pp-muted); }
.pp-offer-price { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 2px 0 0; font-size: 38px; font-weight: 800; letter-spacing: -.04em; line-height: 1.1; font-variant-numeric: tabular-nums; }
.pp-offer-sub { margin: 6px 0 16px; font-size: 13px; color: var(--pp-green); font-weight: 700; }

/* ---------- Cuidados ---------- */
.pp-care { padding: 22px 18px; }
.pp-steps { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 16px; }
.pp-steps li { display: flex; gap: 14px; align-items: flex-start; }
.pp-steps-n {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 99px;
  background: var(--pp-accent-soft);
  color: var(--pp-accent);
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-steps strong { display: block; font-size: 14.5px; font-weight: 800; }
.pp-steps p { margin: 2px 0 0; font-size: 13.5px; color: var(--pp-muted); line-height: 1.5; }

/* ---------- Avaliações ---------- */
.pp-score { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center; padding: 18px; }
.pp-score-big { text-align: center; padding-right: 18px; border-right: 1px solid var(--pp-line-2); }
.pp-score-big strong { display: block; font-size: 46px; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.pp-score-big .pp-stars { display: inline-flex; margin-top: 6px; }
.pp-score-big > span:last-child { display: block; margin-top: 6px; font-size: 11.5px; color: var(--pp-muted); }
.pp-bars { display: grid; gap: 6px; }
.pp-bar { display: grid; grid-template-columns: 22px 1fr 32px; align-items: center; gap: 8px; font-size: 11.5px; color: var(--pp-muted); }
.pp-bar span:last-child { text-align: right; }
.pp-bar-track { height: 7px; border-radius: 99px; background: var(--pp-line-2); overflow: hidden; }
.pp-bar-fill { height: 100%; border-radius: 99px; background: var(--pp-accent); }

.pp-review-media { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; margin: 14px -16px 0; padding: 0 16px; }
.pp-review-media::-webkit-scrollbar { display: none; }
.pp-review-thumb { position: relative; flex: 0 0 112px; height: 112px; border-radius: 14px; overflow: hidden; background: #ddd !important; }
.pp-review-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pp-review-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .28);
}
.pp-review-play .pp-ico { width: 34px; height: 34px; padding: 9px; box-sizing: border-box; border-radius: 99px; background: var(--pp-accent); color: #fff; }

.pp-review-list { display: grid; gap: 10px; margin: 14px 0 16px; }
.pp-review { padding: 16px; }
.pp-review header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pp-review header > div { flex: 1; min-width: 0; }
.pp-review header strong { display: block; font-size: 14px; font-weight: 800; }
.pp-review time { font-size: 11.5px; color: var(--pp-muted); align-self: flex-start; }
.pp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--pp-accent-soft);
  color: var(--pp-accent);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-verified { display: inline-flex; align-items: center; gap: 4px; margin-top: 2px; font-size: 11px; font-weight: 700; color: var(--pp-green); }
.pp-verified .pp-ico { width: 13px; height: 13px; }
.pp-review p { margin: 8px 0 0; font-size: 14px; line-height: 1.6; color: var(--pp-ink-2); }
.pp-review-photos { display: flex; gap: 8px; margin-top: 10px; }
.pp-review-photos img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; }

.pp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, .88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.pp-lightbox img,
.pp-lightbox video { max-width: 100%; max-height: 86vh; border-radius: 16px; }
.pp-lightbox-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .15) !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Ficha técnica / sanfonas ---------- */
.pp-specs { overflow: hidden; }
.pp-specs dl { margin: 0; }
.pp-specs dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 12px 16px; font-size: 13.5px; }
.pp-specs dl > div:nth-child(odd) { background: #faf7f3; }
.pp-specs dt { color: var(--pp-muted); }
.pp-specs dd { margin: 0; text-align: right; font-weight: 700; color: var(--pp-ink); }
.pp-specs + .pp-acc { margin-top: 10px; }

.pp-acc { overflow: hidden; }
.pp-acc-item + .pp-acc-item { border-top: 1px solid var(--pp-line-2); }
.pp-acc-q {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px !important;
  text-align: left;
  font-size: 14.5px;
  font-weight: 700;
}
.pp-acc-q .pp-ico { width: 18px; height: 18px; color: var(--pp-muted); transition: transform .2s ease; }
.pp-acc-item.is-on .pp-acc-q .pp-ico { transform: rotate(180deg); color: var(--pp-accent); }
.pp-acc-a { padding: 0 16px 16px; font-size: 14px; line-height: 1.6; color: var(--pp-ink-2); }
.pp-pre { white-space: pre-line; }
.pp-box-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.pp-box-list li { display: flex; align-items: center; gap: 10px; }
.pp-box-list .pp-ico { width: 16px; height: 16px; color: var(--pp-accent); }

/* ---------- Rodapé ---------- */
.pp-footer { background: var(--pp-dark); color: #d4ccc4; margin-top: 40px; }
.pp-footer-in { max-width: 480px; margin: 0 auto; padding: 36px 20px 120px; }
.pp-footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; }
.pp-footer-logo .pp-ico { width: 22px; height: 22px; }
.pp-footer-logo strong { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }
.pp-footer-tag { margin: 10px 0 0; font-size: 13.5px; color: #b9b0a8; }
.pp-footer-links { display: grid; gap: 10px; margin-top: 26px; }
.pp-footer-links p { margin: 0 0 2px; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.pp-footer-links a { color: #d4ccc4; font-size: 14px; text-decoration: none; }
.pp-footer-links a:hover { color: #fff; }
.pp-footer-safe { display: flex; gap: 10px; align-items: flex-start; margin-top: 24px; padding: 12px 14px; border-radius: 12px; background: rgba(255, 255, 255, .06); font-size: 12.5px; line-height: 1.5; }
.pp-footer-safe .pp-ico { width: 16px; height: 16px; margin-top: 2px; color: var(--pp-accent); }
.pp-footer-legal { margin: 18px 0 0; font-size: 11px; line-height: 1.6; color: #8f867e; }
.pp-footer-legal + .pp-footer-legal { margin-top: 6px; }

/* ---------- Barra fixa ---------- */
.pp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: #fff;
  border-top: 1px solid var(--pp-line);
  box-shadow: 0 -8px 24px -12px rgba(0, 0, 0, .18);
  transform: translateY(110%);
  transition: transform .28s ease;
  padding-bottom: env(safe-area-inset-bottom);
}
.pp-sticky.is-on { transform: translateY(0); }
.pp-sticky-in { max-width: 480px; margin: 0 auto; display: flex; align-items: center; gap: 12px; padding: 10px 14px; }
.pp-sticky-price { display: flex; flex-direction: column; line-height: 1.2; }
.pp-sticky-price strong { font-size: 19px; font-weight: 800; letter-spacing: -.03em; }
.pp-sticky-price span { font-size: 11px; color: var(--pp-muted); }
.pp-sticky .pp-cta { flex: 1; max-width: 230px; margin-left: auto; min-height: 50px; font-size: 15px; }

/* ---------- Gavetas (carrinho / menu) ---------- */
.pp-drawer-wrap { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.pp-drawer-wrap.is-open { pointer-events: auto; }
.pp-drawer-bg { position: absolute; inset: 0; background: rgba(20, 16, 14, .5); opacity: 0; transition: opacity .25s ease; }
.pp-drawer-wrap.is-open .pp-drawer-bg { opacity: 1; }
.pp-drawer {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 40px rgba(0, 0, 0, .2);
}
.is-right .pp-drawer { right: 0; transform: translateX(100%); }
.is-left .pp-drawer { left: 0; transform: translateX(-100%); width: min(340px, 86vw); }
.pp-drawer-wrap.is-open .pp-drawer { transform: translateX(0); }
.pp-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 10px 12px 18px;
  border-bottom: 1px solid var(--pp-line);
  min-height: 62px;
}
.pp-drawer-head > strong { font-size: 18px; font-weight: 800; letter-spacing: -.02em; }

.pp-cart-body { flex: 1; overflow-y: auto; padding: 16px 18px; }
.pp-cart-item { display: flex; gap: 12px; }
.pp-cart-item > img { width: 76px; height: 76px; border-radius: 12px; object-fit: cover; border: 1px solid var(--pp-line); }
.pp-cart-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pp-cart-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.pp-cart-row strong { font-size: 14px; font-weight: 800; line-height: 1.3; }
.pp-cart-variant { font-size: 12px; color: var(--pp-muted); }
.pp-cart-price { font-size: 15px !important; margin-top: 6px; }
.pp-cart-trash { color: var(--pp-muted); padding: 4px !important; }
.pp-cart-trash .pp-ico { width: 17px; height: 17px; }
.pp-qty { display: inline-flex; align-items: center; border: 1px solid var(--pp-line); border-radius: 99px; margin-top: 6px; }
.pp-qty button { width: 32px; height: 30px; display: inline-flex !important; align-items: center; justify-content: center; }
.pp-qty .pp-ico { width: 14px; height: 14px; }
.pp-qty span { min-width: 20px; text-align: center; font-size: 14px; font-weight: 700; }
.pp-cart-foot { padding: 16px 18px calc(16px + env(safe-area-inset-bottom)); background: #faf7f3; border-top: 1px solid var(--pp-line); }
.pp-cart-sub { display: flex; align-items: baseline; justify-content: space-between; }
.pp-cart-sub span { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--pp-muted); }
.pp-cart-sub strong { font-size: 26px; font-weight: 800; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
.pp-cart-pix { margin: 2px 0 14px; font-size: 12.5px; color: var(--pp-green); font-weight: 700; }
.pp-cart-foot .pp-link { padding-bottom: 6px; }
.pp-cart-ship { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 4px 0 0; font-size: 12px; color: var(--pp-muted); }
.pp-cart-ship .pp-ico { width: 15px; height: 15px; }
.pp-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: var(--pp-muted); }
.pp-cart-empty .pp-ico { width: 40px; height: 40px; }
.pp-cart-empty strong { color: var(--pp-ink); font-size: 15px; }
.pp-cart-empty .pp-link { width: auto; }

.pp-menu-chip { margin: 16px 18px 6px; align-self: flex-start; }
.pp-menu-nav { flex: 1; overflow-y: auto; padding: 4px 0 20px; }
.pp-menu-link {
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px !important;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--pp-line-2) !important;
  text-align: left;
}
.pp-menu-link .pp-ico { width: 16px; height: 16px; color: var(--pp-muted); }
.pp-menu-label { margin: 22px 18px 4px; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--pp-muted); }

/* ---------- Checkout / PIX (telas antigas) ---------- */
.pp-safe-chip { margin-left: auto; }
.pp-accent-text { color: var(--pp-accent) !important; }
.pp-field:focus { border-color: var(--pp-accent) !important; box-shadow: 0 0 0 3px rgba(228, 87, 46, .15); outline: none; }
.pp-btn-accent { background: var(--pp-accent) !important; color: #fff !important; }
.pp-btn-accent:hover { background: var(--pp-accent-600) !important; }
.pp-btn-dark { background: var(--pp-ink) !important; color: #fff !important; }
.pp-btn-dark:hover { background: #000 !important; }
.pp-pill-accent { background: var(--pp-accent-soft); color: var(--pp-accent-600); border: 1px solid var(--pp-accent-line); }
.pp-dot-accent { background: var(--pp-accent); }
.pp-soft { background: #faf7f3; border: 1px solid var(--pp-line); color: var(--pp-ink-2); }

.cdg-header {
  background: rgba(255, 255, 255, .96);
  color: var(--pp-ink);
  border-bottom: 1px solid var(--pp-line);
}
.cdg-logo { font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em; color: var(--pp-ink); }
.cdg-pill { background: var(--pp-green-soft); color: var(--pp-green); border: 0; }
.cdg-footer { background: #efe9e2; color: var(--pp-muted); border-top: 1px solid var(--pp-line); }
