@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

/* Base */
html { 
  font-size: 62.5%; 
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #101010;
  background: #ffffff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}
.logo-img {
  margin-top: 1rem;

}
/* Screen reader only - oculto para SEO */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Header */
.brand {
  text-align: center;
  margin-bottom: 12px;
}

.brand h2 {
  font-weight: 600;
  letter-spacing: 3px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
  color: #101010;
  text-transform: uppercase;
}

.brand h2::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 200px;
  height: 4px;
  background: #97c6f0; /* Línea azul */
  margin: 8px auto 0; /* Espaciado */
  border-radius: 2px;
}

/* Divider like the posters */
.divider {
  height: 6px;
  background: #101010;
  mask-image: linear-gradient(90deg, #000 45%, transparent 45%);
  -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent 45%);
  mask-size: 18px 6px;
  -webkit-mask-size: 18px 6px;
  border-radius: 3px;
  margin: 14px 0 28px;
}

/* Two column page layout */
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.col { display: flex; flex-direction: column; gap: 28px; }

/* Section */
.section h2 {
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin: 0 0 8px 0;
}
.section h2::first-letter { text-transform: uppercase; }

.section .subtitle {
  color: #cecece;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

/* List */
.list { display: flex; flex-direction: column; gap: 12px; }
.row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid #97c6f0;
}
.row:last-child {
  border-bottom: none;
}
.name { font-size: 1.6rem; }
.price { font-weight: 700; font-size: 1.6rem; }

/* Alt price (pipes) */
.dual { display: inline-block; background: #97c6f0; color: #101010; border-radius: 10px; padding: 2px 8px; margin-left: 6px; font-weight: 700; }

/* Right column headline blues like poster */
.blue h2 { color: #101010; }
.blue .name strong { color: #101010; }

/* Footer strip */
.footer-note { text-align: center; margin-top: 40px; color: #cecece; font-size: 1.2rem; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 900px) {
  .page-grid { grid-template-columns: 1fr; }
}

/* Estilo para el logo en dispositivos móviles */
@media (max-width: 768px) {
  .logo-img {
    width: 100%; /* Ajusta el ancho del logo al 100% del contenedor */
    height: auto; /* Mantiene la proporción del logo */
    max-width: 220px; /* Establece un límite máximo de ancho */
    margin: 0 auto; /* Centra el logo horizontalmente */
    display: block; /* Asegúrate de que sea un bloque para centrar correctamente */
    margin-top: 1rem;
  }
}

/* Navbar (similar al de referencia) */
.category-navbar {
  position: sticky;
  top: 0;
  background: #ffffffd9;
  backdrop-filter: blur(6px);
  border-bottom: 2px solid #101010;
  z-index: 1000;
  margin-bottom: 18px;
  scrollbar-color: #97c6f0 transparent; /* Color del scroll */
  scrollbar-width: thin; /* Grosor del scroll */
}

.nav-container {
  display: flex;
  gap: 4px;
  overflow: auto;
  padding: 8px 8px;
}

.nav-container::-webkit-scrollbar {
  height: 6px; /* Altura del scroll */
}

.nav-container::-webkit-scrollbar-thumb {
  background: #97c6f0; /* Color del scroll */
  border-radius: 999px;
}

.nav-container::-webkit-scrollbar-track {
  background: transparent;
}

.nav-item { font-size: 1.2rem; font-weight: 700; color: #101010; text-decoration: none; padding: 10px 14px; border-radius: 999px; border: 2px solid transparent; white-space: nowrap; }
.nav-item:hover { background: #97c6f0; color: #101010; }
.nav-item.active { background: #101010; color: #fff; }

/* Botones reseña */
.reviews-cta { display: flex; gap: 12px; justify-content: center; margin: 28px 0 6px; }
.btn.review { display: inline-block; text-decoration: none; font-weight: 700; border-radius: 999px; padding: 10px 16px; border: 2px solid #101010; transition: all 0.2s; }
.btn.review.google { background: #fff; color: #101010; }
.btn.review:hover { background: #97c6f0; transform: translateY(-1px); }

/* ───────── Horarios (footer) ───────── */
.site-footer { margin-top: 18px; padding: 18px 0; border-top: 1px solid #cecece; background: #fff; }
.footer-content { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.footer-section { margin-bottom: 10px; }
.footer-title { font-size: 1.8rem; font-weight: 800; letter-spacing: 1px; margin: 0 0 10px 0; text-align: center; color: #101010; }
.horarios-table { width: 100%; max-width: 520px; margin: 0 auto; border-collapse: collapse; font-size: 1.4rem; }
.horarios-table th { background: #97c6f0; color: #101010; padding: 10px 8px; border-bottom: 2px solid #cecece; font-weight: 700; }
.horarios-table td { padding: 10px 8px; border-bottom: 1px solid #cecece; text-align: center; }
.horario-dia { text-align: left; font-weight: 700; color: #101010; }
.horario-horas { color: #101010; }
.horario-row.today { background: #101010; color: #fff; }
.horario-row.today .horario-dia, .horario-row.today .horario-horas { color: #fff; }

/* ───────── Modal de Avisos ───────── */
.aviso-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(16, 16, 16, .75); display: flex; align-items: center; justify-content: center; z-index: 10000; opacity: 0; visibility: hidden; transition: .3s ease; backdrop-filter: blur(6px); }
.aviso-modal.show { opacity: 1; visibility: visible; }
.aviso-content { background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0, 0, 0, .25); width: 420px; max-width: 92%; overflow: hidden; transform: translateY(10px); transition: .25s ease; border: 2px solid #97c6f0; }
.aviso-modal.show .aviso-content { transform: translateY(0); }
.aviso-header { position: relative; color: #101010; padding: 18px 18px 12px 18px; background: #f8f9fa; }
.aviso-emoji { font-size: 32px; display: block; margin-bottom: 6px; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .2)); }
.aviso-titulo { margin: 0; font-size: 1.8rem; font-weight: 800; color: #101010; }
.aviso-close { position: absolute; right: 10px; top: 10px; background: #cecece; color: #101010; border: none; border-radius: 999px; width: 32px; height: 32px; cursor: pointer; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.aviso-close:hover { background: #97c6f0; }
.aviso-body { padding: 16px 18px 20px 18px; font-size: 1.6rem; color: #101010; background: #fff; }
.aviso-progress { position: absolute; left: 0; bottom: 0; height: 4px; width: 100%; background: #cecece; }
.aviso-progress-bar { height: 100%; width: 100%; background: #97c6f0; transform-origin: left; animation: avisoShrink 8s linear forwards; }
@keyframes avisoShrink { from { transform: scaleX(1); } to { transform: scaleX(0); } }


