html { scroll-behavior: smooth; }
.swiper { width: 100%; height: 480px; }
.swiper-button-next, .swiper-button-prev { color: #000; }
.swiper-pagination-bullet-active { background: #000; }

#hero {
  position: relative;
  min-height: 100vh;          /* ocupa a tela inteira */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;           /* corta partes do vídeo que ultrapassam */
  color: white;
  text-align: center;
}

/* vídeo de fundo */
#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* mantém proporção e cobre toda a section */
  z-index: -1;                /* fica atrás do conteúdo */
}

/* conteúdo acima do vídeo */
#hero .content {
  position: relative;
  z-index: 1;
  background: rgba(0,0,0,0.4); /* overlay p/ contraste */
  padding: 20px;
  border-radius: 10px;
}