.banner-calidad {
  position: relative;
  width: 90%;
  max-width: 1132px;
  margin: 0 auto 40px;
}

.banner-calidad img {
  display: block;
  width: 100%;
}

.banner-calidad a {
  position: absolute;
  height: 80px;
  width: 202px;
  right: 80px;
  bottom: 0;
}

/* -------- Seccion Cards Ofertas --------- */

.offers-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.26rem;
  margin-bottom: 40px;
}

.offers-section_title {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 10px;
}

.offers-section_title p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.2;
}

.offer-card {
  position: relative;
  display: flex;
  gap: 1rem;
  padding: 44px 12px 20px;
  background-color: var(--bg-lightGray);
  border-radius: 6px;
  width: 86%;
  max-width: 360px;
  overflow: hidden;
}

.offer-card__destaca {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #E1EFFF;
  color: var(--darkBlue);
  padding: 4px;
  font-size: .8rem;
}

.offer-card__infobox {
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
}

.offer-card__infobox--titles {
  gap: 8px;
}

.offer-card .icon-cards {
  font-size: 1.8rem;
  color: var(--blue);
}

.offer-card .offer-title,
.offers-section_title h1 {
  font-family: var(--f4);
  font-size: clamp(22px, 24px, 28px);
  line-height: normal;
}

.offer-card .offer-subtitle {
  font-size: 1rem;
  line-height: normal;
  font-weight: normal;
}

.offer-card .offer-button {
  display: block;
  background-color: var(--blue2);
  color: var(--white);
  padding: 8px 0;
  max-width: 270px;
  text-align: center;
  border-radius: 6px;
}

.offer-card .offer-button:hover {
  background-color: rgb(from var(--blue2) r g b / 0.8);
}

.offer-card__call {
  max-width: 270px;
  margin-top: 8px;
}

.offer-card__call .input-square {
  font-size: .55rem;
}

.offer-card__call .square-curtain  {
  background-color: var(--bg-lightGray) !important;
}

.offer-button_see-more {
  display: none;
  text-decoration: underline;
  color: var(--blue);
  margin-top: auto;
}

.offer-image {
  display: none;
}

@media screen and (min-width: 768px) {
  .banner-calidad a {
    right: 0;
    bottom: 0;
  }

  .offers-section {
    flex-direction: row;
    align-items: normal;
  }

  .offer-card {
    max-width: 270px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.3rem;
  }

  .offer-card__infobox {
    flex: 0;
    align-items: center;
  }

  .offer-card .offer-subtitle {
    font-family: var(--f4);
  }

  .offer-image {
    display: block;
    margin-top: 16px;
  }

  .offer-card .offer-button,
  .offer-card__call {
    width: 90%;
  }

  .offer-card__call .input-square {
    font-size: .8rem;
  }

  .offer-button_see-more {
    display: block;
  }
}