section.comprar {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 60px 0;
  background: var(--neutral-black);
}

section.comprar div.wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 8px;

  margin-bottom: 30px;
}

section.comprar div.wrapper img:first-child {
  width: 600px;
}

section.comprar div.wrapper img:last-child {
  width: 176px;
}

section.comprar div.timer {
  display: flex;
  column-gap: 10px;
  margin-bottom: 20px;
}

section.comprar div.timer div.timer-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  height: 140px;
  width: 150px;

  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
}

section.comprar div.timer div.timer-counter span {
  font-weight: 700;
}

section.comprar div.timer div.timer-counter span.number {
  line-height: 100%;
  font-size: 70px;
}

section.comprar div.timer div.timer-counter span.number-type {
  font-size: 20px;
}

section.comprar > span {
  font-size: 21px;
  font-weight: 600;
}

section.comprar > a.default-button {
  position: relative;
  margin: 28px 0 55px;
}

section.comprar > a.default-button::after {
  content: '';

  position: absolute;
  bottom: -30px;
  left: 0;

  height: 20px;
  width: 100%;

  background-image: url('../assets/comprar-targe.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

section.comprar > p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 768px) {
  section.comprar div.wrapper img:first-child {
    width: 258px;
  }

  section.comprar div.wrapper img:last-child {
    width: 76px;
  }

  section.comprar div.timer div.timer-counter {
    width: 72px;
    height: 70px;
  }

  section.comprar div.timer div.timer-counter span.number {
    font-size: 34px;
  }
  
  section.comprar div.timer div.timer-counter span.number-type {
    font-size: 10px;
  }

  section.comprar > span {
    font-size: 12px;
  }

  section.comprar > p {
    font-size: 14px;
    padding: 0 14px;
  }
}