/* Estilos para el modal de bienvenida */
.modal-fullscreen {
  padding: 0 !important;
}

.modal-fullscreen .modal-content {
  background: black;
  border: none;
  border-radius: 0;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Video */
.video-bienvenida {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay oscuro para contraste */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: 2;
  pointer-events: none;
}

/* Controles flotantes - ocultos por defecto */
.video-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.3s ease;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mostrar controles al hacer hover en el modal */
.modal-content:hover .video-controls {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Botones de control */
.control-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.control-btn:hover {
  background: #e80061ff;
  transform: scale(1.1);
  border-color: rgb(232, 0, 128);
}

.control-btn i {
  font-size: 28px;
}

/* Botón Saltar intro */
.saltar-intro {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 15;
}

.btn-saltar {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-saltar:hover {
  background: rgb(1, 200, 214);
  border-color: rgb(1, 200, 214);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 186, 232, 0.23);
}

.btn-saltar i {
  font-size: 20px;
}

/* Footer profesional */
.bienvenida-footer {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(2px);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.29);
  font-size: 14px;
  letter-spacing: 1px;
}

.bienvenida-footer:hover {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  letter-spacing: 1px;
}

/* Animación de entrada */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-bienvenida {
  animation: fadeInScale 2s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .video-controls {
    bottom: 120px;
    padding: 10px 15px;
  }
  
  .control-btn {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .control-btn i {
    font-size: 22px;
  }
  
  .saltar-intro {
    top: 20px;
    right: 20px;
  }
  
  .btn-saltar {
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .bienvenida-footer {
    bottom: 20px;
    padding: 8px 20px;
    font-size: 12px;
  }
}
