/* Contenedor del slide */
.slide-bg {
    width: 100%;
    height: 100vh;                 /* fullscreen */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;      /* 👈 NO recorta */
    background-color: #000;        /* relleno si sobra espacio */
    background-image: url(../images/img_bg_4.png);
}


/* Imagen adaptable */
.img-responsive-slide {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover; /* mantiene proporción */
    display: block;
    margin: 0 auto;
}

/* Ajustes para pantallas grandes */
@media (min-width: 1200px) {
    .img-responsive-slide {
        max-height: 600px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .img-responsive-slide {
        max-height: 450px;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .slide-bg {
        height: 100svh;            /* viewport real móvil */
        background-size: contain;
        background-position: center center;
        background-image: url(../images/img_bg_4_11.png);
    }
    

    
}


.logo-header {
    width: 132px;
    height: auto;
    max-height: 70 px;
}
