/* ═══════════════════════════════════════════════════════════════════
   Costa Burrito — Landing Page
   Archetype: Editorial Dark — paleta azul marino del logo
   ═══════════════════════════════════════════════════════════════════ */

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  /* Exactamente los azules del logo Costa Burrito */
  --bg:          #050a15;
  --bg-2:        #090f1e;
  --bg-3:        #0f1830;
  --navy:        #1a237e;
  --navy-light:  #1e2ea0;
  --blue:        #1a237e;
  --blue-hover:  #253494;
  --blue-light:  #3949ab;
  --blue-glow:   rgba(26, 35, 126, 0.45);
  /* Padding horizontal del hero — usado por la cinta para breakout */
  --hero-hpad:   1.5rem;
  --white:       #f0f4ff;
  --white-soft:  rgba(240, 244, 255, 0.72);
  --white-mute:  rgba(240, 244, 255, 0.38);
  --white-dim:   rgba(240, 244, 255, 0.15);
  --line:        rgba(240, 244, 255, 0.1);
  --tape-bg:     #1a237e;   /* exacto logo */
  --tape-text:   #f0f4ff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --radius:      12px;
  --radius-lg:   20px;
}

/* ── Selector de idioma ──────────────────────────────────────────── */
.lang-bar {
  position: fixed;
  top: 0.9rem;
  right: 1.25rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(10,18,40,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(240,244,255,0.5);
  cursor: pointer;
  padding: 0.12rem 0.06rem;
  transition: color 0.2s;
  line-height: 1;
}
.lang-btn.active { color: var(--white); }
.lang-btn:hover  { color: var(--white); }
.lang-sep { color: rgba(240,244,255,0.2); font-size: 0.55rem; line-height: 1; }

/* Botón expandir más idiomas */
.lang-more-btn {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(240,244,255,0.4);
  cursor: pointer;
  padding: 0.12rem 0.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s;
  line-height: 1;
  margin-left: 0.15rem;
}
.lang-more-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.3); }

/* Dropdown de idiomas adicionales */
.lang-dropdown {
  position: fixed;
  top: 3rem;
  right: 1.25rem;
  z-index: 101;
  background: rgba(10,18,40,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 12px;
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 120px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.lang-dropdown.is-open { display: flex; }

.lang-dropdown-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(240,244,255,0.6);
  cursor: pointer;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  text-align: left;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lang-dropdown-btn:hover  { background: rgba(26,35,126,0.5); color: var(--white); }
.lang-dropdown-btn.active { background: var(--navy); color: var(--white); font-weight: 600; }
.lang-flag { font-size: 1rem; line-height: 1; }

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
abbr { text-decoration: none; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Defensive rule — reveal[data-split] must never stay opacity:0 */
.reveal[data-split] { opacity: 1; transform: none; }

/* ── Reveal animations ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  max-height: 100vh;
  max-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem var(--hero-hpad) 4rem;
}

/* Background gradient — deep navy mesh */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(26,35,126,0.55) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(26,35,126,0.3) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(15,24,80,0.5) 0%, transparent 65%),
    var(--bg);
  animation: bgPulse 12s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.85; }
  100% { opacity: 1; }
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Brush strokes */
.brush {
  position: absolute;
  pointer-events: none;
}
.brush-tl { top: 4%; left: -2%; width: min(320px, 55vw); }
.brush-br { bottom: 10%; right: -2%; width: min(300px, 50vw); }
.brush-mid { top: 55%; left: 10%; width: min(400px, 70vw); opacity: 0.5; }

/* Deco dots (reference to pizza design dashes) */
.deco-dots {
  position: absolute;
  width: 60px;
  height: 60px;
  pointer-events: none;
  background-image: radial-gradient(circle, var(--white-dim) 1.5px, transparent 1.5px);
  background-size: 10px 10px;
}
.deco-dots-tr { top: 12%; right: 5%; }
.deco-dots-bl { bottom: 20%; left: 4%; }

/* Hero top — logo + kicker + título */
.hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.4rem, 1.2vh, 0.9rem);
  max-width: 920px;
  width: 100%;
  z-index: 4;
  padding-top: 1rem;
}

/* Hero bottom — fecha + countdown + CTA */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(0.6rem, 1.5vh, 1.1rem);
  max-width: 920px;
  width: 100%;
  z-index: 4;
  padding-bottom: 2rem;
}

/* Mantener compatibilidad: hero-inner ya no se usa pero por si acaso */
.hero-inner { display: none; }

/* Logo hero — protagonista, proporcional a viewport */
.hero-logo {
  width: min(220px, 28vh, 56vw);
  margin-bottom: 0.4rem;
}
.hero-logo .logo-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(26,35,126,0.8)) drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.hero-logo.logo-fallback .logo-img { display: none; }
.hero-logo.logo-fallback .logo-svg-fallback { display: flex !important; }
.logo-svg-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.logo-svg-fallback svg { width: 100%; height: auto; }

/* Kicker */
.hero-kicker {
  font-size: clamp(0.65rem, 2vw, 0.8rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-soft);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.kicker-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
}

/* Hero title */
.hero-title-wrap { line-height: 0.88; }
.hero-title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.88;
}
.title-line1 {
  /* Usa el menor entre vw y vh para respetar ambas dimensiones */
  font-size: clamp(3.5rem, min(15vw, 14vh), 10rem);
  color: var(--white);
  display: block;
  text-shadow: 0 0 80px rgba(26,35,126,0.5);
  letter-spacing: 0.04em;
}
.title-line2 {
  font-size: clamp(2.8rem, min(11vw, 10vh), 7.5rem);
  display: block;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
  letter-spacing: 0.02em;
  margin-top: -0.06em;
}

/* Tape band — ancho calculado por JS: width = clientWidth + 40px
   Con align-items:center y padding simétrico P:
     tape.left = P + (contentWidth - (vw+40)) / 2
               = P + (vw-2P - vw - 40) / 2
               = -20px  (siempre, sin importar P o vw)
   hero overflow:hidden recorta en 0 → tape span exacto 0 a vw ✓ */
.hero-tape {
  overflow: hidden;
  background: var(--navy);
  padding: 0.65rem 0;
  transform: rotate(-1.5deg);
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  flex-shrink: 0;
  z-index: 3;
  /* Width y margin gestionados por JS — fallback por si JS tarda */
  width: 100%;
}
.tape-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.tape-text {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 0.12em;
  color: var(--tape-text);
  white-space: nowrap;
  flex-shrink: 0;
}


/* Date */
.hero-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.date-main {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.date-sub {
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: var(--white-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.5rem);
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(0.6rem, 2vw, 1rem) clamp(0.8rem, 2.5vw, 1.5rem);
  min-width: clamp(64px, 18vw, 90px);
}
.cd-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, min(6vw, 5.5vh), 3rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.cd-label {
  font-size: clamp(0.55rem, 1.5vw, 0.65rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-mute);
  margin-top: 0.2rem;
}
.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  color: var(--blue-light);
  align-self: flex-start;
  padding-top: 0.15rem;
}

/* Hero CTA button */
/* ── Botón "¡Ya estamos aquí!" — reemplaza el countdown al expirar ── */
.btn-open-now {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(135deg, #1a237e 0%, #3949ab 100%);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  animation: bonPulse 2s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-open-now:hover { transform: translateY(-4px) scale(1.03); }
.btn-open-now[hidden] { display: none; }
.bon-emoji  { font-size: clamp(1.5rem, 4vw, 2.2rem); line-height: 1; }
.bon-title  { font-family: var(--font-display); font-size: clamp(1.8rem, 6vw, 3rem); letter-spacing: 0.1em; line-height: 1; }
.bon-sub    { font-size: clamp(0.7rem, 2vw, 0.85rem); letter-spacing: 0.12em; text-transform: uppercase; color: var(--white-soft); }
@keyframes bonPulse {
  0%,100% { box-shadow: 0 0 30px rgba(57,73,171,0.5), 0 0 60px rgba(26,35,126,0.3); }
  50%      { box-shadow: 0 0 50px rgba(57,73,171,0.9), 0 0 100px rgba(57,73,171,0.5); }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--white);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 40px var(--blue-glow), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: background 0.25s, box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  margin-top: 0.5rem;
}
.btn-hero:hover {
  background: var(--blue-hover);
  border-color: rgba(255,255,255,0.45);
  box-shadow: 0 0 60px rgba(26,35,126,0.7);
  transform: translateY(-2px);
}
.btn-hero:active { transform: translateY(0); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid var(--white-dim);
  border-radius: 20px;
  position: relative;
}
.scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white-soft);
  border-radius: 4px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  80%       { transform: translateX(-50%) translateY(14px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════════
   MARQUEE BAND — seamless infinite loop
   ══════════════════════════════════════════════════════════════════ */
.marquee-band {
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.12em;
  color: var(--white);
  flex-shrink: 0;
  white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════════════
   REGISTRO
   ══════════════════════════════════════════════════════════════════ */
.registro {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.registro::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse 50% 60% at 80% 50%, rgba(45,91,227,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.registro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

/* Copy column */
.reg-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1rem;
}

.reg-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.reg-title em {
  font-style: normal;
  font-family: var(--font-script);
  font-size: 1.1em;
  color: var(--blue-light);
  display: block;
  line-height: 1;
}

.reg-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--white-soft);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 2rem;
}

.reg-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: flex-start;  /* pegado a la izquierda siempre */
}
.perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--white-soft);
  text-align: left;
}
.perk-icon { font-size: 1rem; flex-shrink: 0; width: 1.5rem; text-align: center; }

/* Form column */
.reg-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.5rem);
}

.reg-form { display: flex; flex-direction: column; gap: 1.2rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-soft);
}
.opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.form-field input {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input::placeholder { color: var(--white-mute); }
.form-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-field input:user-invalid { border-color: #e05252; }

.field-err {
  font-size: 0.75rem;
  color: #e05252;
  min-height: 1em;
  display: block;
}

/* Casilla de consentimiento (RGPD) */
.form-consent { gap: 0.25rem; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--white-soft);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.consent-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  accent-color: var(--blue-light);
  cursor: pointer;
}
body.light-mode .consent-label { color: rgba(26,35,126,0.62); }

/* Submit button */
.btn-submit {
  position: relative;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 30px var(--blue-glow);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  overflow: hidden;
  width: 100%;
  margin-top: 0.3rem;
}
.btn-submit:hover:not(:disabled) {
  background: var(--blue-hover);
  box-shadow: 0 0 45px rgba(26,35,126,0.7);
  transform: translateY(-2px);
}
.btn-submit:active { transform: none; }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-ok {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #22543d;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-submit.is-success .btn-ok { opacity: 1; }

.form-legal {
  font-size: 0.7rem;
  color: var(--white-mute);
  text-align: center;
  line-height: 1.5;
}

/* Success state */
.reg-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
.reg-form[hidden],
.reg-success[hidden] { display: none !important; }
.success-check {
  width: 72px;
  height: 72px;
  background: #22543d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #68d391;
}
.reg-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.reg-success p {
  color: var(--white-soft);
  line-height: 1.7;
}
.success-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.success-socials a {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--white-soft);
  transition: border-color 0.2s, color 0.2s;
}
.success-socials a:hover { border-color: var(--blue); color: var(--white); }

/* ══════════════════════════════════════════════════════════════════
   INFO
   ══════════════════════════════════════════════════════════════════ */
.info {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}

/* Logo centrado en la sección info (fallback estático) */
.info-logo-wrap {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.info-logo {
  width: clamp(120px, 22vw, 200px);
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(26,35,126,0.6));
  opacity: 0.9;
}

/* ── Banner logo ───────────────────────────────────────────────── */
.logo-banner-section {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--bg);
  display: flex;
  justify-content: center;
}
.logo-banner-img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
}
.info-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white-soft);
}

.info-cards {
  max-width: 1100px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.info-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s, transform 0.25s;
}
.info-card:hover { border-color: var(--blue); transform: translateY(-4px); }

.info-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 0.5rem;
}

.info-card h3 {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-mute);
  font-weight: 600;
}
.info-card address {
  font-style: normal;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
}
.info-card p { color: var(--white-soft); font-size: 0.95rem; line-height: 1.5; }
.info-days { font-weight: 600; color: var(--white) !important; }
.info-hours-val {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--blue-light) !important;
  line-height: 1;
}
.info-note { font-size: 0.8rem !important; color: var(--white-mute) !important; }

.info-link {
  font-size: 0.85rem;
  color: var(--blue-light);
  font-weight: 500;
  transition: opacity 0.2s;
  margin-top: auto;
}
.info-link:hover { opacity: 0.8; }

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--white-soft);
  padding: 0.5rem 0.8rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s, color 0.2s;
  width: fit-content;
}
.social-pill:hover { border-color: var(--blue); color: var(--white); }

/* Map container */
.map-container {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  height: clamp(280px, 38vw, 420px);
  position: relative;
  isolation: isolate;   /* crea stacking context para mix-blend-mode */
}

/* Iframe: oscurecer manteniendo colores del mapa reconocibles */
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* Oscurecer + ligera desaturación — suficiente para integrar con la página */
  filter: brightness(0.6) saturate(0.75) contrast(0.95);
}

/* Overlay: tinte navy muy sutil sobre el mapa oscurecido
   opacity: 0.28 = suficiente color sin tapar el mapa */
.map-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 40, 0.28);
  pointer-events: none;
  z-index: 4;
  border-radius: var(--radius-lg);
}

/* Fallback del mapa cuando se rechazan las cookies de Google Maps */
.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-2);
}
.map-fallback p { color: var(--white-soft); font-size: 0.95rem; max-width: 32ch; margin: 0; }
.map-fallback a {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
}
.map-fallback button {
  background: transparent;
  color: var(--white-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.map-fallback button:hover { color: var(--white); border-color: var(--blue-light); }
body.light-mode .map-fallback { background: var(--bg-2); }

/* Enlaces legales del footer */
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.9rem;
}
.footer-legal a {
  color: var(--white-mute);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--white); }

/* Overlay moderno — se muestra primero, luego hace fade out */
.map-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.map-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Fondo degradado del overlay */
.map-overlay-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(10,16,40,0.88) 0%, rgba(6,11,24,0.96) 100%);
  backdrop-filter: blur(2px);
}

/* Líneas decorativas de fondo (simulan calles) */
.map-overlay-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.map-overlay-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,35,126,0.35), transparent);
}

/* Contenido del overlay */
.map-overlay-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  padding: 2rem;
}

.map-overlay-pin {
  width: 64px;
  height: 64px;
  background: var(--navy);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(26,35,126,0.8);
  animation: pinPulse 2s ease-in-out infinite;
}
@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(26,35,126,0.7); transform: scale(1); }
  50%       { box-shadow: 0 0 40px rgba(57,73,171,0.9); transform: scale(1.06); }
}

.map-overlay-content strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  letter-spacing: 0.05em;
  color: var(--white);
}
.map-overlay-content span {
  font-size: 0.9rem;
  color: var(--white-soft);
  letter-spacing: 0.05em;
}

/* Botón del overlay */
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.25rem;
}
.btn-map:hover { background: var(--blue-hover); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════════
   GORRA
   ══════════════════════════════════════════════════════════════════ */
.gorra {
  padding: calc(clamp(4rem, 8vw, 6rem) + 2.75rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 8vw, 6rem);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

/* Banda urgencia */
.gorra-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #f59e0b;
  color: #1a1100;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1rem;
  z-index: 2;
}
.gorra::before {
  content: '';
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(ellipse 55% 55% at 20% 60%, rgba(26,35,126,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.gorra-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.gorra-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.gorra-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}

.gorra-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.gorra-title em {
  font-style: normal;
  font-family: var(--font-script);
  color: var(--blue-light);
  display: block;
  font-size: 0.85em;
  line-height: 1.2;
}

/* Badge "STOCK LIMITADO" */
.gorra-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(239,68,68,0.12);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.28rem 0.9rem;
  margin-bottom: 0.9rem;
}
.gorra-badge::before {
  content: '●';
  animation: pulse-dot 1.6s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* CTA */
.gorra-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}
.gorra-cta-btn {
  display: inline-block;
  color: var(--blue-light);
  border: 1.5px solid rgba(57,73,171,0.5);
  border-radius: 999px;
  padding: 0.7rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.gorra-cta-btn:hover {
  background: var(--blue-light);
  color: #f0f4ff;
  border-color: var(--blue-light);
}

.gorra-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: var(--white-soft);
  letter-spacing: 0.05em;
}

/* ── Carrusel ──────────────────────────────────────────────────── */
.gorra-carousel {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gorra-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  /* Ocultar barra de scroll */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.gorra-track::-webkit-scrollbar { display: none; }

.gorra-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  aspect-ratio: 1 / 1;
}
.gorra-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Flechas */
.gorra-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(26,35,126,0.4);
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}
.gorra-arrow:hover { background: var(--blue-hover); transform: scale(1.08); }
.gorra-arrow:active { transform: scale(0.95); }
.gorra-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }

/* Puntitos indicadores */
.gorra-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.gorra-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--white-dim);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}
.gorra-dot.active {
  background: var(--blue-light);
  transform: scale(1.3);
}

/* Light mode */
body.light-mode .gorra-badge {
  background: rgba(220,38,38,0.08);
  color: #dc2626;
  border-color: rgba(220,38,38,0.25);
}
body.light-mode .gorra-cta-btn {
  color: var(--navy);
  border-color: rgba(26,35,126,0.3);
}
body.light-mode .gorra-cta-btn:hover {
  background: var(--navy);
  color: #f0f4ff;
  border-color: var(--navy);
}
body.light-mode .gorra-track {
  border-color: rgba(26,35,126,0.12);
  box-shadow: 0 4px 24px rgba(26,35,126,0.1);
}
body.light-mode .gorra-arrow {
  background: var(--navy);
  color: #f0f4ff;
  border-color: transparent;
}
body.light-mode .gorra-dot { background: rgba(26,35,126,0.2); }
body.light-mode .gorra-dot.active { background: var(--navy); }

/* ══════════════════════════════════════════════════════════════════
   CARTA / MENÚ
   ══════════════════════════════════════════════════════════════════ */
.menu {
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--bg);
  position: relative;
}
.menu-inner { max-width: 1100px; margin: 0 auto; }

.menu-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.menu-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}
.menu-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.menu-sub { font-size: clamp(0.85rem, 2vw, 1rem); color: var(--white-soft); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.menu-empty { text-align: center; color: var(--white-mute); padding: 2rem 0; }

/* Tarjeta de producto */
.menu-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.25s var(--ease-out), border-color 0.25s, box-shadow 0.25s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue-light);
  box-shadow: 0 16px 40px rgba(26,35,126,0.4);
}
.menu-card-media {
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
}
.menu-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); }
.menu-card:hover .menu-card-media img { transform: scale(1.06); }
.menu-card-noimg {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  color: var(--white); font-size: 2.5rem;
}
.menu-card-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.menu-card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
}
.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--blue-light);
  white-space: nowrap;
}
.menu-card-desc {
  font-size: 0.85rem;
  color: var(--white-soft);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-card-link {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--blue-light);
}

/* ── Modal de producto ── */
.product-modal, .discount-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.product-modal[hidden], .discount-modal[hidden] { display: none; }

.pm-backdrop, .dm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(0.96); } to { opacity: 1; transform: none; } }

.pm-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: popIn 0.35s var(--ease-out);
}
.pm-close, .dm-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5,10,21,0.65);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
}
.pm-close:hover, .dm-close:hover { background: var(--navy); transform: rotate(90deg); }
.pm-media { width: 100%; aspect-ratio: 16/10; background: #fff; overflow: hidden; }
.pm-media img { width: 100%; height: 100%; object-fit: cover; }
.pm-media.is-empty { display: none; }
.pm-body { padding: 1.6rem 1.8rem 2rem; }
.pm-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.05;
}
.pm-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue-light);
  margin-top: 0.3rem;
}
.pm-price:empty { display: none; }
.pm-desc {
  margin-top: 0.9rem;
  color: var(--white-soft);
  line-height: 1.7;
  white-space: pre-line;
}
.pm-desc:empty { display: none; }
.pm-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 30px var(--blue-glow);
  transition: background 0.2s, transform 0.2s;
}
.pm-cta:hover { background: var(--blue-hover); transform: translateY(-2px); }

/* ── Botón flotante de descuento ── */
.discount-fab {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.3rem;
  background: linear-gradient(135deg, var(--navy), var(--blue-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(26,35,126,0.28);
  animation: fabPulse 2.4s ease-in-out infinite;
  transition: transform 0.2s;
}
.discount-fab[hidden] { display: none; }
.discount-fab:hover { transform: translateY(-3px) scale(1.04); }
.df-emoji { font-size: 1.1rem; line-height: 1; }
@keyframes fabPulse {
  0%,100% { box-shadow: 0 4px 14px rgba(26,35,126,0.28); }
  50%     { box-shadow: 0 6px 20px rgba(26,35,126,0.42); }
}

/* ── Modal de descuento (ticket) ── */
.dm-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  animation: popIn 0.35s var(--ease-out);
}
.dm-ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 2.6rem 2rem;
  background: linear-gradient(160deg, #0f1830 0%, #1a237e 100%);
  border: 2px dashed rgba(255,255,255,0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
/* El ticket tiene fondo navy fijo en ambos temas → texto siempre claro */
.dm-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,244,255,0.85);
}
.dm-percent {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 6rem);
  line-height: 0.9;
  color: #f0f4ff;
  text-shadow: 0 0 40px rgba(57,73,171,0.8);
}
.dm-off {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #8d9bff;
}
.dm-name {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}
.dm-name:empty { display: none; }
.dm-note {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: rgba(240,244,255,0.78);
  line-height: 1.5;
  max-width: 28ch;
}

/* Light mode — carta y modales */
body.light-mode .menu-card {
  background: #fff;
  border-color: rgba(26,35,126,0.1);
  box-shadow: 0 2px 12px rgba(26,35,126,0.07);
}
body.light-mode .menu-card:hover { box-shadow: 0 14px 36px rgba(26,35,126,0.18); border-color: rgba(26,35,126,0.25); }
body.light-mode .pm-dialog { background: #fff; box-shadow: 0 30px 80px rgba(26,35,126,0.25); }
body.light-mode .pm-desc { color: var(--white-soft); }
body.light-mode .pm-cta { color: #f0f4ff; }
body.light-mode .dm-percent { color: #f0f4ff; }
body.light-mode .dm-name { color: #f0f4ff; }
body.light-mode .discount-fab { color: #f0f4ff; }

/* ══════════════════════════════════════════════════════════════════
   RESEÑAS GOOGLE
   ══════════════════════════════════════════════════════════════════ */
.review-section {
  padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 3rem);
  background: var(--bg);
}
.review-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.review-stars {
  color: #ffc328;
  font-size: clamp(1.4rem, 5vw, 2rem);
  letter-spacing: 0.15em;
  text-shadow: 0 2px 12px rgba(255,195,40,0.4);
}
.review-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.05;
}
.review-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--white-soft);
  max-width: 40ch;
}
.btn-review {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  background: #ffffff;
  color: #1f1f1f;
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  letter-spacing: 0.02em;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-review:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.45); }
.btn-review svg { flex-shrink: 0; }

body.light-mode .review-cta {
  background: #ffffff;
  border-color: rgba(26,35,126,0.1);
  box-shadow: 0 4px 24px rgba(26,35,126,0.08);
}
body.light-mode .btn-review { box-shadow: 0 4px 18px rgba(26,35,126,0.18); }

/* ══════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  width: clamp(80px, 20vw, 120px);
  height: auto;
  opacity: 0.85;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--white-soft);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--white-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--white-mute);
  line-height: 1.6;
}
.footer-copy a { color: var(--blue-light); transition: opacity 0.2s; }
.footer-copy a:hover { opacity: 0.8; }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — tablet  (≤ 900px)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .registro-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reg-copy { text-align: center; }
  .reg-perks { align-items: flex-start; margin-inline: auto; }
  .perk { text-align: left; }
  .reg-sub { margin-inline: auto; }
  .reg-title { font-size: clamp(3rem, 10vw, 5rem); }
  .info-cards { grid-template-columns: 1fr 1fr; }

  .hero-logo { width: min(190px, 44vw); }
  .hero-top  { gap: 0.6rem; }
  .hero-bottom { gap: 0.8rem; }
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE — mobile  (≤ 600px)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  /* Hero */
  :root { --hero-hpad: 1.2rem; }
  .hero { padding: 3.5rem var(--hero-hpad) 3rem; }
  .hero-top  { gap: 0.5rem; padding-top: 0.5rem; }
  .hero-bottom { gap: 0.7rem; padding-bottom: 1rem; }

  /* Logo */
  .hero-logo { width: min(180px, 58vw); }

  /* Título */
  .title-line1  { font-size: clamp(3.8rem, 21vw, 5.5rem); }
  .title-line2  { font-size: clamp(2.6rem, 14.5vw, 4rem); -webkit-text-stroke: 1.5px var(--white); }

  /* Cinta hero */
  .hero-tape {
    width: calc(100vw + 80px);
    margin-left: calc(-40px - (50vw - 50%));
    transform: rotate(-2deg);
  }
  .tape-text { font-size: 0.78rem; }

  /* Fecha */
  .date-main { font-size: 0.95rem; }
  .date-sub  { font-size: 0.72rem; }

  /* Countdown */
  .countdown { gap: 0.4rem; flex-wrap: nowrap; }
  .cd-unit   { min-width: 52px; padding: 0.45rem 0.5rem; border-radius: 8px; }
  .cd-num    { font-size: 1.7rem; }
  .cd-label  { font-size: 0.5rem; }
  .cd-sep    { font-size: 1.2rem; }

  /* Botón hero */
  .btn-hero  { font-size: 0.7rem; padding: 0.85rem 1.4rem; }

  /* Decoraciones — ocultar en móvil para limpiar */
  .brush-br  { display: none; }
  .deco-dots { display: none; }
  .brush-mid { display: none; }

  /* Registro */
  .registro  { padding: 3.5rem 1.2rem; }
  .reg-title { font-size: clamp(2.6rem, 13vw, 4rem); }
  .reg-copy  { text-align: center; }
  .reg-perks { align-items: center; }
  .reg-sub   { margin-inline: auto; }
  .reg-form-wrap { padding: 1.5rem 1.2rem; }

  /* Gorra */
  .gorra        { padding: 3rem 1.2rem; }
  .gorra-arrow  { width: 36px; height: 36px; }

  /* Carta */
  .menu        { padding: 3.5rem 1.2rem; }
  .menu-grid   { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .menu-card-name { font-size: 1.1rem; }
  .menu-card-price { font-size: 1.05rem; }
  .menu-card-desc { -webkit-line-clamp: 3; }
  .pm-body     { padding: 1.3rem 1.3rem 1.6rem; }
  .discount-fab { bottom: 0.9rem; right: 0.9rem; padding: 0.7rem 1.05rem; font-size: 0.78rem; }

  /* Info */
  .info       { padding: 3rem 1.2rem; }
  .info-cards { grid-template-columns: 1fr; gap: 1rem; }
  .map-card { height: 200px; }
  .map-content { padding: 1rem; gap: 0.5rem; }
  .map-pin-icon { width: 48px; height: 48px; }
  .map-text strong { font-size: 1rem; }
  .hero-tape { bottom: 18%; }

  /* Footer */
  .footer-nav { gap: 1.2rem; }
  .footer-logo { width: 80px; }

  /* Lang bar */
  .lang-bar { top: 0.5rem; right: 0.6rem; padding: 0.25rem 0.6rem; gap: 0.25rem; }
  .lang-btn  { font-size: 0.62rem; }
  .lang-more-btn { font-size: 0.58rem; }
  .lang-dropdown { top: 2.6rem; right: 0.6rem; }
  .lang-dropdown-btn { font-size: 0.72rem; padding: 0.4rem 0.65rem; }
}

/* ══════════════════════════════════════════════════════════════════
   Reduced motion — only truly intrusive effects
   ══════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .bgPulse { animation: none; }
  .scroll-hint span::after { animation: none; }
}

/* ══════════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ══════════════════════════════════════════════════════════════════ */
.theme-toggle {
  position: fixed;
  top: 0.9rem;
  left: 1.25rem;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(10,18,40,0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.theme-toggle:hover {
  border-color: rgba(255,255,255,0.28);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.theme-toggle-icon {
  font-size: 0.85rem;
  line-height: 1;
  display: block;
  transition: transform 0.4s var(--ease-out);
}
.theme-toggle:hover .theme-toggle-icon { transform: rotate(20deg); }
.theme-toggle-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(240,244,255,0.5);
  transition: color 0.3s;
  line-height: 1;
}
.theme-toggle:hover .theme-toggle-label { color: rgba(240,244,255,0.85); }

/* ══════════════════════════════════════════════════════════════════
   LIGHT MODE
   ══════════════════════════════════════════════════════════════════ */
body.light-mode {
  --bg:          #f6f8ff;
  --bg-2:        #eef0f9;
  --bg-3:        #ffffff;
  --blue-glow:   rgba(26,35,126,0.08);
  --white:       #1a237e;
  --white-soft:  rgba(26,35,126,0.68);
  --white-mute:  rgba(26,35,126,0.45);
  --white-dim:   rgba(26,35,126,0.2);
  --line:        rgba(26,35,126,0.12);
  --tape-text:   #f0f4ff;
}

/* Transición suave al cambiar de tema */
body {
  transition: background 0.4s ease, color 0.4s ease;
}

/* Navbar de idioma */
body.light-mode .theme-toggle {
  background: rgba(255,255,255,0.9);
  border-color: rgba(26,35,126,0.18);
  box-shadow: 0 2px 10px rgba(26,35,126,0.08);
}
body.light-mode .theme-toggle:hover {
  border-color: rgba(26,35,126,0.35);
  box-shadow: 0 3px 14px rgba(26,35,126,0.15);
}
body.light-mode .theme-toggle-label { color: rgba(26,35,126,0.5); }
body.light-mode .theme-toggle:hover .theme-toggle-label { color: var(--navy); }

body.light-mode .lang-bar {
  background: rgba(255,255,255,0.9);
  border-color: rgba(26,35,126,0.18);
  box-shadow: 0 2px 10px rgba(26,35,126,0.08);
}
body.light-mode .lang-btn        { color: rgba(26,35,126,0.45); }
body.light-mode .lang-btn.active,
body.light-mode .lang-btn:hover  { color: var(--navy); }
body.light-mode .lang-sep        { color: rgba(26,35,126,0.22); }
body.light-mode .lang-more-btn   { color: rgba(26,35,126,0.42); border-color: rgba(26,35,126,0.2); }
body.light-mode .lang-more-btn:hover { color: var(--navy); border-color: rgba(26,35,126,0.4); }

body.light-mode .lang-dropdown {
  background: rgba(255,255,255,0.97);
  border-color: rgba(26,35,126,0.16);
  box-shadow: 0 8px 28px rgba(26,35,126,0.12);
}
body.light-mode .lang-dropdown-btn       { color: rgba(26,35,126,0.62); }
body.light-mode .lang-dropdown-btn:hover { background: rgba(26,35,126,0.07); color: var(--navy); }
body.light-mode .lang-dropdown-btn.active { background: var(--navy); color: #f0f4ff; }

/* Hero */
body.light-mode .hero-bg-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(26,35,126,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(26,35,126,0.04) 0%, transparent 55%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(26,35,126,0.03) 0%, transparent 65%),
    var(--bg);
  animation: none;
}
body.light-mode .hero-grain { opacity: 0.02; }
body.light-mode .brush path { stroke: rgba(26,35,126,0.12); }
body.light-mode .hero-logo {
  filter: drop-shadow(0 6px 18px rgba(26,35,126,0.25)) drop-shadow(0 2px 6px rgba(26,35,126,0.15));
}

/* Btn hero */
body.light-mode .btn-hero {
  background: var(--navy);
  color: #f0f4ff;
  border-color: transparent;
}
body.light-mode .btn-hero:hover {
  box-shadow: 0 0 30px rgba(26,35,126,0.3);
}

/* Scroll hint */
body.light-mode .scroll-hint span { border-color: rgba(26,35,126,0.25); }
body.light-mode .scroll-hint span::after { background: rgba(26,35,126,0.45); }

/* Tira tape */
body.light-mode .hero-tape { filter: brightness(1.05); }

/* Countdown boxes */
body.light-mode .cd-unit {
  background: #ffffff;
  border-color: rgba(26,35,126,0.12);
  box-shadow: 0 2px 10px rgba(26,35,126,0.07);
}

/* Form */
body.light-mode .form-field input {
  background: #ffffff;
  border-color: rgba(26,35,126,0.18);
  color: var(--navy);
}
body.light-mode .form-field input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,35,126,0.1);
}
body.light-mode .form-field input::placeholder { color: rgba(26,35,126,0.35); }
body.light-mode .btn-submit:hover:not(:disabled) {
  box-shadow: 0 0 30px rgba(26,35,126,0.35);
}
body.light-mode .form-legal { color: rgba(26,35,126,0.4); }

/* Botón submit: fondo navy oscuro → texto siempre blanco */
body.light-mode .btn-submit,
body.light-mode .btn-submit .btn-label,
body.light-mode .btn-submit .btn-ok { color: #f0f4ff !important; }

/* Tira marquee-band: fondo navy → texto siempre blanco */
body.light-mode .marquee-item { color: #f0f4ff; }

/* Botón "open now": fondo navy → texto blanco */
body.light-mode .btn-open-now { color: #f0f4ff; }
body.light-mode .bon-sub { color: rgba(240,244,255,0.72); }

/* Info cards */
body.light-mode .info-card {
  background: #ffffff;
  border-color: rgba(26,35,126,0.1);
  box-shadow: 0 2px 12px rgba(26,35,126,0.07);
}
body.light-mode .info-card:hover {
  box-shadow: 0 6px 24px rgba(26,35,126,0.13);
  border-color: rgba(26,35,126,0.22);
}
/* Iconos: fondo blanco con borde navy fino — limpio sobre las tarjetas blancas */
body.light-mode .info-icon {
  background: #ffffff;
  border: 1.5px solid rgba(26,35,126,0.22);
  box-shadow: 0 1px 6px rgba(26,35,126,0.08);
}

/* Form wrap blanco con sombra suave */
body.light-mode .reg-form-wrap {
  background: #ffffff;
  border-color: rgba(26,35,126,0.1);
  box-shadow: 0 4px 24px rgba(26,35,126,0.08);
}

/* Mapa en modo día: sin filtro ni overlay oscuro */
body.light-mode .map-container iframe {
  filter: none;
}
body.light-mode .map-container::after {
  background: transparent;
}
body.light-mode .social-pill {
  background: #ffffff;
  border-color: rgba(26,35,126,0.14);
}
body.light-mode .social-pill:hover { border-color: var(--navy); }

/* Map overlay */
body.light-mode .map-overlay-bg {
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(230,235,255,0.92) 0%, rgba(215,222,255,0.97) 100%);
}
body.light-mode .map-overlay-bg::before {
  background-image:
    linear-gradient(rgba(26,35,126,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,35,126,0.04) 1px, transparent 1px);
}
body.light-mode .map-overlay-bg::after {
  background: linear-gradient(to top, rgba(26,35,126,0.1), transparent);
}
body.light-mode .map-overlay-content strong { color: var(--navy); }
body.light-mode .map-overlay-content span   { color: var(--white-soft); }
body.light-mode .map-overlay-pin { background: var(--navy); }
body.light-mode .btn-map {
  background: var(--navy);
  color: #f0f4ff;
  border-color: transparent;
}

/* Success state */
body.light-mode .reg-success h3 { color: var(--navy); }
body.light-mode .success-socials a { border-color: rgba(26,35,126,0.2); }
body.light-mode .success-socials a:hover { border-color: var(--navy); color: var(--navy); }
