.video-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* altura completa de la ventana */
  overflow: hidden;
}

.video-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* cubre sin distorsionar */
  z-index: 1;
}

/* Video desktop visible */
.desktop-video {
  display: block;
}

/* Video móvil oculto por defecto */
.mobile-video {
  display: none;
}

/* Capa de sombra sobre el video */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 5;
}

.textoscentrados {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  z-index: 10;
  color: #ff6600;
  text-align: center;
  padding: 0 20px;
}

.h1textos {
  font-size: 5rem;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  color: white;
  margin: 0 0 15px 0;
}

.parrafosSlid {
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  color: white;
  margin: 0 0 15px 0;
}

.botoncot {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  color: white;
  background-color: #ff6600;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.botoncot:hover {
  background-color: #e65c00;
}

/* Media query para dispositivos móviles */
@media (max-width: 600px) {
  .desktop-video {
    display: none !important;
  }

  .mobile-video {
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    z-index: 1;
  }

  .h1textos {
    font-size: 2.2rem;
  }

  .parrafosSlid {
    font-size: 1.2rem;
  }

  .botoncot {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .textoscentrados {
    max-width: 95%;
  }
}
