/* ============================================ */
/*   Slider Swiper – Automotriz VJL             */
/* ============================================ */

#home-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.mySwiper,
.swiper-wrapper,
.swiper-slide {
    width: 100%;
    height: 100%;
}

/* CONTENEDOR DE LA IMAGEN */
.slide-img {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000; /* evita bordes blancos */
}

/* IMAGEN AJUSTADA PERFECTA */
.slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* LA CLAVE */
}

/* CAPTION (si lo usas) */
.caption {
    position: absolute;
    bottom: 15%;
    left: 5%;
    color: #fff;
    z-index: 10;
}

.caption h2 {
    font-size: 32px;
    font-weight: bold;
}

.caption span,
.caption p {
    font-size: 18px;
}

/* ALTURA REAL EN MÓVIL */
.real-height {
    height: 100vh;
}

@media (max-width: 767px) {
    .real-height {
        height: var(--vh, 100vh);
    }
}

.slide-img img {
    transition: filter 1.2s ease, transform 4s ease;
    filter: blur(4px);
}

.swiper-slide-active .slide-img img {
    filter: blur(0px);
    transform: scale(1.03);
}