/* ═══════════════════════════════════════════════════════
   CUIDARE COSMÉTICOS — PREMIUM DESIGN SYSTEM v2
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors — Cuidare Aromas (verde floresta + azul, natural)
     Nota: as variaveis --rose* foram remapeadas para o verde da marca
     para reskin sem reescrever centenas de usos. "rose" = verde primario. */
  --rose:        #3E7A50;
  --rose-deep:   #2C5539;
  --rose-light:  #E4EEE1;
  --rose-xlight: #F2F7EE;
  --sage:        #7FAE3D;
  --sage-deep:   #5d8129;
  --sage-light:  #e8f5d0;
  --blue:        #3E6DB5;
  --blue-deep:   #2E5391;
  --gold:        #C9A84C;
  --gold-light:  #f9f0d6;
  --ink:         #24302A;
  --ink-80:      rgba(36,48,42,.8);
  --ink-50:      rgba(36,48,42,.52);
  --ink-20:      rgba(36,48,42,.14);
  --cream:       #FDFCF8;
  --cream-2:     #F3EEE2;
  --white:       #FFFFFF;
  --border:      rgba(36,48,42,.10);
  --border-med:  rgba(36,48,42,.18);

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-gap: 96px;
  --container:   1320px;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-pill: 100px;
  --header-h:    72px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.08);
  --shadow:    0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);
  --shadow-xl: 0 32px 80px rgba(0,0,0,.18);

  /* Transitions */
  --ease:  cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.6,.4,1);
  --t-fast: 180ms var(--ease);
  --t:      300ms var(--ease);
  --t-slow: 500ms var(--ease);
}

/* ── Reset ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; border: none; outline: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: var(--sans); outline: none; }

/* ── Layout ─────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-gap) 0; }
.section-sm { padding: calc(var(--section-gap) * .6) 0; }

/* ── Section Headers ────────────────────────────────── */
.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage-deep); margin-bottom: 14px;
}
.sec-tag::before, .sec-tag::after {
  content: ''; width: 24px; height: 1px; background: var(--sage);
}
.sec-title {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 52px);
  font-weight: 500; line-height: 1.15; color: var(--ink); letter-spacing: -.5px;
}
.sec-title em { font-style: italic; color: var(--rose-deep); }
.sec-title strong { font-weight: 600; }
.sec-sub {
  font-size: 16px; color: var(--ink-50); margin-top: 14px; max-width: 520px;
  line-height: 1.7; font-weight: 300;
}
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header .sec-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: .3px;
  padding: 13px 28px; border-radius: var(--radius-pill);
  transition: var(--t); white-space: nowrap; cursor: pointer;
}
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #2d2d50; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,.25); }
.btn-rose { background: var(--rose-deep); color: var(--white); }
.btn-rose:hover { background: #a56b97; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(185,127,171,.4); }
.btn-sage { background: var(--sage); color: var(--white); }
.btn-sage:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(127,174,61,.35); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: #b8923e; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border-med); }
.btn-outline:hover { border-color: var(--rose-deep); color: var(--rose-deep); background: var(--rose-xlight); }
.btn-ghost-light { background: rgba(255,255,255,.15); color: var(--white); border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 38px; font-size: 16px; }
.btn-icon { padding: 0; width: 44px; height: 44px; border-radius: 50%; }
.btn-icon-sm { padding: 0; width: 36px; height: 36px; border-radius: 50%; }

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h); transition: var(--t);
}
.header-bg {
  position: absolute; inset: 0;
  background: rgba(253,250,246,.92); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid transparent; transition: var(--t);
}
.header.scrolled .header-bg { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; height: 100%; gap: 32px; position: relative; z-index: 1; }
.header-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.logo-wordmark { line-height: 1.12; }
.logo-name { font-family: var(--serif); font-size: 23px; font-weight: 600; letter-spacing: .3px; color: var(--rose-deep); }
.logo-tagline { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--sage-deep); }

.header-nav { display: flex; align-items: center; gap: 2px; margin-left: 20px; }
.nav-link { padding: 7px 14px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 500; color: var(--ink-80); transition: var(--t-fast); }
.nav-link:hover { color: var(--rose-deep); background: var(--rose-xlight); }
.nav-link.active { color: var(--rose-deep); font-weight: 600; }

.header-search {
  flex: 1; max-width: 380px; position: relative;
  margin-left: auto;
}
.header-search input {
  width: 100%; padding: 9px 40px 9px 16px; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: var(--cream-2);
  font-size: 14px; color: var(--ink); transition: var(--t);
}
.header-search input::placeholder { color: var(--ink-50); }
.header-search input:focus { border-color: var(--rose); background: var(--white); box-shadow: 0 0 0 3px rgba(216,168,200,.15); }
.header-search-btn { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); color: var(--ink-50); font-size: 15px; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.header-action-btn {
  width: 40px; height: 40px; border-radius: 50%; background: transparent;
  color: var(--ink); font-size: 18px; display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast); position: relative;
}
.header-action-btn:hover { background: var(--rose-xlight); color: var(--rose-deep); }
.cart-count {
  position: absolute; top: 1px; right: 1px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--sage); color: var(--white); border-radius: 9px;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--cream);
}
.header-cta {
  display: flex; align-items: center; gap: 7px; padding: 9px 18px;
  background: #25D366; color: var(--white); border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; transition: var(--t-fast);
}
.header-cta:hover { background: #1ebe5b; transform: translateY(-1px); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--t); }

/* ── Mobile Nav ─────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0; z-index: 99;
  background: var(--white); padding: 24px;
  transform: translateX(-100%); transition: var(--t);
  overflow-y: auto; border-right: 1px solid var(--border);
  max-width: 300px;
}
.mobile-nav.open { transform: translateX(0); box-shadow: var(--shadow-xl); }
.mobile-nav-link { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: var(--radius); font-size: 15px; font-weight: 500; color: var(--ink); transition: var(--t-fast); }
.mobile-nav-link:hover { background: var(--rose-xlight); color: var(--rose-deep); }
.mobile-nav-link .mn-icon { font-size: 18px; }
.mobile-nav-divider { height: 1px; background: var(--border); margin: 12px 0; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  margin-top: var(--header-h); min-height: calc(100svh - var(--header-h));
  display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 60px 80px var(--container);
  padding-left: max(28px, calc((100vw - var(--container)) / 2 + 28px));
  position: relative; z-index: 1; background: var(--cream);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--sage-deep);
}
.hero-eyebrow-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; animation: pulse 2s infinite; }
.hero-h1 {
  font-family: var(--serif); font-size: clamp(40px, 5vw, 68px);
  font-weight: 500; line-height: 1.1; color: var(--ink); margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-h1 em { font-style: italic; color: var(--rose-deep); }
.hero-desc { font-size: 17px; color: var(--ink-50); line-height: 1.75; margin-bottom: 40px; font-weight: 300; max-width: 420px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-trust {
  display: flex; gap: 28px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-trust-item { }
.trust-num { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--ink); line-height: 1; }
.trust-lbl { font-size: 12px; color: var(--ink-50); margin-top: 4px; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 25%);
}
.hero-badge {
  position: absolute; bottom: 48px; left: -20px;
  background: var(--white); border-radius: var(--radius-lg); padding: 16px 20px;
  box-shadow: var(--shadow-lg); min-width: 200px;
  display: flex; align-items: center; gap: 14px; z-index: 2;
}
.hero-badge-icon { font-size: 28px; }
.hero-badge-label { font-size: 11px; color: var(--ink-50); }
.hero-badge-value { font-size: 16px; font-weight: 700; color: var(--ink); margin-top: 2px; }
.hero-badge-2 {
  position: absolute; top: 48px; right: 32px;
  background: var(--ink); color: var(--white); border-radius: var(--radius-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 10px; z-index: 2; box-shadow: var(--shadow-lg);
}
.hero-badge-2 .hb2-icon { font-size: 22px; }
.hero-badge-2 .hb2-text { font-size: 13px; font-weight: 600; }
.hero-badge-2 .hb2-sub { font-size: 11px; opacity: .65; margin-top: 2px; }

/* ── Hero Collage ───────────────────────────────────── */
.hero-collage {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  background: var(--cream-2);
}
.hc-cell { overflow: hidden; position: relative; }
.hc-cell img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .7s var(--ease-out);
}
.hc-cell:hover img { transform: scale(1.06); }

.hc-center-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 32px rgba(26,26,46,.18), 0 0 0 6px rgba(255,255,255,.8);
  display: flex; align-items: center; justify-content: center;
}
.hcb-inner { text-align: center; }
.hcb-icon { font-size: 28px; line-height: 1; }
.hcb-name { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--ink); margin-top: 2px; line-height: 1; }
.hcb-tag { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose-deep); margin-top: 3px; }

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }

/* ═══════════════════════════════════════════════════════
   MARQUEE STRIP
   ═══════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--ink); color: var(--white); overflow: hidden;
  padding: 14px 0; border-top: 1px solid rgba(255,255,255,.06);
}
.marquee-track { display: flex; gap: 0; animation: marquee 28s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 32px; font-size: 13px; font-weight: 500; letter-spacing: .5px; }
.marquee-sep { opacity: .35; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════════════ */
.benefits { background: var(--cream-2); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid var(--border); transition: var(--t); position: relative; overflow: hidden;
}
.benefit-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0; opacity: 0; transition: var(--t);
}
.benefit-card.c-sage::after { background: var(--sage); }
.benefit-card.c-rose::after { background: var(--rose-deep); }
.benefit-card.c-gold::after { background: var(--gold); }
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.benefit-card:hover::after { opacity: 1; }
.benefit-icon { font-size: 42px; margin-bottom: 20px; }
.benefit-name { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--ink); margin-bottom: 12px; }
.benefit-desc { font-size: 14px; color: var(--ink-50); line-height: 1.7; font-weight: 300; }
.benefit-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill { padding: 5px 13px; border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; }
.c-sage .pill { background: var(--sage-light); color: var(--sage-deep); }
.c-rose .pill { background: var(--rose-light); color: var(--rose-deep); }
.c-gold .pill { background: var(--gold-light); color: #8a6520; }

/* ═══════════════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════════════ */
.categories { background: var(--cream); }
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-card {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; cursor: pointer;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-media { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cat-card:hover .cat-media img { transform: scale(1.07); }
.cat-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(36,48,42,.08)); }
.cat-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; }
.cat-name { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--ink); line-height: 1.15; }
.cat-count { font-size: 12px; color: var(--ink-50); margin-top: 3px; letter-spacing: .3px; }
.cat-arrow { font-size: 18px; color: var(--rose); flex-shrink: 0; transition: transform .3s; }
.cat-card:hover .cat-arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); transition: var(--t); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--rose-light); }

.product-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5; background: var(--cream-2);
}
.product-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-img-overlay {
  position: absolute; inset: 0; background: rgba(26,26,46,.04);
  transition: var(--t);
}
.product-card:hover .product-img-overlay { background: rgba(26,26,46,.0); }

.product-badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 1; }
.product-badge {
  display: inline-block; padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
}
.badge-promo { background: var(--gold); color: var(--white); }
.badge-new { background: var(--sage); color: var(--white); }
.badge-exclusive { background: var(--ink); color: var(--white); }
.badge-kit { background: var(--rose-deep); color: var(--white); }
.badge-luxury { background: linear-gradient(135deg, #C9A84C, #e8c96e); color: var(--white); }
.badge-baby { background: #a8d8ea; color: var(--ink); }
.badge-wedding { background: #f5e6f0; color: var(--rose-deep); border: 1px solid var(--rose); }
.badge-best { background: #e8f5d0; color: var(--sage-deep); border: 1px solid var(--sage-light); }

.product-wish {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: var(--t-fast); box-shadow: var(--shadow-xs);
}
.product-wish:hover { background: var(--rose-xlight); transform: scale(1.12); }
.product-wish.active { background: var(--rose-xlight); }

.product-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 7px; }
.product-name { font-family: var(--serif); font-size: 17px; font-weight: 500; color: var(--ink); line-height: 1.3; margin-bottom: 8px; }
.product-family { font-size: 12px; color: var(--ink-50); margin-bottom: 10px; }
.product-vol { font-size: 11px; color: var(--ink-50); }
.product-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; }
.stars-row { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.stars-text { font-size: 12px; color: var(--ink-50); }

.product-price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.product-price { font-size: 20px; font-weight: 700; color: var(--ink); }
.product-price-old { font-size: 13px; color: var(--ink-50); text-decoration: line-through; }
.product-disc { font-size: 11px; font-weight: 700; color: var(--sage-deep); background: var(--sage-light); padding: 2px 8px; border-radius: var(--radius-pill); }

.product-actions { display: flex; gap: 8px; margin-top: auto; }
.btn-add { width: 100%; padding: 12px 16px; font-size: 14px; }
.product-actions .btn { flex: 1; font-size: 13px; padding: 11px 14px; }
.product-wa { width: 42px; height: 42px; border-radius: var(--radius-pill); background: #dcfce7; color: #16a34a; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--t-fast); flex-shrink: 0; }
.product-wa:hover { background: #25D366; color: var(--white); }

/* ═══════════════════════════════════════════════════════
   PROMO BANNER
   ═══════════════════════════════════════════════════════ */
.promo-section { padding: 0 0 var(--section-gap); }
.promo-banner {
  border-radius: 24px; overflow: hidden; position: relative;
  min-height: 340px; display: flex; align-items: center;
}
.promo-bg {
  position: absolute; inset: 0;
}
.promo-bg img { width: 100%; height: 100%; object-fit: cover; }
.promo-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(26,26,46,.85) 0%, rgba(26,26,46,.55) 50%, rgba(26,26,46,.2) 100%);
}
.promo-content { position: relative; z-index: 1; padding: 56px 64px; max-width: 560px; }
.promo-tag { display: inline-block; padding: 6px 16px; background: var(--gold); color: var(--white); border-radius: var(--radius-pill); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.promo-title { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 48px); font-weight: 500; color: var(--white); line-height: 1.15; margin-bottom: 12px; }
.promo-sub { font-size: 16px; color: rgba(255,255,255,.75); margin-bottom: 32px; font-weight: 300; }
.promo-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════
   FEATURED 2-COL SHOWCASE
   ═══════════════════════════════════════════════════════ */
.showcase { background: var(--cream-2); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.showcase-grid.reverse .showcase-visual { order: -1; }
.showcase-visual { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; position: relative; }
.showcase-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.showcase-visual:hover img { transform: scale(1.04); }
.showcase-visual-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 28px;
  background: linear-gradient(to top, rgba(26,26,46,.8) 0%, transparent 100%);
  color: var(--white);
}
.showcase-visual-caption .cap-name { font-family: var(--serif); font-size: 20px; font-weight: 500; }
.showcase-visual-caption .cap-sub { font-size: 13px; opacity: .75; margin-top: 4px; }
.showcase-text .sec-sub { max-width: 100%; }
.showcase-list { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 36px; }
.showcase-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--t-fast); }
.showcase-item:hover { border-color: var(--rose); box-shadow: var(--shadow-xs); }
.si-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.si-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.si-desc { font-size: 13px; color: var(--ink-50); margin-top: 2px; }
.si-price { font-size: 16px; font-weight: 700; color: var(--rose-deep); margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.testimonials { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); transition: var(--t); display: flex; flex-direction: column; gap: 16px;
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.testi-quote {
  font-family: var(--serif); font-size: 17px; font-style: italic; color: var(--ink-80);
  line-height: 1.7; flex: 1;
}
.testi-quote::before { content: '"'; }
.testi-quote::after { content: '"'; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rose-light), var(--rose));
  display: flex; align-items: center; justify-content: center; font-size: 20px;
  border: 2px solid var(--rose-light);
}
.testi-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testi-loc { font-size: 12px; color: var(--ink-50); margin-top: 2px; }
.testi-check { font-size: 11px; font-weight: 600; color: var(--sage-deep); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════ */
.stats-bar { background: var(--ink); color: var(--white); padding: 60px 0; }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-divider { width: 1px; background: rgba(255,255,255,.12); }
.stat-num { font-family: var(--serif); font-size: 42px; font-weight: 500; color: var(--rose); line-height: 1; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 8px; letter-spacing: .5px; }

/* ═══════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════ */
.newsletter {
  padding: 96px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A1A2E 0%, #2d1f3d 60%, #1a2e1a 100%);
}
.newsletter::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(216,168,200,.12) 0%, transparent 70%);
}
.newsletter-inner { max-width: 600px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.newsletter-icon { font-size: 40px; margin-bottom: 16px; }
.newsletter-title { font-family: var(--serif); font-size: clamp(28px,3.5vw,44px); font-weight: 500; color: var(--white); margin-bottom: 12px; }
.newsletter-sub { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 36px; font-weight: 300; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1; padding: 14px 20px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08);
  color: var(--white); font-size: 15px; backdrop-filter: blur(8px); transition: var(--t);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--rose); background: rgba(255,255,255,.12); box-shadow: 0 0 0 3px rgba(216,168,200,.15); }
.newsletter-note { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 14px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer { background: #0f0f1e; color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 60px; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; margin: 16px 0 24px; font-weight: 300; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: var(--t-fast); border: 1px solid rgba(255,255,255,.08);
}
.social-link:hover { background: var(--rose-deep); border-color: var(--rose-deep); transform: translateY(-2px); }
.footer-heading { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: .5px; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link { font-size: 14px; color: rgba(255,255,255,.45); transition: var(--t-fast); }
.footer-link:hover { color: var(--rose); }
.footer-contacts { display: flex; flex-direction: column; gap: 12px; }
.footer-contact { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.45); }
.footer-contact-icon { font-size: 16px; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-seals { display: flex; gap: 12px; }
.footer-seal {
  padding: 5px 14px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════════
   FLOATING UI
   ═══════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: var(--t-fast);
  animation: fabFloat 3s ease-in-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.12) !important; box-shadow: 0 8px 30px rgba(37,211,102,.6); animation: none; }
.whatsapp-tooltip {
  position: absolute; right: 64px; white-space: nowrap;
  background: var(--ink); color: var(--white); padding: 8px 14px;
  border-radius: var(--radius-sm); font-size: 13px; font-weight: 500;
  opacity: 0; pointer-events: none; transition: var(--t-fast);
}
.whatsapp-tooltip::after { content:''; position:absolute; left:100%; top:50%; transform:translateY(-50%); border:6px solid transparent; border-left-color:var(--ink); }
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; }
@keyframes fabFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.scroll-top {
  position: fixed; bottom: 96px; right: 30px; z-index: 150;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--white); color: var(--ink); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: var(--t);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   CART DRAWER
   ═══════════════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(26,26,46,.45); z-index: 300;
  opacity: 0; pointer-events: none; transition: var(--t); backdrop-filter: blur(4px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: -440px; width: 440px; max-width: 100vw;
  height: 100vh; background: var(--white); z-index: 301; display: flex; flex-direction: column;
  box-shadow: var(--shadow-xl); transition: var(--t);
}
.cart-drawer.open { right: 0; }
.cart-drawer-head { padding: 24px 28px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-head h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.drawer-close { width: 34px; height: 34px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; font-size: 17px; cursor: pointer; transition: var(--t-fast); color: var(--ink); }
.drawer-close:hover { background: var(--rose-xlight); color: var(--rose-deep); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px 28px; display: flex; flex-direction: column; gap: 16px; }
.cart-empty-state { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 40px; }
.cart-empty-icon { font-size: 52px; }
.cart-empty-title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); }
.cart-empty-sub { font-size: 14px; color: var(--ink-50); }
.cart-item { display: flex; gap: 14px; padding: 14px; background: var(--cream-2); border-radius: var(--radius); }
.cart-item-img { width: 80px; height: 80px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 4px; line-height: 1.3; }
.cart-item-price { font-size: 16px; font-weight: 700; color: var(--rose-deep); }
.cart-qty { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.qty-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; cursor: pointer; transition: var(--t-fast); color: var(--ink); }
.qty-btn:hover { border-color: var(--rose); color: var(--rose-deep); }
.qty-val { font-size: 15px; font-weight: 600; min-width: 22px; text-align: center; }
.cart-item-del { color: var(--ink-50); font-size: 14px; cursor: pointer; padding: 4px; transition: var(--t-fast); }
.cart-item-del:hover { color: #dc2626; }
.cart-drawer-foot { padding: 20px 28px 28px; border-top: 1px solid var(--border); }
.cart-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-50); margin-bottom: 8px; }
.cart-shipping-msg { font-size: 13px; color: var(--sage-deep); margin-bottom: 14px; font-weight: 500; }
.cart-total-line { display: flex; justify-content: space-between; font-family: var(--serif); font-size: 20px; font-weight: 500; color: var(--ink); margin-bottom: 20px; }
.cart-foot-btns { display: flex; flex-direction: column; gap: 10px; }
.cart-foot-btns .btn { justify-content: center; }

/* ═══════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════ */
.toast-wrap { position: fixed; bottom: 28px; left: 28px; z-index: 500; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--ink); color: var(--white); padding: 14px 20px; border-radius: var(--radius);
  font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 12px;
  min-width: 280px; max-width: 360px; box-shadow: var(--shadow-lg);
  animation: toastIn .3s var(--ease-out);
}
.toast.success { border-left: 3px solid var(--sage); }
.toast.error   { border-left: 3px solid #dc2626; }
.toast-icon { font-size: 18px; flex-shrink: 0; }
@keyframes toastIn { from{transform:translateY(16px) scale(.96);opacity:0} to{transform:none;opacity:1} }
@keyframes toastOut { to{transform:translateY(16px) scale(.96);opacity:0} }

/* ═══════════════════════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════════════════════ */
.page-hero { background: var(--cream-2); padding: 56px 0 44px; margin-top: var(--header-h); border-bottom: 1px solid var(--border); }
.page-hero-inner { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(28px,4vw,44px); font-weight: 500; color: var(--ink); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-50); }
.breadcrumb a { color: var(--ink-50); transition: var(--t-fast); }
.breadcrumb a:hover { color: var(--rose-deep); }
.breadcrumb-sep { opacity: .4; }
.products-layout { display: grid; grid-template-columns: 268px 1fr; gap: 36px; padding: 48px 0 80px; }
.filters-panel { position: sticky; top: calc(var(--header-h) + 20px); align-self: start; display: flex; flex-direction: column; gap: 16px; }
.filter-box { background: var(--white); border-radius: var(--radius-lg); padding: 22px 24px; border: 1px solid var(--border); }
.filter-box-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.filter-item { display: flex; align-items: center; gap: 10px; padding: 7px 0; cursor: pointer; }
.filter-item input[type=checkbox] { accent-color: var(--rose-deep); width: 15px; height: 15px; cursor: pointer; flex-shrink: 0; }
.filter-item label { font-size: 14px; color: var(--ink-80); cursor: pointer; }
.filter-item:hover label { color: var(--rose-deep); }
.filter-clear { font-size: 12px; font-weight: 600; color: var(--rose-deep); cursor: pointer; margin-top: 12px; display: inline-block; }
.filter-clear:hover { text-decoration: underline; }
.toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.toolbar-count { font-size: 14px; color: var(--ink-50); }
.sort-sel { padding: 9px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-pill); font-size: 13px; color: var(--ink); background: var(--white); cursor: pointer; transition: var(--t-fast); }
.sort-sel:focus { border-color: var(--rose); }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.filter-chip { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; background: var(--rose-light); color: var(--rose-deep); border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; }
.filter-chip button { background: none; color: var(--rose-deep); font-size: 15px; line-height: 1; cursor: pointer; padding: 0 2px; }
.load-more-wrap { text-align: center; padding-top: 48px; }
.empty-wrap { text-align: center; padding: 80px 24px; }
.empty-wrap-icon { font-size: 56px; margin-bottom: 16px; }
.empty-wrap h3 { font-family: var(--serif); font-size: 26px; margin-bottom: 10px; }
.empty-wrap p { font-size: 15px; color: var(--ink-50); margin-bottom: 24px; }
.mobile-filter-btn { display: none; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hero-left { padding-left: 48px; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 72px 28px 60px; text-align: center; justify-content: flex-start; }
  .hero-ctas, .hero-trust { justify-content: center; }
  .hero-desc { margin: 0 auto 40px; }
  .hero-right { height: 440px; }
  .hero-right-overlay { background: linear-gradient(to bottom, var(--cream) 0%, transparent 30%); }
  .showcase-grid { grid-template-columns: 1fr; gap: 32px; }
  .showcase-grid.reverse .showcase-visual { order: 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; --section-gap: 64px; }
  .header-nav, .header-search, .header-cta, .header-whatsapp { display: none; }
  .mobile-toggle { display: flex; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form { flex-direction: column; }
  .promo-content { padding: 40px 28px; }
  .products-layout { grid-template-columns: 1fr; }
  .filters-panel { position: fixed; top: 0; bottom: 0; left: -290px; z-index: 200; background: var(--white); width: 290px; padding: 24px; overflow-y: auto; transition: var(--t); border-right: 1px solid var(--border); }
  .filters-panel.open { left: 0; box-shadow: var(--shadow-xl); }
  .mobile-filter-btn { display: inline-flex; }
  .marquee-strip { display: none; }

  /* ── Hero mobile: imagem em destaque no topo ── */
  .hero { display: flex; flex-direction: column; min-height: auto; }
  .hero-right { order: -1; width: 100%; height: 58vw; min-height: 240px; max-height: 360px; position: relative; overflow: hidden; flex-shrink: 0; }
  .hero-right-overlay { background: linear-gradient(to bottom, transparent 50%, #FDFAF6 100%); }
  .hero-badge { bottom: 12px; left: 10px; padding: 9px 12px; min-width: 0; gap: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.12); }
  .hero-badge-icon { font-size: 18px; }
  .hero-badge-label { font-size: 9px; }
  .hero-badge-value { font-size: 12px; margin-top: 1px; }
  .hero-badge-2 { top: 12px; right: 12px; padding: 8px 12px; gap: 7px; }
  .hero-badge-2 .hb2-icon { font-size: 17px; }
  .hero-badge-2 .hb2-text { font-size: 11px; }
  .hero-badge-2 .hb2-sub { font-size: 9px; }
  .hc-center-badge { width: 80px; height: 80px; }
  .hcb-icon { font-size: 20px; }
  .hcb-name { font-size: 12px; }
  .hcb-tag { font-size: 7px; }
  .hero-left { order: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 24px 20px 48px; text-align: center; background: #FDFAF6; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-h1 { font-size: clamp(28px, 7.5vw, 40px); line-height: 1.15; margin-bottom: 12px; letter-spacing: -.5px; }
  .hero-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; max-width: 100%; }
  .hero-ctas { gap: 10px; margin-bottom: 36px; flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { padding-top: 24px; gap: 20px; width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { gap: 12px; }
  .product-img { aspect-ratio: 3/4; }
  .product-body { padding: 14px 14px 16px; }
  .product-name { font-size: 15px; }
  .hero-trust { gap: 16px; }
  .trust-num { font-size: 22px; }
  .cats-grid { gap: 10px; }
  .cat-card { padding: 20px 10px; }
  .hero-right { min-height: 200px; max-height: 280px; height: 55vw; }
  .hero-h1 { font-size: clamp(26px, 7vw, 34px); }
  .hero-ctas .btn { padding: 12px 20px; font-size: 14px; }
}

/* ===== PÁGINAS DE CONTEÚDO (sobre, trocas, etc.) ===== */
.info-wrap { max-width: 760px; margin: 0 auto; padding: calc(var(--header-h) + 56px) 24px 90px; }
.info-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--rose-deep); font-weight: 500; margin-bottom: 26px; }
.info-back:hover { text-decoration: underline; }
.info-wrap h1 { font-family: var(--serif); font-size: clamp(32px, 5vw, 46px); font-weight: 500; color: var(--ink); margin-bottom: 12px; line-height: 1.1; letter-spacing: -.5px; }
.info-lead { font-size: 16px; color: var(--ink-50); margin-bottom: 42px; line-height: 1.6; }
.info-wrap h2 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--ink); margin: 38px 0 12px; }
.info-wrap p { font-size: 15px; line-height: 1.8; color: var(--ink-80); margin-bottom: 16px; }
.info-wrap ul { margin: 0 0 18px; padding-left: 22px; }
.info-wrap li { font-size: 15px; line-height: 1.75; color: var(--ink-80); margin-bottom: 8px; }
.info-wrap strong { color: var(--ink); font-weight: 600; }
.info-note { background: var(--cream-2); border-radius: 14px; padding: 18px 22px; font-size: 14px; line-height: 1.7; color: var(--ink-80); margin-top: 28px; }
.info-note a, .info-wrap p a { color: var(--rose-deep); font-weight: 600; }
.info-header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); z-index: 100; background: rgba(253,252,248,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.info-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.info-header .btn-back-store { font-size: 13px; font-weight: 600; color: var(--ink-80); }
.info-header .btn-back-store:hover { color: var(--rose-deep); }

/* Categoria tiles — mobile (evita quebra feia do nome) */
@media (max-width: 600px) {
  .cat-media { aspect-ratio: 1/1; }
  .cat-foot { padding: 12px 13px; gap: 8px; align-items: flex-start; }
  .cat-name { font-size: 15px; line-height: 1.2; }
  .cat-count { font-size: 11px; margin-top: 2px; }
  .cat-arrow { font-size: 15px; margin-top: 2px; }
}
