#section-oferta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.oferta {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.oferta-header {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;

  font-weight: 300;

  padding: 0 32px;
}

.oferta-header-number {
  font-size: 256px;
}

.oferta-header-text {
  width: 100%;
  font-size: 52px;
  letter-spacing: 0.32rem;
  text-align: center;
}

.oferta-content img {
  width: 50%;
  height: auto;
}

.oferta-content {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 auto;
  padding: 0 32px;

  gap: 32px;

  font-size: 24px;
  font-weight: 300;
  text-align: justify;
  line-height: 30px;
}

@media (max-width: 980px) {
  .oferta-header-number {
    font-size: 196px;
  }

  .oferta-header-text {
    font-size: 48px;
  }

  .oferta-content {
    font-size: 22px;
  }
}

@media (max-width: 840px) {
  .oferta {
    gap: 16px;
  }

  .oferta-header {
    flex-direction: column;
    gap: 0px;
    align-items: flex-start;
  }

  .oferta-header-number {
    font-size: 164px;
    line-height: 150px;
  }

  .oferta-header-text {
    text-align: left;
  }

  .oferta-content {
    font-size: 20px;
  }
}

@media (max-width: 770px) {
  .oferta-content {
    flex-direction: column;
    gap: 12px;
  }

  .oferta-content img {
    width: 75%;
  }
}

@media (max-width: 480px) {
  .oferta-header-number {
    font-size: 124px;
  }

  .oferta-header-text {
    font-size: 40px;
  }

  .oferta-content img {
    width: 100%;
  }

  .oferta-content {
    font-size: 18px;
  }
}