/* ─── VARIABLES ────────────────────────────────────────────── */
:root {
  --purple-deep:  #1a0033;
  --purple-dark:  #2d0057;
  --purple-mid:   #6b00cc;
  --purple-light: #a855f7;
  --pink:         #ec4899;
  --pink-bright:  #ff2d9e;
  --rose:         #f43f5e;
  --orange:       #f97316;
  --gold:         #fbbf24;
  --blue:         #3b82f6;
  --blue-neon:    #00d4ff;
  --teal:         #14b8a6;
  --white:        #ffffff;
  --off-white:    #f5f0ff;
  --text-muted:   #c4b5fd;

  --font-display: 'Bebas Neue', sans-serif;
  --font-accent:  'Abril Fatface', serif;
  --font-body:    'Nunito', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-glow-pink:   0 0 30px rgba(236,72,153,0.5), 0 0 60px rgba(236,72,153,0.2);
  --shadow-glow-purple: 0 0 30px rgba(168,85,247,0.5), 0 0 60px rgba(168,85,247,0.2);
  --shadow-glow-gold:   0 0 20px rgba(251,191,36,0.4);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--purple-deep);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--purple-dark); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--pink), var(--purple-mid));
  border-radius: 3px;
}

/* ─── PARTICLES BG ──────────────────────────────────────────── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
#particles::before,
#particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: floatBlob 12s ease-in-out infinite alternate;
}
#particles::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--purple-mid), transparent);
  top: -200px; left: -100px;
}
#particles::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--pink), transparent);
  bottom: -150px; right: -100px;
  animation-delay: -6s;
}
@keyframes floatBlob {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(60px, 40px) scale(1.15); }
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ─── AUDIO PLAYER ──────────────────────────────────────────── */
#audio-player {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(45,0,87,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(236,72,153,0.4);
  border-radius: var(--radius-xl);
  padding: 10px 18px 10px 10px;
  box-shadow: var(--shadow-glow-pink);
}
#audio-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple-mid));
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
#audio-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-glow-pink); }
#audio-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ─── NAV ────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(26,0,51,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236,72,153,0.25);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(236,72,153,0.6));
  transition: var(--transition);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--off-white);
  transition: var(--transition);
  position: relative;
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--purple-light));
  border-radius: 1px;
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--pink); }
.nav-links li a:hover::after { left: 14px; right: 14px; }
.lang-toggle {
  background: linear-gradient(135deg, var(--pink), var(--purple-mid));
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: var(--shadow-glow-pink);
}
.lang-toggle:hover { transform: scale(1.05); filter: brightness(1.15); }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.burger span {
  display: block;
  width: 26px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(236,72,153,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-glow-pink);
  filter: brightness(1.1);
}
.glow-btn {
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(236,72,153,0.35); }
  50%       { box-shadow: 0 4px 40px rgba(236,72,153,0.7), 0 0 60px rgba(236,72,153,0.3); }
}
.btn-outline {
  background: transparent;
  border-color: var(--pink);
  color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-pink);
}

/* ─── SECTION SHARED ─────────────────────────────────────────── */
section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(168,85,247,0.2));
  border: 1px solid rgba(236,72,153,0.4);
  color: var(--pink);
  padding: 6px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--white) 0%, var(--pink) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 1rem;
}
.skull-divider {
  font-size: 1.4rem;
  margin-top: 16px;
  letter-spacing: 0.5em;
  opacity: 0.7;
  animation: floatEmoji 3s ease-in-out infinite alternate;
}
@keyframes floatEmoji {
  from { transform: translateY(0); }
  to   { transform: translateY(-6px); }
}

/* ─── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
    url("assets/img/fondochinampa.png"),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107,0,204,0.6) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(236,72,153,0.4) 0%, transparent 60%),
    linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-deep) 100%);
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(59,130,246,0.12) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(251,191,36,0.1) 0%, transparent 35%);
  pointer-events: none;
}
/* Decorative marigold lines */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(251,191,36,0.03) 40px,
      rgba(251,191,36,0.03) 41px
    );
  pointer-events: none;
}
.hero-content {
  text-align: center;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 2;
}
.hero-logo-wrap {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
}
.hero-logo {
  width: min(280px, 60vw);
  filter: drop-shadow(0 0 30px rgba(236,72,153,0.7)) drop-shadow(0 0 60px rgba(168,85,247,0.4));
  animation: heroPulse 4s ease-in-out infinite alternate;
}
@keyframes heroPulse {
  from { filter: drop-shadow(0 0 30px rgba(236,72,153,0.7)) drop-shadow(0 0 60px rgba(168,85,247,0.4)); }
  to   { filter: drop-shadow(0 0 50px rgba(236,72,153,0.9)) drop-shadow(0 0 100px rgba(168,85,247,0.5)); }
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-decoration {
  margin-top: 48px;
  font-size: 2rem;
  display: flex;
  gap: 24px;
  justify-content: center;
  animation: floatEmoji 3s ease-in-out infinite alternate;
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-banner {
  background: linear-gradient(135deg, var(--pink), var(--orange), var(--purple-mid));
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  padding-right: 0;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about {
  background:
    radial-gradient(ellipse 70% 60% at 10% 50%, rgba(59,130,246,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--purple-deep) 0%, rgba(45,0,87,0.5) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(236,72,153,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--shadow-glow-purple);
  transition: var(--transition);
}
.about-img:hover {
  transform: scale(1.02);
  border-color: rgba(236,72,153,0.7);
}
.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--pink), var(--purple-mid));
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: var(--shadow-glow-pink);
}
.about-img-badge span { font-size: 1.8rem; display: block; margin-bottom: 4px; }
.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  padding: 24px;
  background: rgba(107,0,204,0.2);
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius-md);
}
.stat { text-align: center; flex: 1; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider { font-size: 1.5rem; opacity: 0.6; }

/* ─── GALLERY / CAROUSEL ─────────────────────────────────────── */
#gallery {
  background:
    radial-gradient(ellipse 70% 50% at 90% 50%, rgba(236,72,153,0.1) 0%, transparent 60%),
    linear-gradient(180deg, rgba(45,0,87,0.5) 0%, var(--purple-deep) 100%);
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(236,72,153,0.2);
}
.carousel { overflow: hidden; position: relative; }
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
  transition: var(--transition);
}
.carousel-slide img:hover { filter: brightness(1.08); }
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 24px 20px;
  background: linear-gradient(to top, rgba(26,0,51,0.9), transparent);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(45,0,87,0.85);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(236,72,153,0.5);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  z-index: 10;
  box-shadow: var(--shadow-glow-pink);
}
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-btn:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-50%) scale(1.1);
}
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  width: 24px;
  border-radius: 4px;
}

/* ─── LIGHTBOX ───────────────────────────────────────────────── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
#lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 2px solid rgba(236,72,153,0.5);
  box-shadow: var(--shadow-glow-pink);
  object-fit: contain;
}
#lightbox-caption {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(236,72,153,0.2);
  border: 1px solid var(--pink);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--pink); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(45,0,87,0.85);
  border: 2px solid rgba(236,72,153,0.5);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-prev { left: -56px; }
.lightbox-next { right: -56px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--pink); border-color: var(--pink); }

/* ─── LOCATIONS ──────────────────────────────────────────────── */
#locations {
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(107,0,204,0.2) 0%, transparent 60%),
    linear-gradient(180deg, var(--purple-deep) 0%, rgba(45,0,87,0.6) 100%);
}
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.location-card {
  background: linear-gradient(135deg, rgba(45,0,87,0.8), rgba(26,0,51,0.9));
  border: 1px solid rgba(168,85,247,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.location-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,72,153,0.05), transparent);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}
.location-card:hover {
  border-color: rgba(236,72,153,0.6);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow-purple);
}
.location-card:hover::before { opacity: 1; }
.location-card-header {
  padding: 28px 28px 20px;
  background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(107,0,204,0.25));
  border-bottom: 1px solid rgba(168,85,247,0.2);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.location-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}
.location-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.location-card-header h3 span {
  color: var(--pink);
}
.location-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.location-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
}
.location-info i {
  color: var(--pink);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.location-info a { color: var(--text-muted); transition: var(--transition); }
.location-info a:hover { color: var(--pink); }
.location-hours {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.location-hours i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.location-hours p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.location-hours strong { color: var(--white); }
.location-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
}
.social-btn.fb { background: rgba(59,89,152,0.25); }
.social-btn.ig { background: rgba(225,48,108,0.2); }
.social-btn.gg { background: rgba(234,67,53,0.2); }
.social-btn:hover { transform: scale(1.15); box-shadow: var(--shadow-glow-pink); }
.social-btn.fb:hover { background: #3b5998; }
.social-btn.ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.gg:hover { background: #ea4335; }
.social-btn.disabled { opacity: 0.3; pointer-events: none; }
.map-btn { font-size: 0.85rem; padding: 10px 20px; }

/* ─── ORDER ──────────────────────────────────────────────────── */
#order {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(236,72,153,0.12) 0%, transparent 65%),
    linear-gradient(180deg, rgba(45,0,87,0.6) 0%, var(--purple-deep) 100%);
}
.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.order-card {
  background: linear-gradient(135deg, rgba(45,0,87,0.85), rgba(26,0,51,0.9));
  border: 1px solid rgba(236,72,153,0.3);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.order-card:hover {
  border-color: rgba(236,72,153,0.7);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-glow-pink);
}
.order-card-label h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  margin: 8px 0 4px;
}
.order-card-label p { color: var(--text-muted); font-size: 0.9rem; }
.order-widget-wrap { min-height: 60px; }
.fallback-order { width: 100%; justify-content: center; }

/* ─── VIDEOS ─────────────────────────────────────────────────── */
#videos {
  background: linear-gradient(180deg, var(--purple-deep) 0%, rgba(45,0,87,0.4) 100%);
}
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.video-card {
  background: rgba(45,0,87,0.6);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover {
  border-color: rgba(236,72,153,0.5);
  transform: translateY(-4px);
}
.video-placeholder {
  padding: 60px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.video-placeholder i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.video-placeholder p { color: var(--text-muted); }

/* ─── CONTACT ────────────────────────────────────────────────── */
#contact {
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(107,0,204,0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(45,0,87,0.4) 0%, var(--purple-deep) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  background: linear-gradient(135deg, rgba(45,0,87,0.8), rgba(26,0,51,0.9));
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover {
  border-color: rgba(236,72,153,0.6);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-purple);
}
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow-pink);
}
.contact-card h4 {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.contact-card a {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-card a:hover { color: var(--pink); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: linear-gradient(180deg, rgba(26,0,51,0.95), #0d0019);
  border-top: 1px solid rgba(168,85,247,0.25);
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}
.footer-logo img {
  height: 150px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 0 16px rgba(236,72,153,0.5));
}
.footer-logo p { color: var(--text-muted); font-size: 0.9rem; }
.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  border: 1px solid transparent;
}
.footer-links a:hover {
  color: var(--pink);
  border-color: rgba(236,72,153,0.4);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(107,0,204,0.25);
  border: 1px solid rgba(168,85,247,0.3);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-pink);
}
.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-copy p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.powered-by {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}
.menutech-link {
  display: flex;
  align-items: center;
}
.menutech-logo {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(168,85,247,0.4);
  filter: drop-shadow(0 0 6px rgba(168,85,247,0.3));
  transition: var(--transition);
}
.menutech-logo:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-purple);
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { bottom: 16px; right: 16px; }
  .locations-grid,
  .order-grid,
  .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  /* Nav mobile */
  .burger { display: flex; z-index: 1001; position: relative; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: rgba(26,0,51,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(236,72,153,0.3);
    flex-direction: column;
    justify-content: center;
    padding: 80px 32px;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { font-size: 1.2rem; padding: 12px 0; display: block; }
  .lang-toggle { width: 100%; }

  /* Carousel */
  .carousel-slide img { height: 300px; }
  .carousel-btn { width: 40px; height: 40px; font-size: 0.9rem; }
  .lightbox-prev { left: -8px; }
  .lightbox-next { right: -8px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr 1fr; }

  /* Audio */
  #audio-player { bottom: 16px; right: 16px; }
  #audio-label { display: none; }
}

@media (max-width: 480px) {
  .section-header h2 { font-size: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .about-stats { flex-direction: column; gap: 16px; }
  .stat-divider { transform: rotate(90deg); }
  .footer-links { gap: 4px; }
  .order-card { padding: 20px; }
}

/* ─── UTILITY ────────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── ANIMACIONES DÍA DE MUERTOS ─────────────────────────────── */

/* Pétalos de Cempasúchil */
.petals-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.petal {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--orange);
  border-radius: 50% 0 50% 0;
  opacity: 0.8;
  box-shadow: 0 0 10px var(--orange);
  animation: fall 10s linear infinite;
  top: -20px;
}

.petal:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
.petal:nth-child(2) { left: 15%; animation-duration: 15s; animation-delay: 2s; }
.petal:nth-child(3) { left: 25%; animation-duration: 11s; animation-delay: 4s; }
.petal:nth-child(4) { left: 35%; animation-duration: 14s; animation-delay: 1s; }
.petal:nth-child(5) { left: 45%; animation-duration: 13s; animation-delay: 5s; }
.petal:nth-child(6) { left: 55%; animation-duration: 16s; animation-delay: 3s; }
.petal:nth-child(7) { left: 65%; animation-duration: 12s; animation-delay: 6s; }
.petal:nth-child(8) { left: 75%; animation-duration: 14s; animation-delay: 2s; }
.petal:nth-child(9) { left: 85%; animation-duration: 11s; animation-delay: 1s; }
.petal:nth-child(10) { left: 95%; animation-duration: 15s; animation-delay: 4s; }
.petal:nth-child(11) { left: 50%; animation-duration: 13s; animation-delay: 0s; }
.petal:nth-child(12) { left: 20%; animation-duration: 14s; animation-delay: 7s; }

@keyframes fall {
  0% { transform: translateY(-20px) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(105vh) rotate(360deg) translateX(50px); opacity: 0; }
}

/* Velitas */
.velitas-group {
  position: absolute;
  bottom: 20px;
  display: flex;
  align-items: flex-end;
  gap: 15px;
  z-index: 3;
}

.velitas-group.left { left: 5vw; }
.velitas-group.right { right: 5vw; flex-direction: row-reverse; }

.vela {
  background: linear-gradient(to bottom, #fff, #ddd);
  border-radius: 4px;
  position: relative;
  box-shadow: inset -2px -2px 5px rgba(0,0,0,0.2), 0 5px 10px rgba(0,0,0,0.5);
}

.vela::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4px;
  background: #222;
}

.v1 { width: 25px; height: 70px; }
.v2 { width: 30px; height: 90px; }
.v3 { width: 20px; height: 50px; }

.flama {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 22px;
  background: radial-gradient(ellipse at bottom, var(--white) 10%, var(--gold) 40%, var(--orange) 80%, transparent);
  border-radius: 50% 50% 20% 20%;
  box-shadow: 0 -5px 15px var(--gold), 0 -10px 30px var(--orange);
  animation: flicker 0.15s infinite alternate ease-in-out;
  transform-origin: bottom center;
}

@keyframes flicker {
  0% { transform: translateX(-50%) scale(0.95) skewX(-2deg); opacity: 0.9; }
  100% { transform: translateX(-50%) scale(1.05) skewX(2deg); opacity: 1; }
}