.mw-BlocoDestaqueLogo{
    display: flex;
    flex-direction: column;
    grid-column: span 8;
    grid-row: span 2;
}

.mw-BlocoDestaqueLogo header{
    width: 100%;
    height: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 65px;
}
.mw-BlocoDestaqueLogo header .espacador{
    width: 100%;
    height: 1px;
    background-color: #B5B5B5;
}
.mw-BlocoDestaqueLogo header .logo-header {
    height: 65px;
}

.mw-BlocoDestaqueLogo .card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 9px;
}
.mw-BlocoDestaqueLogo .card figure {
    width: 282px;
    height: 180px;
    object-fit: cover;
}
.mw-BlocoDestaqueLogo .card figure img{
    width: 281px !important;
    height: inherit;
    border-radius: 15px;
    object-fit: cover;
}
.mw-BlocoDestaqueLogo .card h3 {
    background-color:#F0002D !important;
    padding: 3px 15px;
    font-size: 13px;
    line-height: 50px;
    
}
.mw-BlocoDestaqueLogo .card h2 {
    margin-top: 2px;
    font-family: "NunitoSans-Black";
    font-size: 20px;
    line-height: 24px;
    color: #4A4A4A;
    text-align: left;
    font-weight: bolder;
}
@media (max-width:1024px){
    .mw-BlocoDestaqueLogo{
        grid-column: span 2;
        grid-row: span 7;
        justify-content: space-evenly;
    }
    .mw-BlocoDestaqueLogo header {
        gap: 15px;
    }
    .mw-BlocoDestaqueLogo header .logo-header {
        height: 28px;
        width: 180px;
        object-fit: fill !important;
    }
    .mw-BlocoDestaqueLogo .card {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
        margin: unset;
    }
    .mw-BlocoDestaqueLogo .card a {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 2px solid #9e9e9e66;
    }
    .mw-BlocoDestaqueLogo .card figure {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    .mw-BlocoDestaqueLogo .card figure img{
        width: 90vw !important;
        height: 249px;
        border-radius: 15px;
        object-fit: cover;
    }
}