/* ================================================================
   ENDULCES — Sistema de estilos
   Tokens con clamp (px) · Bloques reutilizables · Extensiones por sección
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&family=Hind:wght@300;400;500;600;700&family=Catamaran:wght@300;400;500;600;700;800&display=swap');


/* ── Design tokens ───────────────────────────────────────────── */
:root {
  --color-cherry: #D31A54;
  --color-cherry-dark: #8D0736;
  --color-cream: #FFFBF0;
  --color-ink: #1C0810;
  --color-white: #ffffff;

  --ink-muted: rgba(28, 8, 16, 0.6);
  --ink-subtle: rgba(28, 8, 16, 0.45);
  --ink-faint: rgba(28, 8, 16, 0.4);
  --white-muted: rgba(255, 255, 255, 0.9);
  --white-subtle: rgba(255, 255, 255, 0.55);

  --space-2xs: clamp(4px, 0.5vw, 6px);
  --space-xs: clamp(6px, 0.75vw, 8px);
  --space-sm: clamp(8px, 1vw, 12px);
  --space-md: clamp(12px, 1.5vw, 16px);
  --space-lg: clamp(16px, 2vw, 24px);
  --space-xl: clamp(20px, 2.5vw, 28px);
  --space-2xl: clamp(24px, 3vw, 32px);
  --space-3xl: clamp(28px, 3.5vw, 40px);

  --text-2xs: clamp(9px, 1.8vw, 11px);
  --text-xs: clamp(10px, 2vw, 12px);
  --text-sm: clamp(12px, 2.2vw, 14px);
  --text-base: clamp(14px, 2.5vw, 16px);
  --text-md: clamp(16px, 2.8vw, 18px);
  --text-lg: clamp(20px, 3.5vw, 25px);
  --text-xl: clamp(22px, 4vw, 28px);
  --text-2xl: clamp(24px, 4.5vw, 36px);
  --text-display-hero: clamp(56px, 12vw, 120px);
  --text-display-section: clamp(32px, 6vw, 72px);
  --text-display-tagline: clamp(24px, 4.5vw, 38px);
  --text-display-logo: clamp(22px, 4vw, 28px);
  --text-display-closing: clamp(26px, 5vw, 40px);
  --text-lead: clamp(15px, 2.6vw, 17px);
  --text-stat: clamp(38px, 8vw, 48px);
  --text-quote: clamp(26px, 5vw, 34px);
  --text-intro-brand: clamp(48px, 10vw, 88px);
  --text-intro-emoji-lg: clamp(72px, 14vw, 88px);
  --text-intro-emoji-sm: clamp(36px, 8vw, 45px);

  --radius-xs: clamp(8px, 1vw, 10px);
  --radius-sm: clamp(12px, 1.2vw, 14px);
  --radius-md: clamp(16px, 1.8vw, 20px);
  --radius-lg: clamp(20px, 2.2vw, 24px);
  --radius-pill: clamp(20px, 3vw, 40px);

  --shadow-soft: 0 2px 8px rgba(28, 8, 16, 0.05), 0 8px 24px rgba(28, 8, 16, 0.04);
  --shadow-hover: 0 8px 32px rgba(211, 26, 84, 0.14), 0 20px 48px rgba(28, 8, 16, 0.08);
  --shadow-panel: 0 2px 16px rgba(28, 8, 16, 0.05);
  --shadow-panel-hover: 0 10px 36px rgba(211, 26, 84, 0.13);
  --shadow-nav: 0 4px 30px rgba(141, 7, 54, 0.3);
  --shadow-cherry: 0 4px 16px rgba(211, 26, 84, 0.3);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-menu: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.75s;

  --nav-height: clamp(60px, 10vw, 68px);
  --media-height: clamp(190px, 28vw, 220px);
  --icon-box-sm: clamp(40px, 8vw, 48px);
  --icon-box-md: clamp(52px, 10vw, 60px);
}


/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  overflow-x: clip;         /* clip es más robusto que hidden en iOS Safari */
  max-width: 100%;
  scroll-behavior: smooth;
}
body { background: var(--color-cream); }


/* ================================================================
   TIPOGRAFÍA — Guía de clases reutilizables
   ─────────────────────────────────────────────────────────────
   Familias:     .font-oleo | .font-hind | .font-catamaran
   Títulos:      .text-hero | .text-section | .text-section--light
                 .text-tagline | .text-card-title | .text-quote
   Intro:        .text-eyebrow | .text-eyebrow--center | .text-kicker
   Cuerpo:       .text-body | .text-body-muted | .text-lead
   UI:           .text-card-meta | .text-price | .text-stat-number
                 .text-caption | .text-logo | .text-nav
================================================================ */

/* Familias tipográficas (solo fuente; combinar con clases de tamaño) */
.font-oleo     { font-family: 'Oleo Script', cursive; }
.font-hind     { font-family: 'Hind', sans-serif; }
.font-catamaran { font-family: 'Catamaran', sans-serif; }

/* Títulos display */
.text-hero {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-display-hero);
  color: var(--color-ink);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}

.text-section {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-display-section);
  color: var(--color-ink);
  line-height: 1.1;
  margin: 0;
}

.text-section--light { color: var(--color-white); }

.text-tagline {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-display-tagline);
  color: var(--color-cherry-dark);
  line-height: 1.25;
  margin: 0;
}

.text-card-title {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-lg);
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0;
}

.text-quote {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-quote);
  color: rgba(28, 8, 16, 0.8);
  line-height: 1.35;
}

.text-closing {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-display-closing);
  color: var(--color-cherry);
  line-height: 1.2;
  margin: 0;
}

.text-logo {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-display-logo);
  line-height: 1;
}

.text-logo--footer {
  font-size: clamp(28px, 5vw, 35px);
  color: var(--color-white);
}

/* Eyebrow / kicker de sección */
.text-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  font-family: 'Hind', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-cherry);
  margin-bottom: var(--space-lg);
}

.text-eyebrow::before,
.text-eyebrow::after {
  content: '';
  display: block;
  width: clamp(24px, 4vw, 32px);
  height: 2px;
  background: var(--color-cherry);
  border-radius: 2px;
}

.text-eyebrow--center {
  display: flex;
  justify-content: center;
}

.text-eyebrow--no-lines::before,
.text-eyebrow--no-lines::after { display: none; }

.text-kicker {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-cherry);
}

/* Cuerpo y párrafos */
.text-lead {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-lead);
  line-height: 1.75;
  color: var(--ink-muted);
}

.text-lead--center { text-align: center; }

.text-body {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-ink);
}

.text-body-muted {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-base);
  color: var(--ink-muted);
  line-height: 1.6;
}

.text-body-muted--on-dark {
  color: var(--white-subtle);
}

.text-caption {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  color: var(--ink-subtle);
  line-height: 1.5;
}

.text-caption--on-dark {
  color: rgba(255, 255, 255, 0.45);
}

/* Meta / etiquetas en tarjetas y contacto */
.text-card-meta {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-cherry);
}

.text-meta-label {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-subtle);
}

.text-meta-value {
  font-family: 'Catamaran', sans-serif;
  font-size: clamp(13px, 2.5vw, 14px);
  font-weight: 600;
  color: var(--color-ink);
}

.text-price {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-cherry-dark);
}

.text-stat-number {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-stat);
  color: var(--color-cherry);
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.text-stat-label {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-subtle);
  margin-top: clamp(4px, 0.75vw, 6px);
}

.text-feature-title {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: clamp(8px, 1.5vw, 10px);
}

.text-quote-author {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-cherry-dark);
}

.text-block-title {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: 'Hind', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-bottom: clamp(18px, 3vw, 24px);
}

.text-block-title i {
  color: var(--color-cherry);
  font-size: var(--text-base);
}

.text-float-stat {
  font-family: 'Oleo Script', cursive;
  font-size: clamp(32px, 6vw, 40px);
  line-height: 1;
}

.text-float-label {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-subtle);
}

.text-deco {
  font-family: 'Oleo Script', cursive;
  font-size: clamp(28px, 5vw, 32px);
  color: rgba(255, 255, 255, 0.2);
}

.text-footer-heading {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
}

.text-footer-link {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.text-footer-link:hover { color: var(--color-white); }

.text-nav {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
}


/* ================================================================
   TARJETAS Y SUPERFICIES (base compartida)
================================================================ */
.surface-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.surface-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
}

.hover-lift {
  transition: box-shadow var(--duration-normal) ease, transform var(--duration-normal) ease;
}

.hover-lift:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(clamp(-6px, -1vw, -8px));
}

.card-layout-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: clamp(18px, 2.5vw, 24px);
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2xs);
  padding-top: clamp(12px, 1.5vw, 14px);
  border-top: 1px solid rgba(28, 8, 16, 0.06);
}


/* ── Media de tarjeta (imagen superior) ── */
.card-media {
  position: relative;
  height: var(--media-height);
  overflow: hidden;
  flex-shrink: 0;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 8, 16, 0.35) 0%, transparent 55%);
}

.card-media:hover img,
.hover-lift:hover .card-media img {
  transform: scale(1.1);
}


/* ── Badge flotante ── */
.badge-floating {
  position: absolute;
  z-index: 2;
  background: rgba(211, 26, 84, 0.92);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: clamp(3px, 0.5vw, 4px) clamp(10px, 1.5vw, 12px);
  border-radius: var(--radius-pill);
}


/* ── Caja de icono ── */
.icon-box {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(211, 26, 84, 0.08);
  border-radius: var(--radius-sm);
}

.icon-box--small {
  width: var(--icon-box-sm);
  height: var(--icon-box-sm);
  font-size: clamp(18px, 3vw, 21px);
}

.icon-box--medium {
  width: var(--icon-box-md);
  height: var(--icon-box-md);
  font-size: clamp(20px, 3.5vw, 22px);
  border-radius: var(--radius-md);
  margin-bottom: clamp(14px, 2vw, 18px);
}


/* ── Botones ── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  padding: clamp(10px, 1.5vw, 12px) clamp(16px, 2.5vw, 20px);
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: background var(--duration-fast) ease,
              box-shadow var(--duration-fast) ease,
              transform var(--duration-fast) ease;
}

.btn-pill--filled {
  background: var(--color-cherry);
  color: var(--color-white);
}

.btn-pill--filled:hover {
  background: var(--color-cherry-dark);
  box-shadow: 0 6px 24px rgba(211, 26, 84, 0.35);
  transform: translateY(-2px);
}

.btn-text-link {
  font-family: 'Catamaran', sans-serif;
  font-size: clamp(12px, 2.2vw, 13px);
  font-weight: 800;
  color: var(--color-cherry);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  transition: gap var(--duration-fast) ease, color var(--duration-fast) ease;
}

.btn-text-link:hover {
  color: var(--color-cherry-dark);
  gap: clamp(8px, 1.5vw, 10px);
}


/* ================================================================
   NAVBAR + MENÚ MÓVIL
================================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-cherry);
  transition: box-shadow var(--duration-normal) ease;
}

#navbar.nav-scrolled { box-shadow: var(--shadow-nav); }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: clamp(5px, 0.9vw, 7px);
  color: var(--white-muted);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.nav-link__icon {
  font-size: clamp(14px, 2.2vw, 16px);
  opacity: 0.88;
  transition: opacity var(--duration-fast) ease;
}

.nav-link:hover .nav-link__icon { opacity: 1; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--color-white); }
.nav-link:hover::after { width: 100%; }

/* ================================================================
   PREMIUM CTA BUTTON (Header)
================================================================ */
.btn-premium-cta {
  position: relative;
  overflow: hidden;
  animation: cta-pulse 3s ease-in-out infinite;
}

.btn-premium-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(211, 26, 84, 0.05) 35%,
    rgba(211, 26, 84, 0.15) 40%,
    rgba(211, 26, 84, 0.05) 45%,
    transparent 60%
  );
  background-size: 250% 100%;
  animation: cta-glaze-shine 4s ease-in-out infinite;
}

.btn-premium-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  animation-play-state: paused;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15); }
  50% { box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4); }
}

@keyframes cta-glaze-shine {
  0%, 20% { background-position: 150% 0; }
  100% { background-position: -50% 0; }
}

/* Botón hamburguesa */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 1vw, 6px);
  border: none;
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.menu-btn:hover { background: rgba(255, 255, 255, 0.1); }

.menu-btn__icon {
  font-size: clamp(22px, 4vw, 26px);
  transition: transform 0.35s var(--ease-out), opacity 0.25s ease;
}

.menu-btn.is-open .menu-btn__icon {
  transform: rotate(90deg) scale(1.05);
}

/* Panel menú móvil */
.mobile-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  background: var(--color-cherry-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: clamp(16px, 3vw, 20px);
  padding-right: clamp(16px, 3vw, 20px);
  transition:
    max-height 0.45s var(--ease-menu),
    opacity 0.35s ease,
    padding-bottom 0.45s var(--ease-menu);
}

.mobile-menu.is-open {
  max-height: clamp(380px, 70vh, 480px);
  opacity: 1;
  padding-bottom: clamp(16px, 3vw, 20px);
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vw, 4px);
  padding-top: clamp(10px, 2vw, 12px);
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vw, 4px);
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 10px);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-base);
  color: var(--white-muted);
  text-decoration: none;
  padding: clamp(8px, 1.5vw, 10px) clamp(6px, 1vw, 8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-12px);
  transition: color var(--duration-fast) ease, opacity 0.3s ease, transform 0.35s var(--ease-out);
}

.mobile-menu__icon {
  font-size: clamp(16px, 3vw, 18px);
  opacity: 0.9;
  flex-shrink: 0;
}

.mobile-menu__link--last { border-bottom: none; }

.mobile-menu__link:hover { color: var(--color-white); }

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.3s; }

.mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: clamp(10px, 2vw, 12px);
  padding: clamp(10px, 2vw, 12px) clamp(20px, 4vw, 24px);
  background: var(--color-white);
  color: var(--color-cherry);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  font-weight: 800;
  border-radius: var(--radius-pill);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease 0.3s, transform 0.35s var(--ease-out) 0.3s;
}

.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================
   HERO
================================================================ */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.12;
}

.hero-dot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.5vw, 10px);
}

.hero-dot {
  width: clamp(5px, 1vw, 6px);
  height: clamp(5px, 1vw, 6px);
  border-radius: 50%;
  background: var(--color-cherry);
}

.hero-float-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: clamp(12px, 2vw, 14px) clamp(14px, 2.5vw, 18px);
  box-shadow: 0 8px 30px rgba(28, 8, 16, 0.12);
  position: absolute;
  z-index: 20;
  min-width: clamp(110px, 20vw, 130px);
}

@media (max-width: 768px) {
  .hero-float-card { display: none; }
}


/* ================================================================
   PRODUCTOS
================================================================ */
.product-card { padding: clamp(4px, 0.75vw, 6px); }

.product-card-inner {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.45s ease, transform 0.45s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.product-card-inner:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(clamp(-6px, -1vw, -8px));
}

.product-image-wrapper { /* extiende u-card-media */
  position: relative;
  height: var(--media-height);
  overflow: hidden;
  flex-shrink: 0;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-inner:hover .product-image-wrapper img { transform: scale(1.1); }

.product-overlay { /* = u-card-media__overlay */
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 8, 16, 0.35) 0%, transparent 55%);
}

.product-badge {
  top: clamp(12px, 2vw, 14px);
  right: clamp(12px, 2vw, 14px);
  position: absolute;
  z-index: 2;
  background: rgba(211, 26, 84, 0.92);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: clamp(3px, 0.5vw, 4px) clamp(10px, 1.5vw, 12px);
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.product-content {
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.product-description { flex: 1; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-2xs);
  padding-top: clamp(12px, 1.5vw, 14px);
  border-top: 1px solid rgba(28, 8, 16, 0.06);
}


/* ── Filtros ── */
.filter-btn {
  padding: var(--space-sm) clamp(18px, 3vw, 22px);
  border-radius: var(--radius-pill);
  border: 2px solid rgba(211, 26, 84, 0.22);
  background: transparent;
  color: var(--color-ink);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-btn:hover { border-color: var(--color-cherry); color: var(--color-ink); }

.filter-btn-active {
  background: var(--color-cherry);
  border-color: var(--color-cherry);
  color: var(--color-white);
  box-shadow: var(--shadow-cherry);
}


/* ================================================================
   TAMAÑOS (pasteles)
================================================================ */
.sizes-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-panel);
}

/* Encabezado: .text-block-title */

.sizes-cards-grid {
  display: grid;
  grid-template-columns: 1fr;          /* móvil: 1 columna */
  gap: var(--space-lg);
  margin-bottom: clamp(14px, 2vw, 18px);
}
@media (min-width: 480px) {
  .sizes-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.size-card-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(20px, 3vw, 24px) var(--space-lg);
  border-radius: var(--radius-md);
  border: 2px solid rgba(28, 8, 16, 0.07);
  background: var(--color-cream);
  gap: clamp(4px, 0.75vw, 6px);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.size-card-item:hover {
  border-color: rgba(211, 26, 84, 0.25);
  box-shadow: 0 6px 24px rgba(211, 26, 84, 0.1);
  transform: translateY(-3px);
}

.size-card-featured {
  border-color: var(--color-cherry);
  background: var(--color-cherry);
  box-shadow: 0 8px 30px rgba(211, 26, 84, 0.25);
  transform: translateY(-4px);
}

.size-card-featured:hover {
  border-color: var(--color-cherry-dark);
  box-shadow: 0 12px 36px rgba(211, 26, 84, 0.35);
  transform: translateY(-8px);
}

.size-card-featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.15) 35%,
    rgba(255, 255, 255, 0.4) 40%,
    rgba(255, 255, 255, 0.15) 45%,
    transparent 60%
  );
  background-size: 250% 100%;
  animation: premium-shine 4.5s ease-in-out infinite;
}

@keyframes premium-shine {
  0%, 25% { background-position: 150% 0; }
  100% { background-position: -50% 0; }
}

.size-popular-badge {
  position: absolute;
  top: clamp(-10px, -1.5vw, -11px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-cherry-dark);
  color: var(--color-white);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-2xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: clamp(2px, 0.5vw, 3px) clamp(10px, 2vw, 12px);
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.size-slug {
  width: clamp(40px, 8vw, 44px);
  height: clamp(40px, 8vw, 44px);
  border-radius: 50%;
  background: rgba(211, 26, 84, 0.1);
  color: var(--color-cherry);
  font-family: 'Oleo Script', cursive;
  font-size: clamp(18px, 3.5vw, 21px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xs);
}

.size-card-featured .size-slug {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.size-card-featured .text-card-title { color: var(--color-white); }

.size-card-divider {
  width: clamp(24px, 4vw, 28px);
  height: 2px;
  background: rgba(28, 8, 16, 0.1);
  border-radius: 2px;
  margin: var(--space-2xs) 0;
}

.size-card-featured .size-card-divider { background: rgba(255, 255, 255, 0.3); }

.size-card-portions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.75vw, 5px);
}

.size-card-featured .text-body-muted { color: rgba(255, 255, 255, 0.78); }
.size-card-portions i { font-size: var(--text-xs); }

.size-card-featured .text-price { color: var(--color-white); }

.sizes-note {
  display: flex;
  align-items: flex-start;
  gap: clamp(4px, 0.75vw, 6px);
  font-family: 'Catamaran', sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  color: rgba(28, 8, 16, 0.68);
  line-height: 1.55;
}

.sizes-note i {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-cherry);
}

@media (max-width: 640px) {
  .sizes-cards-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .size-card-featured { transform: none; }
  .size-card-featured:hover { transform: translateY(-4px); }
}


/* ================================================================
   POR QUÉ ELEGIRNOS — rediseño coherente con el design system
================================================================ */

/* Sección: fondo ink oscuro, igual que antes */
.pq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--color-ink);
}

/* Manchas de luz ambiental — igual que en las otras secciones oscuras */
.pq-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.pq-blob--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, rgba(211,26,84,0.06) 0%, transparent 70%);
  top: -10%; right: -8%;
}
.pq-blob--2 {
  width: clamp(200px, 35vw, 420px);
  height: clamp(200px, 35vw, 420px);
  background: radial-gradient(circle, rgba(141,7,54,0.08) 0%, transparent 70%);
  bottom: -8%; left: -6%;
}

/* Texto de fondo decorativo en Oleo Script — de marca */
.pq-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oleo Script', cursive;
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 700;
  color: rgba(255,255,255,0.018);
  white-space: nowrap;
  max-width: none;
  user-select: none;
  pointer-events: none;
  letter-spacing: 0.05em;
  /* Garantiza que no cause scroll horizontal aunque sea más ancho que la sección */
  overflow: hidden;
}

/* ── Encabezado dividido ── */
.pq-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(48px, 7vw, 80px);
  align-items: end;
}
@media (min-width: 900px) {
  .pq-header { grid-template-columns: 1fr 1fr; }
}

/* Título principal: usa .text-section--light (Oleo Script) del sistema */
.pq-title {
  font-family: 'Oleo Script', cursive;
  font-size: var(--text-display-section);
  line-height: 1.1;
  color: var(--color-white);
  margin: 0;
}
.pq-title__accent {
  color: var(--color-cherry);
}

.pq-header__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 6px;
}

/* Subtítulo: usa Catamaran como .text-lead */
.pq-subtitle {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-lead);
  line-height: 1.75;
  color: var(--white-subtle);
}

/* Línea decorativa cherry */
.pq-divider {
  width: 40px;
  height: 2px;
  background: var(--color-cherry);
  border-radius: 2px;
}

/* Tagline: usa Hind como .text-kicker */
.pq-tagline {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
}

/* ── Grilla de tarjetas ── */
.pq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 20px);
  margin-bottom: clamp(48px, 7vw, 72px);
  align-items: start;
}
@media (min-width: 640px)  { .pq-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pq-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── Tarjeta individual: SÓLIDA cream — igual que product-card-inner ── */
.fq-card {
  background: var(--color-cream);           /* crema de la marca, no blanco puro */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3.5vw, 32px) clamp(18px, 2.5vw, 26px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 18px);
  will-change: transform;
  cursor: default;
  transition: box-shadow 0.4s ease;        /* fallback sin GSAP */
}

/* Caja del ícono: cherry suave — igual que tianguis / contact */
.fq-card__icon-wrap {
  width: var(--icon-box-md);
  height: var(--icon-box-md);
  border-radius: var(--radius-md);
  background: rgba(211, 26, 84, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
}
.fq-card__icon {
  font-size: clamp(20px, 3.2vw, 24px);
  color: var(--color-cherry);
}

/* Fila stat: número grande + etiqueta alineados */
.fq-card__stat-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* Stat: reutiliza .text-stat-number del sistema (Oleo Script cherry) */
.fq-card__stat {
  /* hereda de .text-stat-number — sólo sobreponemos el tamaño para que quepa */
  font-size: clamp(30px, 5vw, 42px) !important;
}

/* Etiqueta del stat: reutiliza .text-card-meta del sistema (Hind, uppercase) */
.fq-card__stat-label {
  /* hereda de .text-card-meta */
  padding-bottom: 2px;
}

/* Separador decorativo: línea cherry que crece con GSAP */
.fq-card__sep {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--color-cherry) 0%, rgba(211,26,84,0.15) 100%);
  border-radius: 2px;
  transform-origin: left center;
}

/* Título: reutiliza .text-feature-title del sistema (Hind, blanco) */
/* En tarjeta cream el color cambia a ink */
.fq-card__title {
  color: var(--color-ink) !important;      /* sobre fondo claro */
  margin: 0;
}

/* Descripción: reutiliza .text-body-muted del sistema (Catamaran) */
/* No sobreponemos nada: color ink/60 es perfecto sobre cream */

/* ── Footer ornamental de la sección ── */
.pq-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.pq-footer__line {
  flex: 1; max-width: 100px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.pq-footer__text {
  /* Hind, uppercase — como .text-kicker */
  font-family: 'Hind', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
}
.pq-footer__dot {
  font-size: 14px;
  opacity: 0.4;
}


/* ================================================================
   CELEBRACIONES
================================================================ */
.celebration-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.celebration-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.celebration-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(clamp(-5px, -0.8vw, -7px));
}

/* ── Media (con o sin foto) ── */
.celebration-media {
  position: relative;
  height: clamp(180px, 26vw, 210px);
  overflow: hidden;
  flex-shrink: 0;
}

.celebration-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.celebration-card:hover .celebration-media img {
  transform: scale(1.07);
}

.celebration-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,8,16,0.5) 0%, transparent 60%);
}

/* Fallback: fondo degradado cuando no hay foto */
.celebration-media--no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cel-color, #D31A54);
  background: linear-gradient(
    135deg,
    var(--cel-color, #D31A54) 0%,
    rgba(28, 8, 16, 0.85) 100%
  );
}

.celebration-icon-placeholder {
  font-size: clamp(52px, 10vw, 72px);
  color: rgba(255, 255, 255, 0.25);
  transition: transform 0.4s ease, color 0.4s ease;
}

.celebration-card:hover .celebration-icon-placeholder {
  transform: scale(1.1) rotate(-6deg);
  color: rgba(255, 255, 255, 0.4);
}

/* Badge de tipo de evento */
.celebration-type-badge {
  position: absolute;
  bottom: clamp(10px, 1.5vw, 14px);
  left: clamp(10px, 1.5vw, 14px);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: clamp(4px, 0.6vw, 5px) clamp(10px, 1.5vw, 13px);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 0.6vw, 6px);
}

/* ── Cuerpo de la tarjeta ── */
.celebration-body {
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.celebration-date {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-2xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-cherry);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ── Tarjeta Expandida ── */
.celebration-card.is-expanded {
  grid-column: 1 / -1;
  z-index: 10;
}

@media (min-width: 640px) {
  .celebration-card.is-expanded .celebration-card-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .celebration-card.is-expanded .celebration-media {
    width: 45%;
    height: auto;
    min-height: 100%;
  }

  .celebration-card.is-expanded .celebration-body {
    width: 55%;
    justify-content: center;
    padding: clamp(24px, 4vw, 40px);
  }
}


/* ================================================================
   TIANGUIS
================================================================ */
.tianguis-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
}

.tianguis-card:hover {
  box-shadow: 0 10px 40px rgba(211, 26, 84, 0.16);
  transform: translateY(-7px);
}

.tianguis-image-wrapper {
  position: relative;
  height: clamp(180px, 26vw, 210px);
  overflow: hidden;
  flex-shrink: 0;
}

.tianguis-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tianguis-card:hover .tianguis-image-wrapper img { transform: scale(1.07); }

.tianguis-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 8, 16, 0.55) 0%, transparent 60%);
}

.tianguis-day-badge {
  position: absolute;
  bottom: clamp(12px, 2vw, 14px);
  left: clamp(12px, 2vw, 14px);
  background: rgba(211, 26, 84, 0.92);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: clamp(4px, 0.75vw, 5px) clamp(10px, 2vw, 13px);
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: clamp(4px, 0.75vw, 5px);
}

.tianguis-content {
  padding: clamp(18px, 2.5vw, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  flex: 1;
}

.tianguis-info {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vw, 7px);
}

.tianguis-info-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(8px, 1.5vw, 9px);
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  color: rgba(28, 8, 16, 0.65);
  line-height: 1.4;
}

.tianguis-info-row i {
  color: var(--color-cherry);
  font-size: clamp(13px, 2.5vw, 14px);
  flex-shrink: 0;
  width: 16px;
  margin-top: 1px;
}

.tianguis-maps-btn {
  margin-top: auto;
}


/* ================================================================
   CONTACTO
================================================================ */
.contact-link,
.contact-link-static {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: clamp(16px, 2.5vw, 20px) clamp(18px, 2.8vw, 22px);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-panel);
}

.contact-link {
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--duration-normal) ease, transform var(--duration-normal) ease;
}

.contact-link:hover {
  box-shadow: var(--shadow-panel-hover);
  transform: translateY(-4px);
}

.contact-icon {
  width: var(--icon-box-sm);
  height: var(--icon-box-sm);
  background: rgba(211, 26, 84, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 3vw, 21px);
  flex-shrink: 0;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.contact-text .text-meta-value {
  white-space: normal;
  word-wrap: break-word;
}


/* ================================================================
   CITA · DECORACIÓN
================================================================ */
.quote-mark {
  font-family: Georgia, serif;
  font-size: clamp(80px, 18vw, 160px);
  line-height: 0.7;
  color: rgba(211, 26, 84, 0.08);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  font-weight: 900;
  user-select: none;
}

.deco-underline {
  position: relative;
  display: inline-block;
}

.deco-underline::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 120 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 Q15 0 30 4 Q45 8 60 4 Q75 0 90 4 Q105 8 120 4' fill='none' stroke='%23D31A54' stroke-width='2.5'/%3E%3C/svg%3E") repeat-x center / 120px 8px;
}

/* ================================================================
   SCROLL REVEAL
================================================================ */
.reveal-item,
.reveal-left,
.reveal-right,
.reveal-scale {
  will-change: opacity, transform;
}

.reveal-item {
  opacity: 0;
  transform: translateY(clamp(28px, 5vw, 36px));
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-item.revealed { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(clamp(-40px, -6vw, -50px));
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-left.revealed { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(clamp(40px, 6vw, 50px));
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale.revealed { opacity: 1; transform: scale(1); }


/* ================================================================
   ANIMACIONES GLOBALES
================================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(clamp(-14px, -2.5vw, -18px)); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(clamp(-8px, -1.5vw, -10px)) rotate(4deg); }
}

@keyframes float-fast {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(clamp(-6px, -1vw, -8px)); }
}

@keyframes shimmer-text {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.15); opacity: 0; }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.floating { animation: float 5.5s ease-in-out infinite; }
.floating-slow { animation: float-slow 8s ease-in-out infinite; }
.floating-fast { animation: float-fast 3.5s ease-in-out infinite; }
.spin-slow { animation: spin-slow 18s linear infinite; }

.text-shimmer {
  background: linear-gradient(90deg, var(--color-cherry) 0%, #ff6b9d 50%, var(--color-cherry-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 3.5s linear infinite;
}

.pulse-ring {
  position: absolute;
  inset: clamp(-10px, -2vw, -12px);
  border-radius: 50%;
  border: 2px solid var(--color-cherry);
  animation: pulse-ring 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}


/* ================================================================
   INTRO OVERLAY
================================================================ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-cherry-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 0.75vw, 6px);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

#intro-overlay.intro-exit { transform: translateY(-100%); }

.intro-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.intro-glow-1 {
  width: clamp(400px, 80vw, 500px);
  height: clamp(400px, 80vw, 500px);
  background: rgba(211, 26, 84, 0.35);
  top: -100px;
  right: -100px;
  animation: glow-pulse 3s ease-in-out infinite;
}

.intro-glow-2 {
  width: clamp(280px, 55vw, 350px);
  height: clamp(280px, 55vw, 350px);
  background: rgba(141, 7, 54, 0.2);
  bottom: -80px;
  left: -80px;
  animation: glow-pulse 3s ease-in-out 1.5s infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

.intro-brand {
  font-size: var(--text-intro-brand);
  color: var(--color-white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: intro-rise 0.36s var(--ease-out) 0s forwards;
}

.intro-scene {
  position: relative;
  width: clamp(120px, 22vw, 140px);
  height: clamp(110px, 20vw, 130px);
  margin: clamp(8px, 1.5vw, 12px) 0 clamp(2px, 0.5vw, 4px);
}

.intro-cake {
  font-size: var(--text-intro-emoji-lg);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: cake-appear 0.36s var(--ease-out) 0.36s forwards;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.intro-cherry {
  font-size: var(--text-intro-emoji-sm);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) translateY(-120px);
  opacity: 0;
  animation: cherry-fall 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) 0.72s forwards;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

.intro-subtitle {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  opacity: 0;
  animation: intro-rise 0.3s ease 1.24s forwards;
}

@keyframes intro-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes cake-appear {
  from { opacity: 0; transform: translateX(-50%) scale(0.6) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) scale(1) translateY(0); }
}

@keyframes cherry-fall {
  0% { opacity: 0; transform: translateX(-50%) translateY(-120px) rotate(-25deg); }
  40% { opacity: 1; }
  72% { transform: translateX(-50%) translateY(2px) rotate(4deg); }
  84% { transform: translateX(-50%) translateY(-22px) rotate(-4deg); }
  93% { transform: translateX(-50%) translateY(4px) rotate(2deg); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) rotate(0deg); }
}


/* ================================================================
   ANNOUNCEMENT BANNER
================================================================ */
.announcement-banner {
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  z-index: 990;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-cherry) 0%, var(--color-cherry-dark) 100%);
  color: var(--color-white);
  animation: banner-enter 0.5s var(--ease-out) 1.1s both;
}

.announcement-banner:empty { display: none; }

@keyframes banner-enter {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.announcement-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: banner-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes banner-shine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(280%); }
}

.announcement-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  padding: clamp(8px, 1.5vw, 10px) var(--space-lg);
  text-align: center;
}

.announcement-badge {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-2xs);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: rgba(255, 255, 255, 0.22);
  padding: clamp(2px, 0.5vw, 3px) clamp(8px, 1.5vw, 9px);
  border-radius: var(--radius-sm);
  animation: badge-pulse 1.6s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { background: rgba(255, 255, 255, 0.18); }
  50% { background: rgba(255, 255, 255, 0.38); }
}

.announcement-emoji { font-size: var(--text-base); }

.announcement-title {
  font-family: 'Hind', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
}

.announcement-desc {
  font-family: 'Catamaran', sans-serif;
  font-size: var(--text-sm);
  opacity: 0.88;
}

/* ── Cerrar banner (futuro): descomentar si se reactiva el botón ✕ ──
.announcement-close { ... }
.announcement-exit { ... }
*/


/* ================================================================
   ACCESIBILIDAD · REDUCED MOTION
================================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal-item,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .floating,
  .floating-slow,
  .floating-fast,
  .spin-slow,
  .text-shimmer,
  .mobile-menu,
  .mobile-menu__link,
  .mobile-menu__cta {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .mobile-menu.is-open {
    max-height: none;
    opacity: 1;
  }
}
