.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;
  background-color: unset;
  border: unset;
}
.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;
}
@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 {
    width: 180px;
  }
  .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;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .mw-BlocoDestaqueLogo .card figure img {
    width: 100% !important;
  }
}
@media screen and (max-width: 550px) {
    .mw-BlocoDestaqueLogo .card figure {
      width: 100%;
      height: auto;
      aspect-ratio: 1.6;
    }
    .mw-BlocoDestaqueLogo .card figure img {
      width: 100%!important;
      height: 100%;
    }
}