/* Reset básico 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}*/

/* Sección del banner */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 750px;
  overflow: hidden;
}

/* Video de fondo */
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
  filter: brightness(0.6); /* oscurece un poco el video para mejor contraste con el texto */
}

/* Contenido encima del video */
.banner-contenido {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.banner-contenido h1 {
  font-size: 3rem;
  margin-bottom: 10px;
	color: #fff;
}

.banner-contenido p {
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-contenido h1 {
    font-size: 2rem;
  }

  .banner-contenido p {
    font-size: 1rem;
  }
}