:root {
  --bg: #0b0b0b;
  --brand: #f07f19;
  --brand-2: #ff9433;
  --text: #f8fafc;
}

/* Reset básico */
html,
body,
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

/* HERO */
.hero {
  position: relative;
  color: #fff;
  isolation: isolate;
}

.hero-media {
  position: relative;
  min-height: 360px;
  background: url("/Images/Horarios.webp") center/cover no-repeat;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.65));
}

/* Evitar que .container de Tailwind rompa centrado */
.hero .container,
.hero .inner.container {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

/* Centrado del contenido del hero */
.hero .inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
}

/* Contenedor real del texto del hero */
.hero-inner {
  width: 100%;
  max-width: 1100px;
  padding: 0 16px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4.6vw, 52px);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #ccc;
}

/* Pastillas de horario */
.hours-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-weight: 800;
  white-space: nowrap;
}

.pill--closed {
  background: #0b0b0b;
  color: #fff;
  border: 1px solid #fff;
}

/* Filtros responsive sin scroll lateral en móvil */
#classFilters {
  overflow-x: hidden;
}

/* Scroll horizontal suave (tabs días) */
.scroll-snap-x {
  scroll-snap-type: x mandatory;
}

.scroll-snap-child {
  scroll-snap-align: start;
}

/* Ajustes móviles */
@media (max-width: 640px) {
  #classFilters {
    justify-content: space-between;
  }

  #classFilters > * {
    flex: 0 1 auto;
  }
}

@media (max-width: 420px) {
  .hero .inner {
    padding: 16px;
  }

  .hero-inner {
    max-width: 95%;
    padding: 0 10px;
  }

  .pill {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}