/*.bootstrap-slideshow {
  height: 500px;
  position: relative;
  overflow: hidden;
}

.bootstrap-slideshow .item {
  height: 500px;
  background-color: #777;
  position: relative;
}

.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto centrado abajo */
.carousel-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  display: none; /* Oculto por defecto */
}

/* Mostrar solo cuando se indique */
.carousel-caption.active {
  display: block;
}

@media (min-width: 768px) {
  .carousel-caption p {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
  }
}
*/