.vision-hero {
    position: relative;
    height: 30vh;
    background: url('../img/fondos/premium1.png') center center / cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bg-image-tall {
    min-height: 60vh;
    /* o 60vh para altura relativa */
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.vision-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.vision-hero .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.project-carousel .item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-carousel .item:hover img {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    padding: 10px;
    text-align: left;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.carousel-caption h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.carousel-caption small {
    font-size: 0.8rem;
    color: #ddd;
}

.owl-nav {
    display: none !important;
    /* Ocultar flechas */
}

.owl-dots {
    text-align: center;
    margin-top: 15px;
}

.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 4px;
    background: #ddd;
    display: block;
    border-radius: 50%;
    transition: background 0.3s;
}

.owl-dot.active span,
.owl-dot:hover span {
    background: #f0a500;
}