.carousel-caption {
    background: rgba(0, 0, 0, 0.5); /* Fondo negro semitransparente */
    border-radius: 10px;
    padding: 1rem 2rem;
    bottom: 40px;
}
.carousel-caption h4 {
    color: #fff;
    text-shadow: 1px 1px 4px #000;
}
.carousel-item img {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    object-fit: cover;
    height: 540px; /* Ajusta según tu preferencia */
    width: 100%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.6);
    border-radius: 50%;
    width: 48px;
    height: 48px;
}
.carousel-indicators [data-bs-target] {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #007bff;
    margin: 0 4px;
    opacity: 0.7;
    transition: opacity 0.2s, background 0.2s;
}
.carousel-indicators .active {
    background-color: #007bff;
    opacity: 1;
}
@media (max-width: 768px) {
    .carousel-item img {
        height: 260px;
    }
    .carousel-caption {
        padding: 0.7rem 1rem;
        font-size: 1rem;
        max-width: 95%;
    }
}