/* Ajuste del logoNuevo.png para móviles */

.banner .image img[src*="logoNuevo"] {
    max-width: 90%;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Tablets */
@media screen and (max-width: 980px) {
    .banner .image img[src*="logoNuevo"] {
        max-width: 70%;
        width: 70%;
    }
}

/* Móviles */
@media screen and (max-width: 736px) {
    .banner .image img[src*="logoNuevo"] {
        max-width: 85%;
        width: 85%;
    }
}

/* Móviles pequeños */
@media screen and (max-width: 480px) {
    .banner .image img[src*="logoNuevo"] {
        max-width: 90%;
        width: 90%;
    }
}
