/* ============================================================
   DOCERIA SILVA – style.css
   Paleta 60/30/10:
     60% → Creme/Marfim   #FEF3E8 · #FFF8F2 · #FAE8D8
     30% → Chocolate/Rosa  #7B3220 · #E8849A · #C4607A · #9E3B5A
     10% → Pink/Dourado    #FF4F7B · #F5C518 · #FFD6E0
   ============================================================ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* 60% – Dominantes (creme/marfim) */
  --cream-100: #FFFAF5;
  --cream-200: #FEF3E8;
  --cream-300: #FAE8D8;
  --cream-400: #F5D5C0;

  /* 30% – Secundárias (chocolate + rosa) */
  --choco-dark:  #4A1A0C;
  --choco-mid:   #7B3220;
  --choco-light: #A85540;
  --rose-deep:   #9E3B5A;
  --rose-mid:    #C4607A;
  --rose-soft:   #E8849A;
  --rose-pale:   #FFD6E0;

  /* 10% – Destaque (pink + dourado) */
  --accent-pink:  #FF4F7B;
  --accent-gold:  #F5C518;
  --accent-light: #FFECB3;

  /* UI */
  --text-dark:   #2A1209;
  --text-mid:    #5C3020;
  --text-light:  #9E6A58;
  --white:       #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;

  /* Spacing */
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Radius */
  --r-sm: .75rem;
  --r-md: 1.5rem;
  --r-lg: 2.5rem;
  --r-full: 9999px;

  /* Shadow */
  --shadow-soft: 0 8px 32px rgba(123,50,32,.10);
  --shadow-card: 0 20px 60px rgba(123,50,32,.16);
  --shadow-deep: 0 32px 80px rgba(74,26,12,.22);

  /* Transitions */
  --ease-out: cubic-bezier(.22,1,.36,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream-100);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream-200); }
::-webkit-scrollbar-thumb { background: var(--rose-mid); border-radius: var(--r-full); }

/* ── CUSTOM CURSOR ─────────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--accent-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s, background .2s;
  mix-blend-mode: multiply;
}

.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid var(--rose-mid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s var(--ease-out), width .25s, height .25s, opacity .2s, border-color .2s;
  opacity: .6;
}

body.cursor--hover .cursor          { width: 18px; height: 18px; }
body.cursor--hover .cursor-follower { width: 56px; height: 56px; border-color: var(--accent-pink); opacity: .4; }
body.cursor--click .cursor          { width: 6px;  height: 6px; }

/* ── LOADER ────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--cream-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10000;
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}

.loader.hidden { opacity: 0; pointer-events: none; transform: scale(1.02); }

.loader__ring {
  width: 56px; height: 56px;
  border: 3px solid var(--cream-300);
  border-top-color: var(--rose-mid);
  border-radius: 50%;
  animation: spin .9s linear infinite;
}

.loader__heart {
  position: absolute;
  font-size: 1.4rem;
  color: var(--accent-pink);
  animation: heartbeat 1s ease-in-out infinite;
}

.loader__text {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--text-light);
  font-style: italic;
}

@keyframes spin      { to { transform: rotate(360deg); } }
@keyframes heartbeat { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* ── TYPOGRAPHY HELPERS ────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--choco-dark);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--rose-deep);
  position: relative;
}

.section-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-gold));
  border-radius: var(--r-full);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}

.section-title.visible em::after { transform: scaleX(1); }

/* ── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}

.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s var(--ease-out);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--accent-pink));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(158,59,90,.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(158,59,90,.45);
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  border-color: var(--choco-mid);
  color: var(--choco-mid);
}
.btn--ghost:hover {
  background: var(--choco-mid);
  color: var(--white);
  transform: translateY(-3px);
}

.btn--small  { padding: .6rem 1.25rem; font-size: .82rem; }
.btn--full   { width: 100%; justify-content: center; }

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366, #128C7E);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}
.btn--whatsapp:hover {
  box-shadow: 0 14px 36px rgba(37,211,102,.4);
  transform: translateY(-3px);
}

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 5vw;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, padding .3s;
}

.nav.scrolled {
  background: rgba(254,243,232,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(123,50,32,.08);
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.nav__logo { display: flex; align-items: center; }

.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--choco-dark);
}
.nav__logo-text em { color: var(--rose-mid); font-style: italic; }

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  transition: color .25s;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--accent-pink);
  border-radius: var(--r-full);
  transform: scaleX(0);
  transition: transform .3s var(--ease-out);
}
.nav__link:hover { color: var(--rose-deep); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--choco-mid);
  border-radius: var(--r-full);
  transition: all .3s var(--ease-out);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 8rem 5vw 4rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 40%, var(--rose-pale) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, var(--cream-300) 0%, transparent 55%),
    var(--cream-100);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle 1px at 25% 35%, var(--rose-soft) 0%, transparent 1px),
    radial-gradient(circle 1px at 75% 65%, var(--accent-gold) 0%, transparent 1px),
    radial-gradient(circle 1px at 50% 20%, var(--rose-mid) 0%, transparent 1px);
  background-size: 120px 120px, 90px 90px, 150px 150px;
  opacity: .4;
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__content { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin-bottom: 1.25rem;
  padding: .35rem 1rem;
  background: rgba(232,132,154,.12);
  border-radius: var(--r-full);
  border: 1px solid rgba(232,132,154,.25);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--choco-dark);
  margin-bottom: 1.5rem;
}
.hero__title em {
  display: block;
  color: var(--rose-deep);
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-deep), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__badge {
  display: inline-flex;
}
.hero__badge-inner {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 1.25rem;
  background: var(--white);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-400);
}
.badge__icon { font-size: 1.4rem; }
.badge__label { font-size: .8rem; font-weight: 500; color: var(--text-mid); line-height: 1.3; }

/* Hero visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__plate {
  position: relative;
  width: min(480px, 90vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(ellipse at center, var(--cream-300), var(--cream-400));
  box-shadow: var(--shadow-deep), 0 0 0 12px rgba(255,214,224,.35), 0 0 0 24px rgba(255,214,224,.15);
  animation: float 5s ease-in-out infinite;
}

.hero__plate-img { width: 100%; height: 100%; object-fit: cover; }

.hero__plate-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-light);
  font-size: .9rem;
  text-align: center;
}
.hero__plate-placeholder span { font-size: 4rem; }

.hero__plate-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,79,123,.15), transparent 70%);
  pointer-events: none;
}

@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-12px) rotate(1deg); }
  66%      { transform: translateY(-6px) rotate(-1deg); }
}

/* Floating items */
.float-item {
  position: absolute;
  font-size: 2rem;
  pointer-events: none;
  animation: floatItem 4s ease-in-out infinite;
}
.float-item--1 { top: 5%; left: -8%;  animation-delay: 0s;    animation-duration: 4.5s; }
.float-item--2 { top: 70%; left: -5%; animation-delay: .8s;   animation-duration: 5s; }
.float-item--3 { top: 10%; right: -5%;animation-delay: 1.2s;  animation-duration: 3.8s; }
.float-item--4 { top: 75%; right: -8%;animation-delay: .4s;   animation-duration: 4.2s; }

@keyframes floatItem {
  0%,100% { transform: translateY(0) scale(1) rotate(0deg); }
  50%      { transform: translateY(-14px) scale(1.1) rotate(8deg); }
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--text-light);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero__scroll-hint span {
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--rose-soft), transparent);
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(.5) translateY(8px); }
}

/* ── MARQUEE ───────────────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  background: var(--choco-dark);
  padding: .9rem 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-gold);
  padding: 0 2.5rem;
  white-space: nowrap;
}

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── HISTÓRIA ──────────────────────────────────────────────── */
.historia {
  padding: var(--space-xl) 5vw;
  background: var(--cream-200);
  position: relative;
  overflow: hidden;
}

.historia::before {
  content: '"';
  position: absolute;
  top: -2rem; right: 3%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--cream-300);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.historia__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.historia__para {
  color: var(--text-mid);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.historia__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-400);
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--rose-deep), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: .8rem; color: var(--text-light); }

.historia__image { position: relative; }

.historia__img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.historia__img-placeholder {
  aspect-ratio: 4/5;
  background: var(--cream-300);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  color: var(--text-light);
  font-size: .9rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.historia__img-placeholder span { font-size: 3.5rem; }

.historia__img-deco {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 180px; height: 180px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--rose-pale), var(--accent-light));
  z-index: -1;
}

/* ── CARDÁPIO ──────────────────────────────────────────────── */
.cardapio {
  padding: var(--space-xl) 5vw;
  background: var(--cream-100);
  overflow: hidden;
}

.cardapio__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.cardapio__subtitle {
  color: var(--text-light);
  font-size: .95rem;
}

.cardapio__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-card);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1;
  background: var(--cream-200);
  overflow: hidden;
}

.product-card__img { transition: transform .6s var(--ease-out); }
.product-card:hover .product-card__img { transform: scale(1.08); }

.product-card__img-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: var(--text-light);
  font-size: .85rem;
  text-align: center;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
}
.product-card__img-ph span { font-size: 3rem; }

.product-card__shine {
  position: absolute;
  top: -100%; left: -60%;
  width: 60%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60%);
  transition: left .6s var(--ease-out);
  pointer-events: none;
}
.product-card:hover .product-card__shine { left: 120%; }

.product-card__badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: linear-gradient(135deg, var(--rose-deep), var(--accent-pink));
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .3rem .75rem;
  border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(158,59,90,.3);
}

.product-card__badge--new {
  background: linear-gradient(135deg, var(--choco-mid), var(--choco-dark));
}

.product-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--choco-dark);
  margin-bottom: .5rem;
}

.product-card__desc {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.product-card__price { line-height: 1.2; }
.price__label { display: block; font-size: .7rem; color: var(--text-light); }
.price__value { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--rose-deep); }

/* ── SHOWCASE (Apple-style) ─────────────────────────────────── */
.showcase {
  background: var(--choco-dark);
  padding: 0;
  overflow: hidden;
}

.showcase__sticky-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.showcase__sticky-wrap::-webkit-scrollbar { display: none; }

.showcase__track {
  display: flex;
  width: max-content;
}

.showcase__slide {
  width: 100vw;
  min-height: 85vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 8vw;
  position: relative;
}

.showcase__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,214,224,.07), transparent 60%);
  pointer-events: none;
}

.showcase__step {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  line-height: 1;
  margin-bottom: .5rem;
  user-select: none;
}

.showcase__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream-100);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.showcase__title em { color: var(--accent-gold); font-style: italic; }

.showcase__slide-content p {
  font-size: 1rem;
  color: rgba(254,243,232,.65);
  max-width: 380px;
  line-height: 1.75;
}

.showcase__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}

.showcase__media img { object-fit: cover; width: 100%; height: 100%; }

.showcase__media .img-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  text-align: center;
}
.showcase__media .img-ph span { font-size: 3rem; }

/* Showcase nav dots */
.showcase__dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  padding: 1.5rem 0;
  background: var(--choco-dark);
}
.showcase__dot {
  width: 8px; height: 8px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.2);
  border: none;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.showcase__dot.active {
  background: var(--accent-gold);
  width: 24px;
}

/* ── DEPOIMENTOS ────────────────────────────────────────────── */
.depoimentos {
  padding: var(--space-xl) 0 calc(var(--space-xl) - 1rem);
  background: var(--cream-200);
  overflow: hidden;
}

.depoimentos .section-title { padding: 0 5vw; }
.depoimentos .section-eyebrow { padding: 0 5vw; }

.depoimentos__track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  padding: 1rem 5vw 2rem;
  -ms-overflow-style: none;
}
.depoimentos__track-wrap::-webkit-scrollbar { display: none; }

.depoimentos__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.depo-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 2rem;
  width: 320px;
  box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease-out), box-shadow .4s;
  flex-shrink: 0;
}
.depo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.depo-card__text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.depo-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.depo-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-mid), var(--accent-pink));
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.depo-card__author strong { display: block; font-size: .9rem; color: var(--choco-dark); }
.depo-card__author span  { font-size: .75rem; }

/* ── PEDIDO ─────────────────────────────────────────────────── */
.pedido {
  padding: var(--space-xl) 5vw;
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}

.pedido::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, var(--rose-pale), transparent 70%);
  pointer-events: none;
}

.pedido__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.pedido__info {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.pedido__info li {
  font-size: .95rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.pedido__form-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--cream-400);
}
.pedido__form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--choco-dark);
  margin-bottom: 1.5rem;
}

.flavor-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1.75rem;
}

.flavor-opt { cursor: pointer; }
.flavor-opt input { display: none; }

.flavor-opt__box {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1rem;
  border: 2px solid var(--cream-400);
  border-radius: var(--r-sm);
  transition: all .25s var(--ease-out);
  background: var(--cream-100);
  font-size: .85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.flavor-opt input:checked + .flavor-opt__box {
  border-color: var(--rose-mid);
  background: var(--rose-pale);
  color: var(--rose-deep);
  box-shadow: 0 4px 14px rgba(158,59,90,.15);
}

.flavor-opt__box:hover { border-color: var(--rose-soft); }

.flavor-opt__icon { font-size: 1.3rem; }

.pedido__note {
  text-align: center;
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .75rem;
  line-height: 1.5;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--choco-dark);
  color: rgba(254,243,232,.75);
  padding: 5rem 5vw 2rem;
}

.footer__top {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__logo { height: 48px; width: auto; object-fit: contain; }
.footer__logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: .75rem;
}
.footer__logo-text em { color: var(--accent-gold); }
.footer__brand p { font-size: .9rem; color: rgba(254,243,232,.55); line-height: 1.7; margin-top: .75rem; }

.footer__links h4,
.footer__social h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.25rem;
}

.footer__links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  font-size: .9rem;
  color: rgba(254,243,232,.6);
  transition: color .2s;
}
.footer__links a:hover { color: var(--cream-100); }

.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(254,243,232,.6);
  transition: all .3s var(--ease-out);
}
.social-link:hover {
  background: var(--rose-mid);
  border-color: var(--rose-mid);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(254,243,232,.35);
}

.footer__love { color: rgba(254,243,232,.45); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--rose-deep), var(--accent-pink));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(158,59,90,.4);
  transition: all .35s var(--ease-out);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  z-index: 500;
}
.back-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-top:hover   { transform: translateY(-4px) scale(1.1); box-shadow: 0 14px 32px rgba(158,59,90,.5); }

/* ── PARTICLES (JS-generated) ───────────────────────────────── */
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleRise var(--dur, 6s) var(--delay, 0s) ease-in-out infinite;
  pointer-events: none;
}

@keyframes particleRise {
  0%   { opacity: 0; transform: translateY(0) scale(0) rotate(0deg); }
  10%  { opacity: .6; }
  90%  { opacity: .2; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.5) rotate(180deg); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE FIRST
   ═══════════════════════════════════════════════════════════════ */

/* ── XS / Mobile base already set above. Below = overrides ── */

/* ─ ≥ 480px ─ */
@media (min-width: 480px) {
  .cardapio__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─ < 768px (mobile) ─ */
@media (max-width: 767px) {
  :root { --space-xl: 4rem; --space-lg: 2.5rem; }

  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(254,243,232,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.4rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease-out);
    z-index: 999;
  }
  .nav__links.open { transform: none; }
  .nav__link { font-size: 1.3rem; }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 7rem 5vw 3rem;
    gap: 3rem;
  }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__badge  { justify-content: center; }
  .hero__plate  { width: min(300px, 80vw); }
  .hero__scroll-hint { display: none; }

  .historia__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .historia__image { order: -1; }
  .historia__stats { gap: 1.5rem; }

  .cardapio__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .showcase__slide {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding: 4rem 7vw;
  }
  .showcase__step { font-size: 3rem; }
  .showcase__title { font-size: 1.75rem; }

  .pedido__container { grid-template-columns: 1fr; gap: 3rem; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom { flex-direction: column; text-align: center; }

  .depoimentos__track { padding-bottom: .5rem; }
}

/* ─ 768-1023px (tablet) ─ */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero { padding: 7rem 5vw 4rem; gap: 3rem; }
  .cardapio__grid { grid-template-columns: repeat(2, 1fr); }
  .historia__container { gap: 3rem; }
  .pedido__container { gap: 3rem; }
}

/* ─ ≥ 1024px (desktop) ─ */
@media (min-width: 1024px) {
  .cardapio__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ─ ≥ 1400px (wide) ─ */
@media (min-width: 1400px) {
  .hero__title { font-size: 4.5rem; }
  .hero__plate { width: 520px; }
}

/* ── PRINT ─────────────────────────────────────────────────── */
@media print {
  .nav, .back-top, .cursor, .cursor-follower, .loader { display: none; }
  body { cursor: auto; }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ══════════════════════════════════════════════════════════════
   DOCINHOS ESPECIAIS
   ══════════════════════════════════════════════════════════════ */
.especiais {
  padding: var(--space-xl) 5vw;
  background: var(--cream-300);
  overflow: hidden;
  position: relative;
}

.especiais::before {
  content: '✦';
  position: absolute;
  top: -1rem; right: 4%;
  font-family: var(--font-display);
  font-size: 14rem;
  color: rgba(158,59,90,.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.especiais__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.especiais__subtitle { color: var(--text-light); font-size: .95rem; }

.especiais__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   PEDIDOS ESPECIAIS
   ══════════════════════════════════════════════════════════════ */
.pedidos-especiais {
  padding: var(--space-xl) 5vw;
      background: #9f3030;
  position: relative;
  overflow: hidden;
}

.pedidos-especiais::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(255,214,224,.04), transparent 65%);
  pointer-events: none;
}

.pedidos-especiais__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.pedidos-especiais__header .section-eyebrow { color: var(--accent-gold); }
.pedidos-especiais__header .section-title   { color: var(--cream-100); }
.pedidos-especiais__header .section-title em {
  color: var(--accent-gold);
  -webkit-text-fill-color: var(--accent-gold);
  background: none;
}

.pedidos-especiais__desc {
  color: rgba(254,243,232,.6);
  font-size: .95rem;
  margin-top: -.5rem;
  line-height: 1.7;
}

.pedidos-especiais__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  max-width: 1300px;
  margin: 0 auto 3.5rem;
}

.especial-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  transition: background .3s var(--ease-out), border-color .3s, transform .4s var(--ease-out);
  cursor: default;
}

.especial-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(245,197,24,.3);
  transform: translateY(-6px);
}

.especial-card__icone {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.2));
}

.especial-card__titulo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: .6rem;
  line-height: 1.3;
}

.especial-card__desc {
  font-size: .825rem;
  color: rgba(254,243,232,.55);
  line-height: 1.65;
}

.pedidos-especiais__cta {
  text-align: center;
}

.pedidos-especiais__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #25d366, #128C7E);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37,211,102,.25);
  transition: all .3s var(--ease-out);
  border: none;
}

.pedidos-especiais__cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(37,211,102,.38);
  filter: brightness(1.05);
}

.pedidos-especiais__nota {
  text-align: center;
  font-size: .8rem;
  color: rgba(254,243,232,.38);
  margin-top: 1rem;
  line-height: 1.5;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive: Especiais & Pedidos Especiais ───────────────── */
@media (max-width: 767px) {
  .especiais__grid          { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pedidos-especiais__grid  { grid-template-columns: 1fr; max-width: 420px; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .especiais__grid          { grid-template-columns: repeat(2, 1fr); }
  .pedidos-especiais__grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .especiais__grid          { grid-template-columns: repeat(4, 1fr); }
  .pedidos-especiais__grid  { grid-template-columns: repeat(5, 1fr); }
}

/* ══════════════════════════════════════════════════════════════
   HERO — SCROLL-SCRUBBING VIDEO
══════════════════════════════════════════════════════════════ */

#hero-scroll-wrapper {
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

/* Wrap: cobre a metade direita da hero no desktop */
.hero__video-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 62%;
  z-index: 1;
  pointer-events: none;
}

/* Vídeo cobre o wrap inteiro */
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  outline: none;

  /*
    mask-image cria transparência real nos pixels do vídeo —
    funciona independente do fundo ser gradiente, cor sólida, etc.
    Nenhuma cor de overlay precisa "casar" com o fundo.
  */
  -webkit-mask-image:
    linear-gradient(to right,  transparent  0%, rgba(0,0,0,.15) 12%, black 38%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent  0%, rgba(0,0,0,.2)  10%, black 28%, black 90%, transparent 100%);
  -webkit-mask-composite: destination-in;

  mask-image:
    linear-gradient(to right,  transparent  0%, rgba(0,0,0,.15) 12%, black 38%, black 92%, transparent 100%),
    linear-gradient(to bottom, transparent  0%, rgba(0,0,0,.2)  10%, black 28%, black 90%, transparent 100%);
  mask-composite: intersect;
}

/* Overlay extra apenas para suavizar em cima do gradiente do hero */
.hero__video-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  /* reforço leve na borda esquerda para fundir com as partículas/bg */
  background: linear-gradient(to right, var(--cream-100) 0%, rgba(254,243,232,.45) 22%, transparent 48%);
}

/* Conteúdo acima do vídeo */
.hero__content {
  position: relative;
  z-index: 3;
}

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero__video-wrap {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52%;
  }

  .hero__video {
    object-position: center top;

    /*
      Mobile: dissolução forte na borda superior para
      fundir suavemente com o texto/fundo da hero.
      Bordas laterais e inferior também dissolvem.
    */
    -webkit-mask-image:
      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.1) 8%, rgba(0,0,0,.5) 22%, black 44%, black 94%, transparent 100%),
      linear-gradient(to right,  transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-composite: destination-in;

    mask-image:
      linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.1) 8%, rgba(0,0,0,.5) 22%, black 44%, black 94%, transparent 100%),
      linear-gradient(to right,  transparent 0%, black 8%, black 92%, transparent 100%);
    mask-composite: intersect;
  }

  .hero__video-mask {
    /* mobile não precisa do overlay lateral — mask já resolve */
    background: none;
  }
}