.home-hero {
  position: relative;
  width: 100%;
  height: 70vh; /* altura reduzida para não ocupar toda a tela */
  overflow: hidden;
}

/* Carrossel */
.video-carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

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

/* Hero-text: botão centralizado sobre o vídeo */
.hero-text {
  position: absolute;
  bottom: 10%;        /* distancia do rodapé do vídeo */
  left: 50%;          /* centraliza horizontalmente */
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-btn {
  padding: 0.75rem 2rem;
  background: #de192e;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background: #0c549f;
}

/* Mobile */
@media (max-width: 900px) {
  .home-hero {
    height: 60vh; /* altura ainda menor no mobile */
  }
  
  .video-carousel .desktop { display: none; }
  .video-carousel .mobile { display: block; }

  .hero-text {
    bottom: 8%; /* ajusta a distância em telas menores */
  }
}