.recharge-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 8%;
  gap: 48px;
  background-color: white !important;
}

.title {
  font-size: 48px;
  font-weight: 900;
  color: var(--lightBlue);
  text-align: center;
  text-transform: uppercase;
}

.recharge-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 800px;
}

.option-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 8px;
}

.phase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase:nth-child(1) {
  background-color: var(--pureWhite);
}

.title-phase {
  font-size: 24px;
  margin-bottom: 8px;
}

.select-first-phase {
  width: 100%;
  padding: 8px;
  font-size: 20px;
  outline: none;
  border: none;
  background-color: #e5f1f3;
  border-radius: 6px;
  cursor: pointer;
}

.input-radio {
  display: none;
}

.phase-option {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 2px solid var(--lightGray);
  border-radius: 32px;
  cursor: pointer;
  width: 100%;
  background-color: var(--pureWhite);
}

.phase-option img {
    max-width: 90px;
    max-height: 90px;
}

.option-name {
  font-size: 18px;
}

.input-radio:checked + .phase-option {
  background-color: var(--aqua);
  border: 0;
}

.price-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cupom-quantity {
  font-size: 24px;
}

.button {
  font-size: 20px;
  background-color: var(--lightBlue);
  border-radius: 8px;
  width: 100%;
  padding: 24px 0;
  border: none;
  outline: none;
  cursor: pointer;
}

.person {
  display: none;
  width: 50%;
  max-width: 700px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  z-index: -1;
}

@media screen and (min-width: 1280px) {
  .recharge-section {
    padding: 48px 8%;
  }

  .option-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .recharge-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }

  .person {
    display: block;
  }

  .phase:nth-child(1) {
    border: 2px solid var(--lightGray);
    border-radius: 32px;
    padding: 24px;
  }
}

.itens-banner-container {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
  }

  .timer-itens {
    position: absolute;
    color: #6F0004;
    -webkit-text-stroke-width: 0.60px;
    -webkit-text-stroke-color: #FFCF4F;
    font-family: Roboto;
    font-weight: 500;
    font-size: 3vw;
    top: 97%;
    left: 45%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .banner-itens,
  .banner-itens-mobile,
  .banner-itens-tablet {
    width: 100%;
    height: 100%;
  }

  .banner-itens,
  .banner-itens-tablet {
    display: none;
  }

  @media screen and (min-width: 768px) {
    .banner-itens-tablet {
      display: block;
    }

    .banner-itens-mobile {
      display: none;
    }

    .timer-itens {
      top: 92%;
    }
  }

  @media screen and (min-width: 1280px) {
    .banner-itens-tablet {
      display: none;
    }

    .banner-itens {
      display: block;
    }

    .timer-itens {
      font-size: 2vw;
      top: 88%;
      left: 45%;
    }
  }

  .banner-ddpass {
    margin-top: 16px;
    width: 100%;
    height: 100%;
    min-height: 85px;
  }

  .more {
    color: #1EAD07;
    display: flex;
    font-size: 20px;
    margin-bottom: 3px;
  }

  .bonus {
    color: #FF4600;
    font-size: 16px;
  }

  .timer {
    font-size: 16px;
  }

  .offer {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .offer-box {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .timer-offer {
    position: absolute;
    color: #6F0004;
    -webkit-text-stroke-width: 1px;
    z-index: 1;
    -webkit-text-stroke-color: #FFCF4F;
    font-family: Roboto;
    font-size: 64px;
    font-weight: 500;
    font-size: 214%;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  @media screen and (min-width: 1280px) {
    .offer {
      flex-direction: row;
      gap: 24px;
    }

    .offer-box {
      justify-content: flex-start;
    }

    .timer-offer {
      left: auto;
      right: 113px;
      bottom: 33px;
      transform: none;
    }

    .offer>.phase {
      min-width: 100%;
      max-height: 212px;
    }
  }

.recharge-option-selected {
  background-color: var(--aqua) !important;
  border: 0 !important;
}

.item-container {
  display: flex;
  width: 100%;
}
.price-original { transition: all .3s ease; display: block; }
.price-original.has-discount { text-decoration: line-through; opacity: .45; font-size: .82em; }
@keyframes badgePop {
    0%   { opacity: 0; transform: rotate(-6deg) scale(.6) translateY(6px); }
    70%  { transform: rotate(-6deg) scale(1.1) translateY(-2px); }
    100% { opacity: 1; transform: rotate(-6deg) scale(1) translateY(0); }
}
.price-discount {
    display: inline-block; background: #d32f2f; color: #fff;
    font-weight: 700; font-size: .9em; padding: 2px 8px; border-radius: 4px;
    transform: rotate(-6deg); transform-origin: left center;
    opacity: 0; pointer-events: none; margin-top: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.price-discount.visible { animation: badgePop .4s cubic-bezier(.34,1.56,.64,1) forwards; }
.coupon-invalid { color: #dc2626; font-size: 13px; }
