.offer-choice {
  overflow: hidden;
}

[hidden] { display: none !important; }

#bumpSection:not([hidden]) {
  animation: revealBumps .28s ease-out;
  border: 2px solid rgba(22, 114, 13, .35);
}

#paymentBrick_container { min-height: 220px; margin-top: 14px; }
#message { color: #b42318; font-weight: 700; text-align: center; }
.pix-result { text-align: center; }
.pix-result img { width: min(280px, 82vw); margin: 16px auto; display: block; }
.pix-result textarea { width: 100%; min-height: 96px; resize: vertical; }

@keyframes revealBumps {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.offer-options {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 190px)) !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 16px;
}

button.offer-option {
  appearance: none;
  position: relative;
  min-width: 0;
  min-height: 172px;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 18px 14px !important;
  border: 1px solid #d5dbe3 !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg, #fff, #f6f8f7) !important;
  color: #172033 !important;
  font-family: inherit;
  text-align: center !important;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(16, 24, 40, .08);
}

button.offer-option small {
  color: #16720d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

button.offer-option strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
}

button.offer-option b {
  display: block;
  color: #16720d;
  font-size: 25px;
  line-height: 1.1;
}

button.offer-option span {
  display: block;
  max-width: 145px;
  color: #667085;
  font-size: 10px;
  line-height: 1.3;
}

button.offer-option.active {
  border: 2px solid #16720d !important;
  background: linear-gradient(145deg, #f9fff7, #e8f6e5) !important;
  box-shadow: 0 0 0 3px rgba(22, 114, 13, .08), 0 9px 22px rgba(22, 114, 13, .13);
}

button.offer-option.active::after {
  content: "\2713";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #16720d;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 600px) {
  .offer-options {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px !important;
  }

  button.offer-option {
    min-height: 154px;
    padding: 14px 8px !important;
    border-radius: 15px !important;
  }

  button.offer-option strong { font-size: 13px; }
  button.offer-option b { font-size: 21px; }
  button.offer-option span { font-size: 9px; }
}
