/* ============================================
   3 GARRAFAS NEVERÍA — styles.css
   Editorial · Antojable · Awwwards-like
   ============================================ */

/* === VARIABLES === */
:root {
  /* Paleta de marca */
  --yellow: #ffd400;
  --yellow-soft: #fff4b8;
  --purple: #5448dd;
  --purple-soft: #ddd5ff;
  --pink: #e95068;
  --pink-soft: #ffd1dc;
  --cream: #fcf1d8;
  --cream-soft: #fff8e6;
  --brown: #6b4023;
  --brown-soft: #8b5a32;

  /* Sistema */
  --bg: var(--cream);
  --fg: var(--brown);
  --max-w: 1320px;
  --pad-x: clamp(20px, 4vw, 60px);

  /* Tipografías */
  --ff-display: 'Anton', 'Impact', 'Arial Narrow', sans-serif;
  --ff-serif: 'Fraunces', 'Georgia', serif;
  --ff-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Escalas tipográficas (clamp para fluidez) */
  --fs-huge: clamp(56px, 11vw, 180px);
  --fs-massive: clamp(48px, 9vw, 150px);
  --fs-large: clamp(40px, 7vw, 110px);
  --fs-xl: clamp(32px, 5vw, 72px);
  --fs-lg: clamp(24px, 3.5vw, 48px);
  --fs-md: clamp(18px, 2vw, 22px);
  --fs-base: 16px;
  --fs-sm: 14px;
  --fs-xs: 12px;

  /* Easing & motion */
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* === RESET MÍNIMO === */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--fg);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; color: inherit; }

/* === CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  position: relative;
}

/* === LOADER === */
.loader {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 9999;
  display: grid;
  place-items: center;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  animation: pulse 1.6s var(--ease-out) infinite;
}
.loader-inner img { width: 100px; height: auto; }
.loader-text {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 4px;
  color: var(--brown);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(.95); opacity: .7; }
}

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: backdrop-filter .3s, background .3s, padding .3s;
}
.site-header.scrolled {
  background: rgba(252, 241, 216, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(107, 64, 35, .08);
}
.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand img {
  width: 72px;
  height: auto;
  transition: transform .4s var(--ease-bounce);
}
.brand:hover img { transform: rotate(-6deg) scale(1.06); }

.nav-desktop {
  display: flex;
  justify-content: center;
  gap: 44px;
}
.nav-desktop a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .5px;
  position: relative;
  padding: 6px 0;
  transition: color .3s;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--brown);
  transition: width .35s var(--ease-out);
}
.nav-desktop a:hover::after { width: 100%; }

.header-actions {
  display: flex; align-items: center; gap: 12px;
}

/* Menu hamburger */
.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: var(--cream);
  z-index: 99;
  display: flex;
  align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease-out), visibility .4s;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu nav {
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}
.mobile-menu nav a {
  font-family: var(--ff-display);
  font-size: 48px;
  letter-spacing: 2px;
  color: var(--brown);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.mobile-menu.active nav a {
  opacity: 1; transform: translateY(0);
}
.mobile-menu.active nav a:nth-child(1) { transition-delay: .1s; }
.mobile-menu.active nav a:nth-child(2) { transition-delay: .18s; }
.mobile-menu.active nav a:nth-child(3) { transition-delay: .26s; }
.mobile-menu.active nav a:nth-child(4) { transition-delay: .34s; }
.mobile-menu .btn { font-family: var(--ff-body); font-size: 16px; }

/* === BOTONES === */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .4px;
  transition: transform .35s var(--ease-bounce), background .3s, color .3s, box-shadow .3s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  opacity: 0;
  transition: opacity .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px); }

.btn-sm { padding: 11px 22px; font-size: 13px; }
.btn-lg { padding: 20px 40px; font-size: 17px; }

.btn-yellow { background: var(--yellow); color: var(--brown); }
.btn-yellow:hover { box-shadow: 0 12px 30px -10px rgba(255, 212, 0, .6); }

.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { box-shadow: 0 12px 30px -10px rgba(233, 80, 104, .6); }

.btn-dark { background: var(--brown); color: var(--cream); }
.btn-dark:hover { box-shadow: 0 12px 30px -10px rgba(107, 64, 35, .55); }

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
}
.btn-outline-dark {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline-dark:hover { background: var(--brown); color: var(--cream); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--brown); }

/* === TIPOGRAFÍA DE DISPLAY === */
.display-huge,
.display-massive,
.display-large {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -1px;
  margin: 0;
  text-transform: uppercase;
}
.display-huge { font-size: var(--fs-huge); }
.display-massive { font-size: var(--fs-massive); }
.display-large { font-size: var(--fs-large); }

.display-huge span.line,
.display-large span {
  display: block;
  overflow: hidden;
}
.display-huge span.line > span {
  display: block;
}

.italic {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -1px;
  font-size: .55em;
  line-height: 1.1;
  margin-top: .35em;
}

.section-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: var(--fs-xl);
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.5px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .65;
  margin-bottom: 16px;
}
.eyebrow--pink { color: var(--pink); opacity: 1; }

.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text { max-width: 700px; }
.hero-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
  margin: 28px 0 36px;
  max-width: 460px;
  color: var(--brown);
  opacity: .82;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.hero-blob {
  position: absolute;
  width: 480px; height: 480px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: 0;
  animation: blob-morph 12s var(--ease-out) infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 50% 50% 50% 50%; transform: rotate(0); }
  33% { border-radius: 62% 38% 50% 50% / 55% 45% 55% 45%; transform: rotate(8deg); }
  66% { border-radius: 38% 62% 55% 45% / 50% 60% 40% 50%; transform: rotate(-6deg); }
}

.hero-product {
  position: relative;
  z-index: 2;
  width: clamp(280px, 36vw, 460px);
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(107, 64, 35, .25));
}

.floating { animation: floaty 6s ease-in-out infinite; }
.floating.slow { animation-duration: 8s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-18px) rotate(1deg); }
}

.spark {
  position: absolute;
  font-size: 28px;
  color: var(--brown);
  z-index: 3;
  animation: twinkle 3s ease-in-out infinite;
}
.spark--1 { top: 12%; right: 10%; animation-delay: 0s; }
.spark--2 { bottom: 22%; left: 6%; color: var(--purple); font-size: 36px; animation-delay: 1s; }
@keyframes twinkle {
  0%, 100% { opacity: .3; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.15) rotate(15deg); }
}

/* Círculos decorativos del hero */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.deco-circle--yellow {
  width: 90px; height: 90px;
  background: var(--yellow);
  top: 28%; left: 6%;
}
.deco-circle--pink {
  width: 56px; height: 56px;
  background: var(--pink);
  bottom: 18%; right: 14%;
}
.deco-circle--purple-sm {
  width: 38px; height: 38px;
  background: var(--purple);
  top: 16%; left: 42%;
}
.deco-circle--brown-sm {
  width: 28px; height: 28px;
  background: var(--brown);
  bottom: 8%; left: 36%;
}

.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .55;
}
.cue-line {
  display: block;
  width: 1.5px; height: 40px;
  background: var(--brown);
  animation: cue-fall 1.8s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes cue-fall {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================
   STATEMENT
   ============================================ */
.statement {
  background: var(--yellow);
  padding: clamp(80px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}
.statement .display-massive {
  color: var(--brown);
}
.statement .reveal-line {
  display: block;
  overflow: hidden;
}
.statement-visual {
  position: relative;
  display: grid; place-items: center;
}
.statement-visual img {
  width: clamp(220px, 30vw, 380px);
  filter: drop-shadow(0 20px 40px rgba(107, 64, 35, .25));
}
.statement-tag {
  position: absolute;
  bottom: 60px; right: 60px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--brown);
  max-width: 200px;
  text-align: right;
  line-height: 1.4;
}
.statement-tag em {
  font-family: var(--ff-display);
  font-style: normal;
  font-size: 1.6em;
  display: inline-block;
  margin-top: 6px;
  letter-spacing: -.5px;
}

.big-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.big-circle--cream {
  width: 280px; height: 280px;
  background: var(--cream-soft);
  top: -60px; right: 22%;
  opacity: .55;
}
.big-circle--white {
  width: 180px; height: 180px;
  background: var(--yellow-soft);
  bottom: -40px; left: 18%;
  opacity: .8;
}

/* ============================================
   SABORES (Swiper)
   ============================================ */
.sabores {
  padding: clamp(80px, 12vw, 140px) 0 60px;
  background: var(--cream);
  overflow: hidden;
}
.sabores-swiper {
  width: 100%;
  height: clamp(560px, 75vh, 720px);
  position: relative;
}
.sabor-slide {
  background: var(--slide-bg, var(--yellow));
  color: var(--slide-text, var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px var(--pad-x);
}
.sabor-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(120px, 22vw, 320px);
  line-height: .85;
  letter-spacing: -3px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .18;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.sabor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  width: 100%;
  position: relative;
  z-index: 2;
}
.sabor-product {
  display: grid;
  place-items: center;
}
.sabor-product img {
  width: clamp(260px, 32vw, 420px);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.18));
  transition: transform .8s var(--ease-out);
}
.swiper-slide-active .sabor-product img {
  animation: floaty 6s ease-in-out infinite;
}
.sabor-info { max-width: 460px; }
.sabor-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: .7;
}
.sabor-name {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: .95;
  letter-spacing: -1px;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.sabor-desc {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  margin: 0 0 32px;
  opacity: .9;
}
.sabor-info .btn-outline { color: inherit; }
.sabor-info .btn-outline:hover { background: currentColor; }
.sabor-info .btn-outline:hover { color: var(--slide-bg, var(--yellow)); }

.sabores-controls {
  position: absolute;
  bottom: 28px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  z-index: 10;
}
.swiper-button-prev-custom,
.swiper-button-next-custom {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 700;
  color: currentColor;
  transition: background .3s, transform .3s;
}
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: rgba(255,255,255,.45);
  transform: scale(1.1);
}
.sabores-pagination {
  display: flex; gap: 8px;
  position: static !important;
  width: auto !important;
}
.sabores-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: currentColor;
  opacity: .35;
  transition: opacity .3s, width .3s;
  border-radius: 5px;
}
.sabores-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
}

/* ============================================
   GALERÍA + MARQUEE
   ============================================ */
.galeria {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  overflow: hidden;
}

.marquee {
  width: 100%;
  overflow: hidden;
  margin: 50px 0 90px;
  border-top: 2px solid var(--brown);
  border-bottom: 2px solid var(--brown);
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  flex-shrink: 0;
}
.marquee-dot {
  font-size: .6em;
  color: var(--brown);
  opacity: .5;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.galeria-card {
  background: var(--card-bg, var(--cream-soft));
  border-radius: 28px;
  padding: 40px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease-out);
  text-align: center;
}
.galeria-card--pink { --card-bg: #ffd1dc; color: var(--brown); }
.galeria-card--yellow { --card-bg: var(--yellow); color: var(--brown); }
.galeria-card--purple { --card-bg: var(--purple-soft); color: var(--brown); }
.galeria-card--brown { --card-bg: var(--brown); color: var(--cream); }
.galeria-card:hover { transform: translateY(-10px); }

.card-circle {
  position: absolute;
  top: -30px; right: -40px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
}
.galeria-card--brown .card-circle { background: rgba(252, 241, 216, .15); }
.galeria-card img {
  width: 100%;
  max-width: 180px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.18));
  transition: transform .6s var(--ease-bounce);
}
.galeria-card:hover img { transform: scale(1.08) rotate(-3deg); }
.galeria-card h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: -.5px;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.galeria-card p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 15px;
  opacity: .85;
  margin: 0;
}

/* ============================================
   MOMENTOS
   ============================================ */
.momentos {
  background: linear-gradient(180deg, var(--cream) 0%, #fde6ea 100%);
  padding: clamp(100px, 14vw, 160px) 0;
  position: relative;
  overflow: hidden;
}
.momentos-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.momentos .display-large {
  color: var(--brown);
  margin-top: 12px;
}
.momentos-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  margin-top: 28px;
  color: var(--brown);
  opacity: .85;
}
.momentos-visual img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.momentos-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.momentos-circle--1 {
  width: 380px; height: 380px;
  background: #ffd1dc;
  top: -120px; right: -100px;
  opacity: .5;
}
.momentos-circle--2 {
  width: 220px; height: 220px;
  background: var(--yellow);
  bottom: -60px; left: -80px;
  opacity: .4;
}

/* ============================================
   FORMAS DE DISFRUTAR
   ============================================ */
.formas {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}
.formas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.forma {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 16px;
}
.forma-circle {
  width: clamp(180px, 22vw, 260px);
  height: clamp(180px, 22vw, 260px);
  border-radius: 50%;
  background: var(--forma-color);
  display: grid; place-items: center;
  color: #fff;
  transition: transform .5s var(--ease-bounce);
  box-shadow: 0 20px 40px -15px var(--forma-color);
}
.forma:hover .forma-circle { transform: scale(1.06) rotate(-4deg); }
.forma-circle img {
  width: clamp(50px, 6vw, 80px);
  height: auto;
}
.forma h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 1px;
  margin: 8px 0 4px;
  text-transform: uppercase;
  color: var(--brown);
}
.forma p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--brown);
  opacity: .85;
  margin: 0;
  max-width: 220px;
}

/* ============================================
   SUCURSALES
   ============================================ */
.sucursales {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream-soft);
}
.sucursales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.sucursal-card {
  background: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: stretch;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.sucursal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(107, 64, 35, .35);
}
.sucursal-img {
  background: var(--cream-soft);
  overflow: hidden;
}
.sucursal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.sucursal-card:hover .sucursal-img img { transform: scale(1.06); }
.sucursal-info {
  padding: 28px 28px 28px;
  display: flex; flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.sucursal-info h3 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: -.3px;
  margin: 0 0 4px;
  text-transform: uppercase;
  color: var(--brown);
}
.sucursal-info p {
  font-size: 15px;
  color: var(--brown);
  opacity: .8;
  margin: 0;
  line-height: 1.4;
}
.sucursal-hora {
  display: inline-block;
  margin: 10px 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--pink);
}
.sucursal-info .btn { align-self: flex-start; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--purple);
  color: var(--cream);
  padding: clamp(100px, 16vw, 200px) 0 clamp(100px, 14vw, 160px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title { color: var(--cream); }
.cta-title span { display: block; }
.cta-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.4;
  margin: 32px auto 48px;
  max-width: 500px;
  opacity: .92;
}
.cta-buttons {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
}
.cta-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-circle--1 {
  width: 320px; height: 320px;
  background: var(--pink);
  top: -120px; left: -120px;
  opacity: .5;
}
.cta-circle--2 {
  width: 220px; height: 220px;
  background: var(--yellow);
  bottom: -80px; right: -80px;
  opacity: .55;
}
.cta-circle--3 {
  width: 60px; height: 60px;
  background: var(--cream);
  top: 30%; right: 12%;
  opacity: .25;
}

/* Newsletter */
.newsletter {
  max-width: 480px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(252, 241, 216, .25);
}
.newsletter-label {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 15px;
  margin: 0 0 16px;
  opacity: .9;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  background: rgba(252, 241, 216, .12);
  border: 1px solid rgba(252, 241, 216, .25);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  align-items: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  border: 0; background: transparent;
  color: var(--cream);
  font-size: 15px;
  outline: none;
  padding: 12px 0;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(252, 241, 216, .55); }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}
.newsletter-msg {
  margin: 12px 0 0;
  font-size: 14px;
  min-height: 1.4em;
  opacity: .9;
}
.newsletter-msg.success { color: var(--yellow); }
.newsletter-msg.error { color: var(--pink); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: clamp(70px, 9vw, 110px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
}
.footer-brand img {
  width: 100px; height: auto;
  margin-bottom: 18px;
}
.footer-brand p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  opacity: .85;
  max-width: 280px;
}
.footer-col {
  display: flex; flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 12px;
  opacity: .7;
}
.footer-col a {
  font-size: 15px;
  opacity: .9;
  transition: opacity .25s, transform .25s;
  display: inline-block;
}
.footer-col a:hover {
  opacity: 1;
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(252, 241, 216, .15);
  padding: 28px 0;
}
.footer-bottom-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-bottom span {
  font-size: 13px;
  opacity: .7;
}
.footer-bottom img {
  width: 160px; height: auto;
}

/* ============================================
   ANIMACIONES DE REVEAL
   ============================================ */
.reveal,
.reveal-up,
.reveal-line {
  opacity: 0;
}
.reveal-up {
  transform: translateY(30px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal-up.in {
  opacity: 1; transform: translateY(0);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .floating, .blob-morph, .marquee-track { animation: none !important; }
  .hero-blob { animation: none; }
}

/* Focus visible accesible */
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =====================================================
   PÁGINA NOSOTROS — estilos específicos
   ===================================================== */

/* ---- Hero variante de about (más compacto, con kicker) ---- */
.hero--about .hero-text { padding-top: 40px; }
.hero--about .eyebrow { margin-bottom: 18px; display: inline-block; }

/* ---- Sección Historia (estilo "HAY UN SABOR PARA CADA ANTOJO") ---- */
.about-historia {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.about-historia-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
.about-historia-text .eyebrow { margin-bottom: 26px; }
.about-historia-text .display-large {
  margin-bottom: 36px;
}
.about-historia-text p {
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown);
  max-width: 480px;
  margin-bottom: 18px;
}
.about-historia-text p strong { font-weight: 700; }
.about-historia-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  transition: opacity .2s ease;
}
.about-historia-cta .arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  font-size: 18px;
  transition: transform .25s ease;
}
.about-historia-cta:hover .arrow { transform: translateX(4px); }

.about-historia-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-historia-circle {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: var(--pink);
  opacity: .85;
  z-index: 0;
  animation: blob-morph 18s ease-in-out infinite;
}
.about-historia-visual img {
  position: relative;
  z-index: 2;
  width: 360px;
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(107, 64, 35, .18));
}

/* ---- Sección Pilares (estilo "TRES FORMAS DE DISFRUTAR") ---- */
.about-pilares {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}
.about-pilares .section-head { margin-bottom: 70px; }
.about-pilares-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-pilar {
  text-align: center;
  position: relative;
}
.about-pilar-circle {
  width: 240px;
  height: 240px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--pilar-color, var(--yellow));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--cream);
  position: relative;
  transition: transform .35s ease;
  box-shadow: 0 30px 50px -20px var(--pilar-color, rgba(255, 212, 0, .5));
}
.about-pilar:hover .about-pilar-circle {
  transform: scale(1.06) rotate(-3deg);
}
.about-pilar-circle svg {
  width: 56px;
  height: 56px;
}
.about-pilar-circle h3 {
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  color: var(--cream);
  line-height: 1;
}
.about-pilar p {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--brown);
  max-width: 200px;
  margin: 0 auto;
}

/* ---- Sucursales compactas (estilo lista con pin) ---- */
.about-sucursales-mini {
  padding: 90px 0 70px;
  background: var(--cream);
  border-top: 1px solid rgba(107, 64, 35, .08);
}
.about-sucursales-mini .section-head {
  text-align: center;
  margin-bottom: 50px;
}
.about-sucursales-mini h2 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brown);
  margin: 0;
}
.sucursales-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.sucursal-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
}
.sucursal-mini .pin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  margin-bottom: 6px;
}
.sucursal-mini .pin svg {
  width: 18px; height: 18px;
}
.sucursal-mini h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  color: var(--brown);
}
.sucursal-mini p {
  font-family: var(--ff-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--brown);
  opacity: .8;
  margin: 0;
  max-width: 220px;
}
.about-sucursales-mini .center-cta {
  text-align: center;
  margin-top: 50px;
}
.about-sucursales-mini .center-cta a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
}
.about-sucursales-mini .center-cta .arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .25s ease;
}
.about-sucursales-mini .center-cta a:hover .arrow { transform: translateX(4px); }

/* ---- CTA rosa con watermark (estilo de la ref) ---- */
.cta-pink {
  background: var(--pink);
  color: var(--cream);
  padding: 100px 0 110px;
  position: relative;
  overflow: hidden;
}
.cta-pink::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, .08), transparent 50%);
  pointer-events: none;
}
.cta-pink-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.cta-pink-title {
  color: var(--cream);
  font-size: clamp(48px, 7vw, 110px);
  line-height: .95;
  letter-spacing: -1px;
  margin: 0 0 22px;
}
.cta-pink-title span { display: block; }
.cta-pink-sub {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--cream);
  opacity: .9;
  margin: 0 0 32px;
  max-width: 380px;
}
.cta-pink-watermark {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 460px;
  height: auto;
  opacity: .22;
  pointer-events: none;
  z-index: 1;
}

/* ---- Mejora visual: pulse suave para el pilar central ---- */
@keyframes pilarPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.about-pilar:nth-child(2) .about-pilar-circle {
  animation: pilarPulse 4s ease-in-out infinite;
}

/* ---- Responsive específico de nosotros ---- */
@media (max-width: 960px) {
  .about-historia-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-historia-text p { max-width: 100%; }
  .about-historia-circle { width: 360px; height: 360px; }
  .about-historia-visual img { width: 280px; }
  .about-pilares-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 360px;
  }
  .sucursales-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
  .cta-pink-content {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .cta-pink-watermark {
    width: 320px;
    right: -50px;
    bottom: -60px;
  }
}
@media (max-width: 560px) {
  .about-historia { padding: 70px 0 50px; }
  .about-pilares { padding: 70px 0; }
  .about-pilar-circle { width: 200px; height: 200px; }
  .about-pilar-circle h3 { font-size: 22px; }
  .about-sucursales-mini { padding: 60px 0; }
  .sucursales-mini-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cta-pink { padding: 70px 0 80px; }
  .cta-pink-watermark { width: 240px; right: -40px; bottom: -40px; }
}

/* Link activo en el nav (página actual) */
.nav-desktop a.active,
.nav-desktop a[aria-current="page"] {
  color: var(--pink);
}
.nav-desktop a.active::after,
.nav-desktop a[aria-current="page"]::after {
  width: 100% !important;
}
.mobile-menu nav a.active,
.mobile-menu nav a[aria-current="page"] {
  color: var(--pink);
}

/* =====================================================
   PÁGINA MENÚ — estilos específicos
   ===================================================== */

/* ---- HERO del menú ---- */
.menu-hero {
  position: relative;
  padding: 110px 0 70px;
  overflow: hidden;
  background: var(--cream);
}
.menu-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.menu-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(120px, 18vw, 280px);
  line-height: .85;
  color: var(--brown);
  margin: 0 0 18px;
  letter-spacing: -3px;
}
.menu-hero-sub {
  font-family: var(--ff-body);
  font-size: 19px;
  color: var(--brown);
  opacity: .85;
  margin: 0;
}
.menu-hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.menu-hero-visual img {
  width: 100%;
  max-width: 380px;
  height: auto;
  filter: drop-shadow(0 25px 40px rgba(107, 64, 35, .2));
  animation: floaty 6s ease-in-out infinite;
}

/* ---- Banda de categoría (paletas, paletas de agua, snacks) ---- */
.menu-band {
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.menu-band-grid {
  display: grid;
  grid-template-columns: 240px 1fr 60px;
  gap: 50px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap-x);
}
.menu-band-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-band-img img {
  width: 100%;
  max-width: 180px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(107, 64, 35, .18));
}
.menu-band-content { min-width: 0; }
.menu-band-title {
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 56px);
  color: var(--brown);
  margin: 0 0 24px;
  line-height: 1;
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
}
.menu-band-precio {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--band-dot, var(--pink));
}
.menu-band-precio::before {
  content: "·";
  margin-right: 12px;
  opacity: .5;
}
.menu-band-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-band-items li {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.menu-band-items li::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--band-dot, var(--brown));
  flex-shrink: 0;
}
.menu-band-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-band-cta a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--band-dot, var(--brown));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  font-weight: 300;
  transition: transform .25s ease;
}
.menu-band-cta a:hover { transform: scale(1.1) rotate(90deg); }

/* Variantes de color por banda */
.menu-band--yellow { background: #fdedab; --band-dot: #ffd400; }
.menu-band--pink { background: #fcd9e1; --band-dot: #e95068; }
.menu-band--cream { background: #f5e9c8; --band-dot: #6b4023; }
.menu-band--caramel { background: #f4d9b3; --band-dot: #b87a3e; }

/* Círculos decorativos dentro de bandas */
.menu-band-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .55;
}
.menu-band--yellow .menu-band-deco--1 { width: 120px; height: 120px; background: #f5db6a; right: 10%; top: -40px; }
.menu-band--yellow .menu-band-deco--2 { width: 80px; height: 80px; background: #ffd400; right: 4%; bottom: -20px; }
.menu-band--pink .menu-band-deco--1 { width: 100px; height: 100px; background: #f9b8c6; right: 12%; bottom: 20px; }
.menu-band--pink .menu-band-deco--2 { width: 140px; height: 140px; background: #fbcbd5; right: 0; bottom: -40px; opacity: .5; }
.menu-band--cream .menu-band-deco--1 { width: 100px; height: 100px; background: #ffd400; right: 10%; top: -30px; opacity: .35; }
.menu-band--caramel .menu-band-deco--1 { width: 110px; height: 110px; background: #e8b87a; right: 8%; top: -30px; }

/* ---- Sección NIEVES DE GARRAFA (destacada lila) ---- */
.menu-nieves {
  background: #ddd0f0;
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.menu-nieves-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}
.menu-nieves-title {
  font-family: var(--ff-display);
  font-size: clamp(48px, 7vw, 92px);
  color: var(--brown);
  margin: 0;
  line-height: .95;
  letter-spacing: -1px;
}
.menu-nieves-scoop {
  width: 220px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(84, 72, 221, .25));
}
.menu-nieves-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
}
.menu-nieves-card {
  background: #ece4f7;
  border-radius: 22px;
  padding: 26px 30px 28px;
  position: relative;
}
.menu-nieves-card-label {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.menu-nieves-card-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-nieves-card-items--2col { grid-template-columns: repeat(2, 1fr); }
.menu-nieves-card-items li {
  font-family: var(--ff-body);
  font-size: 14px;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 3px 0;
}
.menu-nieves-card-items li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
}
/* Card grande (sabores de leche) ocupa 2 filas */
.menu-nieves-card--big {
  grid-row: span 2;
}
.menu-nieves-card--big .menu-nieves-card-items {
  grid-template-columns: repeat(3, 1fr);
}
/* Garrafa lila decorativa abajo a la derecha */
.menu-nieves-garrafa {
  position: absolute;
  right: 30px;
  bottom: -20px;
  width: 200px;
  opacity: .85;
  pointer-events: none;
  z-index: 0;
}

/* ---- Sección PASTELES DE HELADO ---- */
.menu-pasteles {
  background: #f4d9b3;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  --band-dot: #b87a3e;
}
.menu-pasteles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.menu-pasteles-text .eyebrow {
  color: #b87a3e;
  margin-bottom: 14px;
}
.menu-pasteles-title {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6vw, 76px);
  color: var(--brown);
  margin: 0 0 8px;
  line-height: .95;
  letter-spacing: -1px;
}
.menu-pasteles-sub {
  font-family: var(--ff-serif, 'Fraunces'), serif;
  font-style: italic;
  font-size: 18px;
  color: #8a5a2e;
  margin: 0 0 30px;
}
.menu-pasteles-cols {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 30px;
  margin-bottom: 28px;
}
.menu-pasteles-col h4 {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b87a3e;
  margin: 0 0 12px;
}
.menu-pasteles-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-pasteles-col li {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--brown);
  padding: 4px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-pasteles-col li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b87a3e;
  flex-shrink: 0;
  align-self: center;
}
.menu-pasteles-col .tam-personas {
  display: block;
  font-size: 12px;
  opacity: .65;
  margin-left: 16px;
  margin-top: -2px;
}
.menu-pasteles-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--brown);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform .25s ease;
}
.menu-pasteles-cta:hover { transform: translateY(-3px); }
.menu-pasteles-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.menu-pasteles-visual img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 25px 40px rgba(107, 64, 35, .22));
  animation: floaty 7s ease-in-out infinite;
}
.menu-pasteles-deco {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #ecc18a;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---- Cards finales (Smoothies / Frappé / Café) ---- */
.menu-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.menu-card {
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.menu-card--smoothies { background: #fcdce3; --band-dot: #e95068; }
.menu-card--frappe { background: #fbebb8; --band-dot: #ffd400; }
.menu-card--cafe { background: #ddd0f0; --band-dot: #5448dd; }
.menu-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--band-dot);
  margin: 0 0 14px;
  line-height: 1;
  letter-spacing: .5px;
}
.menu-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-card li {
  font-family: var(--ff-body);
  font-size: 14.5px;
  color: var(--brown);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--band-dot);
  flex-shrink: 0;
}
.menu-card-img {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.menu-card-img img {
  width: 100%;
  max-width: 140px;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(107, 64, 35, .2));
}
.menu-card-plus {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--band-dot);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: transform .25s ease;
  z-index: 3;
}
.menu-card-plus:hover { transform: scale(1.15) rotate(90deg); }
.menu-card-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: .5;
}
.menu-card--smoothies .menu-card-deco { width: 80px; height: 80px; background: #f9b8c6; right: -20px; top: 20px; }
.menu-card--frappe .menu-card-deco { width: 80px; height: 80px; background: #f0d870; right: -20px; bottom: 30%; }
.menu-card--cafe .menu-card-deco { width: 90px; height: 90px; background: #c4b3e8; right: -20px; top: 30%; }

/* ---- CTA del menú (¿LISTO PARA TU PRÓXIMO ANTOJO?) ---- */
.menu-cta {
  background: var(--cream);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.menu-cta-grid {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 36px;
}
.menu-cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
}
.menu-cta-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--brown);
  margin: 0;
  line-height: 1;
  letter-spacing: .5px;
}
.menu-cta-text p {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--brown);
  margin: 8px 0 0;
  opacity: .8;
  max-width: 340px;
}
.menu-cta-btn {
  background: var(--yellow);
  color: var(--brown);
  border-radius: 50px;
  padding: 16px 28px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.menu-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -10px rgba(255, 212, 0, .6);
}
.menu-cta-btn .arrow-bg {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.menu-cta-bag {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 15px 25px rgba(107, 64, 35, .2));
}
.menu-cta-spark {
  font-size: 26px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* ---- Indicador del nav activo amarillo (estilo de la ref) ---- */
.nav-desktop a.nav-yellow.active::after,
.nav-desktop a.nav-yellow[aria-current="page"]::after {
  background: var(--yellow);
  height: 3px;
}

/* ---- Responsive del menú ---- */
@media (max-width: 1024px) {
  .menu-band-grid {
    grid-template-columns: 180px 1fr 50px;
    gap: 30px;
  }
  .menu-nieves-grid { gap: 18px; }
  .menu-nieves-card-items { grid-template-columns: repeat(2, 1fr); }
  .menu-nieves-card--big .menu-nieves-card-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .menu-hero { padding: 70px 0 50px; }
  .menu-hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 30px;
  }
  .menu-hero-visual img { max-width: 260px; }
  .menu-band { padding: 40px 0; }
  .menu-band-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
  }
  .menu-band-img img { max-width: 140px; }
  .menu-band-items { grid-template-columns: repeat(2, 1fr); }
  .menu-band-cta { justify-content: flex-start; }
  .menu-nieves { padding: 60px 0; }
  .menu-nieves-head {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .menu-nieves-scoop { width: 160px; justify-self: end; }
  .menu-nieves-grid { grid-template-columns: 1fr; }
  .menu-nieves-card--big { grid-row: auto; }
  .menu-nieves-garrafa { display: none; }
  .menu-pasteles { padding: 60px 0; }
  .menu-pasteles-grid { grid-template-columns: 1fr; gap: 40px; }
  .menu-pasteles-cols { grid-template-columns: 1fr; }
  .menu-cards-row { grid-template-columns: 1fr; }
  .menu-card { padding: 36px 28px; }
  .menu-cta-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }
  .menu-cta-bag { width: 100px; align-self: flex-end; }
}
@media (max-width: 480px) {
  .menu-band-items { grid-template-columns: 1fr; }
  .menu-nieves-card-items,
  .menu-nieves-card-items--2col { grid-template-columns: 1fr; }
}

/* =====================================================================
   LOADER SELLO — reemplazo del logo por slogan giratorio
   ===================================================================== */
.loader-inner .loader-sello {
  display: block;
  width: clamp(140px, 18vw, 180px);
  height: auto;
  animation: loader-sello-spin 20s linear infinite;
  filter: drop-shadow(0 10px 24px rgba(107, 64, 35, 0.15));
}
@keyframes loader-sello-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .loader-inner .loader-sello { animation: none; }
}

/* ═══════════════════════════════════════════════════════════════
   Footer — sello giratorio amarillo + link Migrante
   ═══════════════════════════════════════════════════════════════ */
.footer-slogan-sello {
  display: block;
  width: 180px;
  height: 180px;
  margin-left: auto;
  animation: footer-sello-spin 26s linear infinite;
}
@keyframes footer-sello-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.footer-bottom a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer-bottom a:hover { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .footer-slogan-sello { animation: none; }
}
/* ============================================
   FOOTER — override para el nuevo diseño café
   ============================================ */
.site-footer {
  background: #6b4023;
  color: #fcf1d8;
  padding: 50px 0 0;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px 40px;
}
.footer-brand img {
  width: 100px;
  height: auto;
  display: block;
}
.footer-col h4 {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fcf1d8;
  opacity: 0.6;
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 13.5px;
  color: #fcf1d8;
  text-decoration: none;
  padding: 4px 0;
  transition: color .2s ease, padding-left .2s ease;
}
.footer-col a:hover {
  color: #ffd400;
  padding-left: 4px;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(252, 241, 216, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: #ffd400;
  color: #6b4023;
  transform: translateY(-2px);
  padding-left: 0;
}
.footer-slogan {
  position: relative;
  text-align: right;
}
.footer-slogan-text {
  display: inline-block;
  font-family: 'MidcentDisco', 'Fraunces', serif;
  font-weight: 500;
  font-size: 26px;
  color: #fcf1d8;
  line-height: 1.1;
}
.footer-slogan-underline {
  display: block;
  width: 180px;
  height: 12px;
  margin-left: auto;
  margin-top: 4px;
  color: #fcf1d8;
}
.footer-bottom {
  border-top: 1px solid rgba(252, 241, 216, 0.12);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom span {
  font-family: 'Grift', 'Manrope', sans-serif;
  font-size: 11.5px;
  color: #fcf1d8;
  opacity: 0.5;
  letter-spacing: 0.3px;
}

/* Ocultar footer-bottom-grid viejo si existe */
.footer-bottom-grid { display: none; }

/* Botón WhatsApp flotante */
.float-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px -8px rgba(37, 211, 102, 0.6);
  z-index: 90;
  transition: transform .25s ease, box-shadow .3s ease;
}
.float-wa:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.75);
}

/* Botón "Volver arriba" flotante */
.float-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffd400;
  color: #6b4023;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(107, 64, 35, 0.35);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease, box-shadow .3s ease;
  padding: 0;
}
.float-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.float-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px -6px rgba(107, 64, 35, 0.5);
  background: #ffdd33;
}
.float-top:focus-visible {
  outline: none;
  box-shadow: 0 8px 20px -6px rgba(107, 64, 35, 0.35),
              0 0 0 4px rgba(255, 212, 0, 0.4);
}
@media (max-width: 560px) {
  .float-top { width: 44px; height: 44px; bottom: 18px; left: 18px; }
}


/* ============ WhatsApp flotante · selector de número ============ */
.float-wa.is-open:hover {
  transform: none;
  box-shadow: 0 10px 25px -8px rgba(37, 211, 102, 0.6);
}

.float-wa-toggle {
  width: 100%; height: 100%;
  padding: 0; margin: 0;
  border: none;
  background: transparent;
  color: inherit;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.float-wa-toggle:focus-visible {
  outline: 3px solid #fcf1d8;
  outline-offset: 3px;
}

.float-wa-opts {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 168px;
}
.float-wa-opts[hidden] { display: none; }

.float-wa-opt {
  display: block;
  padding: 12px 18px;
  min-height: 48px;
  line-height: 24px;
  border-radius: 28px;
  background: #ffffff;
  color: #6b4023;
  font-family: 'Grift', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .28);
  transition: background .2s ease, color .2s ease;
}
.float-wa-opt:hover,
.float-wa-opt:focus-visible {
  background: #25d366;
  color: #ffffff;
}
.float-wa-opt:focus-visible {
  outline: 3px solid #fcf1d8;
  outline-offset: 2px;
}
.float-wa-opt:active {
  background: #1eb855;
  color: #ffffff;
}
