.pop-up-oferta {
  position: fixed;
  top: 10vh;
  left: 0;
  z-index: 8;
  display: flex;
  justify-content: center;
  display: none;
  height: auto;
  width: 100%;
}

.pop-up-oferta---active {
  display: flex;
}

.pop-up-oferta__content {
  display: flex;
  flex-direction: column;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pop-up-oferta__container {
  background-color: var(--color--extra-ligth-grey);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
}
.pop-up-oferta__container > header {
  position: relative;
}
.pop-up-oferta__container > header img {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  width: 100%;
  max-width: 100%;
  /* height: 230px; */
}
.pop-up-oferta__container .icon-close {
  position: absolute;
  right: 16px;
  top: 16px;
}

.pop-up-oferta__content > h2 {
  font-size: 32px;
  text-align: center;
}
.pop-up-oferta__content > p {
  font-size: 20px;
  text-align: center;
}

.pop-up-oferta__container .cta-container {
  text-align: center;
  padding: 0 16px 24px;
}

.pop-up-oferta__container .cta-container > button {
  font-size: 16px;
  display: block;
  border: solid transparent 1px;
  border-radius: 24px;
  padding: 9px 70px;
  color: #fff;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .pop-up-oferta {
    height: auto;
    width: 70%;
    top: 16vh;
    left: 15%;
  }

  .pop-up-oferta__container .cta-container {
    display: inline-flex;
    align-self: center;
  }
  .pop-up-oferta__container .cta-container > a {
    width: 200px;
  }
  .pop-up-oferta__container > header img {
    height: initial;
  }
}

@media screen and (min-width: 768px) {
  .pop-up-oferta {
    width: 60%;
    left: 20%;
  }
}

@media screen and (min-width: 1280px) {
  .pop-up-oferta__content > p {
    font-size: 28px;
  }
  .pop-up-oferta__content > h2 {
    font-size: 64px;
  }
  .pop-up-oferta {
    width: 50%;
    top: 10vh;
    left: 25%;
  }

  .pop-up-oferta__container .cta-container > a {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .pop-up-oferta {
    width: 40%;
    left: 30%;
  }
}
@media screen and (min-width: 1920px) {
  .pop-up-oferta {
    width: 30%;
    left: 35%;
  }
}
