@charset "UTF-8";
/* 0. Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

/* HERO full‑screen */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* 100% alto de pantalla */
  overflow: hidden;
}

/* Vídeo de fondo difuminado */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(20px) brightness(0.7);
  transform: scale(1.1);
  z-index: 0;
}

/* Overlay semitransparente */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Vídeo portrait encima */
.video-fg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
}

/* Móvil: ocupa ancho completo */
@media (max-width: 768px) {
  .video-fg {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
  }
}
/* Contenido SOBRE TODO */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* header arriba, footer abajo */
}

/* Forzar que imgs se apilen */
.hero-header .logo,
.hero-header .fechas {
  display: block;
  max-width: 100px; /* logo */
}

.hero-header .fechas {
  max-width: 260px;
}

.btn-outline-light {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

/* Animación de texto */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text {
  opacity: 0;
  animation: fadeInDown 1s ease-out forwards;
}

/* Botones: izquierda en PC, centrados en móvil */
.btn-cta-group {
  display: flex !important; /* refuerza el flex */
  gap: 1rem; /* espacio entre botones */
}

.btn-cta-group .btn {
  border-radius: 1.5rem !important; /* ajusta a tu gusto */
}

/* Para que el efecto blur de .btn-outline-light siga activo */
.btn-outline-light {
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

button#btn-reservar {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

@media (min-width: 769px) {
  .btn-cta-group {
    justify-content: flex-start;
    width: 400px;
  }
  .hero-header.px-3 {
    padding-left: 2.5rem !important;
  }
  .hero-footer.px-3 {
    padding-left: 2.5rem !important;
  }
}
@media (max-width: 768px) {
  .btn-cta-group {
    width: auto;
    margin-left: 0;
    margin-bottom: 150px;
  }
  .hero-header .fechas {
    max-width: 240px;
  }
}
#tickets-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0 2rem;
  /* oculta scrollbar */
  scrollbar-width: none;
}
#tickets-track::-webkit-scrollbar {
  display: none;
}

#scroll-prev,
#scroll-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#scroll-prev {
  left: 0.5rem;
}

#scroll-next {
  right: 0.5rem;
}

/* Este es el ticket */
.month-nav {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.month-nav::-webkit-scrollbar {
  display: none;
}
.month-nav button {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: #c9c6c6;
}
.month-nav button.active {
  color: #ffffff;
  border-bottom: 2px solid #ebebeb;
}

.dates-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 2rem;
  scrollbar-width: none;
}
.dates-track::-webkit-scrollbar {
  display: none;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}
.carousel-btn:hover {
  background: rgb(255, 255, 255);
}

.prev {
  left: 0.5rem;
}

.next {
  right: 0.5rem;
}

.date-card {
  flex: 0 0 auto;
  width: 210px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
}
.date-card .month {
  color: #fff;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.date-card .day {
  font-size: 3rem;
  font-weight: bold;
  padding: 0.2rem 0;
}
.date-card .weekday {
  font-size: 1rem;
  color: #666;
  padding-bottom: 0.5rem;
}
.date-card .available {
  font-size: 0.9rem;
  padding: 0.5rem;
  border-top: 1px dashed #ccc;
  color: #333;
}
.date-card.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.3) !important;
}

.modal-content {
  background-image: url(/assets/imagenes/textura.png) !important;
  background-repeat: repeat;
  background-position: center;
  border: none !important;
  background-color: rgba(0, 0, 0, 0.95) !important;
}

.modal-dialog {
  background: transparent;
}

#step1.bg-white {
  background-color: transparent !important;
}

#step2.bg-white {
  background-color: transparent !important;
}

#step3.bg-white {
  background-color: transparent !important;
}

/* Contenedor dentro del hero para la lista de fechas */
.hero-list {
  overflow-y: auto;
  max-height: 40vh; /* ajusta según necesites */
  padding-right: 1rem; /* para no tapar scrollbar */
}

/* Cada fecha dentro del hero */
.hero-list .hero-date {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}/*# sourceMappingURL=style.css.map */

.menu-carousel-img {
  max-height: 80vh;    /* no más del 80% de la altura visible */
  object-fit: contain; /* mantiene proporción sin cortar */
}
