#hero-slider .carousel-item {
  height: 800px;
  position: relative;
  overflow: hidden;
}

#hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Caption */
.carousel-caption {
  bottom: 20%;
  z-index: 10;
  text-align: center;
  background: rgba(0, 0, 0, 0.3); /* mejora la legibilidad del texto */
  padding: 1rem;
  border-radius: 10px;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 8px #000;
}

.carousel-caption p {
  font-size: 1.25rem;
  color: #eee;
  text-shadow: 1px 1px 4px #000;
}

/* Responsive para móviles */
@media (max-width: 767.98px) {
  #hero-slider .carousel-item {
    height: auto;
  }

  #hero-slider .carousel-item img {
    height: auto;
    object-fit: contain; /* cambia de cover a contain para no recortar */
  }

  .carousel-caption {
    position: static;
    margin-top: 1rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0;
    padding: 1rem;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }
}
