
/* Estilos para el Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: none; /* Oculto por defecto */
  justify-content: center;
  align-items: center;
  z-index: 1070; /* Superior al modal de reserva (1055) y lightbox (1060) */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-modal-close {
  position: absolute;
  top: -35px;
  right: -10px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.video-modal-close:hover {
  color: #ccc;
}

.video-modal-iframe-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 8px;
}

.video-modal-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Clases para controlar la visibilidad */
.video-modal-overlay.is-visible {
  display: flex;
  opacity: 1;
}

.video-modal-overlay.is-visible .video-modal-content {
  transform: scale(1);
}
