/* =====================================================
   ŌRA — Milena Lima Beauty · Store
   Depende de: styles.css
   ===================================================== */

/* ── Variáveis Ōra ───────────────────────────────── */
:root {
  --cream:       #F5F0EB;
  --cream-dark:  #EDE8E2;
  --cream-deep:  #E0D9D0;
  --stone:       #B4A99A;
  --stone-dark:  #8C8078;
  --bark:        #5C5248;
  --bark-deep:   #2C2822;
  --ink:         #1A1714;

  --blush:       #F0E8E6;
  --blush-mid:   #C4897A;
  --blush-deep:  #8C4838;

  --sage-accent: #3D6655;

  /* Override globals */
  --bg:             #FDFCFB;
  --rose:           #C4897A;
  --rose-soft:      #F0E8E6;
  --rose-dark:      #8C4838;
  --text:           #1A1714;
  --text-soft:      #5C5248;
  --brand:          #3D6655;
  --brand-soft:     #E8EDEA;
  --muted:          #8C8078;
  --border:         rgba(26,23,20,.13);
  --surface-strong: #EDE8E2;
  --shadow:         0 1px 12px rgba(26,23,20,.06);
  --shadow-md:      0 6px 40px rgba(26,23,20,.10);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur-base: 280ms;
}

/* ── Base ────────────────────────────────────────── */
body { font-family: var(--font-body); background: var(--bg); }

/* ── Custom cursor ───────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--blush-mid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width .2s var(--ease-out), height .2s var(--ease-out), opacity .2s ease;
  will-change: transform;
  opacity: 0;
}
.cursor.ready { opacity: 1; }
.cursor.hover {
  width: 26px; height: 26px;
  background: rgba(196,137,122,.14);
  border: 1px solid var(--blush-mid);
  margin: -9px 0 0 -9px;
}

/* ── Keyframes ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes wordIn {
  from { opacity: 0; transform: translateY(105%); }
  to   { opacity: 1; transform: none; }
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.02); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-12px) rotate(-.7deg); }
}
@keyframes introOut {
  from { opacity: 1; visibility: visible; }
  to   { opacity: 0; visibility: hidden; }
}
@keyframes introIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes introRuleGrow {
  from { width: 0; opacity: 0; }
  to   { width: 64px; opacity: 1; }
}

/* ── Site intro overlay ──────────────────────────── */
.site-intro {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: introOut .65s var(--ease-out) 1.8s both;
}
.site-intro-inner {
  text-align: center;
  animation: introIn .75s var(--ease-out) .15s both;
}
.site-intro-eyebrow {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--stone); margin: 0 0 16px;
  animation: introIn .6s var(--ease-out) .1s both;
}
.site-intro-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 6.5rem);
  font-weight: 300; color: var(--ink);
  letter-spacing: .03em; line-height: 1.05;
}
.site-intro-brand em { color: var(--blush-mid); font-style: italic; }
.site-intro-rule {
  height: 0.5px; background: var(--stone-dark);
  margin: 20px auto 0; width: 0;
  animation: introRuleGrow .5s var(--ease-out) .85s both;
}

/* ── Scroll reveal ───────────────────────────────── */
.reveal,.reveal-r,.reveal-l {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal   { transform: translateY(20px); }
.reveal-r { transform: translateX(20px); }
.reveal-l { transform: translateX(-20px); }
.reveal.vis,.reveal-r.vis,.reveal-l.vis { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }
.reveal:nth-child(7) { transition-delay: .48s; }

/* ── Urgency banner ──────────────────────────────── */
.urgency-banner {
  background: var(--ink);
  color: rgba(253,252,251,.55);
  text-align: center;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.urgency-banner em { font-style: normal; font-weight: 500; color: var(--blush-mid); }

/* ── Header ──────────────────────────────────────── */
.site-header {
  background: rgba(253,252,251,.96);
  backdrop-filter: blur(24px);
  border-bottom: 0.5px solid rgba(26,23,20,.1);
}
/* Garante que o header da loja sempre fique em linha */
.page-store .header-inner {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}
.brand {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--ink);
}
.brand span { color: var(--blush-mid); font-style: italic; }
.main-nav a {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  color: var(--stone-dark);
  letter-spacing: .02em;
  transition: color var(--dur-fast);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 0.5px;
  background: var(--ink);
  transition: width .3s var(--ease-out);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.nav-active { color: var(--ink); }
.main-nav a.nav-active::after { width: 100%; }

/* Cart button */
.header-actions .btn {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: .02em;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background var(--dur-fast);
}
.header-actions .btn:hover { background: var(--bark-deep); }
.cpill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px; height: 18px;
  background: var(--blush-mid);
  color: #fff;
  border-radius: 999px;
  font-size: 10px; font-weight: 500;
  padding: 0 4px; margin-left: 6px;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 52% 70% at 80% 42%, rgba(196,137,122,.11) 0%, transparent 65%),
    radial-gradient(ellipse 32% 48% at 14% 70%, rgba(61,102,85,.06) 0%, transparent 58%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(196,137,122,.09) 0%, transparent 70%);
  border-radius: 50%;
  top: -10%; right: 5%;
  animation: orbFloat 14s ease-in-out 0s infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 88px 48px 52px;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  padding-right: 20px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--stone-dark);
  font-weight: 400;
  margin-bottom: 28px;
}
.kicker-line {
  display: inline-block;
  width: 28px; height: 0.5px;
  background: var(--stone);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.6vw, 6rem);
  line-height: 1.0;
  margin: 0 0 30px;
  font-weight: 300;
  letter-spacing: -.01em;
}
.hl-line {
  display: block;
  overflow: hidden;
  animation: wordIn .72s var(--ease-out) both;
  color: var(--ink);
}
.hl-line:nth-child(1) { animation-delay: .06s; }
.hl-line:nth-child(2) { animation-delay: .18s; font-style: italic; color: var(--blush-mid); }
.hl-line:nth-child(3) { animation-delay: .30s; }
.hl-line:nth-child(4) { animation-delay: .42s; font-style: italic; color: var(--blush-mid); }

.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--stone-dark);
  line-height: 1.72;
  max-width: 420px;
  margin-bottom: 36px;
  font-weight: 400;
  animation: fadeUp .7s var(--ease-out) .5s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp .7s var(--ease-out) .6s both;
}

.btn-editorial {
  background: var(--ink);
  color: var(--bg);
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: .02em;
  transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.btn-editorial:hover { background: var(--bark-deep); transform: translateY(-1px); }

.btn-ghost-editorial {
  background: transparent;
  color: var(--stone-dark);
  border: 0.5px solid rgba(26,23,20,.2);
  border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  transition: all var(--dur-fast) var(--ease-out);
}
.btn-ghost-editorial:hover { border-color: var(--ink); color: var(--ink); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp .7s var(--ease-out) .7s both;
}
.proof-stars { color: #C4A55A; font-size: 13px; letter-spacing: 3px; }
.proof-text  { font-family: var(--font-body); font-size: 12px; color: var(--stone-dark); }
.proof-text strong { color: var(--bark); font-weight: 500; }

/* Hero right — galeria de produtos */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
}

.hero-gallery {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  animation: fadeUp .8s var(--ease-out) .32s both;
  width: 100%;
  max-width: 420px;
}

.hero-gcard {
  flex: 1;
  cursor: pointer;
  animation: orbFloat 5.5s ease-in-out 1.4s infinite;
}
.hero-gcard--b { margin-top: 56px; animation-duration: 7s; animation-delay: 2s; }

.hero-gc-img {
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--cream-dark);
  border-radius: 3px;
  position: relative;
  box-shadow: 0 12px 48px rgba(26,23,20,.14);
}
.hero-gc-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .72s var(--ease-out);
}
.hero-gcard:hover .hero-gc-img img { transform: scale(1.04); }

.hero-gc-foot {
  padding: 11px 2px 0;
  display: flex; flex-direction: column; gap: 2px;
}
.hero-gc-cat {
  font-family: var(--font-body);
  font-size: 8.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone);
}
.hero-gc-nm {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 400; color: var(--ink); line-height: 1.2;
}
.hero-gc-pr {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 500; color: var(--blush-mid); margin-top: 1px;
}

/* Stats bar */
.hero-stats-bar {
  display: flex;
  align-items: stretch;
  border-top: 0.5px solid rgba(26,23,20,.1);
  background: rgba(253,252,251,.95);
  backdrop-filter: blur(12px);
}
.stat-item {
  flex: 1;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1;
}
.stat-lbl {
  font-family: var(--font-body);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone-dark);
}
.stat-sep {
  width: 0.5px;
  background: rgba(26,23,20,.1);
  flex-shrink: 0;
  align-self: stretch;
  margin: 14px 0;
}

/* ── Hero scroll hint ────────────────────────────── */
@keyframes hintFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
@keyframes chevBounce {
  0%, 55%, 100% { transform: rotate(45deg) translate(0, 0); }
  28%           { transform: rotate(45deg) translate(4px, 4px); }
}
.hero-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-bottom: 40px;
  cursor: pointer;
  animation: hintFadeIn .7s var(--ease-out) 2.2s both;
  transition: opacity .2s;
}
.hero-scroll-hint:hover { opacity: .7; }
.scroll-hint-text {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--stone-dark);
}
.scroll-hint-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.scroll-hint-chevrons span {
  display: block;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--stone);
  border-bottom: 1.5px solid var(--stone);
  animation: chevBounce 1.6s ease-in-out infinite;
}
.scroll-hint-chevrons span:nth-child(1) { opacity: .3; animation-delay: 0s; }
.scroll-hint-chevrons span:nth-child(2) { opacity: .6; animation-delay: .14s; }
.scroll-hint-chevrons span:nth-child(3) { opacity: 1;  animation-delay: .28s; }

/* ── Marquee ─────────────────────────────────────── */
.marquee {
  background: var(--cream);
  border-top: 0.5px solid rgba(26,23,20,.1);
  border-bottom: 0.5px solid rgba(26,23,20,.1);
}
.marquee-track span {
  color: var(--stone);
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .2em;
}

/* ── Benefits strip ──────────────────────────────── */
.benefits-strip { background: var(--ink); padding: 28px 0; }
.benefits-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.benefit-item   { display: flex; align-items: center; gap: 14px; }
.benefit-icon   { font-size: 17px; flex-shrink: 0; opacity: .6; }
.benefit-title  { font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: rgba(253,252,251,.82); line-height: 1.3; }
.benefit-desc   { font-size: 11px; color: rgba(253,252,251,.38); margin-top: 2px; }

/* ── Section shared ──────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone-dark);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0;
}
.section-title em { color: var(--blush-mid); font-style: italic; }
.section-title-light { color: #fff; }
.section-text { color: var(--stone-dark); font-family: var(--font-body); font-size: 14.5px; line-height: 1.72; }

/* ── Filter buttons ──────────────────────────────── */
.filter-btn {
  background: transparent;
  border: 0.5px solid rgba(26,23,20,.16);
  color: var(--stone-dark);
  border-radius: 999px;
  padding: 7px 17px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .02em;
  transition: all var(--dur-fast) var(--ease-out);
}
.filter-btn:hover { border-color: var(--ink); color: var(--ink); background: transparent; }
.filter-btn.on    { background: var(--ink); border-color: var(--ink); color: var(--bg); }

/* ── Fade direita do carousel (hint de scroll) ───── */
.section.products {
  position: relative;
}
.section.products::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 90px;
  background: linear-gradient(to right, transparent, var(--bg) 88%);
  pointer-events: none;
  z-index: 4;
}

/* ── Barra de progresso do carousel ─────────────── */
.pgrid-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 40px 8px;
}
.pgrid-bar-track {
  width: 100%;
  height: 1px;
  background: rgba(26,23,20,.1);
  position: relative;
  border-radius: 1px;
}
.pgrid-bar-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--ink);
  border-radius: 1px;
  transition: width .14s ease;
}
.pgrid-drag-hint {
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  transition: opacity .5s ease;
}
.pgrid-drag-hint.used { opacity: 0; pointer-events: none; }

/* ── Controles do carousel ───────────────────────── */
.section-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.pgrid-ctrl { display: flex; gap: 8px; }
.pgrid-arrow {
  width: 34px; height: 34px;
  border: 0.5px solid rgba(26,23,20,.16);
  border-radius: 50%;
  background: transparent;
  color: var(--stone-dark);
  font-size: 13px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-fast) var(--ease-out);
  font-family: var(--font-body);
}
.pgrid-arrow:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--cream-dark);
}

/* ── Product grid — horizontal scroll carousel ───── */
.pgrid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 48px;
}
.pgrid::-webkit-scrollbar { display: none; }
.pgrid::before,
.pgrid::after {
  content: '';
  display: block;
  flex: 0 0 40px;
}

/* ── Product cards — portrait editorial ──────────── */
.pcard {
  flex: 0 0 clamp(200px, 22vw, 276px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: none;
}
.pcard:hover { transform: none; box-shadow: none; }

.pcard-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
  border-radius: 2px;
  box-shadow: 0 2px 16px rgba(26,23,20,.06);
}
.pcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .72s var(--ease-out);
}
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-img::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 0.5px rgba(26,23,20,.07);
  border-radius: 2px;
  pointer-events: none;
  z-index: 3;
}

.pbadge {
  position: absolute; top: 10px; left: 10px;
  border-radius: 2px; padding: 3px 8px;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500; color: #fff; z-index: 2;
  letter-spacing: .08em; text-transform: uppercase;
}
.b-new  { background: var(--sage-accent); }
.b-sale { background: var(--blush-mid); }

.pstock-pill {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(253,252,251,.95); border-radius: 2px; padding: 3px 8px;
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500; color: var(--blush-mid);
  letter-spacing: .04em;
}
.pstock-out { color: var(--stone-dark); }

.pcard-overlay {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background: linear-gradient(to top, rgba(26,23,20,.72) 0%, rgba(26,23,20,.44) 50%, rgba(26,23,20,.18) 100%);
  opacity: 0;
  transition: opacity .32s var(--ease-out);
}
.pcard:hover .pcard-overlay { opacity: 1; }

.pcard-overlay-desc {
  font-family: var(--font-body);
  font-size: 11.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  overflow-y: auto;
  max-height: 58%;
  scrollbar-width: none;
  transform: translateY(-6px);
  transition: transform .32s var(--ease-out);
}
.pcard-overlay-desc::-webkit-scrollbar { display: none; }
.pcard:hover .pcard-overlay-desc { transform: translateY(0); }

.pcard-add {
  width: 100%;
  background: var(--bg); color: var(--ink);
  border: none; border-radius: 999px;
  padding: 11px;
  font-family: var(--font-body); font-size: 11.5px; font-weight: 400;
  letter-spacing: .04em;
  transform: translateY(8px);
  transition: transform .32s var(--ease-out), background var(--dur-fast);
}
.pcard:hover .pcard-add { transform: none; }
.pcard-add:hover { background: var(--cream-dark); }
.pcard-add:disabled { opacity: .45; cursor: not-allowed; }

.pcard-foot {
  padding: 12px 2px 0;
  display: flex; flex-direction: column; gap: 3px;
}
.pcard-cat {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--stone);
}
.pcard-name {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 400; color: var(--ink); line-height: 1.2;
}
.pcard-desc {
  font-family: var(--font-body);
  font-size: 11px; color: var(--stone-dark); line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pcard-price { display: flex; align-items: baseline; gap: 6px; margin-top: 4px; }
.pcard-price-new { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--blush-mid); }
.pcard-price-old { font-family: var(--font-body); font-size: 11px; color: var(--stone); text-decoration: line-through; }
.pcard-price-reg { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--ink); }

/* ── Global btn overrides ────────────────────────── */
.btn { font-family: var(--font-body); font-weight: 400; letter-spacing: .02em; }
.btn-primary { background: var(--blush-mid); }
.btn-primary:hover { background: var(--blush-deep); }

/* ── Benefit icon — line marker ──────────────────── */
.benefit-icon--line {
  display: inline-block;
  width: 24px; height: 1px;
  background: rgba(253,252,251,.28);
  flex-shrink: 0;
  align-self: center;
}

/* ── Feature split — interativo ──────────────────── */
.feature-split {
  background: linear-gradient(150deg, var(--sage-accent) 0%, #1e4535 100%);
  position: relative;
  overflow: hidden;
  --mx: 35%; --my: 50%;
}
.feature-split::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle 440px at var(--mx) var(--my), rgba(255,255,255,.08) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}
.feature-split .container { position: relative; z-index: 1; }

.split-grid { display: grid; grid-template-columns: 1.35fr 0.9fr; gap: 32px; align-items: center; }
.feature-copy .section-eyebrow,
.feature-copy .section-text { color: rgba(253,252,251,.65); }
.feature-copy h2,
.feature-copy h2 em { color: #fff; }
.feature-copy h2 em { font-style: italic; }

/* Palavra por palavra — reveal ao scroll */
.fs-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(26px) skewY(1.5deg);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out), color .22s ease;
}
.feature-split.fs-active .fs-word:nth-child(1) { opacity: 1; transform: none; transition-delay: .04s; }
.feature-split.fs-active .fs-word:nth-child(2) { opacity: 1; transform: none; transition-delay: .2s; }
.feature-split.fs-active .fs-word:nth-child(3) { opacity: 1; transform: none; transition-delay: .36s; }

.fs-headline .fs-word:hover { color: rgba(253,252,251,.45); cursor: default; }
.fs-headline em.fs-word:hover { color: var(--blush-mid) !important; }

.fs-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.feature-split.fs-active .fs-reveal { opacity: 1; transform: none; }
.feature-split.fs-active .feature-copy .section-eyebrow { transition-delay: 0s; }
.feature-split.fs-active .section-text.fs-reveal { transition-delay: .5s; }

.fs-cta {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .55s var(--ease-out) .68s, transform .55s var(--ease-out) .68s, background var(--dur-fast);
  position: relative; overflow: hidden;
}
.feature-split.fs-active .fs-cta { opacity: 1; transform: none; }
.fs-cta::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--bx, 50%) var(--by, 50%), rgba(255,255,255,.18) 0%, transparent 65%);
  opacity: 0; transition: opacity .3s ease;
}
.fs-cta:hover::after { opacity: 1; }

/* Visual animado */
.feature-visual {
  min-height: 320px; border-radius: 20px;
  background: rgba(253,252,251,.04);
  display: grid; place-items: center;
  border: 0.5px solid rgba(253,252,251,.08);
  position: relative; overflow: hidden;
}
.fs-visual {
  transition: transform .45s var(--ease-out);
  will-change: transform;
}

.fv-ring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%;
  border: 0.5px solid rgba(253,252,251,.12);
  transform: translate(-50%, -50%);
}
.fv-ring-1 { width: 90px; height: 90px; animation: fvRingPulse 3.2s ease-in-out infinite; }
.fv-ring-2 { width: 180px; height: 180px; animation: fvRingPulse 3.2s ease-in-out .8s infinite; }
.fv-ring-3 { width: 270px; height: 270px; animation: fvRingPulse 3.2s ease-in-out 1.6s infinite; }

.fv-dot {
  position: absolute; border-radius: 50%;
}
.fv-dot-1 {
  width: 5px; height: 5px; top: 28%; left: 62%;
  background: rgba(253,252,251,.35);
  animation: fvDotFloat 4.5s ease-in-out infinite;
}
.fv-dot-2 {
  width: 3px; height: 3px; top: 68%; left: 32%;
  background: rgba(196,137,122,.6);
  animation: fvDotFloat 6s ease-in-out .9s infinite;
}
.fv-dot-3 {
  width: 7px; height: 7px; top: 18%; left: 22%;
  background: rgba(253,252,251,.14);
  animation: fvDotFloat 7.5s ease-in-out .4s infinite;
}

@keyframes fvRingPulse {
  0%, 100% { opacity: .12; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: .28; transform: translate(-50%,-50%) scale(1.08); }
}
@keyframes fvDotFloat {
  0%, 100% { transform: translate(0, 0); }
  30%       { transform: translate(12px, -16px); }
  65%       { transform: translate(-8px, 10px); }
}

/* ── Segunda grade de produtos ───────────────────── */
.products-feat { background: var(--cream); }
.pgrid-feat {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 40px;
}
.pgrid-feat .pcard {
  flex: unset; width: 100%; scroll-snap-align: unset;
}
.pgrid-feat .pcard-img { aspect-ratio: 1/1; border-radius: 3px; }
.pgrid-feat .pcard-name { font-size: 13px; line-height: 1.15; }
.pgrid-feat .pcard-cat  { font-size: 8px; letter-spacing: .14em; }
.pgrid-feat .pcard-foot { padding: 8px 1px 0; gap: 2px; }
.pgrid-feat .pcard-desc { display: none; }
.pgrid-feat .pcard-price { margin-top: 2px; }
.pgrid-feat .pcard-price-new,
.pgrid-feat .pcard-price-reg { font-size: 11.5px; }
.pgrid-feat .pcard-price-old { font-size: 10px; }
.pgrid-feat .pcard-add { font-size: 11px; padding: 9px; }

/* SALE watermark em cards de promoção */
@keyframes saleDrift {
  from { transform: rotate(-16deg) translateX(-5%); }
  to   { transform: rotate(-16deg) translateX(5%); }
}
.pcard--sale .pcard-img::before {
  content: 'SALE';
  position: absolute;
  inset: 0; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .12em;
  color: rgba(253,252,251,.15);
  pointer-events: none;
  animation: saleDrift 7s ease-in-out alternate infinite;
  white-space: nowrap;
  user-select: none;
}

/* ── Editorial guide (bem-estar) ─────────────────── */
.section-guide { background: var(--bg); }
.guide-list {
  display: flex; flex-direction: column;
  border-top: 0.5px solid rgba(26,23,20,.1);
}
.guide-row {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  gap: 44px;
  padding: 44px 0;
  border-bottom: 0.5px solid rgba(26,23,20,.07);
  align-items: start;
}
.guide-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 300; font-style: italic;
  color: var(--blush-mid); line-height: 1;
  display: block; padding-top: 2px;
}
.guide-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 400; color: var(--ink);
  margin: 0 0 14px; line-height: 1.15;
}
.guide-text {
  font-family: var(--font-body);
  font-size: 13px; color: var(--stone-dark);
  line-height: 1.82; margin: 0;
}
.guide-steps {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.guide-steps li {
  font-family: var(--font-body);
  font-size: 12.5px; color: var(--stone-dark);
  line-height: 1.55; padding-left: 18px; position: relative;
}
.guide-steps li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--blush-mid); font-size: 10px; top: 2px;
}

/* ── Info cards (skincare) ───────────────────────── */
.info-card {
  background: var(--cream);
  border: 0.5px solid rgba(26,23,20,.1);
  border-radius: 16px;
  padding: 26px;
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.info-card:hover { box-shadow: 0 8px 40px rgba(26,23,20,.08); }
.info-icon { font-size: 26px; margin-bottom: 14px; }
.info-num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 300; font-style: italic;
  color: var(--blush-mid); line-height: 1; margin-bottom: 14px;
  display: block;
}

/* ── Testimonial avatar — initials ───────────────── */
.tcard-avatar--initial {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500;
  letter-spacing: .04em;
  color: var(--blush-mid);
  background: var(--blush);
  border: 0.5px solid rgba(196,137,122,.2);
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400; color: var(--ink);
  margin: 0 0 10px;
}
.info-card p { color: var(--stone-dark); font-size: 13px; line-height: 1.72; margin-bottom: 18px; }
.step span {
  background: var(--blush); color: var(--blush-deep);
  min-width: 24px; min-height: 24px;
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  display: grid; place-items: center; border-radius: 50%;
}

/* ── Routine steps ───────────────────────────────── */
.routine-grid { display: grid; grid-template-columns: repeat(7,minmax(128px,1fr)); gap: 14px; }
.routine-step {
  background: var(--bg);
  border: 0.5px solid rgba(26,23,20,.11);
  border-radius: 16px;
  padding: 20px;
  min-height: 165px;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.routine-step:hover { border-color: rgba(26,23,20,.22); box-shadow: 0 4px 20px rgba(26,23,20,.07); }
.step-number {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 300; font-style: italic;
  color: var(--blush-mid); display: block; margin-bottom: 10px; line-height: 1;
}
.step-icon { font-size: 20px; margin-bottom: 10px; }
.routine-step h3 {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 400; color: var(--ink);
  margin: 0 0 5px;
}
.routine-step p { font-family: var(--font-body); font-size: 11.5px; color: var(--stone-dark); line-height: 1.6; }

/* ── Testimonials ────────────────────────────────── */
.section-testimonials { background: var(--cream); border-top: 0.5px solid rgba(26,23,20,.1); }
.testimonials-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 40px 36px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.tcard {
  flex: 0 0 314px;
  background: var(--bg); border-radius: 16px; padding: 26px;
  border: 0.5px solid rgba(26,23,20,.11);
  scroll-snap-align: start;
  transition: border-color var(--dur-base) var(--ease-out);
}
.tcard:hover { border-color: rgba(26,23,20,.22); }
.tcard-stars { color: #C4A55A; font-size: 11.5px; letter-spacing: 3px; margin-bottom: 14px; }
.tcard-text {
  font-family: var(--font-display);
  color: var(--bark); line-height: 1.78; font-size: 16px;
  font-style: italic; font-weight: 300; margin-bottom: 18px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--cream-dark); display: grid; place-items: center;
  font-size: 15px; flex-shrink: 0;
  border: 0.5px solid rgba(26,23,20,.1);
}
.tcard-name { font-family: var(--font-body); font-weight: 500; font-size: 12px; color: var(--ink); }
.tcard-city { font-family: var(--font-body); font-size: 11px; color: var(--stone); margin-top: 1px; }

/* ── Newsletter ──────────────────────────────────── */
.section-newsletter { background: var(--bg); }
.newsletter-card {
  background: var(--blush);
  border: 0.5px solid rgba(196,137,122,.14);
  border-radius: 20px;
}
.newsletter-card .section-eyebrow { color: var(--blush-deep); }
.newsletter-card .section-title em { color: var(--blush-deep); }
.newsletter-card .section-text { color: var(--stone-dark); }
.newsletter-card .btn-primary { background: var(--ink); border-radius: 999px; font-size: 13px; font-weight: 400; }
.newsletter-card .btn-primary:hover { background: var(--bark-deep); }
.input-field {
  border: 0.5px solid rgba(26,23,20,.16);
  border-radius: 999px;
  padding: 0 20px;
  font-family: var(--font-body);
  font-size: 13px;
  background: rgba(253,252,251,.7);
  color: var(--ink);
  transition: border-color var(--dur-fast);
}
.input-field::placeholder { color: var(--stone); }
.input-field:focus { outline: none; border-color: rgba(26,23,20,.3); }

/* ── Login ───────────────────────────────────────── */
.page-login {
  display: none;
  min-height: 100vh;
  background: var(--cream);
  background-image:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(196,137,122,.12) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 100% 110%, rgba(61,102,85,.08) 0%, transparent 55%),
    radial-gradient(ellipse 35% 30% at 0% 90%, rgba(196,137,122,.06) 0%, transparent 50%);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.login-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 48px 44px 40px;
  width: 100%; max-width: 374px;
  border: 1px solid rgba(26,23,20,.08);
  box-shadow: 0 2px 12px rgba(26,23,20,.04), 0 20px 64px rgba(26,23,20,.09);
  position: relative; z-index: 1;
  text-align: center;
}
.login-card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196,137,122,.5) 40%, rgba(196,137,122,.5) 60%, transparent);
  border-radius: 0 0 2px 2px;
}
.login-monogram {
  font-size: 10px; letter-spacing: .5em;
  color: var(--blush-mid); opacity: .65;
  margin-bottom: 18px;
  display: block;
}
.login-brand {
  font-family: var(--font-display);
  font-size: 30px; font-weight: 300; letter-spacing: .03em;
  color: var(--ink); margin-bottom: 4px; line-height: 1.15;
}
.login-brand span { color: var(--blush-mid); font-style: italic; }
.login-eyebrow {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--stone); margin: 0 0 0;
}
.login-divider {
  width: 32px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,137,122,.4), transparent);
  margin: 20px auto 24px;
}
.login-form { text-align: left; }
.login-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--stone-dark); margin-bottom: 8px;
}
.login-input-wrap { position: relative; }
.login-input {
  width: 100%;
  border: 1px solid rgba(26,23,20,.13);
  border-radius: 999px;
  padding: 13px 44px 13px 18px;
  font-family: var(--font-body); font-size: 14px;
  background: var(--cream); color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
  outline: none;
}
.login-input:focus { border-color: rgba(61,102,85,.45); background: var(--bg); }
.login-eye {
  position: absolute; right: 14px; top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  font-size: 13px; cursor: pointer;
  opacity: .28; padding: 4px; transition: opacity .2s;
}
.login-eye:hover { opacity: .55; }
.login-error {
  display: none;
  color: var(--blush-deep);
  font-family: var(--font-body); font-size: 12px;
  margin-top: 8px; font-weight: 400;
}
.login-error.on { display: block; }
.login-btn {
  width: 100%; margin-top: 20px; padding: 14px;
  font-family: var(--font-body); font-size: 13px;
  text-align: center; letter-spacing: .04em;
  background: var(--sage-accent); color: #fff;
  border: none; border-radius: 999px; cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease;
  box-shadow: 0 4px 18px rgba(61,102,85,.25);
}
.login-btn:hover { background: #2d5244; box-shadow: 0 6px 24px rgba(61,102,85,.35); }
.login-back {
  display: block; width: 100%; text-align: center;
  background: none; border: none;
  color: var(--stone); font-family: var(--font-body); font-size: 12px;
  margin-top: 18px; cursor: pointer;
  transition: color .2s ease; padding: 4px;
  letter-spacing: .02em;
}
.login-back:hover { color: var(--bark); }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  18%, 54%  { transform: translateX(-5px); }
  36%, 72%  { transform: translateX(5px); }
}
.login-card.shake { animation: shake .36s ease; }

/* ── Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(253,252,251,.55);
  padding: 64px 0 0;
}
.footer-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 300; letter-spacing: .04em;
  color: var(--bg); margin-bottom: 14px;
}
.footer-title span { color: var(--blush-mid); font-style: italic; }
.footer-text { color: rgba(253,252,251,.38); font-size: 13px; line-height: 1.82; }
.footer-heading {
  font-family: var(--font-body);
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(253,252,251,.26); margin-bottom: 16px;
}
.footer-list a { color: rgba(253,252,251,.48); font-size: 13px; }
.footer-list a:hover { color: var(--blush-mid); }
.footer-copyright {
  margin-top: 48px;
  padding: 20px 24px;
  border-top: 0.5px solid rgba(253,252,251,.1);
  color: rgba(253,252,251,.22);
  font-family: var(--font-body); font-size: 11px;
}
.footer-admin {
  background: none; border: none;
  color: rgba(253,252,251,.1);
  font-size: 11px; cursor: pointer;
  padding: 0 0 0 10px;
  transition: color .25s ease;
}
.footer-admin:hover { color: rgba(253,252,251,.38); }
.footer-privacy-link {
  color: rgba(253,252,251,.32);
  margin-left: 14px;
  text-decoration: none;
  transition: color .25s ease;
}
.footer-privacy-link:hover { color: rgba(253,252,251,.6); }

/* ── Cart overrides ──────────────────────────────── */
.cart-panel { background: var(--bg); border-left: 0.5px solid rgba(26,23,20,.12); }
.cart-header { border-bottom: 0.5px solid rgba(26,23,20,.1); }
.cart-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 300; color: var(--ink); }
.cart-close { color: var(--stone); transition: color .15s ease; }
.cart-close:hover { color: var(--ink); }
.ciimg { background: var(--cream); border-radius: 12px; }
.cinm { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--ink); }
.cipr { font-family: var(--font-body); color: var(--stone-dark); font-size: 12.5px; margin-top: 4px; }
.qb { border: 0.5px solid rgba(26,23,20,.14); background: var(--bg); transition: border-color var(--dur-fast); }
.qb:hover { border-color: var(--ink); }
.cart-footer { border-top: 0.5px solid rgba(26,23,20,.1); }
.cart-row { font-family: var(--font-body); font-size: 13.5px; }
.cart-total { font-weight: 500; }
.cart-customer { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.cc-input { width: 100%; min-height: 40px; font-size: 13px; }
.cart-footer .btn-primary { background: var(--ink); border-radius: 999px; font-size: 13px; font-weight: 400; letter-spacing: .02em; }
.cart-footer .btn-primary:hover { background: var(--bark-deep); }
.ci { border-bottom: 0.5px solid rgba(26,23,20,.07); }

/* ── Telão (carrossel hero) ──────────────────────── */
.telao {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}
.telao-track {
  position: relative;
  min-height: 480px;
}
.telao-slide {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 72px 48px;
  gap: 48px;
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
  pointer-events: none;
}
.telao-slide.on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.telao-cat {
  font-family: var(--font-body);
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(253,252,251,.38); display: block; margin-bottom: 14px;
}
.telao-name {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 5rem);
  font-weight: 300; color: var(--bg); line-height: 1.0;
  margin: 0 0 18px;
}
.telao-desc {
  font-family: var(--font-body);
  font-size: 13.5px; color: rgba(253,252,251,.5);
  line-height: 1.72; max-width: 380px; margin: 0 0 28px;
}
.telao-prices { display: flex; align-items: baseline; gap: 10px; margin-bottom: 28px; }
.telao-price-new {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 300; color: var(--blush-mid);
}
.telao-price-old {
  font-family: var(--font-body);
  font-size: 13px; color: rgba(253,252,251,.3); text-decoration: line-through;
}
.telao-cta {
  display: inline-flex;
  background: var(--bg); color: var(--ink);
  border: none; border-radius: 999px;
  padding: 12px 26px;
  font-family: var(--font-body); font-size: 13px; font-weight: 400;
  letter-spacing: .02em;
  transition: background var(--dur-fast);
}
.telao-cta:hover { background: var(--cream-dark); }

.telao-right {
  display: flex; align-items: center; justify-content: center;
}
.telao-img {
  width: 300px; height: 380px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,.38);
}
.telao-img-placeholder {
  width: 300px; height: 380px;
  border-radius: 4px;
  background: rgba(253,252,251,.06);
  border: 0.5px solid rgba(253,252,251,.1);
}

.telao-nav {
  position: absolute; bottom: 24px;
  left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  z-index: 10;
}
.telao-arrow {
  background: none;
  border: 0.5px solid rgba(253,252,251,.18);
  color: rgba(253,252,251,.55);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all var(--dur-fast);
}
.telao-arrow:hover { border-color: rgba(253,252,251,.48); color: var(--bg); }
.telao-dots { display: flex; gap: 6px; align-items: center; }
.telao-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(253,252,251,.22); border: none; padding: 0;
  transition: background var(--dur-fast), width var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.telao-dot.on { background: var(--bg); width: 20px; border-radius: 3px; }

/* ── Order Bump ──────────────────────────────────── */
.bump-panel {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 550;
  width: min(500px, calc(100vw - 32px));
  background: var(--bg);
  border: 0.5px solid rgba(26,23,20,.13);
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(26,23,20,.16);
  transition: transform .4s var(--ease-out);
}
.bump-panel.on { transform: translateX(-50%) translateY(0); }

.bump-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 14px; padding: 14px 18px;
}
.bump-product { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.bump-em {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; overflow: hidden;
}
.bump-em img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.bump-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.bump-label {
  font-family: var(--font-body);
  font-size: 9px; color: var(--stone); letter-spacing: .1em; text-transform: uppercase;
}
.bump-nm {
  font-family: var(--font-display);
  font-size: 16px; font-weight: 400; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.bump-pr { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--blush-mid); }
.bump-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.bump-add {
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-body); font-size: 12px; font-weight: 400;
  letter-spacing: .02em; white-space: nowrap;
  transition: background var(--dur-fast);
}
.bump-add:hover { background: var(--bark-deep); }
.bump-dismiss {
  background: none; border: none;
  color: var(--stone); font-size: 14px; padding: 6px; cursor: pointer;
  transition: color var(--dur-fast);
}
.bump-dismiss:hover { color: var(--ink); }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 96px; }
  .hero-right { min-height: auto; padding-bottom: 20px; }
  .hero-left  { padding-right: 0; }
  .hero-prods { max-width: 100%; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .telao-slide { grid-template-columns: 1fr 1fr; padding: 56px 32px; }
}
@media (max-width: 720px) {
  .hero-inner { padding: 84px 24px 32px; }
  .hero-prods { grid-template-columns: 1fr 1fr; }
  .hero-stats-bar { flex-wrap: wrap; }
  .stat-sep { display: none; }
  .stat-item { flex: 0 0 50%; border-bottom: 0.5px solid rgba(26,23,20,.1); }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-track { padding: 8px 20px 28px; }
  .tcard { flex: 0 0 82vw; }
  .hero-headline { font-size: clamp(2.8rem, 10vw, 4rem); }
  .telao-slide { grid-template-columns: 1fr; padding: 48px 24px 72px; }
  .telao-right { display: none; }
  .telao-track { min-height: 320px; }
  .bump-inner { flex-direction: column; align-items: flex-start; }
  .bump-actions { width: 100%; justify-content: flex-end; }
}

/* ── Mobile nav ──────────────────────────────────── */
.mob-nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; border-radius: 8px;
  align-items: center; justify-content: center;
  font-size: 20px; color: var(--ink); transition: background .15s;
}
.mob-nav-toggle:hover { background: rgba(26,23,20,.06); }
.mob-nav-drawer {
  position: fixed; inset: 0; z-index: 8000;
  background: rgba(26,23,20,.48);
  opacity: 0; visibility: hidden;
  transition: opacity .26s ease, visibility 0s .26s;
}
.mob-nav-drawer.on { opacity: 1; visibility: visible; transition: opacity .26s ease; }
.mob-nav-panel {
  position: absolute; top: 0; right: 0;
  width: 280px; height: 100%;
  background: var(--cream); padding: 28px 24px;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column; gap: 4px;
}
.mob-nav-drawer.on .mob-nav-panel { transform: translateX(0); }
.mob-nav-close {
  align-self: flex-end; background: none; border: none;
  cursor: pointer; font-size: 16px; color: var(--stone);
  margin-bottom: 24px; padding: 4px;
}
.mob-nav-link {
  display: block; font-family: var(--font-body); font-size: 16px;
  color: var(--ink); padding: 14px 0; border-bottom: 1px solid rgba(26,23,20,.07);
  transition: color .15s; background: none; border-left: none; border-right: none; border-top: none;
  text-align: left; cursor: pointer; width: 100%; font-weight: 400;
}
.mob-nav-link:last-child { border-bottom: none; }
.mob-nav-link:hover { color: var(--blush-mid); }

@media (max-width: 768px) {
  /* ── Header ── */
  .main-nav { display: none; }
  .mob-nav-toggle { display: flex; }
  .header-inner { min-height: 56px; padding: 0 16px; }
  .header-actions .btn { font-size: 12px; padding: 8px 14px; }

  /* ── Hero — minimalista no mobile ── */
  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 76px 20px 36px;
    gap: 0;
  }
  .hero-right { display: none; }
  .hero-left { padding-right: 0; }
  .hero-headline { font-size: clamp(2.6rem, 9vw, 3.4rem); margin-bottom: 18px; }
  .hero-sub { font-size: 14px; line-height: 1.65; margin-bottom: 22px; }
  .hero-actions { flex-direction: column; gap: 10px; margin-bottom: 22px; }
  .btn-editorial,
  .btn-ghost-editorial {
    width: 100%;
    display: flex; align-items: center; justify-content: center;
    padding: 14px 24px; font-size: 14px;
  }
  .hero-scroll-hint { display: none; }

  /* ── Esconde o telão — pesado e confuso no mobile ── */
  .telao { display: none; }

  /* ── Benefits: 2×2 compacto ── */
  .benefits-strip { padding: 18px 0; }
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 14px 20px; padding: 0 20px; }
  .benefit-item { gap: 10px; }
  .benefit-desc { display: none; }
  .benefit-title { font-size: 11.5px; }

  /* ── Seção produtos: grade 2 colunas ── */
  .section.products::after { display: none; }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
  }
  .section-controls { width: 100%; align-items: center; gap: 0; flex-direction: column; }
  .pgrid-ctrl { display: none; }

  /* Filtros: scroll horizontal (não quebra linha) */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    gap: 8px;
    width: 100%;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; font-size: 12px; padding: 8px 16px; height: 36px; }

  /* Grade de produtos — 2 colunas, sem scroll horizontal */
  .pgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    scroll-snap-type: none;
    gap: 12px;
    padding: 0 16px 24px;
  }
  .pgrid::before,
  .pgrid::after { display: none; }
  .pcard { flex: unset; width: 100%; scroll-snap-align: none; }
  .pcard-img { border-radius: 3px; }
  .pcard-name { font-size: 13.5px; }
  .pcard-foot { padding: 9px 1px 0; gap: 2px; }
  .pcard-desc { display: none; }

  /* Botão "Adicionar" sempre visível no mobile (sem hover) */
  .pcard-overlay {
    opacity: 1;
    background: linear-gradient(to top,
      rgba(26,23,20,.62) 0%,
      rgba(26,23,20,.08) 52%,
      transparent 100%);
  }
  .pcard-add {
    transform: none;
    font-size: 10.5px;
    padding: 9px 10px;
  }

  /* Esconde barra de progresso e dica de arraste */
  .pgrid-foot { display: none; }

  /* ── Destaques: 2 colunas ── */
  .pgrid-feat { grid-template-columns: 1fr 1fr; padding: 0 16px; gap: 12px; }
  .pgrid-feat .pcard-img { aspect-ratio: 1/1; }
  .pgrid-feat .pcard-name { font-size: 12.5px; }

  /* ── Espaçamento geral ── */
  .container { padding: 0 16px; }
  .urgency-banner { font-size: 9.5px; padding: 9px 16px; letter-spacing: .1em; }
  .section { padding: 52px 0; }
  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }

  /* ── Guia / skincare ── */
  .guide-row { grid-template-columns: 1fr; gap: 12px; padding: 26px 0; }
  .guide-num { font-size: 2rem; }
  .guide-title { font-size: 18px; }
  .guide-steps { width: 100%; }

  /* ── Newsletter ── */
  .newsletter-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 20px;
    border-radius: 16px;
    gap: 20px;
  }
  .newsletter-form { width: 100%; flex-direction: column; }
  .newsletter-form .btn-primary { width: 100%; text-align: center; }
  .newsletter-form .input-field { width: 100%; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-list ul { gap: 14px; }
  .footer-list a { font-size: 14px; min-height: 36px; display: flex; align-items: center; }
  .footer-copyright { font-size: 11px; padding: 16px 0; }

  /* ── Carrinho: largura total no mobile ── */
  .cart-panel { width: 100vw; }
}

/* ── Telas muito pequenas (≤ 420px) ─────────────── */
@media (max-width: 420px) {
  .hero-headline { font-size: clamp(2.3rem, 9vw, 3rem); }
  .benefits-grid { grid-template-columns: 1fr; gap: 12px; }
  .pgrid { gap: 10px; padding: 0 12px 20px; }
  .pgrid-feat { padding: 0 12px; gap: 10px; }
  .mob-nav-panel { width: 100vw; }
  .cart-panel { width: 100vw; }
}

/* ── Badge GrupoLima (store/login) ───────────────── */
@keyframes glPulse {
  0%, 100% { opacity: .5; }
  50%       { opacity: .85; }
}
.gl-badge {
  position: fixed;
  bottom: 16px;
  right: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(27,68,184,.14);
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.09);
  transition: opacity .2s, box-shadow .2s;
  animation: glPulse 3.5s ease-in-out infinite;
}
.gl-badge:hover {
  opacity: 1 !important;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  animation: none;
}
.gl-badge-bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
}
.gl-badge-bar {
  background: #1B44B8;
  border-radius: 1.5px;
  transform: skewX(-14deg);
}
.gl-badge-bar:nth-child(1) { width: 3px; height: 10px; opacity: .5; }
.gl-badge-bar:nth-child(2) { width: 4px; height: 13px; }
.gl-badge-text {
  font-family: 'Inter', var(--font-body), system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1B44B8;
}

/* ── Card de engajamento (mkt) ───────────────────── */
@keyframes mktIn {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.mkt-card {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 9990;
  width: 270px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 8px 32px rgba(26,23,20,.13), 0 2px 8px rgba(26,23,20,.06);
  border: 1px solid rgba(26,23,20,.07);
  display: none;
  flex-direction: column;
  gap: 6px;
}
.mkt-card.on {
  display: flex;
  animation: mktIn .45s cubic-bezier(0.16,1,0.3,1) both;
}
.mkt-close {
  position: absolute;
  top: 10px; right: 12px;
  background: none; border: none;
  font-size: 11px; cursor: pointer;
  color: var(--stone); padding: 4px;
  line-height: 1; transition: color .15s;
}
.mkt-close:hover { color: var(--ink); }
.mkt-avatar {
  font-size: 18px;
  color: var(--blush-mid);
  margin-bottom: 4px;
  letter-spacing: .1em;
}
.mkt-title {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500;
  color: var(--ink); margin: 0;
}
.mkt-text {
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--stone-dark);
  line-height: 1.55;
  margin: 0;
}
.mkt-cta {
  margin-top: 8px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .02em;
  transition: background .18s;
  align-self: flex-start;
}
.mkt-cta:hover { background: var(--bark-deep); }

/* =====================================================
   Modelos de loja — ativados via [data-template] no <html>
   "classico" = layout padrão (sem regras extras abaixo)
   ===================================================== */

/* ── Moderno: hero full-bleed + grade de produtos em bento ── */
html[data-template="moderno"] .hero-inner {
  grid-template-columns: 1fr;
  padding: 0;
  align-items: stretch;
}
html[data-template="moderno"] .hero-right {
  display: flex;
  position: absolute; inset: 0;
  z-index: 0;
  padding: 0;
  justify-content: center;
}
html[data-template="moderno"] .hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,.18) 0%, rgba(26,23,20,.6) 100%);
}
html[data-template="moderno"] .hero-gallery {
  width: 100%; height: 100%; max-width: none; gap: 0;
}
html[data-template="moderno"] .hero-gcard { height: 100%; }
html[data-template="moderno"] .hero-gcard--b { margin-top: 0; }
html[data-template="moderno"] .hero-gc-img {
  height: 100%; aspect-ratio: auto; border-radius: 0; box-shadow: none;
}
html[data-template="moderno"] .hero-gc-foot { display: none; }
html[data-template="moderno"] .hero-left {
  position: relative; z-index: 1;
  justify-content: center;
  padding: 88px 64px;
  max-width: 640px;
}
html[data-template="moderno"] .hero-kicker,
html[data-template="moderno"] .hero-sub,
html[data-template="moderno"] .proof-text,
html[data-template="moderno"] .scroll-hint-text { color: rgba(253,252,251,.72); }
html[data-template="moderno"] .proof-text strong { color: var(--bg); }
html[data-template="moderno"] .hl-line { color: var(--bg); }
html[data-template="moderno"] .hl-line:nth-child(2),
html[data-template="moderno"] .hl-line:nth-child(4) { color: var(--blush-mid); }
html[data-template="moderno"] .kicker-line { background: rgba(253,252,251,.4); }
html[data-template="moderno"] .scroll-hint-chevrons span { border-color: rgba(253,252,251,.6); }
html[data-template="moderno"] .btn-ghost-editorial {
  border-color: rgba(253,252,251,.4); color: rgba(253,252,251,.85);
}
html[data-template="moderno"] .btn-ghost-editorial:hover { border-color: var(--bg); color: var(--bg); }

html[data-template="moderno"] .telao { display: none; }

html[data-template="moderno"] .section.products::after { display: none; }
html[data-template="moderno"] .pgrid-foot,
html[data-template="moderno"] .pgrid-ctrl { display: none; }
html[data-template="moderno"] .pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  overflow: visible;
  scroll-snap-type: none;
  padding: 0 40px 48px;
}
html[data-template="moderno"] .pgrid::before,
html[data-template="moderno"] .pgrid::after { display: none; }
html[data-template="moderno"] .pcard { flex: unset; width: 100%; scroll-snap-align: unset; }
html[data-template="moderno"] .pcard:nth-child(3n+2) .pcard-img { aspect-ratio: 1/1.3; }

/* ── Minimalista: hero centrado + lista única, sem ornamentos ── */
html[data-template="minimal"] .marquee,
html[data-template="minimal"] .telao,
html[data-template="minimal"] .section-guide,
html[data-template="minimal"] .products-feat { display: none; }

html[data-template="minimal"] .hero-inner {
  grid-template-columns: 1fr;
  max-width: 760px;
  text-align: center;
  padding-top: 140px;
}
html[data-template="minimal"] .hero-right { display: none; }
html[data-template="minimal"] .hero-left { align-items: center; padding-right: 0; }
html[data-template="minimal"] .hero-kicker,
html[data-template="minimal"] .hero-actions,
html[data-template="minimal"] .hero-proof { justify-content: center; }
html[data-template="minimal"] .hero-headline { font-size: clamp(3.4rem, 7vw, 7.5rem); text-align: center; }
html[data-template="minimal"] .hero-sub { margin: 0 auto 36px; text-align: center; }
html[data-template="minimal"] .hero-stats-bar { display: none; }

html[data-template="minimal"] .section.products::after { display: none; }
html[data-template="minimal"] .pgrid-foot,
html[data-template="minimal"] .pgrid-ctrl { display: none; }
html[data-template="minimal"] .pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
  overflow: visible;
  scroll-snap-type: none;
  gap: 32px 40px;
  padding: 0 40px 48px;
}
html[data-template="minimal"] .pgrid::before,
html[data-template="minimal"] .pgrid::after { display: none; }
html[data-template="minimal"] .pcard { flex: unset; width: 100%; scroll-snap-align: unset; }

@media (max-width: 768px) {
  html[data-template="minimal"] .pgrid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px 24px; }
  html[data-template="moderno"] .pgrid { grid-template-columns: 1fr 1fr; }
  html[data-template="moderno"] .hero-left,
  html[data-template="minimal"] .hero-inner { padding: 84px 24px 32px; }
}

/* =====================================================
   Aviso de cookies + Política de Privacidade
   ===================================================== */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 9992;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(26,23,20,.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(26,23,20,.13), 0 2px 8px rgba(26,23,20,.06);
  padding: 20px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility 0s .35s;
}
.cookie-banner.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.cookie-text {
  font-family: var(--font-body);
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--stone-dark);
  margin: 0;
  flex: 1 1 320px;
}
.cookie-text a { color: var(--blush-mid); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-more, .cookie-accept { padding: 10px 18px; font-size: 12px; white-space: nowrap; }

.privacy-modal {
  position: fixed; inset: 0;
  z-index: 9996;
  background: rgba(26,23,20,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
}
.privacy-modal.on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .22s ease, visibility 0s linear 0s;
}
.privacy-box {
  background: var(--bg);
  border-radius: 18px;
  width: 100%;
  max-width: 640px;
  max-height: min(86svh, 86vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 24px 64px rgba(26,23,20,.22);
  transform: scale(.97) translateY(10px);
  opacity: 0;
  transition: transform .28s var(--ease-out), opacity .2s ease;
}
.privacy-modal.on .privacy-box { transform: none; opacity: 1; }
.privacy-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 0.5px solid rgba(26,23,20,.1);
  position: sticky; top: 0;
  background: var(--bg);
  border-radius: 18px 18px 0 0;
}
.privacy-header h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 300;
  color: var(--ink);
  margin: 0;
}
.privacy-close {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--cream);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--stone-dark);
  font-size: 12px;
  cursor: pointer;
  transition: background .15s, color .15s;
  flex-shrink: 0;
}
.privacy-close:hover { background: var(--blush); color: var(--ink); }
.privacy-body { padding: 8px 28px 32px; }
.privacy-updated {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone);
  margin: 16px 0 24px;
}
.privacy-body h4 {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 500;
  color: var(--ink);
  margin: 24px 0 8px;
}
.privacy-body h4:first-of-type { margin-top: 0; }
.privacy-body p, .privacy-body li {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--stone-dark);
}
.privacy-body ul { margin: 8px 0 0; padding-left: 20px; }
.privacy-body li { margin-bottom: 6px; }
.privacy-body strong { color: var(--ink); font-weight: 600; }

@media (max-width: 640px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-more, .cookie-accept { flex: 1; justify-content: center; text-align: center; }
  .privacy-modal { padding: 0; align-items: flex-end; }
  .privacy-box { max-width: 100%; max-height: min(92svh, 92vh); border-radius: 22px 22px 0 0; }
  .privacy-header { padding: 18px 20px 14px; border-radius: 22px 22px 0 0; }
  .privacy-body { padding: 4px 20px 28px; }
}
