/* Horarios page — Bar Aliquindoi */

.hor-hero {
  background: var(--t-accent);
  color: #fff;
  padding: 3.5rem 1.25rem 2.5rem;
  text-align: center;
}
.hor-hero-inner { max-width: 700px; margin: 0 auto; }
.hor-eyebrow {
  display: block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: .75rem;
}
.hor-title {
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 .6rem;
}
.hor-sub {
  font-size: 1.05rem;
  opacity: .85;
  margin: 0 0 1.25rem;
}
.hor-estado-wrap { display: flex; justify-content: center; }
.hor-estado {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 20px;
  background: rgba(255,255,255,.2);
}
.hor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hor-estado--open .hor-dot { background: #4ade80; box-shadow: 0 0 0 2px rgba(74,222,128,.4); }
.hor-estado--closed .hor-dot { background: #f87171; }

/* Sections */
.hor-section { padding: 3rem 1.25rem; }
.hor-section--alt { background: var(--t-bg, #fdf6f0); }
.hor-inner { max-width: 1060px; margin: 0 auto; }
.hor-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--t-text);
  margin: 0 0 .4rem;
  text-align: center;
}
.hor-section-sub {
  text-align: center;
  color: var(--t-muted);
  margin: 0 0 2rem;
}

/* Cards grid */
.hor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
.hor-card {
  background: var(--t-panel, #fff);
  border: 1px solid var(--t-line, #e8ddd5);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}
.hor-card--primary {
  background: var(--t-accent, #0f7a5c);
  color: #fff;
  border-color: transparent;
}
.hor-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.hor-card--primary .hor-card-title { color: #fff; }

/* Horario table */
.hor-tabla { display: flex; flex-direction: column; gap: .2rem; }
.hor-fila {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .5rem;
  align-items: center;
  padding: .45rem .5rem;
  border-radius: 6px;
}
.hor-fila:nth-child(even) { background: rgba(255,255,255,.05); }
.hor-fila--closed { opacity: .5; }
.hor-dia { font-weight: 500; font-size: .9rem; }
.hor-horas { font-size: .85rem; opacity: .75; }
.hor-open {
  font-size: .75rem;
  font-weight: 600;
  color: #4ade80;
  text-align: right;
}
.hor-closed {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  text-align: right;
}

/* Servicio block */
.hor-servicio {
  border-left: 3px solid var(--t-accent);
  padding-left: .85rem;
  margin-bottom: 1rem;
}
.hor-servicio-hora {
  font-size: .8rem;
  font-weight: 700;
  color: var(--t-accent);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}
.hor-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.hor-lista li {
  font-size: .88rem;
  color: var(--t-muted);
  padding-left: 1rem;
  position: relative;
}
.hor-lista li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--t-accent);
  font-weight: 700;
}
.hor-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--t-accent);
  text-decoration: none;
}
.hor-link:hover { text-decoration: underline; }

/* Precios */
.hor-precios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .8rem;
  margin-bottom: 1.25rem;
}
.hor-precio-card {
  background: var(--t-panel, #fff);
  border: 1px solid var(--t-line, #e8ddd5);
  border-radius: 12px;
  padding: 1.25rem .75rem;
  text-align: center;
}
.hor-precio-card--destacado {
  background: var(--t-accent);
  color: #fff;
  border-color: transparent;
  transform: scale(1.04);
}
.hor-precio-icono { font-size: 1.6rem; margin-bottom: .4rem; }
.hor-precio-card h3 {
  font-size: .8rem;
  font-weight: 600;
  margin: 0 0 .4rem;
  color: var(--t-muted);
}
.hor-precio-card--destacado h3 { color: rgba(255,255,255,.85); }
.hor-precio-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--t-text);
}
.hor-precio-card--destacado .hor-precio-num { color: #fff; }
.hor-precio-nota { font-size: .7rem; opacity: .7; margin-top: .15rem; }
.hor-precios-aviso {
  text-align: center;
  font-size: .8rem;
  color: var(--t-muted);
  margin: 0 0 1.25rem;
}
.hor-precios-cta { text-align: center; }

/* Festivos */
.hor-festivos-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.hor-festivos-texto h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 .6rem;
}
.hor-festivos-texto p {
  color: var(--t-muted);
  margin: 0 0 .5rem;
  font-size: .9rem;
}

/* Cómo llegar CTA */
.hor-llegar-wrap { text-align: center; }
.hor-llegar-wrap h2 { font-size: 1.5rem; font-weight: 700; margin: 0 0 .5rem; }
.hor-llegar-wrap p { color: var(--t-muted); margin: 0 0 1.25rem; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Responsive */
@media (max-width: 900px) {
  .hor-grid { grid-template-columns: 1fr; }
  .hor-precios-grid { grid-template-columns: repeat(3, 1fr); }
  .hor-festivos-wrap { grid-template-columns: 1fr; }
  .hor-precio-card--destacado { transform: none; }
}
@media (max-width: 560px) {
  .hor-precios-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Deportes */
.hor-deportes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.hor-deporte-card {
  background: var(--t-panel, #fff);
  border: 1px solid var(--t-line, #e8ddd5);
  border-radius: 12px;
  padding: 1.25rem;
  text-align: center;
}
.hor-deporte-icon { font-size: 2rem; display: block; margin-bottom: .5rem; }
.hor-deporte-card h3 { font-size: .95rem; font-weight: 700; margin: 0 0 .4rem; }
.hor-deporte-card p { font-size: .82rem; color: var(--t-muted, #7a6a5a); margin: 0; line-height: 1.5; }
.hor-deporte-card--malaga {
  background: var(--t-accent, #0057A8);
  border-color: var(--t-accent, #0057A8);
  color: #fff;
}
.hor-deporte-card--malaga h3 { color: #fff; }
.hor-deporte-card--malaga p { color: rgba(255,255,255,.85); }
.hor-deportes-nota { font-size: .85rem; color: var(--t-muted, #7a6a5a); margin-top: 1rem; }
.hor-deportes-nota a { color: var(--t-accent, #0057A8); }
