/* Slider contenedor */
.novedades-slider {
    width: 100vw;
    /*height: 100vh;*/
    margin: 0 auto;
    position: relative;
        padding-bottom: 30px;
}

/* Slide ocupa toda la pantalla */
.swiper-slide {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Enlace que cubre todo el slide */
.sn-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Imagen de fondo */
.sn-slide-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Overlay del título */
.sn-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.sn-title-overlay h3 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

/* Flechas de navegación */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    width: 44px;
    height: 44px;
}

/* Bullets */
.swiper-pagination {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}