.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.background-video::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1080px;
  background: url('video.mp4') no-repeat center center fixed;
  background-size: cover;
  opacity: 0.6; /* Ajuste a opacidade conforme necessário */
  z-index: -1;
}

@keyframes videoAnimation {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.content {
  /* Estilos do seu conteúdo aqui */
  position: relative;
  z-index: 1;
  /* Resto dos estilos... */
}
