/*
Theme Name: GeneratePress Child
Template: generatepress
Version: 1.0
*/
.mv-banners{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-top:25px;
    justify-content:center;
}

.mv-banner{
    width:31%;
}

.mv-banner img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    transition:0.3s;
    box-shadow:0 2px 8px rgba(0,0,0,.15);
}

.mv-banner img:hover{
    transform:scale(1.03);
}

.mv-mas-vitrinas{
    text-align:center;
    margin-top:25px;
}

.mv-boton{
    display:inline-block;
    padding:12px 25px;
    background:#1d4ed8;
    color:#fff !important;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
}

.mv-boton:hover{
    background:#163aa8;
}