.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column; /* vídeo em cima, texto/botão abaixo */
  align-items: center;
}

/* Carrossel */
.video-carousel {
  width: 100%;
  max-height: 100vh; /* opcional, limita altura no desktop */
  overflow: hidden;
  position: relative;
}

.video-carousel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mostra apenas o vídeo desktop por padrão */
.video-carousel .desktop { display: block; }
.video-carousel .mobile { display: none; }

/* Hero-text (botão e texto abaixo do vídeo) */
.hero-text {
  z-index: 1;
  width: auto;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  flex-direction: column;
  text-align: center;
}

/* Mobile */
@media (max-width: 900px) {
  .video-carousel .desktop { display: none; }
  .video-carousel .mobile { 
    display: block; 
    width: 100%;
    height: auto; /* mantém proporção do vídeo mobile */
  }

  .video-carousel .mobile video {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-text {
    padding: 16px;
  }
}