/* Estilo base para el carrusel */
#hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-bg {
  height: 85vh;
  /* Ajusta si quieres menos */
  background-size: cover;
  background-position: top;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.carousel-caption {
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
}

.carousel-caption {
  bottom: 22.25rem;
}

@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-bg {
    height: 60vh;
  }

  .carousel-caption {
    bottom: 13.25rem;
  }
}