body {
    background-image: url('../imgs/WEB\ OK\ fondo.jpg');
    background-size: contain;
    width: 100%;
    height: 100%;
}

section {
    margin-top: 60px;
}

.contenedorLogo {
    display: flex;
}

.bandaNosotros {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    /* background-image: url(../imgs/BANNER\ NOSOTROS.png); */
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.imgNosotros {
    width: 100%;
    position: absolute;
}

.logoPrincipal {
    width: 100%;
    max-height: 420px;
    max-width: 420px;
    display: inline;
    position: relative;
    z-index: 999;
    margin: 0 auto;
    margin-top: -20px;
    transition: all 0.2s ease;
}

.logoPrincipal:hover {
    transform: scale(1.1);
}

.bandaPromociones {
    width: 100%;
    position: relative;
    left: 0;
    top: 0;
    height: 300px;
    background-image: url(../imgs/BANNER\ PROMOCIONES.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.imgPromociones {
    width: 100%;
}

.filaCatalogo {
    /* margin-bottom: 20px; */
}

.entrefilaCatalogo {
    /* margin-bottom: 20px; */
}

.imagenCatalogo {
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.imagenCatalogo:hover {
    transform: scale(1.05);
}

.img200 {
    width: 100%;
    max-height: 270px;
    max-width: 270px;
    display: inline;
    position: relative;
    margin: 0 auto;
    margin-top: -40px;
    transition: all 0.2s ease;
}

.img100 {
    width: 100%;
}

.footer {
    background-color: rgb(32, 32, 32);
    position: fixed;
    z-index: 999;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    display: block;
}

.footer img {
    width: 70%;
    max-width: 155px;
    transform: scale(1.4);
    margin-bottom: 12px;
}

.footer img:hover {
    transform: scale(1.25);
}

.col-md-2,
.col-md-3,
.col-md-4,
.col-md-8 {
    margin-bottom: 15px;
}

.margenFooter {
    height: 40px;
}

.marcaDeAgua {
    color: white;
    text-align: center;
    font-size: 16px;
}

.marcaDeAgua a {
    color: white;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.marcaDeAgua a:hover {
    color: #f5803c;
    text-shadow: 1px 1px 3px black;
}


/* PARA MÓVILES */

@media screen and (max-width: 480px) {
    .ocultarMovil {
        display: none;
    }
    .margenFooter {
        height: 100px;
    }
    .footer {
        padding-bottom: 10px;
    }
    .padding1 {
        padding: 0 3px!important;
    }
    .nuestrosservicios {
        width: 80%!important;
    }
    .footer img {
        width: 100%;
        transform: scale(1);
        margin-bottom: 0px;
    }
    .logoPrincipal:hover {
        transform: scale(1);
    }
}


/* PARA COMPUTADORAS */

@media screen and (min-width: 480px) {
    .ocultarPC {
        display: none;
    }
}