/* ══════════════════════════════════════
   HERO — video de fondo en bucle
   Estructura:
     #hero          → contenedor pantalla completa
     .vbg           → caja del video
     .vbg video     → video que llena la caja
     .vbg-overlay   → capa oscura semitransparente
     .hero-body     → texto + botones encima
   ══════════════════════════════════════ */

/* Contenedor principal */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* Fallback visible en Opera y navegadores que bloqueen autoplay */
  background: linear-gradient(160deg, #1B4332 0%, #2D6A4F 35%, #3D2B1F 70%, #1B4332 100%);
}

/* ── Caja del video ── */
.vbg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ── Video que llena la caja ── */
.vbg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Capa oscura semitransparente sobre el video ── */
.vbg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

/* ── Texto y botones ── */
.hero-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 860px;
  padding: 0 2rem;
  text-align: center;
  z-index: 2;
}

/* Etiqueta pequeña */
.hero-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(183, 228, 199, 0.90);
  margin-bottom: 1.25rem;
}

/* Título principal — semi-transparente para ver el video */
.hero-titulo {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(254, 253, 251, 0.82);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.50);
}

.hero-titulo em {
  display: block;
  font-style: normal;
  font-size: 0.88em;
  color: rgba(183, 228, 199, 0.85);
}

/* Subtítulo */
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  color: rgba(254, 253, 251, 0.70);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.40);
}

/* Botones */
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Indicador de scroll ── */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(254, 253, 251, 0.50);
  background: none;
  border: none;
  cursor: pointer;
  animation: scrollbounce 2.4s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(254,253,251,0.50), transparent);
}

@keyframes scrollbounce {
  0%,100% { transform: translateX(-50%) translateY(0);   opacity: 0.50; }
  50%     { transform: translateX(-50%) translateY(8px); opacity: 0.90; }
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-btns .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ══════════════════════════════════════
   HOURS STRIP
   ══════════════════════════════════════ */
.hours-strip {
  background: var(--cafe-oscuro);
  padding-block: var(--sp-4);
}

.hours-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.hours-strip__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hours-strip__icon {
  width: 20px;
  height: 20px;
  color: var(--verde-claro);
  flex-shrink: 0;
}

.hours-strip__label {
  display: block;
  font-size: 0.75rem;
  color: var(--crema-oscura);
}

.hours-strip__value {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blanco);
}

.hours-strip__divider {
  width: 1px;
  height: 28px;
  background: rgba(254,253,251,0.15);
}

@media (max-width: 640px) {
  .hours-strip__divider { display: none; }
  .hours-strip__inner   { gap: 1.25rem; }
}
