/* =============================================================================
   Magia Capilar — Sistema de Design (M5)
   Fontes: Cormorant Garamond (titulos) + DM Sans (corpo)
   Paleta: wine / cream / gold / ink — identidade preservada do original
   ============================================================================= */

:root {
  /* Paleta — alinhada com o site original (#6E1F2A como wine principal) */
  --cream:    #F9F5EF;
  --ivory:    #FFFDF8;
  --ink:      #1C1018;
  --ink-soft: #3A2E34;
  --smoke:    #8E8783;
  --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;

  /* 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: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-sans:  "DM Sans", -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Container */
  --container: 1240px;
  --container-narrow: 880px;

  /* Header */
  --header-h: 88px;
  --announce-h: 36px;
}

/* ============================================================================
   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: 16px;
  line-height: 1.6;
  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: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--sp-4);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }
.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.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-d);
  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(--sp-20) 0; }
.section-sm { padding: var(--sp-12) 0; }
.section-title { text-align: center; margin-bottom: var(--sp-12); }
.section-title .eyebrow { display: inline-block; }
.section-title h2 { margin-bottom: var(--sp-3); }
.section-title p { color: var(--smoke); max-width: 620px; 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: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--pill);
  transition: all var(--fast);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--wine);
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 34, 82, 0.25);
}
.btn-primary:hover {
  background: var(--wine-h);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(139, 34, 82, 0.35);
}
.btn-primary:active { transform: translateY(0); }
.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;
  box-shadow: 0 6px 20px rgba(196, 149, 106, 0.3);
}
.btn-gold:hover { background: var(--gold-d); color: #fff; transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { display: flex; width: 100%; }

/* ============================================================================
   Anuncio + Header
   ============================================================================ */
.announce {
  background: var(--wine-d);
  color: #fff;
  text-align: center;
  padding: 10px var(--sp-6);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  justify-content: center;
}
.announce strong { color: var(--gold-lt); font-weight: 600; }

.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: 0.92rem;
  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 Slideshow — segue proporcoes do site original
   Desktop: aspect 2.4:1 (landscape)
   Mobile:  aspect 0.875:1 (portrait)
   ============================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-slides {
  position: relative;
  display: grid;
  aspect-ratio: 2.4 / 1;
  max-height: 82vh;
}
.hero-slide {
  grid-area: 1 / 1;
  position: relative;
  opacity: 0;
  transition: opacity var(--slow);
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide > a,
.hero-slide > picture,
.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}
.hero-slide picture { display: block; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  max-width: 760px;
  padding: var(--sp-8) var(--sp-6);
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
@media (max-width: 767px) {
  .hero-slides { aspect-ratio: 0.875 / 1; max-height: none; }
}
.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: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fast);
}
.hero-nav:hover { background: rgba(255,255,255,0.35); }
.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: 32px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: var(--pill);
  transition: background var(--fast);
}
.hero-dots button.active { background: #fff; }

/* ============================================================================
   Barra de selos
   ============================================================================ */
.selos {
  background: var(--ivory);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  padding: var(--sp-6) 0;
}
.selos-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-6);
  text-align: center;
}
.selo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  min-width: 140px;
}
.selo .selo-ico {
  width: 40px;
  height: 40px;
  color: var(--wine);
}
.selo .selo-ico svg { width: 100%; height: 100%; }
.selo strong { font-family: var(--f-serif); font-size: 1rem; font-weight: 600; color: var(--ink); }
.selo span { font-size: 0.78rem; color: var(--smoke); }

/* ============================================================================
   Grid de categorias
   ============================================================================ */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.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(-4px); 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.05); }
.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.35rem;
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}
.cat-card-label span {
  font-size: 0.78rem;
  opacity: 0.85;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================================
   Product card
   ============================================================================ */
.prod-card {
  background: var(--ivory);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--med), box-shadow var(--med);
  position: relative;
}
.prod-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.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 var(--slow);
}
.prod-card:hover .prod-img img { transform: scale(1.03); }
.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-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.prod-card .prod-cat {
  font-size: 0.72rem;
  color: var(--smoke);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.prod-card .prod-name {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
  min-height: 2.8em;
}
.prod-card .prod-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.prod-card .prod-stars span { color: var(--smoke); margin-left: 4px; }
.prod-card .prod-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-top: auto;
  padding-top: var(--sp-3);
}
.prod-card .prod-price-old {
  color: var(--smoke);
  font-size: 0.85rem;
  text-decoration: line-through;
}
.prod-card .prod-price-now {
  color: var(--wine);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--f-serif);
}
.prod-card .btn { margin-top: var(--sp-4); }

/* ============================================================================
   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%; } }

.carousel-nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform var(--fast), background var(--fast);
  z-index: 2;
}
.carousel-nav:hover { background: var(--wine); color: #fff; transform: translateY(-50%) scale(1.05); }
.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-16);
  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.05rem; line-height: 1.75; }
.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); }
}

/* ============================================================================
   Antes e Depois — grid + slider PDP
   ============================================================================ */
.ad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.ad-card {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-sm);
  position: relative;
  background: var(--blush);
}
.ad-card img { width: 100%; height: 100%; object-fit: cover; }
.ad-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--sp-4);
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(28,16,24,0.8));
  font-family: var(--f-serif);
  font-style: italic;
}

/* Antes/depois slider (PDP) */
.ad-slider {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r);
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background: var(--blush);
}
.ad-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ad-slider .ad-after { clip-path: inset(0 0 0 50%); }
.ad-slider .ad-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(28,16,24,0.1), 0 4px 12px rgba(0,0,0,0.2);
}
.ad-slider .ad-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%238B2252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E") center/22px no-repeat;
  border-radius: 50%;
  box-shadow: var(--shadow);
}
.ad-slider .ad-label {
  position: absolute;
  top: var(--sp-3);
  padding: 5px 12px;
  background: rgba(28,16,24,0.7);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--pill);
  backdrop-filter: blur(4px);
}
.ad-slider .ad-label.left { left: var(--sp-3); }
.ad-slider .ad-label.right { right: var(--sp-3); }

@media (max-width: 860px) { .ad-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   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;
}

/* ============================================================================
   Avaliacoes
   ============================================================================ */
.review-card {
  background: var(--ivory);
  border-radius: var(--r);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  min-height: 260px;
}
.review-stars { color: var(--gold); font-size: 1.05rem; letter-spacing: 2px; }
.review-title {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
}
.review-title:empty { display: none; }
.review-text {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  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: 600;
  font-size: 0.88rem;
  color: var(--ink);
  display: block;
}
.review-author .review-city { font-size: 0.75rem; 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.2rem;
  font-weight: 500;
  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: 0.98rem;
  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); }

/* ============================================================================
   Newsletter
   ============================================================================ */
.newsletter {
  background: var(--ink);
  color: var(--blush);
  border-radius: var(--r-lg);
  padding: var(--sp-16) var(--sp-8);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.newsletter h2 { color: #fff; font-style: italic; }
.newsletter p { color: var(--mist); font-size: 1.02rem; margin-bottom: var(--sp-6); }
.newsletter-form {
  display: flex;
  gap: var(--sp-2);
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  padding: 5px;
  border-radius: var(--pill);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}
.newsletter-form button {
  padding: 12px 24px;
  background: var(--wine);
  color: #fff;
  font-weight: 600;
  border-radius: var(--pill);
  transition: background var(--fast);
}
.newsletter-form button:hover { background: var(--wine-h); }

/* ============================================================================
   Footer
   ============================================================================ */
.site-footer {
  background: var(--ink);
  color: var(--mist);
  padding: var(--sp-16) 0 var(--sp-8);
  margin-top: var(--sp-20);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.footer-grid ul li { margin-bottom: var(--sp-2); font-size: 0.9rem; }
.footer-grid a { color: var(--mist); transition: color var(--fast); }
.footer-grid a:hover { color: #fff; }
.footer-brand img { height: 52px; margin-bottom: var(--sp-4); filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: var(--mist); }
.footer-bottom {
  border-top: 1px solid rgba(213, 207, 201, 0.12);
  padding-top: var(--sp-6);
  text-align: center;
  font-size: 0.8rem;
  color: var(--smoke);
}
@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-desconto-pix {
  display: inline-block;
  background: var(--blush);
  color: var(--wine-d);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: var(--sp-5);
}

.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: 600;
}
.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: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.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: 600;
}

@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);
}
.cj-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.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 {
  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 { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-wine { color: var(--wine); }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.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: 1040px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  :root { --sp-20: 64px; --sp-16: 48px; }
  .section { padding: var(--sp-16) 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
  .ad-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* Print + prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
