.video-background-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  min-height: 1080px; /* añade esta línea */
}

.video-background-container .video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* llena el contenedor sin distorsión */
  z-index: 1;
  filter: brightness(0.99);
}

.video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
  max-width: 800px;
  width: 90%;
  box-sizing: border-box;

  color: white;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.7),
    0 0 10px rgba(255, 255, 255, 0.5); /* efecto resplandor suave */
}

.relleno {
  visibility: hidden;
}

@media (max-width:767px){
.video-background-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  min-height: 540px; /* añade esta línea */
}
}