
 /* ==========================================================================
   1. VARIABLES Y RESET (BASE)
   ========================================================================== */
:root {
  --y: #ffd700; /* Amarillo */
  --r: #cc0001; /* Rojo */
  --b: #003087; /* Azul */
  --d: #0a0a0a; /* Fondo Oscuro */
  --t: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Transición Suave */
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--d);
  color: #fff;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

section, div {
  max-width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   2. PANTALLA DE CARGA (LOADER)
   ========================================================================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--d);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s, visibility 0.3s;
  gap: 0;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Elemento circular del loader */
.lf {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--y) 0%, var(--r) 50%, var(--b) 100%);
  margin: 0 auto 16px;
  animation: loaderSpin 1.8s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

/* Texto principal del loader */
.lt {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 8px;
  color: var(--y);
  text-align: center;
  animation: loaderPulse 1.8s ease-in-out infinite;
}

/* Subtexto del loader */
.loader-sub {
  font-size: 0.7rem;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  margin-top: 8px;
  animation: loaderPulse 1.8s ease-in-out infinite 0.3s;
}

/* Barra de progreso */
.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-top: 24px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(to right, var(--y), var(--r));
  border-radius: 2px;
  animation: loaderBar 1.8s ease-in-out infinite;
}

/* Puntos/Banderas del loader */
.loader-flags {
  display: flex;
  gap: 4px;
  margin-top: 16px;
}

.loader-flag {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: loaderDot 1.2s ease-in-out infinite;
}

.loader-flag:nth-child(1) { background: var(--y); animation-delay: 0s; }
.loader-flag:nth-child(2) { background: var(--b); animation-delay: 0.2s; }
.loader-flag:nth-child(3) { background: var(--r); animation-delay: 0.4s; }

/* ==========================================================================
   3. NAVEGACIÓN (NAVBAR)
   ========================================================================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--t), box-shadow var(--t);
}

/* Navbar al hacer scroll (clase activa por JS) */
nav.sc {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

/* Selector de idioma */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 7px 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
  font-size: 1.4rem;
  line-height: 1;
  transition: all 0.3s;
}

.lang-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.3));
  transition: filter var(--t);
}

.logo:hover .logo-img {
  filter: drop-shadow(0 4px 16px rgba(255, 215, 0, 0.6));
}

.logo-txt {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--y);
  line-height: 1.1;
}

.logo-txt span {
  color: #fff;
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
}

/* Lista de enlaces (Nav List) */
.nl {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nl a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: color var(--t), background var(--t);
}

.nl a:hover {
  color: var(--y);
  background: rgba(255, 215, 0, 0.08);
}

/* Botón de acción (CTA) en nav */
.ncta {
  background: var(--r) !important;
  color: #fff !important;
  border-radius: 6px !important;
}

/* Dropdown (Menú desplegable) */
.dd {
  position: relative;
}

.dm {
  position: absolute;
  top: 110%;
  left: 0;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t);
  list-style: none;
  backdrop-filter: blur(20px);
}

/* ==========================================================================
   4. ANIMACIONES (KEYFRAMES)
   ========================================================================== */
@keyframes loaderSpin {
  0%, 100% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes loaderBar {
  0% { width: 0%; margin-left: 0; }
  70% { width: 100%; margin-left: 0; }
  100% { width: 0%; margin-left: 100%; }
}

@keyframes loaderDot {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}





/* ==========================================================================
   1. INTERACTIVIDAD DEL MENÚ (DROPDOWN & MOBILE)
   ========================================================================== */

/* Dropdown: Estado al hacer Hover */
.dd:hover .dm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dm li a {
  display: block;
  padding: 9px 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75) !important;
}

.dm li a:hover {
  color: var(--y) !important;
  background: rgba(255, 215, 0, 0.05) !important;
}

/* Botón Hamburguesa (Mobile) */
.hb {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hb span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

/* Animación Hamburguesa a "X" */
.hb.on span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hb.on span:nth-child(2) { opacity: 0; }
.hb.on span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Menú Móvil Fullscreen */
.mn {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(10, 10, 10, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  z-index: 999;
}

.mn.open {
  display: flex;
}

.mn a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: #fff;
  text-decoration: none;
}

.mn a:hover {
  color: var(--y);
}

/* ==========================================================================
   2. SECCIÓN HERO (PORTADA PRINCIPAL)
   ========================================================================== */

#hero {
  overflow: visible !important;
}

@media (max-width: 900px) {
  #hero {
    min-height: auto !important;
    padding: 100px 20px 40px !important;
  }
  
  .hsc {
    display: none !important;
  }
}







#hero {
  min-height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hbg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 40%, #0a0a1a 100%);
}

/* Esferas Decorativas (Orbs) */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: of 8s ease-in-out infinite;
}

.o1 { width: 500px; height: 500px; background: rgba(204, 0, 1, 0.25); top: -100px; right: -100px; }
.o2 { width: 400px; height: 400px; background: rgba(255, 215, 0, 0.15); bottom: -100px; left: -50px; animation-delay: -3s; }
.o3 { width: 300px; height: 300px; background: rgba(0, 48, 135, 0.3); top: 50%; left: 50%; animation-delay: -6s; }

/* Franjas de Fondo (Stripes) */
.hfb {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.08;
}

.fs {
  position: absolute;
  left: 0;
  right: 0;
  animation: fp 4s ease-in-out infinite;
}

.fs:nth-child(1) { top: 0; height: 50%; background: var(--y); }
.fs:nth-child(2) { top: 50%; height: 25%; background: var(--b); animation-delay: 0.5s; }
.fs:nth-child(3) { top: 75%; height: 25%; background: var(--r); animation-delay: 1s; }

/* Contenido del Hero (Texto y Botones) */
.hc {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0px 20px 0;
  margin-top: -30px;
}

.htag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--y);
  margin-bottom: 20px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 8px 20px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(20px);
  animation: lineIn 0.6s ease 1s forwards;
}

.ht {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Líneas de Texto con Animación Escalonada */
.l1, .l2, .l3 { display: block; opacity: 0; transform: translateY(40px); }
.l1 { color: var(--y); animation: lineIn 0.8s ease 1.2s forwards; }
.l2 { color: #fff; animation: lineIn 0.8s ease 1.5s forwards; }
.l3 { color: transparent; -webkit-text-stroke: 2px var(--r); animation: lineIn 0.8s ease 1.8s forwards; }

.hsub {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  opacity: 0;
  animation: lineIn 0.6s ease 2.1s forwards;
}

.hsub a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.hsub a:hover {
  color: var(--y);
}

.ha {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: lineIn 0.6s ease 2.4s forwards;
}

/* ==========================================================================
   3. KEYFRAMES (ANIMACIONES)
   ========================================================================== */

@keyframes of {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

@keyframes fp {
  0%, 100% { opacity: 0.06; }
  50% { opacity: 0.12; }
}

@keyframes lineIn {
  to { opacity: 1; transform: translateY(0); }
}






/* ==========================================================================
   1. BOTONES Y ELEMENTOS DEL HERO
   ========================================================================== */

/* Botón Primario (Rojo) */
.bp {
  background: var(--r);
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--t);
  border: 2px solid var(--r);
}

.bp:hover {
  background: transparent;
  color: var(--r);
  transform: translateY(-3px);
}

/* Botón Secundario (Delineado Amarillo) */
.bs {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all var(--t);
  border: 2px solid rgba(255, 215, 0, 0.4);
}

.bs:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: var(--y);
  transform: translateY(-3px);
}

/* Indicador de Scroll (Mouse/Flecha) */
.hsc {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  animation: sb 2s ease-in-out infinite;
}

.hsl {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 215, 0, 0.6), transparent);
}

/* ==========================================================================
   2. BARRA DE INFORMACIÓN (INFO STRIP)
   ========================================================================== */
.is {
  background: var(--y);
  padding: 16px 40px;
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.ii {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--d);
}

.ii i {
  font-size: 1rem;
  color: var(--r);
}

/* ==========================================================================
   3. SECCIÓN SOBRE NOSOTROS (ABOUT)
   ========================================================================== */
#about {
  background: #0f0f0f;
}

/* Encabezados de Sección */
.sh {
  text-align: center;
  margin-bottom: 70px;
}

.se {
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 30px;
  display: block;
}

.st {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  color: #fff;
}

.sd {
  width: 60px;
  height: 3px;
  margin: 20px auto 0;
  background: linear-gradient(to right, var(--r), var(--y));
  border-radius: 2px;
}

/* Layout de la sección About */
.ai {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.at p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Mini-contadores (Stats) */
.as {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.sc2 {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  transition: all var(--t);
}

.sc2:hover {
  background: rgba(255, 215, 0, 0.06);
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-4px);
}

.sn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1;
}

/* Columna Visual / Bandera */
.afv {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.fsc {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fsc:nth-child(1) { background: var(--y); flex: 2; }
.fsc:nth-child(2) { background: var(--b); }
.fsc:nth-child(3) { background: var(--r); }

.ftx {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 4px;
  color: rgba(0, 0, 0, 0.3);
  writing-mode: vertical-rl;
}

/* Badge Circular Giratorio */
.ab {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--r);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(204, 0, 1, 0.4);
  animation: spin 20s linear infinite;
}

/* ==========================================================================
   4. HORARIOS Y DESTACADOS (HOURS)
   ========================================================================== */
.hd {
  background: linear-gradient(135deg, #080808, #120005);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hi2 {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
}

.hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.88rem;
}

/* ==========================================================================
   5. KEYFRAMES
   ========================================================================== */
@keyframes sb {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}





/* ==========================================================================
   1. ESTRUCTURA DEL MENÚ Y TABS
   ========================================================================== */
/* Titulo Nuestro Menu */
#menu .se { color: var(--r) !important; }
#menu .st { color: var(--r) !important; }
#menu .st span { color: var(--r) !important; }


#menu { 
  background: #fff;
  padding-bottom: 60px;
}

.cb {
  margin-top: 60px;
}

#menu .mch h2 {
  color: var(--y);
}

#menu .se {
  padding-top: 40px;
}



/* Fondo blanco solo en menu, texto negro en tarjetas */
#menu {
  background: #fff;
}

.mcat {
  background: #fff;
  border-top-color: rgba(0,0,0,0.06);
}

.mname { color: #111; }
.mes { color: var(--r); }
.men { color: #555; }

/* Bebidas y alcoholicas con fondo oscuro */
#cat-bebidas,
#cat-alcoholicas {
  background: #0a0a0a;
  padding: 30px;
  border-radius: 16px;
}

#cat-bebidas .mch h2,
#cat-alcoholicas .mch h2 {
  color: var(--y);
}





/* Especial del dia - fondo negro */
#especial-dia,
#especial-dia-sopas {
  background: #000 !important;
}


.cs18, .cs19 {
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 8px;
}




/* Titulos amarillos */
.mch h2 { color: var(--r) !important; }

/* Fondo blanco en todo el menu */
#menu, .mcat { background: #fff !important; }

/* Texto negro en tarjetas */
.mname { color: #111 !important; }
.mes { color: var(--r) !important; }
.men { color: #555 !important; }
.mprice { color: var(--r) !important; }

/* Texto negro en bebidas y alcoholicas */
.bev-name { color: #111 !important; }
.bev-price-right { color: #111 !important; }
.bev-desc { color: #333 !important; }
.bev-cp { color: #666 !important; }
.bev-section-title { color: var(--r) !important; }
.bev-item { border-bottom-color: rgba(0,0,0,0.08) !important; }

/* Aviso alcoholicas */
.bev-aviso-en { color: #555 !important; }










.mi { 
  max-width: 1300px; 
  margin: 0 auto; 
}

/* Navegación de Categorías (Tabs) */
.mtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(13,13,13,.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.mtab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t);
}

.mtab:hover, 
.mtab.active {
  background: var(--y);
  border-color: var(--y);
  color: var(--d);
}

/* Todas las categorias visibles - scroll continuo */
.mcat {
  display: block;
  scroll-margin-top: 140px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 16px;
}
.mcat.active { display: block; }

#cat-ensaladas {
  margin-top: -140px;
}

/* Encabezado de Categoría */
.mch {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.mch h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  letter-spacing: 3px;
  color: var(--y);
}


.mcl {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 215, 0, 0.4), transparent);
}

/* ==========================================================================
   2. TARJETAS DE PLATOS PRINCIPALES (MGRID)
   ========================================================================== */
.mgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.mcard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--t);
}

.mcard:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Contenedor de Imagen */
.miw {
  overflow: hidden;
  position: relative;
  height: 190px;
  background: #0d0505;
}

.miw::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8), transparent);
  pointer-events: none;
}

.mimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.mcard:hover .mimg { transform: scale(1.06); }

/* Cuerpo de la Tarjeta */
.mbody { padding: 18px 20px 20px; }

.mhdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.mname { font-weight: 900; font-size: 1rem; color: #111; line-height: 1.3; letter-spacing: 0.3px; }

.mprice {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--r);
  white-space: nowrap;
}

.mprice sup { font-family: "DM Sans", sans-serif; font-size: 0.78rem; color: #333; }

.mes { font-size: 0.76rem; color: var(--r); font-weight: 500; margin-bottom: 4px; display: block; }
.men { font-size: 0.76rem; color: #666; font-style: italic; display: none; }

/* ==========================================================================
   3. VARIANTES DE DISEÑO (Sugerencias, Extras, Bebidas)
   ========================================================================== */

/* Grid de Sugerencias (Sugerencias del día) */
.sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}

.scard {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--t);
}

/* Grid Compacto (Extras/Entradas rápidas) */
.xgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.xcard {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--t);
}

.ximg { width: 100%; height: 110px; object-fit: cover; }

/* Grid de Bebidas/Postres (Descripciones simples) */
.dgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.dcard {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: all var(--t);
}

/* ==========================================================================
   4. BANNER DE COCTELES (CTA)
   ========================================================================== */
.cb {
  background: linear-gradient(135deg, var(--r) 0%, #8b0000 50%, #1a0010 100%);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cb::before {
  content: "cocktail";
  position: absolute;
  font-size: 20rem;
  opacity: 0.05;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cb h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 10px;
}




   /* ESPECIAL DEL DIA */
#especial-dia {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #000;
  width: 100%;
  max-width: 100vw;
}

.ed-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0000 0%, #1a0800 40%, #000a1a 100%);
  z-index: 0;
}

.ed-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.ed-particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  opacity: 0;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(1.2);
    opacity: 0;
  }
}

.ed-stripe {
  display: none;
}

.ed-stripe-top {
  display: none;
}

.ed-stripe-bot {
  display: none;
}

@keyframes stripeMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.ed-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */
.ed-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.ed-left.in {
  opacity: 1;
  transform: translateX(0);
}

.ed-titulo-slide {
  white-space: nowrap;
  max-width: 100vw;
  overflow: hidden;
  overflow: hidden;
  width: 100%;
}

.ed-titulo-txt {
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  letter-spacing: 4px;
  color: #fff;
  animation: slideBounce 6s ease-in-out infinite;
}

@keyframes slideBounce {
  0% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(calc(-50% + 0px));
  }
  50% {
    transform: translateX(calc(-50% + 0px));
  }
  95% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}



  .ed-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--r);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 4px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(204,0,1,.5);
}

@keyframes badgePulse {
  0%,100% {
    box-shadow: 0 0 20px rgba(204,0,1,.4);
  }
  50% {
    box-shadow: 0 0 50px rgba(204,0,1,.9),0 0 80px rgba(255,215,0,.2);
  }
}

.ed-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: dotBlink 1s ease-in-out infinite;
}

@keyframes dotBlink {
  0%,100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .3;
    transform: scale(.6);
  }
}

.ed-dia {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1rem,3vw,1.4rem);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
  opacity: .8;
}

.ed-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .95;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 40px rgba(255,215,0,.15);
}

.ed-title span {
  color: #fff;
  display: block;
}

.ed-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 10px;
}

.ed-desc-en {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
}

.ed-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
}

.ed-price {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,255,255,.2);
}

.ed-price-cp {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  font-weight: 500;
}

.ed-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--t);
  cursor: pointer;
  border: none;
}








.ed-btn-primary {
  background: var(--y);
  color: var(--d);
}

.ed-btn-primary:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,215,0,.3);
}

.ed-btn-sec {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.2);
}

.ed-btn-sec:hover {
  border-color: var(--y);
  color: var(--y);
  transform: translateY(-3px);
}


/* RIGHT SIDE - IMAGE */

.ed-right {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition: opacity 1s ease .2s, transform 1s ease .2s;
  position: relative;
  min-width: 0;
  width: 100%;
}

.ed-right.in {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.ed-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.8), 0 0 0 1px rgba(255,215,0,.2);
  aspect-ratio: 4/3;
  width: 100%;
  min-height: 350px;
}

.ed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  opacity: 1;
  animation: kenBurns 8s ease-in-out forwards;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0,0);
  }
  50% {
    transform: scale(1.1) translate(1%,-.5%);
  }
  100% {
    transform: scale(1.14) translate(-.5%,1%);
  }
}

.ed-img.out {
  animation: kbFadeOut .6s ease forwards;
}

.ed-img.in {
  animation: kenBurns 8s ease-in-out forwards, kbFadeIn .6s ease forwards;
}

@keyframes kbFadeOut {
  from {
    opacity: 1;
    transform: scale(1.1);
  }
  to {
    opacity: 0;
    transform: scale(1.15);
  }
}

@keyframes kbFadeIn {
  from {
    opacity: 0;
    transform: scale(1);
  }
  to {
    opacity: 1;
  }
}

.ed-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(204,0,1,.15) 0%,
    transparent 50%,
    rgba(0,48,135,.1) 100%
  );
}

.ed-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg,#1a0505,#0d0d1a);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255,215,0,.1);
}

.ed-img-placeholder span {
  font-size: 5rem;
}

.ed-img-placeholder p {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,.3);
}

.ed-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--y);
  border-style: solid;
  opacity: .5;
}

.ed-corner-tl {
  top: 16px;
  left: 16px;
  border-width: 2px 0 0 2px;
  border-radius: 4px 0 0 0;
}

.ed-corner-br {
  bottom: 16px;
  right: 16px;
  border-width: 0 2px 2px 0;
  border-radius: 0 0 4px 4px;
}


/* DOTS NAV */

.ed-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.ed-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,215,0,.3);
  color: var(--y);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  font-size: 1rem;
}

.ed-arrow:hover {
  background: var(--y);
  color: #000;
  border-color: var(--y);
  transform: scale(1.1);
}

.ed-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.ed-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .3s;
}

.ed-dot.active {
  background: var(--y);
  width: 24px;
  border-radius: 4px;
}


/* WEEK PILLS */

.ed-week {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ed-day-pill {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .3s;
}

.ed-day-pill.active {
  background: var(--y);
  border-color: var(--y);
  color: var(--d);
}

.ed-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--y);
  width: 0%;
  transition: none;
  z-index: 10;
  opacity: .7;
}

.ed-progress.animating {
  width: 100%;
  transition: width 8s linear;
}


/* RESPONSIVE */

@media (max-width:1100px) {

  .ed-inner {
    gap: 30px;
  }

}

@media (max-width:900px) {

  .ed-inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 24px;
  }

  .ed-left {
    transform: none;
  }

  .ed-right {
    transform: none;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .ed-img-wrap {
    min-height: 240px;
  }

  .ed-titulo-txt {
    font-size: 1rem;
  }

  .ed-title {
    font-size: clamp(2rem,8vw,4rem) !important;
  }

  .ed-arrows {
    margin-top: 12px;
  }

}

@media (max-width:600px) {

  .ed-inner {
    padding: 20px 16px;
    gap: 16px;
    grid-template-columns: 1fr !important;
  }

  .ed-left {
    width: 100%;
  }

  .ed-right {
    max-width: 100% !important;
    width: 100% !important;
  }

  .ed-img-wrap {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 4/3;
    min-height: 0 !important;
    height: auto;
  }

  #edImgEl {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    inset: 0 !important;
    object-fit: cover;
  }

  .ed-week {
    flex-wrap: wrap;
    gap: 6px;
  }

  .ed-day-pill {
    padding: 6px 12px;
    font-size: .65rem;
  }

  .ed-price {
    font-size: 2rem !important;
  }

  .ed-actions {
    flex-direction: column;
    gap: 10px;
  }

  .ed-btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .ed-titulo-slide {
    display: none;
  }

}


 #gallery {
  background: #0a0a0a;
}

.gg {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.gi {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: all var(--t);
  cursor: pointer;
  position: relative;
}

.gi:hover {
  transform: scale(1.02);
  border-color: rgba(255,215,0,.3);
}

.gi:nth-child(1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.glabel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  opacity: 0;
  transition: opacity var(--t);
}

.gi:hover .glabel {
  opacity: 1;
}


/* CONTACT */

#contact {
  background: #0c0c0c;
}

.ci {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.cih h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 30px;
}

.cit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.cico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.citl {
  font-size: .68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 4px;
}

.citv {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}

.citv a {
  color: inherit;
  text-decoration: none;
}

.citv a:hover {
  color: var(--y);
}

.pl {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sl2 {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.sla {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all var(--t);
}
    

.sla:hover {
  background: var(--r);
  border-color: var(--r);
  color: #fff;
  transform: translateY(-3px);
}

.me {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  height: 380px;
}

.me iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(40%) invert(10%);
}

.pn {
  background: rgba(255,215,0,.06);
  border: 1px solid rgba(255,215,0,.15);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.pn strong {
  color: #fff;
}


/* FOOTER */

footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 50px 40px 30px;
}

.fi {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.fbn {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 12px;
  display: block;
}

.fbs {
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.fc h4 {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}

.fll {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fll a {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: .85rem;
  transition: color var(--t);
}

.fll a:hover {
  color: var(--y);
}

.fb {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .75rem;
  color: rgba(255,255,255,.25);
}


/* BOTON TOP */

#bt {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--y);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--d);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t);
  border: none;
  text-decoration: none;
}

#bt.vis {
  opacity: 1;
  visibility: visible;
}

#bt:hover {
  background: var(--r);
  color: #fff;
  transform: translateY(-4px);
}


/* COUNTER */

.counter {
  transition: color .3s;
}

.counter.done {
  color: #fff;
  text-shadow: 0 0 20px rgba(255,255,255,.3);
}

.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}

.rv.on {
  opacity: 1;
  transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width:900px) {

  .nl { display:none }

  .hb { display:flex }

  section { padding:70px 24px }

  .ai {
    grid-template-columns:1fr;
    gap:40px;
  }

  .hi2 {
    grid-template-columns:1fr;
    gap:40px;
  }

  .ci {
    grid-template-columns:1fr;
    gap:40px;
  }

  .fi {
    grid-template-columns:1fr;
    gap:30px;
  }

  .gg {
    grid-template-columns:1fr 1fr;
  }

  .gi:nth-child(1) {
    grid-column:span 2;
  }

  nav { padding:0 24px }

  .is {
    padding:16px 24px;
    gap:20px;
  }
}


@media (max-width:600px) {

  .mgrid {
    grid-template-columns:1fr;
  }

  .gg {
    grid-template-columns:1fr;
  }

  .gi:nth-child(1) {
    grid-column:span 1;
    aspect-ratio:1;
  }

  .ha {
    flex-direction:column;
    align-items:center;
  }

  .as {
    grid-template-columns:1fr 1fr;
  }

  .fb {
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}
   


/* WHATSAPP FLOTANTE */
.wa-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.wa-bubble {
  background: #25D366;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  animation: waPulse 2.5s ease-in-out infinite;
  text-decoration: none;
  transition: transform .3s;
}

.wa-bubble:hover {
  transform: scale(1.1);
}

.wa-bubble svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@keyframes waPulse {
  0%,100% {
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37,211,102,.8),0 0 0 8px rgba(37,211,102,.1);
  }
}

@keyframes waPulse2 {
  0%,100% {
    box-shadow: 0 4px 20px rgba(6,176,47,.4);
  }
  50% {
    box-shadow: 0 4px 40px rgba(6,176,47,.8),0 0 0 8px rgba(6,176,47,.1);
  }
}

@keyframes waPulse3 {
  0%,100% {
    box-shadow: 0 4px 20px rgba(255,61,0,.4);
  }
  50% {
    box-shadow: 0 4px 40px rgba(255,61,0,.8),0 0 0 8px rgba(255,61,0,.1);
  }
}

.wa-tooltip {
  background: rgba(0,0,0,.85);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all .3s;
  pointer-events: none;
  border: 1px solid rgba(37,211,102,.3);
}

.wa-btn:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}


/* BANNER PROMOCIONES */

.promo-bar {
  height: 36px;
  background: linear-gradient(90deg,var(--r) 0%,#8b0000 50%,var(--r) 100%);
  background-size: 200% 100%;
  animation: promoBg 4s linear infinite;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@keyframes promoBg {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

.promo-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: promoScroll 30s linear infinite;
}

.promo-track:hover {
  animation-play-state: paused;
}

@keyframes promoScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.promo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 40px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

.promo-item i {
  color: var(--y);
  font-size: .8rem;
}

.promo-sep {
  color: rgba(255,255,255,.3);
  padding: 0 8px;
}


/* ================================================
   CHATBOT STYLES (extraido de <style> en index.html)
   ================================================ */

.chat-btn{position:fixed;bottom:160px;right:30px;z-index:2000}
  .chat-bubble{width:64px;height:64px;border-radius:50%;background:linear-gradient(135deg,#c2185b,#880e4f);border:2px solid rgba(255,255,255,.2);display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 4px 20px rgba(194,24,91,.5);animation:chatPulse 2.5s ease-in-out infinite;transition:transform .3s}
  .chat-bubble:hover{transform:scale(1.1)}
  .chat-bubble svg{width:26px;height:26px;fill:#fff}
  @keyframes chatPulse{0%,100%{box-shadow:0 4px 20px rgba(194,24,91,.4)}50%{box-shadow:0 4px 40px rgba(194,24,91,.8),0 0 0 8px rgba(194,24,91,.15)}}
  .chat-window{position:fixed;bottom:230px;right:30px;width:360px;height:500px;background:#111;border-radius:20px;box-shadow:0 20px 60px rgba(0,0,0,.7);border:1px solid rgba(255,255,255,.1);display:flex;flex-direction:column;z-index:2000;overflow:hidden;opacity:0;visibility:hidden;transform:translateY(20px) scale(.95);transition:all .3s cubic-bezier(.25,.46,.45,.94)}
  .chat-window.open{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
  .chat-head{background:linear-gradient(135deg,#c2185b,#880e4f);padding:16px 20px;display:flex;align-items:center;gap:12px;justify-content:space-between}
  .chat-head-info{display:flex;align-items:center;gap:12px}
  .chat-avatar{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.2);display:flex;align-items:center;justify-content:center;font-size:1.3rem;border:2px solid rgba(255,255,255,.3)}
  .chat-head-txt h4{font-family:"Bebas Neue",sans-serif;font-size:1.1rem;letter-spacing:2px;color:#fff;margin:0}
  .chat-head-txt p{font-size:.7rem;color:rgba(255,255,255,.7);margin:0}
  .chat-close{background:none;border:none;color:rgba(255,255,255,.7);cursor:pointer;font-size:1.2rem;padding:4px;transition:color .2s}
  .chat-close:hover{color:#fff}
  .chat-msgs{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:12px;scroll-behavior:smooth}
  .chat-msgs::-webkit-scrollbar{width:4px}
  .chat-msgs::-webkit-scrollbar-thumb{background:rgba(255,255,255,.1);border-radius:2px}
  .chat-msg{display:flex;gap:8px;align-items:flex-end}
  .chat-msg.user{flex-direction:row-reverse}
  .chat-msg-bubble{max-width:80%;padding:10px 14px;border-radius:16px;font-size:.82rem;line-height:1.5}
  .chat-msg.bot .chat-msg-bubble{background:rgba(255,255,255,.08);color:#fff;border-bottom-left-radius:4px}
  .chat-msg.user .chat-msg-bubble{background:var(--r);color:#fff;border-bottom-right-radius:4px}
  .chat-msg-avatar{width:28px;height:28px;border-radius:50%;background:linear-gradient(135deg,var(--r),#8b0000);display:flex;align-items:center;justify-content:center;font-size:.8rem;flex-shrink:0}
  .chat-typing{display:flex;gap:4px;padding:10px 14px;background:rgba(255,255,255,.08);border-radius:16px;border-bottom-left-radius:4px;width:fit-content}
  .chat-typing span{width:6px;height:6px;border-radius:50%;background:rgba(255,255,255,.4);animation:typingDot 1.2s ease-in-out infinite}
  .chat-typing span:nth-child(2){animation-delay:.2s}
  .chat-typing span:nth-child(3){animation-delay:.4s}
  @keyframes typingDot{0%,100%{transform:translateY(0);opacity:.4}50%{transform:translateY(-4px);opacity:1}}
  .chat-input-area{padding:12px 16px;border-top:1px solid rgba(255,255,255,.08);display:flex;gap:8px;align-items:center}
  .chat-input{flex:1;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:100px;padding:10px 16px;color:#fff;font-size:.82rem;outline:none;font-family:"DM Sans",sans-serif}
  .chat-input::placeholder{color:rgba(255,255,255,.3)}
  .chat-input:focus{border-color:rgba(204,0,1,.5)}
  .chat-send{width:36px;height:36px;border-radius:50%;background:var(--r);border:none;color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all .3s;flex-shrink:0}
  .chat-send:hover{background:#aa0001;transform:scale(1.05)}
  .chat-suggestions{display:flex;flex-wrap:wrap;gap:6px;padding:0 16px 10px}
  .chat-sug{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:100px;padding:6px 12px;font-size:.72rem;color:rgba(255,255,255,.7);cursor:pointer;transition:all .2s;white-space:nowrap}
  .chat-sug:hover{background:rgba(204,0,1,.2);border-color:rgba(204,0,1,.4);color:#fff}
  .chat-notification{position:absolute;top:-4px;right:-4px;width:18px;height:18px;background:var(--r);border-radius:50%;font-size:.65rem;font-weight:700;color:#fff;display:flex;align-items:center;justify-content:center;animation:notifPop .3s ease}
  @keyframes notifPop{from{transform:scale(0)}to{transform:scale(1)}}
  @media(max-width:400px){.chat-window{width:calc(100vw - 20px);left:10px}}

  @media(max-width:600px){
    .chat-window{
      width: 240px !important;
      height: 360px !important;
      bottom: 130px !important;
      right: auto !important;
      left: 10px !important;
      border-radius: 16px !important;
    }
    .chat-msgs{
      padding: 10px !important;
      gap: 8px !important;
    }
    .chat-msg-bubble{
      font-size: 0.65rem !important;
      padding: 6px 9px !important;
      max-width: 88% !important;
    }
    .chat-msg-avatar, .cs63, .cs65 {
      display: none !important;
    }
    .chat-msg.bot {
      padding-left: 0 !important;
    }
    .chat-head{
      padding: 8px 12px !important;
    }
    .chat-head-txt h4{
      font-size: 0.78rem !important;
    }
    .chat-head-txt p{
      font-size: 0.58rem !important;
    }
    .chat-input-area{
      padding: 6px 8px !important;
    }
    .chat-input{
      font-size: 0.68rem !important;
      padding: 6px 10px !important;
    }
    .chat-action-btns{
      gap: 4px !important;
    }
    .chat-action-btn{
      font-size: 0.62rem !important;
      padding: 4px 8px !important;
    }
  }


/* ================================================
   INLINE STYLES CONVERTIDOS A CLASES
   ================================================ */

/* inline style #1 - <div> */
.cs1 {
  display:none;
}

/* inline style #2 - <img> */
.cs2 {
  width: 260px;
  height: auto;
  margin-bottom: 24px;
  animation: loaderPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(255,215,0,.6));
}

/* inline style #3 - <div> */
.cs3 {
  display:flex;
  align-items:center;
  gap:6px;
}

/* inline style #4 - <div> */
.cs4 {
  display:flex;
  align-items:center;
  gap:6px;
  background:rgba(255,255,255,.12);
  border:2px solid rgba(255,255,255,.4);
  border-radius:100px;
  padding:5px 12px;
  cursor:pointer;
  transition:all .3s;
}

/* inline style #5 - <img> */
.cs5 {
  width:24px;
  height:17px;
  object-fit:cover;
  border-radius:2px;
}

/* inline style #6 - <span> */
.cs6 {
  font-size:.7rem;
  font-weight:700;
  color:#fff;
}

/* inline style #7 - <div> */
.cs7 {
  display:flex;
  align-items:center;
  gap:6px;
  background:rgba(255,255,255,.05);
  border:2px solid rgba(255,255,255,.15);
  border-radius:100px;
  padding:5px 12px;
  cursor:pointer;
  transition:all .3s;
}

/* inline style #8 - <img> */
.cs8 {
  width:24px;
  height:17px;
  object-fit:cover;
  border-radius:2px;
}

/* inline style #9 - <span> */
.cs9 {
  font-size:.7rem;
  font-weight:700;
  color:rgba(255,255,255,.5);
}

/* inline style #10 - <div> */
.cs10 {
  margin-bottom:16px;
  overflow:hidden;
  max-width:100%;
}

/* inline style #11 - <span> */
.cs11 {
  color:var(--y);
}

/* inline style #12 - <span> */
.cs12 {
  color:var(--y);
}

/* inline style #13 - <h2> */
.cs13 {
  color:#fff;
}

/* inline style #14 - <span> */
.cs14 {
  color:#fff;
}

/* inline style #15 - <img> */
.cs15 {
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
  display:block;
  border-radius:24px;
}

/* inline style #16 - <div> */
.cs16 {
  height: 0;
  display: none;
}

/* inline style #17 - <h2> */
.cs17 {
  text-align:left;
  margin-bottom:30px;
}

/* inline style #18 - <a> */
.cs18 {
  text-decoration:none;
  cursor:pointer;
}

/* inline style #19 - <a> */
.cs19 {
  text-decoration:none;
  cursor:pointer;
}

/* inline style #20 - <p> */
.cs20 {
  margin-top:16px;
  font-size:.75rem;
  color:rgba(255,215,0,.6);
}

/* inline style #21 - <div> */
.cs21 {
  height:3px;
  background:linear-gradient(to right,transparent,var(--y),var(--r),var(--b),transparent);
  opacity:.4;
}

/* inline style #22 - <span> */
.cs22 {
  color:var(--y);
}

/* inline style #23 - <div> */
.cs23 {
  height:3px;
  background:linear-gradient(to right,transparent,var(--y),var(--r),var(--b),transparent);
  opacity:.4;
  margin-top: 60px;
}

.cb {
  margin-top: 0 !important;
}

/* inline style #24 - <a> */
.cs24 {
  border-color:rgba(255,255,255,.4);
  color:#fff;
}

/* inline style #25 - <div> */
.cs25 {
  height: 0;
  display: none;
}

/* inline style #26 - <div> */
.cs26 {
  display:flex;
  gap:12px;
  margin-top:16px;
}

/* inline style #27 - <a> */
.cs27 {
  flex:1;
  text-align:center;
  padding:14px 20px;
}

/* inline style #28 - <a> */
.cs28 {
  flex:1;
  text-align:center;
  padding:14px 20px;
}

/* inline style #29 - <section> */
.cs29 {
  background:#0d0d0d;
  padding:80px 40px;
}

/* inline style #30 - <div> */
.cs30 {
  max-width:800px;
  margin:0 auto;
}

/* inline style #31 - <form> */
.cs31 {
  margin-top:40px;
}

/* inline style #32 - <div> */
.cs32 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}

/* inline style #33 - <input> */
.cs33 {
  width:100%;
  padding:16px 20px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:.88rem;
  color:#111;
  outline:none;
  font-family:'DM Sans',sans-serif;
  box-sizing:border-box;
}

/* inline style #34 - <input> */
.cs34 {
  width:100%;
  padding:16px 20px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:.88rem;
  color:#111;
  outline:none;
  font-family:'DM Sans',sans-serif;
  box-sizing:border-box;
}

/* inline style #35 - <div> */
.cs35 {
  margin-bottom:16px;
}

/* inline style #36 - <input> */
.cs36 {
  width:100%;
  padding:16px 20px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:.88rem;
  color:#111;
  outline:none;
  font-family:'DM Sans',sans-serif;
  box-sizing:border-box;
}

/* inline style #37 - <div> */
.cs37 {
  margin-bottom:24px;
}

/* inline style #38 - <textarea> */
.cs38 {
  width:100%;
  padding:16px 20px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:8px;
  font-size:.88rem;
  color:#111;
  outline:none;
  font-family:'DM Sans',sans-serif;
  resize:vertical;
  box-sizing:border-box;
}

/* inline style #39 - <div> */
.cs39 {
  text-align:center;
}

/* inline style #40 - <button> */
.cs40 {
  background:var(--r);
  color:#fff;
  padding:16px 50px;
  border-radius:100px;
  border:none;
  font-size:.88rem;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .3s;
  font-family:'DM Sans',sans-serif;
}

/* inline style #41 - <div> */
.cs41 {
  text-align:center;
  margin-top:16px;
  font-size:.85rem;
  display:none;
}

/* inline style #42 - <img> */
.cs42 {
  height:70px;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 2px 10px rgba(255,215,0,.2));
  margin-bottom:12px;
}

/* inline style #43 - <p> */
.cs43 {
  margin-top:20px;
  font-size:.82rem;
  color:rgba(255,255,255,.3);
  line-height:1.8;
}

/* inline style #44 - <sup> */
.cs44 {
  color:#333;
  font-size:.85rem;
}

/* inline style #45 - <div> */
.cs45 {
  border-color:rgba(255,215,0,.2);
  background:rgba(255,215,0,.04);
}

/* inline style #46 - <div> */
.cs46 {
  color:var(--y);
}

/* inline style #47 - <div> */
.cs47 {
  margin-top:10px;
  font-size:.8rem;
  color:rgba(255,255,255,.5);
}

/* inline style #48 - <i> */
.cs48 {
  margin-right:8px;
}

/* inline style #49 - <span> */
.cs49 {
  color:var(--y);
}

/* inline style #50 - <span> */
.cs50 {
  color:var(--y);
}

/* inline style #51 - <span> */
.cs51 {
  color:var(--y);
}

/* inline style #52 - <span> */
.cs52 {
  color:var(--y);
}

/* inline style #53 - <span> */
.cs53 {
  color:#4caf50;
  font-weight:700;
}

/* inline style #54 - <span> */
.cs54 {
  color:#f44336;
  font-weight:700;
}

/* inline style #55 - <span> */
.cs55 {
  color:#4caf50;
  font-weight:700;
}

/* inline style #56 - <span> */
.cs56 {
  color:#f44336;
  font-weight:700;
}

/* inline style #57 - <div> */
.cs57 {
  position:relative;
  display:inline-block;
}

/* inline style #58 - <button> */
.cs58 {
  padding:0;
  overflow:hidden;
}

/* inline style #59 - <img> */
.cs59 {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* inline style #60 - <div> */
.cs60 {
  text-align:center;
  margin-top:4px;
  font-size:.6rem;
  font-weight:700;
  letter-spacing:1px;
  color:rgba(255,255,255,.7);
  text-transform:uppercase;
  text-shadow:0 1px 4px rgba(0,0,0,.8);
}

/* inline style #61 - <div> */
.cs61 {
  overflow:hidden;
  padding:0;
}

/* inline style #62 - <img> */
.cs62 {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* inline style #63 - <div> */
.cs63 {
  overflow:hidden;
  padding:0;
}

/* inline style #64 - <img> */
.cs64 {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* inline style #65 - <div> */
.cs65 {
  overflow:hidden;
  padding:0;
}

/* inline style #66 - <img> */
.cs66 {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}



/* BEBIDAS - Lista con precio a la derecha */
#g-bebidas { display: block !important; }

.bev-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  padding: 10px 0;
}

.bev-col { display: flex; flex-direction: column; gap: 24px; }

.bev-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 18px;
}

.bev-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 6px;
}

.bev-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.bev-price-right {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

.bev-cp {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.bev-desc {
  font-size: 0.78rem;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .bev-list { grid-template-columns: 1fr; gap: 0; }
}


/* BEBIDAS ALCOHOLICAS */
.bev-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--r);
  border-bottom: 2px solid var(--r);
  padding-bottom: 8px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.bev-aviso {
  background: rgba(204,0,1,0.08);
  border: 1px solid rgba(204,0,1,0.25);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 32px;
  text-align: center;
}

.bev-aviso-es {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--r);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bev-aviso-en {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}




.dc {
  display: flex;
  flex-direction: row !important;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.fi {
  padding-top: 50px;
}



/* Separar tag de Restaurante & Bar */
.htag {
  margin-top: 60px;
}

@media (min-width: 901px) {
  .htag {
    margin-top: 100px;
  }
}

/* Separar links del nav */
.nl {
  gap: 20px;
}





.is .ii {
  color: #000 !important;
}

.is .ii a {
  color: #000 !important;
}

.is .ii i {
  color: var(--r) !important;
}

@media (max-width: 900px) {
  #hero {
    min-height: auto !important;
    padding: 100px 20px 40px !important;
  }

  .hsc {
    display: none !important;
  }

  .is {
    display: flex !important;
    flex-wrap: wrap !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 12px 24px !important;
    padding: 16px !important;
  }
}
/* ================================================
   CARRUSEL HERO - LOGO + VIDEOS
   ================================================ */
.hv-carousel {
  width: 100%;
  position: relative;
  background: #000;
  overflow: hidden;
}

.hv-track {
  display: flex;
  width: 100%;
}

.hv-slide {
  min-width: 100%;
  width: 100%;
  display: none;
  position: relative;
}

.hv-slide.active {
  display: block;
}

.hv-slide-logo {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 40%, #0a0a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  min-height: 400px;
}

.hv-slide-logo img {
  max-width: 380px;
  width: 80%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 8px 40px rgba(255,215,0,.5));
}

.hv-video {
  width: 100%;
  height: 75vh;
  max-height: 750px;
  min-height: 420px;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  background: #000;
}

.hv-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.6);
}

.hv-dot.active {
  background: var(--y);
  border-color: var(--y);
  width: 28px;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .hv-slide-logo {
    min-height: 280px;
    padding: 40px 20px;
  }
  .hv-video {
    height: 55vw;
    max-height: 420px;
    min-height: 260px;
  }
}
/* ============================================================
   MEJORAS DE DISEÑO — Para Ti Colombia Con Sabor
   Agregar al FINAL de style.css
   ============================================================ */

/* ── 1. NAVBAR — Glassmorphism mejorado ─────────────────────── */

nav {
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  background: rgba(8, 8, 8, 0.55) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.06);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

nav.sc {
  background: rgba(8, 8, 8, 0.92) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255, 215, 0, 0.08) !important;
}

/* Logo glow pulse más suave */
.logo-img {
  transition: filter 0.5s ease, transform 0.5s ease !important;
}

.logo:hover .logo-img {
  filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 30px rgba(255, 215, 0, 0.3)) !important;
  transform: scale(1.04);
}

/* Nav links con underline animado */
.nl a:not(.ncta) {
  position: relative;
  overflow: hidden;
}

.nl a:not(.ncta)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--y);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nl a:not(.ncta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* CTA button - efecto shimmer */
.ncta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #cc0001, #9e0001) !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.35) !important;
  transition: box-shadow 0.35s ease, transform 0.35s ease !important;
}

.ncta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.ncta:hover {
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.55) !important;
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e00001, #cc0001) !important;
}

.ncta:hover::before {
  left: 160%;
}


/* ── 2. PROMO BAR — Gradiente y mejor tipografía ────────────── */

.promo-bar {
  background: linear-gradient(90deg, #0a0005 0%, #1a0003 30%, #110008 60%, #0a0005 100%) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.promo-item {
  font-size: 0.72rem !important;
  letter-spacing: 2.5px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, 0.85) !important;
  text-transform: uppercase;
}

.promo-item i {
  color: var(--y) !important;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.5));
}

.promo-sep {
  color: rgba(255, 215, 0, 0.4) !important;
  font-size: 0.55rem !important;
}


/* ── 3. BOTONES — Micro-animaciones suaves ──────────────────── */

.bp, .bs {
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.bp {
  background: linear-gradient(135deg, #cc0001, #9e0001) !important;
  box-shadow: 0 4px 20px rgba(204, 0, 1, 0.3);
}

.bp:hover {
  box-shadow: 0 8px 32px rgba(204, 0, 1, 0.5) !important;
  transform: translateY(-4px) !important;
}

.bs:hover {
  background: rgba(255, 215, 0, 0.12) !important;
  border-color: var(--y) !important;
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.15) !important;
  transform: translateY(-4px) !important;
}


/* ── 4. STATS (ABOUT) — Glow cards ─────────────────────────── */

.sc2 {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 16px !important;
  padding: 28px 20px !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  position: relative;
  overflow: hidden;
}

.sc2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.07), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sc2:hover {
  background: rgba(255, 215, 0, 0.05) !important;
  border-color: rgba(255, 215, 0, 0.3) !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1) !important;
}

.sc2:hover::before {
  opacity: 1;
}

.sn {
  background: linear-gradient(135deg, #fff, rgba(255, 215, 0, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 3.2rem !important;
  line-height: 1 !important;
}


/* ── 5. TARJETAS DE MENÚ — Sombras y hover refinados ────────── */

.mcard {
  border-radius: 18px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  overflow: hidden;
}

.mcard:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(204, 0, 1, 0.12) !important;
  border-color: rgba(204, 0, 1, 0.15) !important;
}

/* Imagen con overlay degradado al hover */
.miw::after {
  background: linear-gradient(to top, rgba(10, 5, 5, 0.75) 0%, rgba(10, 5, 5, 0.1) 60%, transparent 100%) !important;
  transition: opacity 0.4s ease;
}

.mimg {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.mcard:hover .mimg {
  transform: scale(1.08) !important;
}

/* Precio con color más llamativo */
.mprice {
  font-size: 1.6rem !important;
  color: #cc0001 !important;
  letter-spacing: 1px;
}

/* Nombre del plato */
.mname {
  font-size: 0.92rem !important;
  letter-spacing: 0.5px !important;
  line-height: 1.35 !important;
}


/* ── 6. TABS DEL MENÚ — Efecto mejorado ────────────────────── */

.mtabs {
  background: rgba(8, 8, 8, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.mtab {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  font-size: 0.72rem !important;
  padding: 9px 20px !important;
}

.mtab:hover {
  background: rgba(255, 215, 0, 0.12) !important;
  border-color: rgba(255, 215, 0, 0.3) !important;
  color: var(--y) !important;
  transform: translateY(-1px);
}

.mtab.active {
  background: var(--y) !important;
  border-color: var(--y) !important;
  color: #0a0a0a !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35) !important;
}


/* ── 7. SECCIÓN CONTACT — Iconos mejorados ──────────────────── */

.cico {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  color: var(--y) !important;
  transition: all 0.35s ease !important;
}

.cit:hover .cico {
  background: rgba(255, 215, 0, 0.1) !important;
  border-color: rgba(255, 215, 0, 0.3) !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.15);
  transform: scale(1.1);
}

/* Social links */
.sla {
  border-radius: 12px !important;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.sla:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(204, 0, 1, 0.4) !important;
}

/* Iframe del mapa - mejor integración */
.me {
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
  transition: box-shadow 0.4s ease;
}

.me:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5) !important;
}

.me iframe {
  filter: grayscale(30%) invert(8%) brightness(0.95) !important;
  transition: filter 0.5s ease;
}

.me:hover iframe {
  filter: grayscale(0%) invert(0%) brightness(1) !important;
}


/* ── 8. CHATBOT — Ventana refinada ──────────────────────────── */

.chat-window {
  border-radius: 20px !important;
  border: 1px solid rgba(255, 215, 0, 0.15) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.chat-head {
  background: linear-gradient(135deg, #1a0003, #0d0010) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.12) !important;
}

.chat-bubble {
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.5), 0 0 0 3px rgba(255, 215, 0, 0.2) !important;
  transition: all 0.35s ease !important;
}

.chat-bubble:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 8px 32px rgba(204, 0, 1, 0.65), 0 0 0 4px rgba(255, 215, 0, 0.3) !important;
}

.chat-sug {
  border-radius: 100px !important;
  font-size: 0.73rem !important;
  letter-spacing: 0.5px !important;
  transition: all 0.25s ease !important;
  border: 1px solid rgba(255, 215, 0, 0.2) !important;
  background: rgba(255, 215, 0, 0.06) !important;
  color: rgba(255, 255, 255, 0.85) !important;
}

.chat-sug:hover {
  background: rgba(255, 215, 0, 0.15) !important;
  border-color: rgba(255, 215, 0, 0.4) !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}

.chat-send {
  background: linear-gradient(135deg, var(--r), #9e0001) !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 12px rgba(204, 0, 1, 0.35) !important;
  transition: all 0.25s ease !important;
}

.chat-send:hover {
  transform: scale(1.06) !important;
  box-shadow: 0 6px 20px rgba(204, 0, 1, 0.5) !important;
}


/* ── 9. FOOTER — Borde superior decorativo ───────────────────── */

footer {
  background: linear-gradient(180deg, #040404, #020202) !important;
  border-top: 1px solid transparent !important;
  background-clip: padding-box;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), rgba(204, 0, 1, 0.3), rgba(0, 48, 135, 0.3), transparent);
}

.fll a {
  transition: color 0.3s ease, padding-left 0.3s ease !important;
}

.fll a:hover {
  color: var(--y) !important;
  padding-left: 6px;
}

.fbn {
  background: linear-gradient(135deg, #fff, rgba(255, 215, 0, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ── 10. SCROLL TOP BUTTON — Estilo mejorado ─────────────────── */

#bt {
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--y), #e5c200) !important;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.35) !important;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#bt:hover {
  background: linear-gradient(135deg, var(--r), #9e0001) !important;
  color: #fff !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 28px rgba(204, 0, 1, 0.5) !important;
}


/* ── 11. WHATSAPP BUTTON — Pulse mejorado ───────────────────── */

.wa-bubble {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55) !important;
  transition: all 0.35s ease !important;
}

.wa-bubble:hover {
  transform: scale(1.1) !important;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7) !important;
}

.wa-tooltip {
  background: rgba(10, 10, 10, 0.95) !important;
  border: 1px solid rgba(37, 211, 102, 0.2) !important;
  border-radius: 10px !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.5px !important;
  backdrop-filter: blur(10px);
}


/* ── 12. SECCIÓN HORARIOS — Cards mejoradas ──────────────────── */

.hd {
  background: linear-gradient(135deg, #060606 0%, #110004 50%, #060610 100%) !important;
}

.hb2 {
  position: relative;
}

.hb2::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.4), transparent);
}

.hr {
  transition: background 0.25s ease;
  padding: 12px 8px !important;
  border-radius: 6px;
  margin: 0 -8px;
}

.hr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.hr:last-child {
  border-bottom: none !important;
}


/* ── 13. ANIMACIÓN REVEAL MEJORADA ──────────────────────────── */

.rv {
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transform: translateY(24px) !important;
}

.rv.on {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ── 14. SELECTOR DE IDIOMA — Glassmorphism ─────────────────── */

.cs3 {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 4px;
  backdrop-filter: blur(10px);
}

.cs4, .cs7 {
  border-radius: 100px !important;
  padding: 5px 12px !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cs4:hover, .cs7:hover {
  background: rgba(255, 215, 0, 0.12) !important;
}

.cs4.active, .cs7.active {
  background: var(--y) !important;
}

.cs4.active .cs6, .cs7.active .cs9 {
  color: #000 !important;
}


/* ── 15. INFO BAR — Separadores mejorados ───────────────────── */

.is {
  background: linear-gradient(90deg, #ffd700, #f5cc00, #ffd700) !important;
  background-size: 200% 100% !important;
  animation: shimmerBar 4s ease-in-out infinite !important;
}

@keyframes shimmerBar {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.ii {
  font-size: 0.78rem !important;
  letter-spacing: 1.5px !important;
}

.ii i {
  font-size: 1rem !important;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.2));
}


/* ── SCROLLBAR PERSONALIZADO ────────────────────────────────── */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 215, 0, 0.3);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 215, 0, 0.6);
}


/* ── SELECTION COLOR ────────────────────────────────────────── */

::selection {
  background: rgba(204, 0, 1, 0.4);
  color: #fff;
}

::-moz-selection {
  background: rgba(204, 0, 1, 0.4);
  color: #fff;
}


/* ── MENÚ MÓVIL ─────────────────────────────────────────────── */

#mn {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 998;
  padding: 40px 24px;
  overflow-y: auto;
}

#mn.open {
  display: flex;
}

#mn > a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 5px;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  text-align: center;
}

#mn > a:hover {
  color: var(--y);
  transform: scale(1.04);
}

.mn-cta {
  background: var(--r) !important;
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 14px 40px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  margin-top: 10px !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.4) !important;
}

.mn-cta:hover {
  background: #aa0001 !important;
  transform: translateY(-2px) !important;
}

/* Categorías del menú en móvil */
.mn-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 360px;
}

.mn-cats a {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 16px;
  transition: all 0.25s ease;
}

.mn-cats a:hover {
  color: var(--d);
  background: var(--y);
  border-color: var(--y);
}

/* Animación de entrada de los links */
#mn.open > a {
  animation: mnItemIn 0.4s ease forwards;
  opacity: 0;
}

#mn.open > a:nth-child(1) { animation-delay: 0.05s; }
#mn.open > a:nth-child(2) { animation-delay: 0.10s; }
#mn.open > a:nth-child(3) { animation-delay: 0.15s; }
#mn.open > a:nth-child(4) { animation-delay: 0.20s; }
#mn.open > a:nth-child(5) { animation-delay: 0.25s; }
#mn.open > a:nth-child(6) { animation-delay: 0.30s; }

#mn.open .mn-cats {
  animation: mnItemIn 0.4s ease 0.35s forwards;
  opacity: 0;
}

@keyframes mnItemIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── VIDEO CAROUSEL — Sin pantalla negra al cargar ─────────── */
.hv-carousel {
  background: linear-gradient(135deg, #0a0000 0%, #1a0800 50%, #0a000a 100%) !important;
}

.hv-slide {
  background: linear-gradient(135deg, #0a0000 0%, #1a0800 50%, #0a000a 100%);
}

.hv-video {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hv-video.loaded {
  opacity: 1;
}

/* Ocultar dots si solo hay un video */
.hv-dots:has(.hv-dot:only-child) {
  display: none;
}

/* ── VIDEO CAROUSEL ─────────────────────────────────────────── */
.hv-carousel {
  background: linear-gradient(135deg, #0a0000 0%, #1a0800 50%, #0a000a 100%) !important;
}

.hv-slide {
  background: linear-gradient(135deg, #0a0000 0%, #1a0800 50%, #0a000a 100%);
}

.hv-video {
  width: 100%;
  height: 50vh;
  max-height: 500px;
  min-height: 280px;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #000;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hv-video.loaded {
  opacity: 1;
}

@media (max-width: 600px) {
  .hv-video {
    height: 55vw;
    max-height: 420px;
    min-height: 260px;
  }
}

/* Ocultar dots si solo hay un video */
.hv-dots:has(.hv-dot:only-child) {
  display: none;
}

/* ── MENÚ MÓVIL ─────────────────────────────────────────────── */
#mn {
  display: none;
  position: fixed;
  inset: 0;
  top: 70px;
  background: rgba(6, 6, 6, 0.98);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 998;
  padding: 40px 24px;
  overflow-y: auto;
}

#mn.open {
  display: flex;
}

#mn > a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.6rem;
  letter-spacing: 5px;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  text-align: center;
}

#mn > a:hover {
  color: var(--y);
  transform: scale(1.04);
}

.mn-cta {
  background: var(--r) !important;
  color: #fff !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 14px 40px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  margin-top: 10px !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.4) !important;
}

.mn-cta:hover {
  background: #aa0001 !important;
  transform: translateY(-2px) !important;
}

.mn-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 360px;
}

.mn-cats a {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 16px;
  transition: all 0.25s ease;
}

.mn-cats a:hover {
  color: var(--d);
  background: var(--y);
  border-color: var(--y);
}

#mn.open > a {
  animation: mnItemIn 0.4s ease forwards;
  opacity: 0;
}

#mn.open > a:nth-child(1) { animation-delay: 0.05s; }
#mn.open > a:nth-child(2) { animation-delay: 0.10s; }
#mn.open > a:nth-child(3) { animation-delay: 0.15s; }
#mn.open > a:nth-child(4) { animation-delay: 0.20s; }
#mn.open > a:nth-child(5) { animation-delay: 0.25s; }
#mn.open > a:nth-child(6) { animation-delay: 0.30s; }

#mn.open .mn-cats {
  animation: mnItemIn 0.4s ease 0.35s forwards;
  opacity: 0;
}

@keyframes mnItemIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Video 2 - un poquito mas abajo */
#vid2 {
  object-position: center 63%;
}

/* ── BEST SELLER BADGE ──────────────────────────────────────── */
.mcard {
  position: relative;
}

.bs-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  background: linear-gradient(135deg, #cc0001, #ff4500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  box-shadow: 0 4px 14px rgba(204, 0, 1, 0.5);
  animation: bsPulse 2s ease-in-out infinite;
  white-space: nowrap;
}

@keyframes bsPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(204, 0, 1, 0.4); }
  50% { box-shadow: 0 4px 22px rgba(204, 0, 1, 0.8), 0 0 30px rgba(255, 69, 0, 0.3); }
}

.bs-card {
  border-color: rgba(204, 0, 1, 0.2) !important;
}

.bs-card:hover {
  border-color: rgba(204, 0, 1, 0.4) !important;
}

/* ── BEST SELLERS TAB ───────────────────────────────────────── */
.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: #cc0001 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.35) !important;
}

.bs-tab:hover, .bs-tab.active {
  background: linear-gradient(135deg, #e00001, #ff6020) !important;
  border-color: #e00001 !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.55) !important;
}

/* Tab Best Sellers - estilo especial */
.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: #cc0001 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4) !important;
}

.bs-tab:hover, .bs-tab.active {
  background: linear-gradient(135deg, #ff4500, #cc0001) !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.6) !important;
  color: #fff !important;
}

/* ── GOOGLE RATING BADGE ────────────────────────────────────── */
.grating {
  position: absolute;
  top: 16px;
  left: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 8px 18px 8px 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: gratingIn 0.6s ease 0.5s both;
}

@keyframes gratingIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.grating-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.grating-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 0.75rem;
}

.grating-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.grating-score {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}

.grating-count {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .grating {
    top: 12px;
    left: 12px;
    padding: 6px 14px 6px 8px;
  }
  .grating-count {
    font-size: 0.58rem;
  }
}

/* ── TABS - Letras más grandes ──────────────────────────────── */
.mtab {
  font-size: 0.82rem !important;
  padding: 11px 24px !important;
}

.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: transparent !important;
  color: #fff !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4) !important;
  animation: bsPulse 2s ease-in-out infinite !important;
}

.bs-tab.active, .bs-tab:hover {
  background: linear-gradient(135deg, #ff4500, #cc0001) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.6) !important;
}

/* ── HERO TITLE — Letras más grandes y líneas pegadas ────────── */
.ht {
  font-size: clamp(3rem, 9vw, 7rem) !important;
  line-height: 0.9 !important;
  margin-bottom: 24px !important;
}

.l1 {
  display: block !important;
  margin-bottom: 0 !important;
}

.l3 {
  display: block !important;
  margin-top: 0 !important;
  font-size: clamp(2.6rem, 8vw, 6.5rem) !important;
}

.hsub {
  font-size: clamp(1rem, 2.5vw, 1.5rem) !important;
  margin-top: 20px !important;
}

/* ── LOGO EN HERO ───────────────────────────────────────────── */
.hero-logo {
  width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  filter: drop-shadow(0 6px 30px rgba(255, 215, 0, 0.6));
  animation: lineIn 0.8s ease 1.2s forwards;
  opacity: 0;
}

/* ── CARRUSEL — aparece después de 2 segundos ─────────────── */
.hv-carousel {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hv-carousel.visible {
  opacity: 1;
}

/* ── TAB BEST SELLERS ───────────────────────────────────────── */
.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4) !important;
  animation: bsPulse 2s ease-in-out infinite !important;
}

.bs-tab:hover, .bs-tab.active {
  background: linear-gradient(135deg, #e00001, #ff6020) !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.6) !important;
  color: #fff !important;
}

/* ── BEST SELLERS TAB ───────────────────────────────────────── */
.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4) !important;
  animation: bsTabPulse 2s ease-in-out infinite;
}

.bs-tab:hover, .bs-tab.active {
  background: linear-gradient(135deg, #e00001, #ff6020) !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.6) !important;
  color: #fff !important;
}

@keyframes bsTabPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(204, 0, 1, 0.7), 0 0 20px rgba(255, 69, 0, 0.3); }
}

/* ── TAB BEST SELLERS ───────────────────────────────────────── */
.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: #cc0001 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4) !important;
  animation: bsTabPulse 2.5s ease-in-out infinite !important;
}

.bs-tab.active,
.bs-tab:hover {
  background: linear-gradient(135deg, #ff4500, #cc0001) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.6) !important;
}

@keyframes bsTabPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(204, 0, 1, 0.7), 0 0 20px rgba(255, 69, 0, 0.3); }
}

/* ── LOADER LOGO ─────────────────────────────────────────────── */
.loader-logo-main {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 50%;
  animation: loaderPulse 1.8s ease-in-out infinite,
             loaderGlow 1.8s ease-in-out infinite;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
}

@keyframes loaderGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); }
  50%       { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8)); }
}

/* ── BEST SELLERS TAB ───────────────────────────────────────── */
.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4) !important;
  animation: bsTabPulse 2.5s ease-in-out infinite !important;
}

.bs-tab.active, .bs-tab:hover {
  background: linear-gradient(135deg, #ff4500, #cc0001) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.6) !important;
}

@keyframes bsTabPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4); }
  50% { box-shadow: 0 4px 28px rgba(204, 0, 1, 0.7), 0 0 20px rgba(255,69,0,0.3); }
}

/* ── HERO PORTADA — Como la foto ─────────────────────────────── */
#hero {
  min-height: 100vh !important;
  padding: 120px 20px 60px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hero-logo {
  max-width: 600px;
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 30px rgba(255,215,0,0.3));
}

.htag {
  margin-top: 90px !important;
}

/* ── LOGO SIEMPRE VISIBLE ───────────────────────────────────── */
.logo-img {
  display: block !important;
  height: 40px !important;
  width: 40px !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.4)) !important;
}

/* Best Sellers tab especial */
.bs-tab {
  background: linear-gradient(135deg, #cc0001, #ff4500) !important;
  border-color: #cc0001 !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(204, 0, 1, 0.4) !important;
}

.bs-tab:hover, .bs-tab.active {
  background: linear-gradient(135deg, #e00001, #cc0001) !important;
  box-shadow: 0 6px 24px rgba(204, 0, 1, 0.6) !important;
  color: #fff !important;
}

/* ── HERO — Reducir espacio en desktop ──────────────────────── */
@media (min-width: 901px) {
  #hero {
    min-height: auto !important;
    padding: 60px 20px 40px !important;
  }

  .htag {
    margin-bottom: 16px !important;
  }

  .ht {
    margin-bottom: 12px !important;
  }

  .hsub {
    margin-bottom: 30px !important;
  }
}

/* ── HERO SLIDER — Logo intro + Best Sellers ────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 30px;
}

.hero-slides {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  aspect-ratio: 4/3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Logo slide */
.hero-slide-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(255,215,0,0.5));
  animation: logoPulseHero 2s ease-in-out infinite;
}

@keyframes logoPulseHero {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(255,215,0,0.4)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 60px rgba(255,215,0,0.7)); transform: scale(1.03); }
}

/* Food slides */
.hero-slide-img:not(.hero-slide-logo) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-slide.active .hero-slide-img:not(.hero-slide-logo) {
  transform: scale(1.06);
}

/* Label del plato */
.hero-slide-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Dots */
.hero-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--y);
  border-color: var(--y);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .hero-slides { aspect-ratio: 1/1; }
  .hero-slide-label { font-size: 1rem; }
}

@media (max-width: 900px) {
  .htag {
    margin-top: 10px !important;
  }
  #hero {
    padding-top: 35px !important;
  }
  .hc {
    margin-top: 0px !important;
  }
  .ht {
    display: none !important;
  }
  .logo-txt {
    font-size: 1.4rem !important;
  }
  .logo-txt span {
    font-size: 0.95rem !important;
  }
  .hero-slider {
    margin: -30px auto 20px !important;
  }
}

/* ================================================================
/* ── CHATBOT ONBOARDING — input hint ────────────────────────── */
.chat-input-hint {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 0 16px 6px;
  letter-spacing: 0.5px;
}

.chat-onboard-badge {
  display: inline-block;
  background: linear-gradient(135deg, #cc0001, #ff4500);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin: 0 auto 10px;
  text-align: center;
}


/* ═══════════════════════════════════════════════════════════════
   GALERÍA REVISTA DE LUJO — Para Ti Colombia Con Sabor
   Estilo: Editorial magazine · crema dorado · sin espacios
   ═══════════════════════════════════════════════════════════════ */

#gallery {
  background: #f5f0e8;
  padding: 80px 0 60px;
  position: relative;
}

#gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(180,150,80,0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(180,150,80,0.06) 40px);
  pointer-events: none;
}

.rv-wrap {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

/* ── Header editorial ────────────────────────────────────────── */
.rv-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
  gap: 12px;
}

.rv-issue {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 4px;
}

.rv-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--r);
  letter-spacing: 4px;
  white-space: nowrap;
}

.rv-title em {
  font-style: normal;
  color: var(--r);
}

.rv-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: #0a0a0a;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: normal;
}

/* ── Filtros ─────────────────────────────────────────────────── */
.rv-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-family: 'DM Sans', sans-serif;
}

.rv-filter {
  background: none;
  border: none;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0a0a0a;
  cursor: pointer;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.rv-filter:hover, .rv-filter.rv-active {
  color: #0a0a0a;
  border-bottom-color: var(--r);
}

.rv-filter-dot {
  color: #0a0a0a;
  font-size: 1.1rem;
  line-height: 1;
  opacity: 0.3;
}

/* ── Mosaico ─────────────────────────────────────────────────── */
.rv-mosaic {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rv-row {
  display: flex;
  gap: 3px;
  width: 100%;
}

/* Fila 1: hero + 2 stack */
.rv-row-1 {
  height: 500px;
}

.rv-tile-hero {
  flex: 2;
}

.rv-col-2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rv-col-2 .rv-tile {
  flex: 1;
}

/* Fila 2: 3 iguales */
.rv-row-3 {
  height: 340px;
}

.rv-row-3 .rv-tile {
  flex: 1;
}

/* Fila 3: lado + hero central + lado */
.rv-row-3c {
  height: 440px;
}

.rv-col-side {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rv-col-side .rv-tile-full {
  flex: 1;
}

.rv-tile-hero-center {
  flex: 2;
}

/* Fila 2 igual */
.rv-row-2 {
  height: 380px;
}

.rv-row-2 .rv-tile {
  flex: 1;
}

/* Fila 4: 4 pequeños */
.rv-row-4 {
  height: 280px;
}

.rv-row-4 .rv-tile {
  flex: 1;
}

/* Fila reversa */
.rv-row-reverse {
  flex-direction: row-reverse;
}

/* ── Tile base ───────────────────────────────────────────────── */
.rv-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #d4c5a0;
  /* entrada */
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.rv-tile.rv-in {
  opacity: 1;
  transform: scale(1);
}

.rv-tile.rv-hidden {
  display: none;
}

.rv-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rv-tile:hover img {
  transform: scale(1.06);
}

/* ── Overlay ─────────────────────────────────────────────────── */
.rv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 10, 3, 0.85) 0%,
    rgba(15, 10, 3, 0.3) 40%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.rv-tile:hover .rv-overlay {
  opacity: 1;
}

/* Golden line accent on hover */
.rv-tile::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b8953a, #f0c850, #b8953a);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rv-tile:hover::after {
  transform: scaleX(1);
}

.rv-ov-inner {
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.rv-tile:hover .rv-ov-inner {
  transform: translateY(0);
}

.rv-ov-cat {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f0c850;
  margin-bottom: 5px;
  font-weight: 700;
}

.rv-ov-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

/* ── CTA Social ──────────────────────────────────────────────── */
.rv-social {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.rv-social-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b8953a55, transparent);
  min-width: 40px;
}

.rv-social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.rv-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 24px;
  border: 1px solid;
  transition: all 0.3s ease;
}

.rv-ig {
  color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  background: transparent !important;
}

.rv-ig:hover {
  background: #cc0001 !important;
  color: #fff !important;
  border-color: #cc0001 !important;
}

.rv-fb {
  color: #0a0a0a !important;
  border-color: #0a0a0a !important;
  background: transparent !important;
}

.rv-fb:hover {
  background: #cc0001 !important;
  color: #fff !important;
  border-color: #cc0001 !important;
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.rv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.rv-lightbox.rv-open {
  opacity: 1;
  visibility: visible;
}

.rv-lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 2, 0.94);
  backdrop-filter: blur(20px);
  cursor: pointer;
}

.rv-lb-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 88vw;
}

.rv-lb-stage img {
  max-width: 82vw;
  max-height: 76vh;
  object-fit: contain;
  border: 1px solid rgba(184,149,58,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  transition: opacity 0.25s ease;
}

.rv-lb-info {
  text-align: center;
}

.rv-lb-cat {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f0c850;
  margin-bottom: 6px;
}

.rv-lb-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #f5f0e8;
  margin: 0 0 4px;
}

.rv-lb-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.4);
  margin: 0;
  letter-spacing: 1px;
}

.rv-lb-count {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: rgba(245,240,232,0.25);
  white-space: nowrap;
}

.rv-lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,240,232,0.08);
  border: 1px solid rgba(184,149,58,0.25);
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.rv-lb-close:hover {
  background: #cc0001;
  border-color: #cc0001;
  color: #fff;
  transform: rotate(90deg);
}

.rv-lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(184,149,58,0.2);
  color: rgba(245,240,232,0.6);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.rv-lb-prev { left: 16px; }
.rv-lb-next { right: 16px; }

.rv-lb-nav:hover {
  background: rgba(184,149,58,0.2);
  border-color: #b8953a;
  color: #f0c850;
  transform: translateY(-50%) scale(1.1);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .rv-row-1, .rv-row-3c { height: auto; flex-direction: column; }
  .rv-tile-hero, .rv-tile-hero-center { height: 320px; }
  .rv-col-2 { flex-direction: row; height: 200px; }
  .rv-col-side { height: 200px; flex-direction: row; }
  .rv-row-3 { height: auto; flex-wrap: wrap; }
  .rv-row-3 .rv-tile { height: 220px; flex: 1 1 30%; }
  .rv-row-4 { flex-wrap: wrap; height: auto; }
  .rv-row-4 .rv-tile { height: 180px; flex: 1 1 45%; }
  .rv-row-2 { height: 260px; }
  .rv-header { grid-template-columns: 1fr; text-align: center; }
  .rv-header-left, .rv-header-right { text-align: center; }
  .rv-divider-v { display: none; }
}

@media (max-width: 600px) {
  .rv-wrap { padding: 0 12px; }
  .rv-row-1 .rv-tile-hero { height: 280px; }
  .rv-col-2 { height: 160px; }
  .rv-row-3 .rv-tile { height: 180px; flex: 1 1 100%; }
  .rv-row-4 .rv-tile { height: 160px; flex: 1 1 45%; }
  .rv-row-2 { height: 200px; }
  .rv-lb-nav { width: 38px; height: 38px; font-size: 0.8rem; }
  .rv-lb-stage img { max-width: 94vw; max-height: 65vh; }
}


/* ── MENU TABS MÓVIL — Scroll horizontal compacto ─────────── */
@media (max-width: 768px) {
  .mtabs {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    padding: 10px 12px !important;
    gap: 6px !important;
    border-radius: 12px !important;
    margin-bottom: 20px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .mtabs::-webkit-scrollbar {
    display: none;
  }
  .mtab {
    flex-shrink: 0 !important;
    padding: 7px 14px !important;
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
  }
}

/* ── CHAT ACTION BUTTONS ─────────────────────────────────────── */
.chat-action-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}
.chat-action-btn {
  background: #fff;
  color: #CC0001;
  border: 1.5px solid #CC0001;
  border-radius: 20px;
  padding: 6px 13px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.chat-action-btn:hover {
  background: #CC0001;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   ACCESSIBILITY — Screen Reader Only 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;
}

/* Focus visible para navegación por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--y);
  outline-offset: 2px;
}

/* ── MENU LIGHTBOX ──────────────────────────────────────────── */
#menuLightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9998;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#menuLightbox.mlb-open {
  display: flex;
}
.mlb-box {
  position: relative;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  max-width: 500px;
  width: 100%;
  animation: mlbIn 0.3s ease;
}
@keyframes mlbIn {
  from { opacity:0; transform: scale(0.9); }
  to   { opacity:1; transform: scale(1); }
}
.mlb-box img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}
.mlb-info {
  padding: 20px 24px 24px;
}
.mlb-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--r);
  margin-bottom: 8px;
}
.mlb-info p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  line-height: 1.5;
}
.mlb-info span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--y);
  letter-spacing: 2px;
}
.mlb-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.2s;
}
.mlb-close:hover { background: var(--r); }
