/* Seção onde está o vídeo */
.u-section-1 {
  padding: 0 !important;
  margin: 0 !important;
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: hidden;
  position: relative;
}

/* Contêiner do vídeo */
.video-fundo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

/* Estilo do vídeo */
.video-fundo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

/* Mobile fix (reduz erros de proporção em aparelhos pequenos) */
@media (max-width: 768px) {
  .video-fundo video {
    object-fit: cover;
  }
}

/* Ajustes para fundo e margens */
html, body {
  margin: 0;
  padding: 0;
  background-color: #000;
  overflow-x: hidden;
}
