/* ═══════════════════════════════════════════
   TACOS EL ÑOÑO – Estilo Sinaloa
   styles.css
═══════════════════════════════════════════ */

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

:root {
  --rojo: #D42B2B;
  --naranja: #E8611A;
  --amarillo: #F5C842;
  --crema: #FDF3E3;
  --crema2: #F5E9D0;
  --cafe: #2E1200;
  --cafe-medio: #7A4520;
  --verde: #2E7D32;
  --blanco: #fff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--crema);
  color: var(--cafe);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  background: var(--cafe);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--amarillo);
  letter-spacing: 0.05em;
  line-height: 1;
}

.nav-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover { color: var(--amarillo); }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Banda superior tipo cartel */
.hero-top-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rojo), var(--naranja), var(--amarillo), var(--naranja), var(--rojo));
  z-index: 6;
}

/* Banda inferior tipo cartel */
.hero-bottom-band {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--rojo), var(--naranja), var(--amarillo), var(--naranja), var(--rojo));
  z-index: 6;
}

/* Marca de agua NN */
.hero-watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(160px, 28vw, 280px);
  color: #fff;
  opacity: 0.025;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -8px;
  line-height: 1;
  white-space: nowrap;
}

/* Grid de puntos dorados */
.hero-dots {
  position: absolute;
  bottom: 24px; right: 24px;
  display: grid;
  grid-template-columns: repeat(5, 10px);
  grid-template-rows: repeat(5, 10px);
  gap: 6px;
  z-index: 2;
  opacity: 0.2;
  pointer-events: none;
}

.hero-dots span {
  display: block;
  width: 4px; height: 4px;
  background: var(--amarillo);
  border-radius: 50%;
}

.info-card {
  background: var(--crema2);
  border: 1px solid rgba(245,166,35,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.info-card-header {
  background: var(--smoke);
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid rgba(245,166,35,0.1);
}

.info-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fire);
}

.info-card-body { padding: 1.8rem; }

/* Lineas decorativas izquierda tipo cartel */
.hero-deco-lines {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-left: 14px;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-lines span {
  display: block;
  height: 3px;
  background: var(--rojo);
  border-radius: 2px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,200,66,0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgba(232,97,26,0.04) 18px,
      rgba(232,97,26,0.04) 19px
    ),
    radial-gradient(ellipse 55% 65% at 75% 50%, rgba(232,97,26,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(212,43,43,0.14) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 5;
  padding: 5rem 3rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rojo);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45em 1.1em;
  border-radius: 2px;
  width: fit-content;
  animation: fadeUp 0.7s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  line-height: 0.88;
  color: #fff;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  color: var(--amarillo);
  font-style: normal;
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 380px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s 0.4s ease both;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--amarillo);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.2rem;
  display: block;
}

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

.hero-right {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 3rem;
}

.hero-ring {
  width: clamp(240px, 30vw, 420px);
  height: clamp(240px, 30vw, 420px);
  border-radius: 50%;
  background: conic-gradient(var(--rojo), var(--naranja), var(--amarillo), var(--naranja), var(--rojo));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-ring 20s linear infinite;
  box-shadow: 0 0 80px rgba(232,97,26,0.28);
}

@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

.hero-ring-inner {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 50%;
  background: var(--cafe);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(5rem, 12vw, 10rem);
  animation: spin-ring 20s linear infinite reverse;
}

/* ─── BOTONES ─── */
.btn {
  display: inline-block;
  padding: 0.8em 2em;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--naranja);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,97,26,0.35);
}

.btn-primary:hover {
  background: #cf5516;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,97,26,0.42);
}

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--amarillo);
  color: var(--amarillo);
}

.btn-white {
  background: #fff;
  color: var(--rojo);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--amarillo);
  color: var(--cafe);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-dark {
  background: var(--cafe);
  color: var(--amarillo);
  font-weight: 700;
}

.btn-dark:hover {
  background: #1a0a00;
  transform: translateY(-2px);
}

/* ─── MARQUEE ─── */
.strip {
  background: var(--rojo);
  padding: 0.75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-inner {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.1em;
}

.strip-inner span { margin: 0 2.5rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── UTILIDADES DE SECCIÓN ─── */
.section-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--naranja);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  color: var(--cafe);
  margin-bottom: 1.2rem;
}

/* ─── MENÚ ─── */
.menu-bg { background: var(--cafe); }
.menu-bg .eyebrow { color: var(--amarillo); }

.menu-header { margin-bottom: 3rem; }

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

.menu-cat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.6rem;
  transition: transform 0.22s, background 0.22s;
}

.menu-cat:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
}

.cat-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.cat-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--amarillo);
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.cat-items { list-style: none; }

.cat-items li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cat-items li:last-child { border-bottom: none; }

.cat-items li::before {
  content: '·';
  color: var(--naranja);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

/* ─── UBICACIONES ─── */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.loc-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(59,31,10,0.08);
  transition: transform 0.22s;
}

.loc-card:hover { transform: translateY(-4px); }

.loc-header {
  background: var(--cafe);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.loc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--amarillo);
  line-height: 1;
}

.loc-header-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.03em;
}

.loc-header-text p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.15rem;
}

.loc-body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loc-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.loc-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.loc-info {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--cafe-medio);
}

.loc-info strong {
  color: var(--cafe);
  font-weight: 600;
  display: block;
  margin-bottom: 0.2rem;
}

.loc-phone {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rojo);
  text-decoration: none;
}

.loc-phone:hover { text-decoration: underline; }

.open-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--verde);
  background: rgba(46,125,50,0.1);
  border: 1px solid rgba(46,125,50,0.2);
  padding: 0.35em 0.9em;
  border-radius: 100px;
  width: fit-content;
}

.open-dot {
  width: 7px;
  height: 7px;
  background: var(--verde);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ─── HORARIO ─── */
.horario-wrap {
  margin-top: 3rem;
  max-width: 480px;
}

.horario-box {
  background: var(--crema2);
  border-radius: 14px;
  padding: 2rem;
}

.horario-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--cafe);
  margin-bottom: 1rem;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(59,31,10,0.07);
  font-size: 0.9rem;
}

.horario-row:last-of-type { border-bottom: none; }
.horario-row .dia  { font-weight: 600; color: var(--cafe); }
.horario-row .hora { color: var(--cafe-medio); }
.horario-row .cerrado { color: #bbb; font-style: italic; }

.horario-note {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ─── REDES SOCIALES / CTA ─── */
.redes-section {
  background: var(--rojo);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.redes-section::before {
  content: '🌮';
  position: absolute;
  font-size: 22rem;
  opacity: 0.05;
  right: -4rem;
  bottom: -4rem;
  pointer-events: none;
  transform: rotate(20deg);
}

.redes-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  margin-bottom: 0.8rem;
  position: relative;
}

.redes-section p {
  color: rgba(255,255,255,0.75);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}

.redes-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─── */
footer {
  background: var(--cafe);
  padding: 2.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.foot-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--amarillo);
}

.foot-logo span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
}

footer p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

.foot-links a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.8rem;
  margin-left: 1.5rem;
  transition: color 0.2s;
}

.foot-links a:hover { color: var(--amarillo); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 2rem 2rem; }
  .hero-right { padding: 2rem; min-height: 300px; }

  .section-wrap { padding: 4rem 1.5rem; }

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

  .redes-section { padding: 4rem 1.5rem; }

  footer {
    padding: 2rem 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .foot-links a:first-child { margin-left: 0; }
}


/* ═══════════════════════════════════════════
   NUEVAS SECCIONES — Galería, Promos, Mapas
   (agregadas sin modificar el diseño existente)
═══════════════════════════════════════════ */

/* ─── PROMOCIONES ─── */
.promos-section {
  background: var(--crema2);
}

.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.promo-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(59,31,10,0.08);
  transition: transform 0.22s;
  display: flex;
  flex-direction: column;
}

.promo-card:hover { transform: translateY(-4px); }

.promo-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
}

.promo-card:hover .promo-img img { transform: scale(1.04); }

.promo-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.promo-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--naranja);
}

.promo-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--cafe);
  letter-spacing: 0.03em;
  line-height: 1;
}

.promo-text {
  font-size: 0.9rem;
  color: var(--cafe-medio);
  line-height: 1.65;
  flex: 1;
}

/* ─── GALERÍA ─── */
.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 193, 7, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(230, 57, 70, 0.22), transparent 24rem),
    linear-gradient(135deg, #2a1307 0%, var(--cafe) 55%, #130804 100%);
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image:
    linear-gradient(45deg, #fff 1px, transparent 1px),
    linear-gradient(-45deg, #fff 1px, transparent 1px);
  background-size: 34px 34px;
}

.gallery-section .section-wrap {
  position: relative;
  z-index: 1;
}

.gallery-section .eyebrow { color: var(--amarillo); }
.gallery-section .section-title { color: #fff; }

.gallery-subtitle {
  max-width: 620px;
  margin: -0.8rem auto 1.7rem;
  color: rgba(255,255,255,0.72);
  text-align: center;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 92px;
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
  background: rgba(255,255,255,0.06);
  cursor: zoom-in;
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
  isolation: isolate;
}

.gallery-item:nth-child(6n + 1),
.gallery-item:nth-child(6n + 5) {
  grid-column: span 6;
  grid-row: span 4;
}

.gallery-item:nth-child(6n + 3) {
  grid-column: span 4;
  grid-row: span 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78));
  opacity: 0.68;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.gallery-shine {
  position: absolute;
  inset: -40% auto auto -70%;
  width: 55%;
  height: 180%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  opacity: 0;
  transition: transform 0.65s ease, opacity 0.35s ease;
  z-index: 2;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.04);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 0.88; }

.gallery-item:hover .gallery-shine,
.gallery-item:focus-visible .gallery-shine {
  opacity: 1;
  transform: translateX(330%) rotate(18deg);
}

.gallery-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  color: #fff;
  text-align: left;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}

.gallery-caption strong {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.gallery-caption small {
  display: inline-flex;
  margin-top: 0.45rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}

.gallery-item:hover .gallery-caption,
.gallery-item:focus-visible .gallery-caption { transform: translateY(0); }

.gallery-item:focus-visible {
  outline: 3px solid var(--amarillo);
  outline-offset: 4px;
}

/* ─── LIGHTBOX ─── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
}

#lightbox.open { display: flex; }

#lb-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

#lb-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

#lb-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
}

#lb-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lb-close:hover { background: var(--rojo); }

/* ─── MAPAS ─── */
#mapa {
  background: var(--crema);
}

.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 3rem 5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.map-wrap {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(59,31,10,0.1);
  display: flex;
  flex-direction: column;
}

.map-label {
  background: var(--cafe);
  color: var(--amarillo);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.2rem;
}

.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

/* ─── RESPONSIVE — nuevas secciones ─── */
@media (max-width: 900px) {
  .maps-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.5rem 4rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 76px;
  }

  .gallery-item,
  .gallery-item:nth-child(6n + 1),
  .gallery-item:nth-child(6n + 3),
  .gallery-item:nth-child(6n + 5) {
    grid-column: span 3;
    grid-row: span 3;
  }

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

/* ─── HERO cartel extras ─── */
.hero h1 em {
  text-shadow: 3px 3px 0px rgba(212,43,43,0.55);
}

.hero-ring-wrap {
  position: relative;
  display: inline-flex;
}

.hero-est-badge {
  position: absolute;
  top: -10px; right: -10px;
  width: 44px; height: 44px;
  background: var(--rojo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 10;
  text-align: center;
  line-height: 1.2;
  border: 2px solid #111;
  font-family: 'DM Sans', sans-serif;
}


@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item:nth-child(6n + 1),
  .gallery-item:nth-child(6n + 3),
  .gallery-item:nth-child(6n + 5) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
}
