/* =============================================================================
teste
   Magia Capilar — Sistema de Design (M6 — refino editorial DTC)
   Fontes: Puritan (titulos/destaques editoriais, 400/700) + Roboto (corpo/UI/precos)
   Paleta: wine / cream / gold / ink — identidade preservada do original

   DECISOES DO REDESIGN (CSS-only; HTML/JS intactos):
   - SINTESE: estrutura/riqueza estilo gummy + contencao/respiro estilo Manual.
     "Energia na estrutura, sobriedade no acabamento." Sem emoji, sem cor
     estridente, sem urgencia espalhafatosa. O premium vem do respiro e da
     tipografia.
   - ESPACAMENTO: 1 token novo, --section-y (clamp fluido), define o ritmo
     vertical generoso entre secoes — aplicado de forma consistente. Demais
     espacos reutilizam a escala --sp-* ja existente (sem variavel redundante).
   - TIPOGRAFIA: hierarquia editorial — eyebrow (gold, tracking alto, deco-line)
     > H2 grande e confiante (Fraunces serif, tracking leve) > subtitulo calmo
     (DM Sans, --smoke). Cabecalho de secao padronizado = principal sinal de
     "grife".
   - COR: wine como base seria; GOLD so como acento pontual (deco-line, hover,
     stars, badge de desconto). Fundo predominante cream/ivory para o ar limpo.
   - MOVIMENTO: microinteracoes lentas (--med/--slow), so transform/opacity;
     hover-lift discreto nos cards. Respeita prefers-reduced-motion.
   - CARDS: borda fina (--mist) + sombra suave + padding amplo + altura uniforme.
   - Mobile-first nos blocos novos; geometria existente (hero/carousel/PDP)
     preservada para nao introduzir CLS. checkout.html tem CSS proprio (nao usa
     este arquivo) e ficou fora do escopo.
   ============================================================================= */

:root {
  /* Paleta — alinhada com o site original (#6E1F2A como wine principal) */
  --cream:    #F9F5EF;
  --ivory:    #FFFDF8;
  --ink:      #2A2420;
  --ink-soft: #2E2329;
  --smoke:    #7C736F;
  --mist:     #D5CFC9;
  --wine:     #6E1F2A;
  --wine-h:   #8B2530;
  --wine-d:   #4A1219;
  --wine-soft:#A5354A;
  --gold:     #C4956A;
  --gold-lt:  #DBBFA5;
  --gold-d:   #A0774C;
  --sage:     #6B7F5E;
  --blush:    #ECDDD3;
  --ok:       #2F7D4F;
  --warn:     #B4531B;
  /* Consolidacao QA: tons que estavam hardcoded disperso pelo CSS */
  --border:     #E8E2DC;   /* borda clara de cards (antes via var(--border,#E8E2DC)) */
  --ink-muted:  #564C52;   /* texto secundario/legenda */
  --cream-deep: #F5EDE6;   /* cream levemente mais profundo (boxes/foto bg) */

  /* Tokens */
  --r:       14px;
  --r-sm:    8px;
  --r-lg:    22px;
  --pill:    999px;
  --shadow-sm: 0 2px 10px rgba(28,16,24,.05);
  --shadow:    0 4px 24px rgba(28,16,24,.08);
  --shadow-lg: 0 14px 44px rgba(28,16,24,.12);
  --ease:      cubic-bezier(.4,0,.2,1);
  --fast:      .18s var(--ease);
  --med:       .32s var(--ease);
  --slow:      .5s var(--ease);

  /* Espacamento */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Tipografia */
  /* --f-serif = fonte de titulos/destaques editoriais (Puritan, sans). Nome mantido por compatibilidade. */
  --f-serif: "Puritan", system-ui, sans-serif;
  --f-sans:  "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

  /* Container — UMA largura padrao (wide) + UMA estreita (texto-corrido/blocos focais ~68ch) */
  --container: 1240px;
  --container-narrow: 760px;

  /* Header */
  --header-h: 88px;
  --announce-h: 44px;

  /* Ritmo vertical editorial (respiro entre secoes — sinal de grife).
     Unico token novo: nao havia equivalente fluido. Reduz no mobile e
     cresce no desktop sem heights fixos. */
  --section-y: clamp(46px, 5.2vw, 80px);
}

/* ============================================================================
   Reset
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--fast); }
a:hover { color: var(--wine); }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, textarea, select { font: inherit; color: inherit; }

/* ============================================================================
   Tipografia
   ============================================================================ */
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--ink);
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.1rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(2.3rem, 4.8vw, 3.2rem); font-weight: 400; letter-spacing: -0.006em; }
h3 { font-size: clamp(1.55rem, 2.9vw, 1.9rem); }
h4 { font-size: 1.28rem; font-weight: 400; }
.serif { font-family: var(--f-serif); }
.italic { font-style: italic; }
p { margin: 0 0 var(--sp-3); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.mute { color: var(--smoke); }
.gold { color: var(--gold-d); }
.wine { color: var(--wine); }
.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: var(--sp-3);
}

/* ============================================================================
   Layout
   ============================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--sp-6);
  padding-right: var(--sp-6);
}
.section { padding: var(--section-y) 0; }
.section-sm { padding: var(--sp-12) 0; }
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--sp-10);
}
.section-title .eyebrow {
  display: inline-block;
  font-family: var(--f-sans);    /* label em caixa-alta: sans (DM Sans) lê melhor que serif */
  color: var(--wine);            /* voz estrutural = wine (bordô da marca), nao o dourado de template */
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
}
/* Assinatura: gota wine sob o eyebrow (eco do "pingo" do logo Magia Capilar),
   no lugar da deco-line dourada editorial generica. Wine, parcimonioso. */
.section-title .eyebrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  margin: var(--sp-3) auto 0;
  background: var(--wine);
  border-radius: 0 50% 50% 50%;
  transform: rotate(45deg);
}
.section-title h2 { margin-bottom: var(--sp-4); }
.section-title p {
  color: var(--ink-soft);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

.grid { display: grid; gap: var(--sp-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.stack { display: flex; flex-direction: column; gap: var(--sp-4); }
.row { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.row-tight { display: flex; align-items: center; gap: var(--sp-2); }

/* ============================================================================
   Botoes
   ============================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 16px 34px;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border-radius: var(--pill);
  transition: background var(--med), border-color var(--med), color var(--med), box-shadow var(--med);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; }
/* Botoes "flat premium": sem glow colorido; o hover aprofunda a cor (efeito de
   preenchimento), nao levanta o botao. Estilo loja de luxo, sem cara de IA. */
.btn-primary {
  background: var(--wine);
  color: #fff;
}
.btn-primary:hover {
  background: var(--wine-d);
  color: #fff;
  box-shadow: 0 4px 14px rgba(28, 16, 24, 0.16);
}
.btn-primary:active { background: var(--wine-d); box-shadow: none; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--mist);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { background: var(--gold-d); color: #fff; }
.btn-lg { padding: 20px 42px; font-size: 1.12rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

/* ============================================================================
   Anuncio + Header
   ============================================================================ */
.announce {
  position: relative;
  overflow: hidden;
  background: var(--wine-d);
  color: var(--blush);
  text-align: center;
  padding: 12px var(--sp-6);
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Barra rotativa: as 3 frases ocupam o MESMO espaco (absolute, empilhadas) e se
   alternam em loop; cada uma entra/sai com fade — anima SO opacity + translateY
   leve. Altura travada por min-height -> sem CLS. Ciclo 12s = ~4s por frase.
   100% CSS (sem JS). */
.announce-item {
  position: absolute;
  inset: 0;
  text-align: center;
  line-height: var(--announce-h);   /* centra verticalmente a linha unica sem flex */
  padding: 0 var(--sp-6);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  animation: announce-rotate 12s infinite both;
}
.announce-item:nth-child(1) { animation-delay: 0s; }
.announce-item:nth-child(2) { animation-delay: 4s; }
.announce-item:nth-child(3) { animation-delay: 8s; }
.announce strong { color: var(--gold-lt); font-weight: 600; }
@keyframes announce-rotate {
  0%   { opacity: 0; transform: translateY(6px); }
  4%   { opacity: 1; transform: translateY(0); }    /* fade-in */
  33%  { opacity: 1; transform: translateY(0); }    /* visivel ~1/3 do ciclo */
  37%  { opacity: 0; transform: translateY(-6px); } /* fade-out */
  100% { opacity: 0; transform: translateY(-6px); }
}
@media (max-width: 560px) {
  .announce-item { font-size: 0.8rem; padding: 0 var(--sp-4); }
}
/* Acessibilidade: sem rotacao/movimento -> empilha as 3 frases estaticas
   (nenhuma oferta some), animacao desligada. */
@media (prefers-reduced-motion: reduce) {
  .announce { display: block; }
  .announce-item {
    position: static;
    inset: auto;
    opacity: 1;
    animation: none;
    transform: none;
    white-space: normal;
    line-height: 1.4;
    padding: 2px var(--sp-6);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--wine);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  transition: box-shadow var(--fast), background var(--fast);
  color: #fff;
}
.site-header .logo img { filter: brightness(0) invert(1); }
.site-header.scrolled { box-shadow: var(--shadow-sm); background: var(--wine); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--sp-6);
}
.logo { display: flex; align-items: center; }
.logo img { height: 48px; width: auto; }
.nav { display: flex; gap: var(--sp-8); }
.nav a {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.95);
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-lt);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--fast);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; gap: var(--sp-2); align-items: center; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  transition: background var(--fast);
}
.icon-btn:hover { background: rgba(255,255,255,0.12); }
.icon-btn svg { width: 22px; height: 22px; }
.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--gold);
  color: var(--wine-d);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.burger { display: none; }

@media (max-width: 960px) {
  .nav { display: none; position: fixed; top: calc(var(--announce-h) + var(--header-h)); left: 0; right: 0; background: var(--wine); flex-direction: column; padding: var(--sp-6); gap: var(--sp-4); box-shadow: var(--shadow-lg); z-index: 90; }
  .nav a { color: #fff; font-size: 1.05rem; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .nav a::after { display: none; }
  .nav.open { display: flex; }
  .burger { display: inline-flex; }
}

/* Scroll offset para ancoras nao ficarem atras do header fixo */
section[id] { scroll-margin-top: calc(var(--header-h) + var(--announce-h) + 8px); }

/* ============================================================================
   Hero — carrossel de banners .bfeat
   Reusa o motor initHeroSlideshow do JS, que alterna a classe .active entre os
   .hero-slide (e marca o dot <button> ativo). Como o conteudo (.bfeat-inner =
   split texto+midia) tem altura variavel, a transicao e por display
   (none -> .active{block}); NAO usa position:absolute/aspect-ratio fixo, que
   serviam aos antigos slides de imagem full-bleed.
   ============================================================================ */
.hero {
  position: relative;
  overflow: hidden;            /* clipa a sobra de 12px dos badges, evita scroll-x */
  background: var(--cream);
}
/* Transicao entre slides: fade + leve scale.
   Stacking por GRID (grid-area:1/1) em vez de position:absolute — assim o
   container cresce ate o slide mais alto (conteudo .bfeat ~820px no desktop) e
   o min-height vira piso, nao teto: crossfade suave, sem cortar a imagem/badge. */
.hero-slides {
  display: grid;
  position: relative;
  min-height: 560px;            /* evita altura colapsar durante a troca */
}
@media (max-width: 899px) {
  .hero-slides { min-height: 720px; }
}
.hero-slide {
  grid-area: 1 / 1;             /* todos os slides empilhados na mesma celula */
  padding: 64px 20px;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity .55s ease, transform .65s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 1;
}
@media (min-width: 900px) {
  .hero-slide { padding: 96px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; transform: none; }
}
/* Banner dentro do slide: mesmo grid split dos demais .bfeat (reusa .bfeat-*) */
.hero-slide .bfeat-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-slide .bfeat-inner { grid-template-columns: 1fr 1fr; gap: 64px; }
}
.hero-seal {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  z-index: 5;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110, 31, 42, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.hero-seal svg { width: 16px; height: 16px; color: var(--gold-lt); }
@media (max-width: 560px) {
  .hero-seal { font-size: 10px; padding: 6px 10px; top: 10px; left: 10px; gap: 6px; }
  .hero-seal svg { width: 13px; height: 13px; }
}
.hero-content .eyebrow { color: var(--gold-lt); }
.hero-content h1 { color: #fff; font-style: italic; font-weight: 500; }
.hero-content p { font-size: 1.1rem; opacity: 0.92; margin-bottom: var(--sp-6); }
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wine);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: var(--shadow);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fast), transform var(--fast);
}
.hero-nav:hover { background: var(--wine-h); transform: translateY(-50%) scale(1.06); }
.hero-nav.prev { left: var(--sp-6); }
.hero-nav.next { right: var(--sp-6); }
.hero-nav svg { width: 24px; height: 24px; }
.hero-dots {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: var(--sp-2);
}
.hero-dots button {
  width: 8px;
  height: 8px;
  background: rgba(28, 16, 24, 0.25);   /* ink translucido: visivel sobre o cream */
  border-radius: var(--pill);
  transition: background var(--fast), width var(--fast);
}
.hero-dots button.active { background: var(--wine); width: 24px; }

/* ============================================================================
   Barra de selos
   ============================================================================ */
/* Selos "flat": sem box/borda/sombra — fluem direto sobre o fundo da pagina
   (cream). Icone wine ~26px, label sans 700 em ink, subtexto curto.
   Mobile-first: 2 col (2x2) -> 4 col em linha no desktop (>=768px). */
.selos {
  background: var(--cream);
}
.selos .selos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* mobile: 2x2 */
  gap: 16px;
  align-items: start;                        /* mesma "linha de base" entre cards */
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 20px;
  /* sem box: borda, fundo e sombra removidos -> faixa limpa sobre o cream */
}
.selos .selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 8px;
}
.selos .selo-ico {
  color: var(--wine);
  line-height: 0;
}
.selos .selo-ico svg {
  width: 26px;
  height: 26px;
}
.selos .selo strong {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 6px;
}
.selos .selo-txt {
  display: flex;
  flex-direction: column;
}
.selos .selo-txt span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-muted);
  max-width: 180px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  /* 4 selos em linha unica, centrada */
  .selos .selos-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ============================================================================
   Categorias — agora em carrossel (.carousel.cats-carousel).
   O tamanho dos cards e definido apos o bloco generico .carousel (mais abaixo).
   ============================================================================ */
.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--blush);
  box-shadow: var(--shadow-sm);
  transition: transform var(--med), box-shadow var(--med);
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--slow);
}
.cat-card:hover img { transform: scale(1.03); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28,16,24,0.75) 100%);
}
.cat-card-label {
  position: absolute;
  bottom: var(--sp-6);
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.cat-card-label strong {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
}
.cat-card-label span {
  font-size: 0.78rem;
  opacity: 0.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================================
   Product grid (centered, no carousel — for ≤2 products)
   ============================================================================ */
.prods-grid-center {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.prods-grid-center .prod-card {
  flex: 0 1 320px;
  max-width: 340px;
}

/* ============================================================================
   Product card
   ============================================================================ */
.prod-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.prod-card:hover .btn-primary { background: var(--wine-d); }
.prod-card .prod-img {
  aspect-ratio: 1;
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.prod-card .prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease);
}
.prod-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--wine);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: var(--pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.prod-badge.desc { background: var(--gold); }
.prod-card .prod-body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.prod-card .prod-cat {
  font-size: 13px;
  color: var(--gold-d);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.prod-card .prod-name {
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin: 0;
  min-height: 2.6em;
}
.prod-card .prod-stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 1.5px;
}
.prod-card .prod-stars span { color: var(--smoke); margin-left: 4px; font-size: 12px; }
.prod-card .prod-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-4);
}
.prod-card .prod-price-old {
  color: var(--smoke);
  font-size: 15px;
  text-decoration: line-through;
  text-decoration-color: var(--mist);
}
.prod-card .prod-price-now {
  color: var(--wine);
  font-size: 30px;
  font-weight: 700;
  font-family: var(--f-serif);
  letter-spacing: -0.01em;
}
.prod-card .btn { margin-top: var(--sp-5); }
@media (prefers-reduced-motion: reduce) {
  .prod-card, .prod-card .prod-img img { transition: none; }
  .prod-card:hover { transform: none; }
  .prod-card:hover .prod-img img { transform: none; }
}

/* ============================================================================
   Carrossel generico (produtos, reels, avaliacoes)
   ============================================================================ */
.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--sp-3) var(--sp-1) var(--sp-6);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > * {
  flex: 0 0 calc((100% - var(--sp-5) * 3) / 4);
  scroll-snap-align: start;
}
@media (max-width: 960px) { .carousel > * { flex-basis: calc((100% - var(--sp-5)) / 2); } }
@media (max-width: 560px) { .carousel > * { flex-basis: 82%; } }

/* Categorias como carrossel — cards maiores: 3 por vista no desktop
   (antes o grid mostrava 4), 2 no tablet, ~1.25 no mobile (com peek). */
/* Categorias: 3 cards grandes visiveis no desktop. O carrossel "rompe" o
   container (centralizado) para ter largura suficiente p/ 3 cards grandes.
   Mobile-first: 1 + peek -> 2 (tablet) -> 3 (desktop, mais largo). */
.cats-carousel .cat-card-label strong { font-size: 1.6rem; }
.cats-carousel > * { flex-basis: 80%; }                               /* mobile: 1 + peek */
@media (min-width: 640px) {
  .cats-carousel > * { flex-basis: calc((100% - var(--sp-5)) / 2); }  /* tablet: 2 */
}
@media (min-width: 1024px) {
  .cats-carousel > * { flex-basis: calc((100% - var(--sp-5) * 2) / 3); } /* desktop: 3, dentro do .container */
}

/* Setas do carrossel de categorias: maiores e centralizadas verticalmente
   (cards mais altos) — corrige a proporcao das setas. */
.cats-wrap .carousel-nav { width: 56px; height: 56px; top: 50%; }
.cats-wrap .carousel-nav svg { width: 26px; height: 26px; }
.cats-wrap .carousel-nav.prev { left: -8px; }
.cats-wrap .carousel-nav.next { right: -8px; }

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wine);
  border: 1px solid var(--wine);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--med), background var(--med), color var(--med), box-shadow var(--med);
  z-index: 2;
}
.carousel-nav:hover { background: var(--wine-h); border-color: var(--wine-h); color: #fff; box-shadow: var(--shadow); transform: translateY(-50%) scale(1.04); }
.carousel-nav.prev { left: -10px; }
.carousel-nav.next { right: -10px; }
.carousel-nav svg { width: 20px; height: 20px; }
.carousel-nav.disabled { opacity: 0.4; pointer-events: none; }

/* ============================================================================
   Bloco fundadora
   ============================================================================ */
.fundadora-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.fundadora-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--blush);
  box-shadow: var(--shadow-lg);
}
.fundadora-img img { width: 100%; height: 100%; object-fit: cover; }
.fundadora-texto h2 { margin-bottom: var(--sp-4); }
.fundadora-texto p { color: var(--ink-soft); font-size: 1.18rem; line-height: 1.68; }
.fundadora-cit {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--wine);
  border-left: 3px solid var(--wine);
  padding-left: var(--sp-5);
  margin: var(--sp-6) 0 0;
}
.fundadora-assinatura {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--mist);
}
.fundadora-assinatura strong { font-family: var(--f-serif); font-size: 1.2rem; display: block; }
.fundadora-assinatura span { color: var(--smoke); font-size: 0.88rem; }

@media (max-width: 860px) {
  .fundadora-wrap { grid-template-columns: 1fr; gap: var(--sp-8); }
}

/* ============================================================================
   QA — Sistema de largura + imagens sem recorte
   (Regras escopadas em #historia-cabelo e #como-funciona removidas após a fusão
   das seções duplicadas — base .fundadora-* e .modo-uso-list seguem em uso por
   #historia/Berenice e pelas PDPs, respectivamente.)
   ============================================================================ */

/* ============================================================================
   Antes e Depois — slider interativo de comparacao (arrastar a divisoria)
   ============================================================================ */
.ad-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--sp-5);margin-top:var(--sp-8)}
.ad-slider{--pos:50%;position:relative;aspect-ratio:4/5;border-radius:16px;overflow:hidden;box-shadow:0 6px 18px rgba(26,15,21,.10);border:1.5px solid var(--mist);user-select:none}
.ad-slider img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.ad-before{clip-path:inset(0 calc(100% - var(--pos)) 0 0)}
.ad-label{position:absolute;top:14px;z-index:3;font-family:var(--f-serif);font-weight:700;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:var(--cream);background:var(--wine);padding:6px 14px;border-radius:var(--pill);pointer-events:none}
.ad-label.left{left:14px}
.ad-label.right{right:14px}
.ad-handle{position:absolute;top:0;bottom:0;left:var(--pos);width:3px;background:#fff;transform:translateX(-50%);z-index:4;pointer-events:none;box-shadow:0 0 8px rgba(0,0,0,.2)}
.ad-handle::before{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:46px;height:46px;border-radius:50%;background:var(--cream);border:2px solid var(--wine);box-shadow:0 4px 14px rgba(26,15,21,.25);z-index:5}
.ad-handle svg{display:none}
.ad-handle::after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:22px;height:22px;background-color:var(--wine);-webkit-mask:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='10%207%205%2012%2010%2017'/%3E%3Cpolyline%20points='14%207%2019%2012%2014%2017'/%3E%3C/svg%3E") center / contain no-repeat;mask:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='2.3'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpolyline%20points='10%207%205%2012%2010%2017'/%3E%3Cpolyline%20points='14%207%2019%2012%2014%2017'/%3E%3C/svg%3E") center / contain no-repeat;z-index:6}
.ad-slider input[type=range]{position:absolute;inset:0;width:100%;height:100%;margin:0;opacity:0;cursor:ew-resize;z-index:7}
@media(max-width:768px){.ad-grid{grid-template-columns:1fr;gap:var(--sp-4)}}
@media(max-width:560px){.ad-label{font-size:.66rem;padding:5px 11px}}

/* ============================================================================
   Video destaque
   ============================================================================ */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
  cursor: pointer;
}
.video-wrap video, .video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,16,24,0.35);
  transition: background var(--fast);
}
.video-wrap.playing .video-play { display: none; }
.video-play:hover { background: rgba(28,16,24,0.5); }
.video-play::after {
  content: "";
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.95) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='%238B2252'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E") 54% 50%/32px no-repeat;
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: transform var(--fast);
}
.video-play:hover::after { transform: scale(1.05); }

/* ============================================================================
   Reels grid
   ============================================================================ */
.reel-card {
  aspect-ratio: 9/16;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--ink);
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.reel-card video, .reel-card img { width: 100%; height: 100%; object-fit: cover; }
.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5));
}
.reel-card .reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.9) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%238B2252'%3E%3Cpolygon points='5 3 19 12 5 21 5 3'/%3E%3C/svg%3E") 56% 50%/20px no-repeat;
  border-radius: 50%;
  z-index: 2;
}
/* Reels: 4 cards preenchem a faixa no desktop (sem scroll) -> as setas ficariam
   desabilitadas/transparentes e sem funcao. Navegacao por drag/swipe; setas ocultas
   (consistente com avaliacoes). */
.carousel-wrap:has(.reel-card) .carousel-nav { display: none; }

/* ============================================================================
   Avaliacoes
   ============================================================================ */
/* Avaliacoes: respiro entre cards + sem setas (carrossel rola por arraste/swipe
   nativo; scroll-snap ja vem do .carousel global). Escopado via :has. */
.carousel:has(.review-card) { gap: 22px; }
/* Avaliacoes: largura unificada ao .container (sem breakout 96vw); navegacao por
   drag/swipe nativo (scroll-snap), entao as setas ficam ocultas. */
.carousel-wrap:has(.review-card) .carousel-nav { display: none; }
.review-card {
  background: var(--ivory);
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 260px;
}
.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-title {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  font-style: italic;
}
.review-title:empty { display: none; }
.review-text {
  color: var(--ink-soft);
  font-size: 17.5px;
  line-height: 1.6;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}
.review-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blush);
}
.review-author .review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: block;
}
.review-author .review-city { font-size: 13.5px; color: var(--smoke); }
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--ok);
  font-weight: 600;
}
.verified-badge::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%232F7D4F'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============================================================================
   FAQ Accordion
   ============================================================================ */
.faq {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--mist);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) 0;
  font-family: var(--f-serif);
  font-size: 1.42rem;
  font-weight: 400;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  transition: color var(--fast);
}
.faq-q:hover { color: var(--wine); }
.faq-q::after {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B2252' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--med);
}
.faq-item.open .faq-q::after { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.7;
  transition: max-height var(--med), padding var(--med);
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: var(--sp-5); }


/* ============================================================================
   Footer
   ============================================================================ */
/* Rodape na paleta da LP: base wine profundo (mesma familia do header), texto
   cream/blush, acentos em gold. Mais enxuto: 3 colunas + politicas em linha. */
.site-footer {
  background: var(--wine-d);
  color: var(--blush);
  padding: var(--sp-12) 0 var(--sp-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-8) var(--sp-10);
  margin-bottom: var(--sp-8);
}
.footer-grid h4 {
  color: var(--gold-lt);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.footer-grid ul li { margin-bottom: var(--sp-2); font-size: 0.92rem; color: var(--blush); }
.footer-grid a { color: var(--blush); transition: color var(--fast); }
.footer-grid a:hover { color: var(--gold-lt); }
.footer-brand img { height: 46px; margin-bottom: var(--sp-4); filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: var(--blush); opacity: .82; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: var(--sp-5);
  text-align: center;
  font-size: 0.8rem;
  color: var(--blush);
}
/* Linha compacta de politicas (substitui a coluna inteira de links) */
.footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: var(--sp-4);
}
.footer-policies a { color: var(--blush); opacity: .8; transition: opacity var(--fast), color var(--fast); }
.footer-policies a:hover { opacity: 1; color: var(--gold-lt); }
.footer-bottom > span { opacity: .7; }
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================================
   PDP - pagina de produto
   ============================================================================ */
.breadcrumb {
  padding: var(--sp-5) 0;
  font-size: 0.82rem;
  color: var(--smoke);
}
.breadcrumb a { color: var(--smoke); }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb span { margin: 0 var(--sp-2); }

.pdp-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  padding: var(--sp-6) 0 var(--sp-16);
}
.pdp-gallery { position: sticky; top: calc(var(--header-h) + var(--sp-4)); align-self: start; }
.pdp-gallery-main {
  aspect-ratio: 1;
  background: var(--blush);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--sp-3);
}
.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
}
.pdp-thumb {
  aspect-ratio: 1;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--fast);
  background: var(--blush);
}
.pdp-thumb.active { border-color: var(--wine); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info .pdp-cat {
  font-size: 0.74rem;
  color: var(--gold-d);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.pdp-info h1 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: var(--sp-3); }
.pdp-rating { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.pdp-rating .stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.pdp-rating a { color: var(--smoke); font-size: 0.85rem; border-bottom: 1px solid transparent; }
.pdp-rating a:hover { color: var(--wine); border-color: var(--wine); }

.pdp-resumo {
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.65;
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  margin-bottom: var(--sp-5);
}

.pdp-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.pdp-price-old {
  font-size: 1.05rem;
  color: var(--smoke);
  text-decoration: line-through;
}
.pdp-price-now {
  font-size: 2.3rem;
  color: var(--wine);
  font-family: var(--f-serif);
  font-weight: 700;
}
.pdp-parcela { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: var(--sp-5); }
.pdp-parcela strong { color: var(--ink); }
.pdp-qty {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid var(--mist);
  border-radius: var(--pill);
  overflow: hidden;
}
.qty-box button {
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  color: var(--ink);
  transition: background var(--fast);
}
.qty-box button:hover { background: var(--blush); }
.qty-box input {
  width: 50px;
  text-align: center;
  border: 0;
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  outline: none;
}

.pdp-buy-now { width: 100%; padding: 20px 28px; font-size: 1.05rem; }
.pdp-frete-check {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--mist);
}
.pdp-frete-check input {
  flex: 1;
  padding: 13px 18px;
  border: 1px solid var(--mist);
  border-radius: var(--pill);
  outline: none;
  transition: border-color var(--fast);
}
.pdp-frete-check input:focus { border-color: var(--wine); }
.pdp-frete-check button {
  padding: 13px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--pill);
  font-weight: 600;
}

@media (max-width: 900px) {
  .pdp-main { grid-template-columns: 1fr; gap: var(--sp-8); }
  .pdp-gallery { position: static; }
}

/* PDP - beneficios / modo de uso */
.pdp-blocks { padding: var(--sp-16) 0; border-top: 1px solid var(--mist); }
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.beneficio-card {
  background: var(--ivory);
  padding: var(--sp-6);
  border-radius: var(--r);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.beneficio-card .ico {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--sp-3);
  color: var(--wine);
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beneficio-card .ico svg { width: 28px; height: 28px; }
.beneficio-card h4 { font-family: var(--f-serif); font-size: 1.15rem; margin-bottom: var(--sp-2); }
.beneficio-card p { font-size: 0.92rem; color: var(--smoke); margin: 0; }

/* PDP - comparacao */
.comparacao {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.comparacao table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparacao th, .comparacao td {
  padding: var(--sp-4);
  text-align: center;
  border-bottom: 1px solid var(--mist);
}
.comparacao th:first-child, .comparacao td:first-child { text-align: left; font-weight: 600; }
.comparacao th {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
}
.comparacao th.us { background: var(--wine); color: #fff; border-radius: var(--r-sm) var(--r-sm) 0 0; }
.comparacao .check { color: var(--ok); font-size: 1.3rem; }
.comparacao .x { color: var(--smoke); font-size: 1.3rem; }
.comparacao tr:last-child td { border-bottom: 0; }

/* PDP - ingredientes / modo de uso */
.modo-uso-list { counter-reset: item; }
.modo-uso-list li {
  padding-left: var(--sp-12);
  position: relative;
  margin-bottom: var(--sp-5);
  font-size: 1.18rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.modo-uso-list li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: -4px;
  width: 36px;
  height: 36px;
  background: var(--wine);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 400;
}

@media (max-width: 860px) { .beneficios-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   Cart drawer
   ============================================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,16,24,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--med);
  z-index: 90;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100%);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform var(--med);
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--mist);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-header h3 { margin: 0; font-size: 1.35rem; }
.cart-items { flex: 1; overflow-y: auto; padding: var(--sp-5) var(--sp-6); }
.cart-footer {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid var(--mist);
  background: var(--ivory);
}

/* ============================================================================
   M9 — Oferta progressiva e compre junto
   ============================================================================ */
.oferta-progressiva-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.tier-card {
  position: relative;
  background: var(--cream);
  border: 2px solid var(--mist);
  border-radius: var(--r);
  padding: var(--sp-6) var(--sp-5);
  cursor: pointer;
  text-align: center;
  transition: all var(--fast);
  font-family: var(--f-sans);
}
.tier-card:hover {
  border-color: var(--wine);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.tier-card.best {
  border-color: var(--gold);
  background: linear-gradient(180deg, #FFF9F0 0%, var(--cream) 100%);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 14px;
  border-radius: var(--pill);
}
.tier-qty {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--wine);
  margin-bottom: var(--sp-1);
}
.tier-price-un {
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: var(--sp-2);
}
.tier-total {
  color: var(--ink);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: var(--sp-2);
}
.tier-eco {
  font-size: 0.82rem;
  color: var(--wine);
  font-weight: 600;
}
@media (max-width: 760px) {
  .oferta-progressiva-grid { grid-template-columns: 1fr; }
}

.compre-junto {
  background: var(--cream);
  border-radius: var(--r);
  padding: var(--sp-6);
  box-shadow: var(--shadow);
  max-width: var(--container-narrow);   /* bloco focal: largura estreita do sistema */
  margin-inline: auto;
}
.cj-items {
  /* Grade que divide igual (4 colunas) -> 2x2 no mobile. Sem flex-wrap: nao sobra
     "+" pendurado nem produto orfao no fim da linha. */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  align-items: start;
  gap: var(--sp-5) var(--sp-4);
  margin-bottom: var(--sp-6);
}
@media (max-width: 560px) {
  .cj-items { grid-template-columns: repeat(2, 1fr); }
}
.cj-item {
  text-align: center;
  max-width: 180px;
}
.cj-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: var(--blush);
  margin-bottom: var(--sp-2);
}
.cj-item-nome {
  font-family: var(--f-serif);
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: var(--sp-1);
}
.cj-item-preco {
  color: var(--wine);
  font-weight: 700;
}
.cj-plus {
  display: none;   /* separador decorativo "+" removido: a grade ja agrupa os 4 itens */
  font-size: 1.8rem;
  color: var(--wine);
  font-weight: 300;
  padding: 0 var(--sp-2);
  align-self: center;
}
.cj-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--mist);
}
.cj-preco {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cj-preco-old {
  color: var(--smoke);
  text-decoration: line-through;
  font-size: 0.9rem;
}
.cj-preco-new {
  color: var(--wine);
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 700;
}
.cj-preco-eco {
  font-size: 0.82rem;
  color: var(--ok, #2d7a3e);
  font-weight: 600;
}
@media (max-width: 640px) {
  .cj-footer { flex-direction: column; align-items: stretch; }
  .cj-add-btn { width: 100%; }
}

/* ============================================================================
   Banner LGPD de consentimento
   ============================================================================ */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
}
.consent-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
  justify-content: space-between;
}
.consent-banner-text {
  flex: 1 1 320px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #f4efe6;
}
.consent-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}
.consent-banner-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.consent-banner-actions .btn { min-width: 120px; }
.consent-banner-actions .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}
.consent-banner-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.08);
}
@media (max-width: 640px) {
  .consent-banner-inner { flex-direction: column; align-items: stretch; }
  .consent-banner-actions { justify-content: flex-end; }
}

/* ============================================================================
   Utilitarios
   ============================================================================ */
.hide { display: none !important; }
.sr-only, .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-wine { color: var(--wine); }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }

/* ===== Banner antes/depois -> resultados (faixa logo abaixo dos selos) ===== */
.resultado-banner { background: var(--cream); text-align: center; }
.resultado-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}
.resultado-banner-figure {
  margin: 0;
  width: 100%;
  max-width: 480px;
}
.resultado-banner-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.resultado-banner-caption {
  margin: var(--sp-4) 0 0;
  font-family: var(--f-sans);
  font-weight: 500;
  color: var(--ink-muted);
}
@media (min-width: 768px) {
  .resultado-banner-figure { max-width: 520px; }
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--sp-4); }
.mb-4 { margin-bottom: var(--sp-4); }
.mt-8 { margin-top: var(--sp-8); }
.mb-8 { margin-bottom: var(--sp-8); }

/* ============================================================================
   Responsividade global
   ============================================================================ */
@media (max-width: 760px) {
  :root { --sp-20: 56px; --sp-16: 40px; }
  /* .section usa --section-y (clamp), que ja reduz para ~46px no mobile */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 2.05rem; }
  .section-title p { font-size: 1.2rem; }
}

/* Print + prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Microinteracao sutil: o icone do selo sobe levemente no hover.
   Funciona em todos os navegadores (so transform). */
.selos .selo-ico { transition: transform var(--med); }
.selos .selo:hover .selo-ico { transform: translateY(-3px); }

/* ============================================================================
   BANNERS FEATURE (Protocolo / Hero / Rotina)
   Secoes split (texto + foto com badges flutuantes). Mobile-first: empilha;
   >=900px vira 1:1. Paleta/fontes reaproveitam os tokens da loja (--cream,
   --gold-d, --ink, --wine, --ivory, --mist, --f-serif, --f-sans) — nenhuma
   variavel nova, nenhuma fonte/CDN novo. Anima so opacity/translate.
   ============================================================================ */
.bfeat {
  background: var(--cream);
  padding: 64px 20px;
  overflow: hidden;
}
.bfeat-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .bfeat { padding: 96px 24px; }
  .bfeat-inner { grid-template-columns: 1fr 1fr; gap: 64px; padding: 32px 0; }
  /* Layout invertido (imagem a esquerda, texto a direita) */
  .bfeat--reverse .bfeat-media { order: 1; }
  .bfeat--reverse .bfeat-text { order: 2; }
}
/* Banner origem reaproveita uma foto vertical (591x1280). Sem cap ela ofuscaria
   o texto; limita a um retrato 4/5 (mesmo ratio do bloco .fundadora-img do site),
   recortando topo/base. aspect-ratio no CSS (render-blocking) -> sem CLS. */
.bfeat--reverse .bfeat-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
}

/* Texto */
.bfeat-text { max-width: 520px; }
.bfeat-eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wine);            /* voz estrutural = wine (alinhado aos eyebrows de secao) */
  margin-bottom: 18px;
  position: relative;
  padding-left: 36px;
}
.bfeat-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background: var(--wine);
  transform: translateY(-50%);
}
.bfeat-h {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 20px;
  letter-spacing: -0.006em;
}
.bfeat-h em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}
@media (min-width: 900px) { .bfeat-h { font-size: 46px; } }

.bfeat-copy {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 28px;
}
/* Realce inline na copy ("de dentro pra fora...") */
.bfeat-copy strong { color: var(--ink); font-weight: 700; }
.bfeat-cta {
  display: inline-flex;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.bfeat-sub {
  margin-top: 14px;
  font-size: 13px;
  color: var(--smoke);
  line-height: 1.5;
}

/* Midia (foto + badges flutuantes) */
.bfeat-media {
  position: relative;
  border-radius: var(--r-lg);
}
.bfeat-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Badges flutuantes (cartoes claros sobre a imagem) */
.bfeat-badge {
  position: absolute;
  background: var(--ivory);
  border: 1px solid var(--mist);
  border-radius: 14px;
  padding: 12px 16px;
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.35;
  color: var(--ink-soft);
  box-shadow: var(--shadow);
  max-width: 200px;
}
.bfeat-badge strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
}
/* Posicoes padrao (desktop) */
.bfeat-badge { top: 24px; right: -12px; }
.bfeat-badge--tl { top: 32px; left: -12px; right: auto; }
.bfeat-badge--br { top: auto; bottom: 32px; right: -12px; left: auto; }
@media (max-width: 899px) {
  /* Mobile: badges deixam de flutuar e viram chips empilhados abaixo da foto */
  .bfeat-badge,
  .bfeat-badge--tl,
  .bfeat-badge--br {
    position: relative;
    top: auto; right: auto; bottom: auto; left: auto;
    display: inline-block;
    margin: 12px 8px 0 0;
  }
}

/* ============================================================================
   PAREDE DE RESULTADOS — previa na home (.results-wall) + pagina /resultados/
   Reaproveita os tokens da loja (--cream, --ink, --ink-soft, --wine, --blush,
   --f-sans) e as classes .bfeat-eyebrow/.bfeat-h. 1 col -> 2 (>=600) -> 4 (>=1000).
   ============================================================================ */
.results-wall {
  max-width: var(--container);
  margin: 64px auto 0;
  padding: 0 20px;
}
.results-wall-head { text-align: center; margin-bottom: 32px; }
.results-wall-head .bfeat-eyebrow { padding-left: 0; margin-bottom: 14px; }
.results-wall-head .bfeat-eyebrow::before { display: none; }
.results-wall-head .bfeat-h { font-size: 32px; }
@media (min-width: 900px) { .results-wall-head .bfeat-h { font-size: 42px; } }
.results-wall-sub {
  font-family: var(--f-sans);
  font-size: 15px; color: var(--ink-muted);
  margin: 10px auto 0; max-width: 520px; line-height: 1.55;
}

/* Parede de fotos: reusa .reel-card (mesma moldura/aspect-ratio 9:16/sombra/
   gradiente dos reels), so trocando video+play por <img> + legenda. Layout em
   GRID (nao .carousel) -> sem acoplamento com o initCarousels do JS.
   1 col -> 2 (>=600) -> 4 (>=1000), igual a faixa de reels no desktop. */
.reels-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 600px) { .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .reels-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.reels-grid--photos { margin-top: 18px; }   /* respiro entre o carrossel de reels e a parede de fotos */

/* Card de foto: foto ocupa o card inteiro; sem .reel-play, sem cursor de play */
.reel-card--photo { cursor: default; }
.reel-card--photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  border-radius: inherit;
}
/* Legenda sobre o gradiente inferior (.reel-card::after ja existe) */
.reel-caption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  color: var(--cream);
  font-family: var(--f-sans);
  font-weight: 700; font-size: 14px; letter-spacing: 0.3px;
}

.results-wall-foot { text-align: center; margin-top: 32px; }
.results-wall-cta {
  display: inline-block;
  padding: 14px 28px;
  border: 1.5px solid var(--ink);
  border-radius: var(--pill);
  background: transparent; color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .25s ease, color .25s ease;
}
.results-wall-cta:hover { background: var(--ink); color: var(--cream); }

/* ===== PAGINA /resultados/ ===== */
.results-page { padding-bottom: 80px; }
.results-hero {
  background: var(--cream);
  padding: 48px 0 32px;
  text-align: center;
}
@media (min-width: 900px) { .results-hero { padding: 80px 0 48px; } }
.results-hero .bfeat-eyebrow { padding-left: 0; }
.results-hero .bfeat-eyebrow::before { display: none; }
.breadcrumb {
  font-size: 13px; color: var(--ink-muted);
  margin-bottom: 18px;
  font-family: var(--f-sans);
}
.breadcrumb a { color: var(--ink-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--wine); }
.breadcrumb span[aria-hidden] { margin: 0 6px; opacity: .5; }

.results-page-sub {
  font-family: var(--f-sans);
  font-size: 16px; line-height: 1.65; color: var(--ink-soft);
  max-width: 620px; margin: 12px auto 0;
}
.results-page-grid-wrap { padding: 40px 0; }

.results-page-cta {
  text-align: center;
  padding: 48px 20px 16px;
}
.results-page-cta .bfeat-h {
  font-size: 28px; margin-bottom: 24px;
}
@media (min-width: 900px) { .results-page-cta .bfeat-h { font-size: 36px; } }

/* ============================================================================
   PROTOCOLO 90 DIAS — versao detalhada (split: imagem + lista/preco/garantia)
   Reaproveita tokens (--cream, --ivory, --wine, --gold, --ink, --ink-soft,
   --smoke, --f-sans, --shadow-lg) e as classes .bfeat-eyebrow/.bfeat-h.
   Bordas via var(--border) — mesmo padrao do .prod-card.
   ============================================================================ */
.protocolo-section {
  padding: 64px 0;
  background: var(--cream);
}
@media (min-width: 900px) { .protocolo-section { padding: 96px 0; } }

.protocolo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .protocolo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;   /* foto em altura natural, centralizada vertical na coluna de texto */
  }
}

.protocolo-media {
  position: relative;
  border-radius: var(--r-lg);
}
.protocolo-media img {
  width: 100%; height: auto; display: block;
  /* foto dos 4 frascos (quadrada, fundo claro): caixa 1/1 + contain p/ mostrar
     os frascos INTEIROS, sem corte lateral nem distorcao. */
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.protocolo-content { max-width: 560px; }

.protocolo-content .bfeat-eyebrow { margin-bottom: 14px; }
.protocolo-content .bfeat-h { font-size: 30px; line-height: 1.15; margin-bottom: 18px; }
@media (min-width: 900px) { .protocolo-content .bfeat-h { font-size: 40px; } }
.protocolo-content .bfeat-h em { color: var(--wine); font-style: italic; }

.protocolo-lead {
  font-family: var(--f-sans);
  font-size: 15.5px; line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.protocolo-lead strong { color: var(--ink); font-weight: 700; }

/* Lista de itens */
.protocolo-list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  border-top: 1px solid var(--border);
}
.protocolo-list li {
  display: block;
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-sans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.protocolo-list li strong { color: var(--ink); font-weight: 700; }
.protocolo-list li small {
  display: inline;
  font-size: 13px;
  color: var(--smoke);
  margin-left: 4px;
}
.protocolo-list .protocolo-strike {
  text-decoration: line-through;
  font-style: italic;
}
.protocolo-check,
.protocolo-bonus-icon {
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  text-align: center;
  line-height: 1.5;
}
.protocolo-check { color: var(--wine); font-weight: 700; font-size: 16px; }
.protocolo-bonus-icon { color: var(--gold); font-size: 14px; }
.protocolo-bonus small {
  color: var(--wine);
  font-weight: 600;
  font-style: normal;
}

/* Bloco de preco */
.protocolo-saved {
  font-size: 13.5px;
  color: var(--ink-muted);
  margin: 0 0 4px;
  font-family: var(--f-sans);
}
.protocolo-saved s { color: var(--smoke); }
.protocolo-leadout {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 4px;
  font-family: var(--f-sans);
}
.protocolo-price {
  font-family: var(--f-sans);
  font-size: 34px;
  font-weight: 800;
  color: var(--wine);
  margin: 0 0 8px;
  line-height: 1.1;
}
.protocolo-price span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 4px;
  font-family: var(--f-sans);
}
.protocolo-price span strong { color: var(--ink); font-weight: 700; }
.protocolo-breakdown {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 20px;
  font-family: var(--f-sans);
}
.protocolo-breakdown strong { color: var(--ink); font-weight: 700; }

/* CTA */
.protocolo-cta {
  width: 100%;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Box de garantia */
.protocolo-guarantee {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.protocolo-guarantee svg {
  width: 28px; height: 28px;
  color: var(--wine);
  flex-shrink: 0;
}
.protocolo-guarantee strong {
  display: block;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 4px;
}
.protocolo-guarantee p {
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================================
   GRID DE PRODUTOS (home #produtos) — cards compactos, substitui o carrossel.
   Tudo ESCOPADO em .prods-grid para nao afetar os .prod-card das PDPs (que
   ainda usam badge/stars/carrossel). 2 cols mobile / 3 tablet / 4 desktop.
   ============================================================================ */
.prods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 700px) { .prods-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .prods-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 0 20px; } }

.prods-grid .prod-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: none;
}
.prods-grid .prod-img {
  display: block;
  background: var(--cream);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.prods-grid .prod-img img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  display: block;
  padding: 14px;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
.prods-grid .prod-card:hover .prod-img img { transform: scale(1.04); }

.prods-grid .prod-body {
  padding: 14px 14px 16px;
  display: flex; flex-direction: column;
  flex: 1; min-height: 0;
  gap: 6px;
}
.prods-grid .prod-cat {
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold-d);
  margin-bottom: 2px;
}
.prods-grid .prod-name {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.25;
  min-height: 0;
  color: var(--ink);
}
.prods-grid .prod-name a { color: inherit; text-decoration: none; }
.prods-grid .prod-desc {
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-muted);
  margin: 2px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prods-grid .prod-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 4px 0 10px;
  padding-top: 0;
}
.prods-grid .prod-price-old {
  font-size: 13px;
  color: var(--smoke);
  text-decoration: line-through;
}
.prods-grid .prod-price-now {
  font-family: var(--f-sans);
  font-size: 18px;
  font-weight: 800;
  color: var(--wine);
}

/* Bloco de 2 botoes */
.prods-grid .prod-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}
.prods-grid .prod-actions .btn {
  margin-top: 0;
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  display: inline-flex; align-items: center; justify-content: center;
}
/* Outline em wine SO nos cards (nao mexe no .btn-outline global, que e ink) */
.prods-grid .btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1.5px solid var(--wine);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.prods-grid .btn-outline:hover {
  background: var(--wine);
  color: var(--cream);
}

@media (prefers-reduced-motion: reduce) {
  .prods-grid .prod-card, .prods-grid .prod-img img { transition: none; }
  .prods-grid .prod-card:hover { transform: none; }
  .prods-grid .prod-card:hover .prod-img img { transform: none; }
}

/* ============================================================================
   SECAO "PRODUTOS POR NECESSIDADE" (home) + PAGINA /guia/
   Tokens da loja (--wine, --ink, --ink-soft, --ivory, --cream, --border,
   --f-serif, --f-sans). var(--cream)/var(--cream-deep)/var(--ink-muted) sao tons one-off do design.
   ============================================================================ */
.needs-section {
  padding: 64px 0;
  background: var(--cream);
}
.needs-section .container {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
}
.needs-section .bfeat-eyebrow { margin-bottom: 14px; }
.needs-section .bfeat-h { font-size: 30px; margin-bottom: 8px; }
@media (min-width: 900px) { .needs-section .bfeat-h { font-size: 42px; } }
.needs-sub {
  font-family: var(--f-sans);
  color: var(--ink-muted); font-size: 15px;
  margin: 0 0 32px;
}

.needs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px) { .needs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .needs-grid { grid-template-columns: repeat(4, 1fr); } }

.need-card {
  display: block;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 18px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.need-card:hover {
  transform: translateY(-2px);
  border-color: var(--wine);
  box-shadow: 0 10px 24px rgba(26, 15, 21, .08);
}
.need-card-title {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 8px;
}
.need-card-desc {
  font-family: var(--f-sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--wine);
  margin: 0;
}
.need-card-desc span { margin-left: 4px; }
.need-card--placeholder { opacity: .92; cursor: default; }
.need-card--placeholder:hover { transform: none; box-shadow: none; }

/* ===== PAGINA /guia/ ===== */
.guia-page { padding-bottom: 80px; background: var(--cream); }
.container--narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

.guia-article { padding: 36px 0 12px; }
@media (min-width: 900px) { .guia-article { padding: 56px 0 16px; } }

.guia-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  margin: 8px 0 18px;
}
@media (min-width: 900px) { .guia-title { font-size: 44px; } }

.guia-lead {
  font-family: var(--f-sans);
  font-size: 17px; line-height: 1.65;
  color: var(--ink);
  margin: 0 0 16px;
}
.guia-lead strong { font-weight: 700; }

.guia-text {
  font-family: var(--f-sans);
  font-size: 15.5px; line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.guia-text strong { color: var(--ink); font-weight: 700; }

.guia-h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.25;
  color: var(--ink);
  margin: 32px 0 14px;
}
@media (min-width: 900px) { .guia-h2 { font-size: 30px; margin-top: 48px; } }

.guia-list {
  list-style: none;
  padding: 0; margin: 0 0 18px;
  font-family: var(--f-sans);
  font-size: 15px; line-height: 1.65;
  color: var(--ink-soft);
}
.guia-list li {
  padding: 8px 0 8px 20px;
  position: relative;
}
.guia-list li::before {
  content: "•";
  color: var(--wine);
  font-weight: 700;
  position: absolute;
  left: 4px; top: 8px;
}
.guia-list li strong { color: var(--ink); font-weight: 700; }

/* Box curadoria */
.guia-curadoria {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin: 24px 0 0;
}
.guia-curadoria-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-serif);
  font-weight: 400; font-size: 18px;
  flex-shrink: 0;
}
.guia-curadoria p {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 13.5px; line-height: 1.45;
  color: var(--ink-soft);
}
.guia-curadoria a { color: var(--wine); text-decoration: none; }
.guia-curadoria a:hover { text-decoration: underline; }

/* Produtos recomendados */
.guia-prods { padding: 28px 0 8px; }
.guia-prods .guia-h2 { margin-top: 8px; }
.guia-prods .prods-grid { margin-top: 18px; }

/* Box CTA */
.guia-cta { padding: 48px 0 12px; }
.guia-cta-box {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
}
.guia-cta-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 12px;
}
@media (min-width: 900px) { .guia-cta-title { font-size: 30px; } }
.guia-cta-box .btn { margin-top: 14px; }

/* FAQ */
.guia-faq { padding: 32px 0 12px; }

/* Continue lendo */
.guia-related { padding: 48px 0 12px; }
.guia-related .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card {
  display: block;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.related-card:hover {
  transform: translateY(-2px);
  border-color: var(--wine);
  box-shadow: 0 10px 24px rgba(26, 15, 21, .08);
}
.related-card h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
}
.related-card p {
  font-family: var(--f-sans);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0 0 12px;
}
.related-link {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 13px;
  color: var(--wine);
}

/* Veja tambem (pills) */
.guia-tags { padding: 36px 0 16px; }
.guia-tags-title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 14px;
}
.tags-list {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.tag-pill {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--wine);
  border-radius: var(--pill);
  color: var(--wine);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.tag-pill:hover {
  background: var(--wine);
  color: var(--cream);
}

[aria-disabled="true"] { cursor: default; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .need-card, .related-card { transition: none; }
  .need-card:hover, .related-card:hover { transform: none; }
}

/* ============================================================================
   COMO FUNCIONA — Rotina Simples (.how-it-works): 4 passos numerados + 2 fotos
   Tokens da loja (--wine, --ink, --gold, --ivory, --border, --f-serif, --f-sans);
   var(--cream)/var(--cream-deep)/var(--ink-muted) sao tons one-off do design.
   ============================================================================ */
.how-it-works {
  background: var(--cream);
  padding: 64px 0;
}
@media (min-width: 900px) { .how-it-works { padding: 96px 0; } }
.how-it-works .container {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
}

.how-head { margin-bottom: 36px; }
.how-head .bfeat-eyebrow { margin-bottom: 14px; }
.how-head .bfeat-h {
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 10px;
}
@media (min-width: 900px) { .how-head .bfeat-h { font-size: 44px; } }
.how-head .bfeat-h em { color: var(--ink); font-style: italic; }
.how-sub {
  font-family: var(--f-sans);
  font-size: 15px; line-height: 1.55;
  color: var(--ink-muted);
  margin: 0;
}

/* Grid de 4 passos */
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .how-steps { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .how-steps { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.how-step {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.how-num {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.how-title {
  margin: 0;
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.how-desc {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.how-when {
  margin-top: auto;
  padding-top: 10px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--wine);
}

/* 2 fotos lado a lado */
.how-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) { .how-photos { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

.how-photo {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--cream-deep);
  box-shadow: 0 14px 32px rgba(26, 15, 21, .10);
}
@media (min-width: 900px) { .how-photo { aspect-ratio: 16/9; } }

.how-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.how-photo-caption {
  position: absolute;
  left: 14px; bottom: 14px;
  display: inline-block;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: var(--pill);
  box-shadow: 0 6px 16px rgba(26, 15, 21, .18);
}

/* ============================================================================
   PAGINA /sobre/ (Quem faz a Magia — Berenice Reis)
   Reusa .how-step (bagagem), .faq-item (FAQ), .guia-text, .container--narrow.
   Tokens: --wine, --ink, --ivory, --f-serif, --f-sans. var(--cream)/var(--cream-deep) one-off.
   ============================================================================ */
.sobre-page { background: var(--cream); padding-bottom: 80px; }

/* Hero */
.sobre-hero { padding: 48px 0 32px; }
@media (min-width: 900px) { .sobre-hero { padding: 80px 0 56px; } }
.sobre-hero .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.sobre-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .sobre-hero-grid { grid-template-columns: 0.85fr 1fr; gap: 56px; }
}

.sobre-hero-media {
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: 0 14px 32px rgba(26, 15, 21, .12);
  aspect-ratio: 4/5;
}
.sobre-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.sobre-hero-content .bfeat-eyebrow { margin-bottom: 14px; }
.sobre-h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 20px;
}
@media (min-width: 900px) { .sobre-h1 { font-size: 48px; } }
.sobre-h1 em { color: var(--wine); font-style: italic; font-weight: 400; }

.sobre-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 22px;
  padding-left: 14px;
  border-left: 3px solid var(--wine);
}
@media (min-width: 900px) { .sobre-quote { font-size: 24px; } }

/* Bagagem (reusa .how-step) */
.sobre-bagagem {
  padding: 32px 0;
  text-align: left;
}
@media (min-width: 900px) { .sobre-bagagem { padding: 48px 0; } }
.sobre-bagagem .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.sobre-section-h {
  text-align: center;
  font-size: 28px;
  margin: 0 0 28px;
}
@media (min-width: 900px) {
  .sobre-section-h { font-size: 36px; margin-bottom: 36px; }
}
.sobre-section-h em { color: var(--ink); font-style: italic; }

/* FAQ */
.sobre-faq { padding: 32px 0; }
@media (min-width: 900px) { .sobre-faq { padding: 48px 0; } }

/* Magia Grow */
.sobre-magia-grow {
  padding: 32px 0 16px;
  text-align: center;
}
@media (min-width: 900px) { .sobre-magia-grow { padding: 48px 0 16px; } }
.sobre-magia-grow .guia-text {
  text-align: center;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.sobre-cta {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
}

/* ---- Hover / focus refinements ---- */
.prod-card, .prods-grid .prod-card {
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s ease, border-color .35s ease;
}
.prod-card:hover, .prods-grid .prod-card:hover {
  transform: translateY(-3px);
  border-color: var(--wine);
  box-shadow: 0 14px 28px rgba(26,15,21,.10);
}
.prod-card .prod-img img, .prods-grid .prod-img img {
  transition: transform .55s cubic-bezier(.4,0,.2,1);
}
.prod-card:hover .prod-img img, .prods-grid .prod-card:hover .prod-img img { transform: scale(1.06); }

.btn-primary { transition: transform .2s ease, box-shadow .2s ease, background var(--med); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 20px rgba(110,31,42,.28); }
.btn-primary:active { transform: translateY(0); }

/* Foco visivel consistente (a11y) */
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.need-card { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.need-card:hover { transform: translateY(-3px); border-color: var(--wine); box-shadow: 0 14px 28px rgba(26,15,21,.10); }

.how-step { transition: transform .3s ease, box-shadow .3s ease; }
.how-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.reel-card img, .how-photo img { transition: transform .6s cubic-bezier(.4,0,.2,1); }
.reel-card:hover img, .how-photo:hover img { transform: scale(1.04); }

/* ---- PARTE 3 (parcial): ritmo de fundos (cream / ivory / cream-deep) ---- */
.selos { background: var(--ivory); }
#bfeat-origem { background: var(--cream-deep); }
.protocolo-section { background: var(--ivory); }

/* ---- PARTE 4: italico editorial nos h2 de secao + sombra hierarquica ---- */
.section-title h2 em, .fundadora-texto h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--wine);
}

/* ============================================================================
   AVALIACOES — layout editorial assimetrico (.reviews-section).
   TUDO escopado em .reviews-section para NAO colidir com o .review-card antigo
   (ainda usado pelas PDPs: mascara/shampoo/vitamina). O bloco antigo .review-*
   permanece intacto no CSS para essas paginas.
   ============================================================================ */
.reviews-section {
  padding: 64px 0;
  background: var(--cream);
}
@media (min-width: 900px) { .reviews-section { padding: 96px 0; } }
.reviews-section .container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.reviews-head { text-align: center; margin-bottom: 36px; }
.reviews-head .bfeat-eyebrow { margin-bottom: 14px; }
.reviews-head .bfeat-h { font-size: 32px; margin: 0 0 16px; }
@media (min-width: 900px) { .reviews-head .bfeat-h { font-size: 44px; } }

.reviews-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-sans);
  margin: 0 0 10px;
}
.reviews-meta .reviews-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.reviews-rating { font-size: 20px; color: var(--ink); font-weight: 700; }
.reviews-count { font-size: 13px; color: var(--ink-muted); }
.reviews-sub { font-family: var(--f-sans); font-size: 15px; color: var(--ink-muted); margin: 0; }

/* Grid assimetrico */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
@media (min-width: 1000px) {
  .reviews-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: auto; gap: 20px; }
  .reviews-grid .review-card--featured { grid-column: 1 / 7; grid-row: 1 / 3; }
  .reviews-grid .review-card:not(.review-card--featured):nth-of-type(2) { grid-column: 7 / 10; grid-row: 1; }
  .reviews-grid .review-card:not(.review-card--featured):nth-of-type(3) { grid-column: 10 / 13; grid-row: 1; }
  .reviews-grid .review-card:not(.review-card--featured):nth-of-type(4) { grid-column: 7 / 10; grid-row: 2; }
  .reviews-grid .review-card:not(.review-card--featured):nth-of-type(5) { grid-column: 10 / 13; grid-row: 2; }
  .reviews-grid .review-card:not(.review-card--featured):nth-of-type(6) { grid-column: 1 / 13; grid-row: 3; }
}

/* Card base (escopado) */
.reviews-section .review-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
  box-shadow: none;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.reviews-section .review-card:hover {
  transform: translateY(-3px);
  border-color: var(--wine);
  box-shadow: 0 14px 28px rgba(26, 15, 21, .10);
}
.reviews-section .review-card--featured {
  padding: 32px 30px;
  background: linear-gradient(135deg, var(--ivory) 0%, var(--cream-deep) 100%);
  border-color: var(--wine);
  box-shadow: 0 22px 50px rgba(110, 31, 42, .12);
}

.reviews-section .review-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.reviews-section .review-card--featured .review-stars { font-size: 18px; }

.reviews-section .review-text {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.reviews-section .review-card--featured .review-text { font-size: 20px; line-height: 1.55; }

.reviews-section .review-foot {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.reviews-section .review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--cream-deep);
}
.reviews-section .review-avatar--lg { width: 64px; height: 64px; }
.reviews-section .review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.reviews-section .review-author {
  display: flex;
  flex-direction: column;
  font-family: var(--f-sans);
  font-size: 13px;
  line-height: 1.45;
  gap: 1px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}
.reviews-section .review-author strong { color: var(--ink); font-weight: 600; font-size: 14px; }
.reviews-section .review-loc { color: var(--ink-muted); font-size: 12px; }
.reviews-section .review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ok);
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px;
}
.reviews-section .review-verified svg { flex-shrink: 0; }
.reviews-section .review-date { color: var(--ink-muted); font-size: 11px; margin-top: 1px; }

@media (prefers-reduced-motion: reduce) {
  .reviews-section .review-card { transition: none; }
  .reviews-section .review-card:hover { transform: none; box-shadow: inherit; }
}

/* ============================================================================
   M7 — REDESENHO VISUAL DIRIGIDO (home / index.html) — v2: BASE CLARA
   Direcao (substitui a v1 de paineis bordo cheios): cream/ivory dominam; o
   --wine entra como ACENTO PONTUAL (titulos-chave, <em>, botoes, filetes,
   selos). A cor "cheia" fica nos FRASCOS bordo da foto — a pagina espelha o
   produto: claro domina, bordo pontua. ZERO bloco de cor chapado.
   Assinatura: "fio dourado" (filete + pingo, eco do logo) sob o display, sobre
   base clara. Fraunces nos titulos; corpo em Roboto (--f-sans). Tudo ESCOPADO.
   ============================================================================ */

/* --- Assinatura: fio dourado (filete + pingo) sob o display (base clara) ----- */
.hero .bfeat-h::after,
.protocolo-content .bfeat-h::after {
  content: "";
  display: block;
  width: 88px;
  height: 12px;
  margin: 20px 0 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 12'%3E%3Cline x1='1' y1='6' x2='70' y2='6' stroke='%23C4956A' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='80' cy='6' r='4.5' fill='%23C4956A'/%3E%3C/svg%3E") left center / 88px 12px no-repeat;
}

/* === HERO — base clara, frascos como protagonista (sem bloco bordo) ========= */
/* fundo cream herdado (.hero default); so amplio o display Fraunces. Titulo ink,
   wine pontual no <em>/eyebrow/CTA (defaults). Os frascos bordo fazem o pop. */
.hero .bfeat-h {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.008em;
}

/* === B3 — SELOS: deixa de ser grid de cards icone+titulo -> faixa inline ==== */
.selos { background: var(--cream); }
.selos .selos-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; max-width: 940px; padding: 28px 20px; }
.selos .selo { flex-direction: row; align-items: center; gap: 8px; padding: 0; }
.selos .selo-ico svg { width: 20px; height: 20px; }
.selos .selo-txt { flex-direction: row; }
.selos .selo strong { margin: 0; font-size: 14px; }
.selos .selo-txt span { display: none; } /* de-densifica: faixa de confianca, nao grid */
.selos .selo:not(:first-child)::before { content: "•"; color: var(--gold-d); margin-right: 8px; font-size: 12px; }
/* desktop: mais respiro vertical, mas 4 selos numa linha unica (sem quebra) */
@media (min-width: 768px) {
  .selos .selos-grid { flex-wrap: nowrap; gap: 12px 24px; max-width: 1160px; padding: 40px 24px; }
  .selos .selo { gap: 11px; }
  .selos .selo-ico svg { width: 26px; height: 26px; }
  .selos .selo strong { font-size: 17px; white-space: nowrap; }
  .selos .selo:not(:first-child)::before { margin-right: 12px; font-size: 14px; }
}

/* === B3 — PRODUTOS: Kit vira card-destaque (hierarquia, nao grid uniforme) == */
.prods-grid .prod-card.is-featured { border-color: var(--wine); box-shadow: var(--shadow); }
@media (min-width: 700px) {
  .prods-grid .prod-card.is-featured { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
  .prods-grid .is-featured .prod-img { flex: 0 0 38%; aspect-ratio: auto; }
  .prods-grid .is-featured .prod-body { flex: 1; justify-content: center; padding: 26px 30px; gap: 8px; }
  .prods-grid .is-featured .prod-name { font-family: var(--f-serif); font-size: 26px; line-height: 1.15; }
  .prods-grid .is-featured .prod-desc { -webkit-line-clamp: 4; line-clamp: 4; font-size: 14.5px; }
  .prods-grid .is-featured .prod-price-now { font-size: 28px; }
  .prods-grid .is-featured .prod-actions { max-width: 380px; }
}

/* === POLIMENTO #produtos (home) — cards limpos e consistentes ==============
   TUDO escopado em #produtos -> a MESMA .prods-grid de /guia fica intacta.
   Base cream, --wine so como acento (botao/hover/preco). Sem cor nova. ====== */

/* 1+2. Grade sem orfao: Kit (.is-featured) ocupa a linha do topo; os 5 produtos
   ficam em 5 colunas no desktop = uma linha cheia, sem item solto.
   (tablet 3 col / mobile 2 col seguem a base do site). */
@media (min-width: 1000px) {
  #produtos .prods-grid { grid-template-columns: repeat(5, 1fr); }
}

/* 3. Moldura de foto padronizada (atenua a diferenca de origem das imagens):
   mesma proporcao 1:1, mesmo fundo e object-fit: cover nos 5 secundarios.
   NAO toca o card-destaque (layout horizontal proprio). */
#produtos .prods-grid .prod-card:not(.is-featured) .prod-img {
  aspect-ratio: 1 / 1;
  background: var(--cream-deep);
}
#produtos .prods-grid .prod-card:not(.is-featured) .prod-img img {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

/* 5. Eyebrow de categoria recuado: o NOME do produto e a hierarquia principal */
#produtos .prods-grid .prod-cat {
  color: var(--smoke);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.6px;
}

/* 4. Dois botoes equilibrados: Adicionar = primario wine; Detalhes = secundario
   discreto (outline fino), mesmo tamanho (a grade 1fr/1fr ja iguala). */
#produtos .prods-grid .prod-actions .btn-outline {
  border-width: 1px;
  border-color: var(--mist);
  color: var(--ink-soft);
}
#produtos .prods-grid .prod-actions .btn-outline:hover {
  border-color: var(--wine);
  color: var(--wine);
  background: transparent;
}

/* 6. Respiro consistente (tokens --sp-*): corpo e preco sem amontoar */
#produtos .prods-grid .prod-body { padding: var(--sp-4); gap: var(--sp-2); }
#produtos .prods-grid .prod-price { margin: var(--sp-1) 0 var(--sp-3); }

/* === B3 — NECESSIDADES: 4 caixas iguais -> indice editorial numerado ======== */
.needs-section .needs-grid { display: block; counter-reset: need; max-width: 880px; }
.needs-section .need-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 20px;
  align-items: baseline;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 20px 6px;
}
.needs-section .needs-grid .need-card:last-child { border-bottom: 1px solid var(--border); }
.needs-section .need-card::before {
  counter-increment: need;
  content: counter(need, decimal-leading-zero);
  grid-row: 1 / span 2;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold-d);
}
.needs-section .need-card-title { grid-column: 2; margin: 0 0 4px; font-size: 18px; }
.needs-section .need-card-desc { grid-column: 2; margin: 0; color: var(--ink-muted); }
.needs-section .need-card:hover { transform: none; box-shadow: none; border-color: var(--border); }
.needs-section .need-card:hover .need-card-title { color: var(--wine); }
.needs-section .needs-grid .need-card:hover { border-top-color: var(--wine); }

/* === B3 — CARDS DE BENEFICIO (PDPs): tira o icone identico 5x -> tipografia = */
.beneficios-grid .beneficio-card {
  text-align: left;
  background: transparent;
  box-shadow: none;
  border-left: 2px solid var(--gold);
  border-radius: 0;
  padding: 6px 0 6px 18px;
}
.beneficios-grid .beneficio-card .ico { display: none; }
.beneficios-grid .beneficio-card h4 { margin: 0; font-size: 1.1rem; }

/* === Responsivo: featured volta a empilhar; fio menor no mobile ============= */
@media (max-width: 699px) {
  .hero .bfeat-h::after,
  .protocolo-content .bfeat-h::after { width: 72px; background-size: 72px 10px; }
}
