/* ==========================================================================
   BAR LUA - LUXURY FEMININE & NEON FUTURISTIC THEME
   Paleta: Oro Champán, Fucsia Neón, Púrpura/Violeta Eléctrico, Negro Obsidiana
   ========================================================================== */

:root {
  /* Tonos Base */
  --bg-main: #06020c;
  --bg-card: rgba(18, 7, 30, 0.72);
  --bg-card-hover: rgba(28, 12, 48, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  
  /* Neón Fucsia & Magenta */
  --neon-pink: #ff007f;
  --neon-pink-glow: rgba(255, 0, 127, 0.45);
  --neon-magenta: #ff2a85;
  --neon-magenta-glow: rgba(255, 42, 133, 0.35);

  /* Neón Púrpura & Violeta */
  --neon-purple: #9d4edd;
  --neon-purple-glow: rgba(157, 78, 221, 0.4);
  --neon-violet: #7928ca;

  /* Oro Champán & Oro Real */
  --gold-primary: #e6ca65;
  --gold-light: #fff3c4;
  --gold-dark: #b89128;
  --gold-gradient: linear-gradient(135deg, #fff7d6 0%, #e6ca65 40%, #b89128 100%);
  --gold-glow: rgba(230, 202, 101, 0.35);

  /* Tipografías */
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Great Vibes', cursive;

  /* Transiciones & Sombras */
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-neon-pink: 0 0 20px rgba(255, 0, 127, 0.35), 0 0 40px rgba(255, 0, 127, 0.15);
  --shadow-neon-purple: 0 0 20px rgba(157, 78, 221, 0.35), 0 0 40px rgba(157, 78, 221, 0.15);
  --shadow-gold: 0 0 15px rgba(230, 202, 101, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: #f1e9f7;
}

body {
  font-family: var(--font-sans);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  line-height: 1.6;
}

/* Canvas de partículas de fondo */
#luxury-particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  /* Por encima de los fondos, pero por debajo del contenido legible. */
  z-index: 1;
  pointer-events: none;
}

/* Luces ambientales de fondo (Ambient Glow Orbs) */
.ambient-glow-pink {
  position: fixed;
  top: 15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

.ambient-glow-purple {
  position: fixed;
  bottom: 10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
  animation: pulseGlow 10s infinite alternate-reverse ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9) translate(0, 0); opacity: 0.7; }
  100% { transform: scale(1.15) translate(30px, -20px); opacity: 1; }
}

/* Contenedor principal sobre las partículas */
.app-wrapper {
  position: relative;
  z-index: auto;
}

/* Tipografía de Lujo */
h1, h2, h3, h4, .luxury-title {
  font-family: var(--font-serif);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 8px rgba(230, 202, 101, 0.25));
}

.neon-pink-text {
  color: #ff3399;
  text-shadow: 0 0 10px rgba(255, 0, 127, 0.8), 0 0 25px rgba(255, 0, 127, 0.4);
}

.neon-purple-text {
  color: #c084fc;
  text-shadow: 0 0 10px rgba(157, 78, 221, 0.8), 0 0 25px rgba(157, 78, 221, 0.4);
}

/* ==========================================================================
   HEADER Y NAVEGACIÓN
   ========================================================================== */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8, 3, 14, 0.82);
  border-bottom: 1px solid rgba(255, 0, 127, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(230, 202, 101, 0.15);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Brand con Trigger Secreto al Admin */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.brand-crest {
  width: 48px;
  height: 48px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 0 8px rgba(230, 202, 101, 0.4));
}

.brand-logo-wrap:hover .brand-crest {
  transform: rotate(5deg) scale(1.08);
  filter: drop-shadow(0 0 15px rgba(255, 0, 127, 0.6));
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(230, 202, 101, 0.45));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.brand-logo-wrap:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(230, 202, 101, 0.75)) drop-shadow(0 0 25px rgba(255, 0, 127, 0.5));
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--neon-pink);
  text-transform: uppercase;
}

/* Menú de Navegación */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #e5d4f3;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--gold-primary));
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--neon-pink);
}

.nav-link:hover, .nav-link.active {
  color: #fff;
  text-shadow: 0 0 10px var(--neon-pink-glow);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Botones Luxury */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-luxury-gold {
  background: var(--gold-gradient);
  color: #120502;
  border: 1px solid rgba(255, 245, 200, 0.6);
  box-shadow: 0 4px 15px rgba(230, 202, 101, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-luxury-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 202, 101, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.btn-luxury-neon {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.25) 0%, rgba(121, 40, 202, 0.35) 100%);
  color: #fff;
  border: 1px solid var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink-glow), inset 0 0 10px rgba(255, 0, 127, 0.2);
  backdrop-filter: blur(10px);
}

.btn-luxury-neon:hover {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.45) 0%, rgba(121, 40, 202, 0.55) 100%);
  box-shadow: 0 0 25px rgba(255, 0, 127, 0.65), inset 0 0 15px rgba(255, 0, 127, 0.4);
  transform: translateY(-2px);
  border-color: #ff66b2;
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 0, 127, 0.3);
  color: var(--gold-primary);
  font-size: 1.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 1.5rem 4rem;
  overflow: hidden;
  isolation: isolate;
  background: #120714;
}

/* La imagen está en una capa propia para poder desplazarla suavemente sin
   mover ni el texto ni el velo de contraste. */
.hero-background-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../images/background-hero.jpeg');
  background-size: cover;
  /* Priorizamos la parte superior de la foto para conservar el rostro completo. */
  /* El desplazamiento no escala la foto: conserva el encuadre original. */
  background-position: center calc(0% + var(--hero-parallax-y, 0px));
  background-repeat: no-repeat;
  will-change: background-position;
}

/* Velo de contraste: deja ver la imagen sin competir con los textos. */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
  height: 650px;
  border-radius: 50%;
  border: 1px dashed rgba(230, 202, 101, 0.2);
  box-shadow: 0 0 60px rgba(255, 0, 127, 0.15), inset 0 0 60px rgba(121, 40, 202, 0.15);
  animation: rotateRing 45s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes rotateRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 0, 127, 0.12);
  border: 1px solid rgba(255, 0, 127, 0.35);
  color: #ff99cc;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.2);
}

.hero-crest-wrap {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.5rem;
  position: relative;
  animation: floatCrest 6s ease-in-out infinite;
}

@keyframes floatCrest {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-crest-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 25px rgba(230, 202, 101, 0.45)) drop-shadow(0 0 15px rgba(255, 0, 127, 0.5));
}

.hero-main-logo-wrap {
  width: min(340px, 82vw);
  margin: 0 auto 1.5rem;
  position: relative;
  animation: floatMainLogo 6s ease-in-out infinite;
}

@keyframes floatMainLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-main-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 35px rgba(230, 202, 101, 0.55)) drop-shadow(0 0 20px rgba(255, 0, 127, 0.35));
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}

.hero-slogan {
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #ff55a3;
  text-shadow: 0 0 12px rgba(255, 0, 127, 0.7);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.05rem;
  color: #cdb9df;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-actions .btn-luxury {
  min-width: 168px;
  padding: 0.82rem 1.65rem;
  font-size: 0.8rem;
}

/* Banderas Culturales */
.hero-flags-bar {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(230, 202, 101, 0.2);
  border-radius: 9999px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.flag-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.flag-item {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  cursor: default;
}

.flag-item:hover {
  transform: scale(1.3) translateY(-2px);
}

/* ==========================================================================
   PROMOS DE LA SEMANA - BANNER VIP
   ========================================================================== */
.promos-banner-section {
  padding: 4.25rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}

.promos-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.promo-card-vip {
  background: linear-gradient(135deg, rgba(30, 10, 48, 0.85) 0%, rgba(14, 5, 25, 0.9) 100%);
  border: 1px solid rgba(255, 0, 127, 0.35);
  border-radius: 18px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 15px rgba(255, 0, 127, 0.1);
  transition: var(--transition-smooth);
}

.promo-card-vip::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(230, 202, 101, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.promo-card-vip:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 40px rgba(255, 0, 127, 0.25), inset 0 0 25px rgba(230, 202, 101, 0.15);
}

.promo-day-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(230, 202, 101, 0.12);
  border: 1px solid rgba(230, 202, 101, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.promo-title {
  font-size: 1.3rem;
  font-family: var(--font-serif);
  color: #fff;
  margin-bottom: 0.5rem;
}

.promo-desc {
  font-size: 0.88rem;
  color: #c9b4dc;
  line-height: 1.5;
}

/* ==========================================================================
   SECCIONES GENERALES
   ========================================================================== */
.section-wrapper {
  padding: 6rem 1.5rem;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 0.95rem;
  color: #bfa7d5;
}

/* ==========================================================================
   CARTA DIGITAL INTERACTIVA
   ========================================================================== */
.menu-controls {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

/* Buscador en vivo */
.menu-search-wrap {
  width: 100%;
  max-width: 480px;
  position: relative;
}

.menu-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 3rem;
  border-radius: 9999px;
  background: rgba(22, 9, 36, 0.8);
  border: 1px solid rgba(255, 0, 127, 0.35);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.menu-search-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(230, 202, 101, 0.3);
}

.menu-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--neon-pink);
  font-size: 1.1rem;
}

/* Pestañas de categorías */
.category-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cat-tab-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d1bddf;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.cat-tab-btn:hover {
  background: rgba(255, 0, 127, 0.15);
  border-color: var(--neon-pink);
  color: #fff;
  transform: translateY(-1px);
}

.cat-tab-btn.active {
  background: linear-gradient(135deg, rgba(255, 0, 127, 0.8) 0%, rgba(121, 40, 202, 0.85) 100%);
  border-color: #ff66b2;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
}

/* Grid de la Carta */
/* ==========================================================================
   CARTA - DISEÑO COMPACTO Y ELEGANTE ESTILO LOUNGE
   ========================================================================== */
.menu-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 0.75rem 1.25rem;
}

/* Ítem compacto y estilizado */
.menu-item-row {
  background: rgba(18, 7, 30, 0.6);
  border: 1px solid rgba(255, 0, 127, 0.16);
  border-radius: 12px;
  padding: 0;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  min-height: 100px;
  overflow: hidden;
  transition: var(--transition-smooth);
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: inherit;
  text-decoration: none;
}

.menu-item-photo-wrap {
  width: 84px;
  height: 84px;
  min-height: 0;
  align-self: start;
  margin: .48rem 0 .48rem .48rem;
  overflow: hidden;
  border: 1px solid rgba(230, 202, 101, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #27123b, #0d0617);
}

.menu-item-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.menu-item-row:hover .menu-item-photo { transform: scale(1.08); }
.menu-item-photo-wrap.image-error::after { content: '🍸'; display: grid; place-items: center; height: 100%; font-size: 1.7rem; }
.menu-item-photo-wrap.image-error .menu-item-photo { display: none; }

.menu-item-content {
  min-width: 0;
  padding: .62rem .8rem .6rem .72rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
}

.menu-item-row:hover {
  background: rgba(28, 11, 46, 0.88);
  border-color: rgba(230, 202, 101, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 0, 127, 0.12);
}

.menu-item-row { cursor: pointer; }
.menu-item-row:focus-visible { outline: 2px solid var(--gold-primary); outline-offset: 3px; }

.menu-item-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: .7rem;
}

.menu-item-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-serif);
  font-size: .87rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.menu-item-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .16rem;
  min-width: 64px;
}

.menu-item-price {
  font-size: 1rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: .72rem;
  color: #c0acd3;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 520px) {
  .menu-item-row { grid-template-columns: 82px minmax(0, 1fr); min-height: 80px; }
  .menu-item-photo-wrap { width: 68px; height: 68px; min-height: 0; margin: .42rem 0 .42rem .42rem; }
  .menu-item-content { padding: .62rem .7rem; gap: .28rem; }
  .menu-item-name { font-size: .9rem; }
  .menu-item-price { font-size: 1rem; }
  .menu-item-desc { font-size: .73rem; }
}

.btn-item-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-item-wa:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* ==========================================================================
   EVENTOS & GALERÍA
   ========================================================================== */
.events-carousel-wrap {
  max-width: 1250px;
  margin: 0 auto 4rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.event-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(230, 202, 101, 0.25);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-pink);
  box-shadow: 0 20px 45px rgba(255, 0, 127, 0.25);
}

.event-img-wrap {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-img {
  transform: scale(1.08);
}

.event-date-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 3, 18, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.event-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-type-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neon-pink);
  margin-bottom: 0.4rem;
}

.event-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.event-desc {
  font-size: 0.88rem;
  color: #bfa8d5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1rem;
}

.event-time {
  font-size: 0.82rem;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Galería de Fotos */
.gallery-grid {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  border: 1px solid rgba(255, 0, 127, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.03);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 35px rgba(255, 0, 127, 0.35);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(8, 2, 14, 0.95) 0%, rgba(8, 2, 14, 0.6) 60%, transparent 100%);
  transform: translateY(20%);
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.gallery-desc {
  font-size: 0.78rem;
  color: #cdb9df;
}

/* ==========================================================================
   SISTEMA DE RESERVAS
   ========================================================================== */
.reservation-section {
  background: radial-gradient(circle at center, rgba(35, 12, 55, 0.45) 0%, rgba(6, 2, 12, 0.8) 70%);
}

.reservation-box {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(18, 7, 30, 0.85);
  border: 1px solid rgba(230, 202, 101, 0.35);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 35px rgba(255, 0, 127, 0.15);
  backdrop-filter: blur(16px);
  position: relative;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-primary);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  background: rgba(8, 3, 14, 0.7);
  border: 1px solid rgba(255, 0, 127, 0.3);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(230, 202, 101, 0.35);
  background: rgba(14, 5, 24, 0.9);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-main {
  background: #040108;
  border-top: 1px solid rgba(255, 0, 127, 0.25);
  padding: 4rem 1.5rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  letter-spacing: 1.5px;
}

.footer-text {
  font-size: 0.88rem;
  color: #bca8d0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social-links {
  display: flex;
  gap: 0.85rem;
  margin-top: 1rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 0, 127, 0.3);
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: var(--neon-pink);
  border-color: #ff66b2;
  box-shadow: 0 0 15px var(--neon-pink);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #8c789f;
}

/* Botón Secreto Discreto en Footer */
.secret-trigger-btn {
  background: transparent;
  border: none;
  color: #3b2850;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: color 0.3s;
}

.secret-trigger-btn:hover {
  color: var(--gold-primary);
}

/* Notificación Flotante (Toast) */
.toast-notification {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: rgba(20, 7, 34, 0.95);
  border: 1px solid var(--gold-primary);
  border-left: 5px solid var(--neon-pink);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 0, 127, 0.3);
  color: #fff;
  font-size: 0.9rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(calc(100% + 50px));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.2s ease, visibility 0s linear 0.4s;
}

.toast-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: rgba(10, 4, 18, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.75rem;
    gap: 1.5rem;
    border-left: 1px solid rgba(255, 0, 127, 0.3);
    transition: right 0.4s ease;
  }

  .nav-menu.open {
    right: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .reservation-box {
    padding: 2rem 1.5rem;
  }
}

/* ======================================================================
   REFINAMIENTO VISUAL — escala más sobria, aire y lujo discreto
   ====================================================================== */
@media (min-width: 901px) {
  html { font-size: 15px; }

  .nav-container { max-width: 1180px; padding: 0.55rem 1.4rem; }
  .brand-crest { width: 40px; height: 40px; }
  .brand-logo-wrap { gap: 0.65rem; }
  .brand-title { font-size: 1.1rem; letter-spacing: 2.4px; }
  .brand-tagline { font-size: 0.55rem; letter-spacing: 1.55px; }
  .nav-menu { gap: 1.35rem; }
  .nav-link { font-size: 0.76rem; letter-spacing: 0.8px; }
  h1, h2, h3, h4, .luxury-title { letter-spacing: .8px; }
  .neon-pink-text { text-shadow: 0 0 7px rgba(255, 0, 127, 0.48); }

  .btn-luxury { padding: 0.62rem 1.25rem; font-size: 0.72rem; letter-spacing: 1.1px; }
  .hero-section { min-height: 100vh; min-height: 100dvh; padding: 6.5rem 1.5rem 3.5rem; }
  .hero-glow-ring { width: 520px; height: 520px; }
  .hero-crest-wrap { width: 98px; height: 98px; margin-bottom: 1rem; }
  .hero-title { font-size: clamp(3rem, 5.5vw, 4.45rem); letter-spacing: 3.1px; margin-bottom: 0.6rem; }
  .hero-slogan { font-size: clamp(1.65rem, 3vw, 2.15rem); margin-bottom: 1.1rem; }
  .hero-description { max-width: 620px; margin-bottom: 2rem; font-size: .98rem; line-height: 1.72; color: #e4d8ed; }
  .hero-actions { gap: 1rem; }
  .hero-actions .btn-luxury { padding: .78rem 1.65rem; font-size: .78rem; }
  .hero-flags-bar { margin-top: 2.45rem; padding: .65rem 1.3rem; gap: .8rem; }
  .flag-label { font-size: .68rem; }
  .flag-item { font-size: 1.08rem; }

  .promos-banner-section { padding: 3.75rem 1.5rem 2.25rem; }
  .promos-grid { max-width: 1080px; gap: 0.9rem; }
  .promo-card-vip { border-radius: 14px; padding: 1.15rem 1.25rem; }
  .promo-title { font-size: 1.05rem; }
  .promo-desc { font-size: 0.78rem; }
  .promo-day-badge { font-size: 0.6rem; padding: 0.22rem 0.65rem; margin-bottom: 0.55rem; }

  .section-wrapper { padding: 4.25rem 1.5rem; }
  .section-header { max-width: 650px; margin-bottom: 2.35rem; }
  .section-subtitle { font-size: 0.67rem; letter-spacing: 2.3px; }
  .section-title { font-size: clamp(1.7rem, 3.1vw, 2.35rem); margin-bottom: 0.6rem; }
  .section-desc { font-size: 0.84rem; line-height: 1.65; }

  .events-carousel-wrap { max-width: 1080px; margin-bottom: 1.25rem; }
  .events-grid { grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 1.05rem; }
  .event-card { border-radius: 14px; }
  .event-img-wrap { height: 180px; }
  .event-body { padding: 1.1rem; }
  .event-title { font-size: 1.05rem; margin-bottom: 0.4rem; }
  .event-desc { font-size: 0.77rem; margin-bottom: 0.9rem; }
  .event-type-badge, .event-time { font-size: 0.66rem; }
  .event-date-tag { top: .7rem; right: .7rem; padding: .25rem .6rem; font-size: .62rem; }

  .gallery-grid { max-width: 1080px; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); gap: 1rem; }
  .gallery-item { height: 210px; border-radius: 14px; }
  .gallery-overlay { padding: 1.1rem; }
  .gallery-title { font-size: .94rem; }
  .gallery-desc { font-size: .7rem; }

  .reservation-box { max-width: 720px; border-radius: 18px; padding: 2rem; }
  .form-grid { gap: 1rem; margin-bottom: 1rem; }
  .form-label { font-size: .68rem; }
  .form-input, .form-select, .form-textarea { border-radius: 9px; padding: .7rem .9rem; font-size: .82rem; }
  .form-textarea { min-height: 76px; }

  .footer-main { padding: 2.75rem 1.5rem 1.4rem; }
  .footer-content { max-width: 1080px; gap: 1.6rem; margin-bottom: 2rem; }
  .footer-col-title { font-size: 1rem; margin-bottom: .75rem; }
  .footer-text { font-size: .78rem; line-height: 1.6; }
  .social-btn { width: 34px; height: 34px; font-size: .9rem; }
  .footer-bottom { max-width: 1080px; padding-top: 1.25rem; font-size: .7rem; }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
    padding: 5.75rem 1.25rem 2.75rem;
  }

  .hero-crest-wrap { width: 86px; height: 86px; margin-bottom: 0.9rem; }
  .hero-title { font-size: clamp(2.55rem, 12vw, 3.45rem); letter-spacing: 2px; }
  .hero-slogan { font-size: clamp(1.5rem, 7.5vw, 1.9rem); margin-bottom: 1rem; }
  .hero-description { max-width: 34rem; margin-bottom: 1.8rem; font-size: 0.92rem; line-height: 1.65; }
  .hero-actions { gap: 0.75rem; }
  .hero-actions .btn-luxury { min-width: 154px; padding: 0.75rem 1.15rem; font-size: 0.73rem; }
  .promos-banner-section { padding: 3rem 1.15rem 1.5rem; }
}

/* MÓVIL REAL: 320–600 px. Evita rejillas con ancho mínimo de escritorio y
   mantiene objetivos táctiles cómodos sin sacrificar la estética. */
@media (max-width: 600px) {
  html { font-size: 16px; }
  button, a, input, select, textarea { touch-action: manipulation; }
  .nav-container { min-height: 64px; padding: .55rem .9rem; }
  .brand-logo-img { height: 38px; max-width: 158px; }
  .mobile-menu-btn { min-width: 44px; min-height: 44px; display: grid; place-items: center; padding: .25rem; }
  .nav-menu { top: 64px; width: min(84vw, 300px); height: calc(100dvh - 64px); padding: 1.6rem 1.25rem; gap: 1rem; }
  .nav-link { display: block; min-height: 44px; padding: .65rem 0; font-size: .86rem; }

  .hero-section { min-height: 100svh; padding: 5.1rem 1rem 2rem; align-items: center; }
  .hero-background-layer { background-position: 42% calc(0% + var(--hero-parallax-y, 0px)); }
  .hero-glow-ring { width: min(118vw, 460px); height: min(118vw, 460px); }
  .hero-main-logo-wrap { width: min(285px, 78vw); margin-bottom: 1rem; }
  .hero-slogan { font-size: clamp(1.42rem, 8vw, 1.8rem); }
  .hero-description { max-width: 34ch; font-size: .86rem; line-height: 1.62; margin-bottom: 1.45rem; }
  .hero-actions { width: 100%; max-width: 340px; display: grid; grid-template-columns: 1fr; gap: .65rem; }
  .hero-actions .btn-luxury { width: 100%; min-height: 48px; min-width: 0; }

  .section-wrapper { padding: 3.1rem 1rem; }
  .section-header { margin-bottom: 1.65rem; }
  .section-subtitle { font-size: .62rem; letter-spacing: 1.8px; }
  .section-title { font-size: clamp(1.55rem, 8.2vw, 2rem); line-height: 1.24; }
  .section-desc { font-size: .84rem; line-height: 1.65; }
  .promos-banner-section { padding: 2.5rem 1rem 1.2rem; }
  .promos-grid, .events-grid, .gallery-grid, .footer-content { grid-template-columns: minmax(0, 1fr); gap: 1rem; }
  .promo-card-vip { padding: 1.1rem; }
  .events-carousel-wrap { margin-bottom: 1rem; }
  .event-img-wrap { height: 190px; }
  .event-body { padding: 1.1rem; }
  .event-title { font-size: 1.03rem; }
  .event-desc { font-size: .82rem; margin-bottom: 1rem; }
  .event-footer { gap: .65rem; align-items: flex-start; }
  .event-footer .btn-luxury { padding: .55rem .7rem !important; font-size: .62rem !important; }
  .gallery-item { height: 220px; }
  .gallery-overlay { transform: translateY(0); opacity: 1; padding: 1rem; }

  .reservation-box { padding: 1.25rem 1rem; border-radius: 16px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); gap: .9rem; margin-bottom: .9rem; }
  .form-input, .form-select, .form-textarea { min-height: 46px; font-size: 16px; padding: .72rem .85rem; }
  .form-textarea { min-height: 96px; }
  .reservation-box button[type="submit"] { width: 100%; min-height: 50px; padding: .85rem 1rem !important; font-size: .78rem !important; }

  .footer-main { padding: 2.6rem 1rem 1.35rem; }
  .footer-content { margin-bottom: 1.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .7rem; font-size: .68rem; }
  .toast-notification { left: 1rem; right: 1rem; bottom: max(1rem, env(safe-area-inset-bottom)); padding: .8rem .9rem; font-size: .8rem; }
}

@media (max-width: 360px) {
  .brand-logo-img { height: 33px; max-width: 138px; }
  .hero-section { padding-inline: .8rem; }
  .hero-description { font-size: .81rem; }
  .section-title { font-size: 1.45rem; }
}
