/* ============================================================
   BONO — "Bono de bienvenida".
   Anatomy unlike siblings: the loudest moment, built on the house
   ticket motif — a large perforated coupon (body + a tear-off stub
   carrying the CTA, with punched holes on the perforation). No
   photograph; the cupón is the visual. Terms set as fine print,
   verbatim. No invented amounts — the PDF says they change.
   ============================================================ */

.bono {
  border-top: 1px solid var(--rule);
  padding-block: var(--rhythm);
}
.bono__head { max-width: 44ch; }
.bono__head h2 { margin-top: 1rem; }

/* coupon */
.cupon {
  margin-top: clamp(34px, 4vw, 60px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 16rem;
  align-items: stretch;
  border: 1.5px solid var(--ember-line);
  background: var(--night-2);
}
.cupon__body { padding: clamp(1.8rem, 3.4vw, 3rem); }
.cupon__body p {
  margin: 0;
  max-width: 56ch;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink);
}
.cupon__terms {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--ink-faint);
}

/* tear-off stub — perforation + punched holes */
.cupon__stub {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-left: 2px dashed var(--ember-line);
  background:
    radial-gradient(120% 80% at 50% 0%, var(--ember-veil) 0%, transparent 60%),
    var(--night-3);
  text-align: center;
}
.cupon__stub::before,
.cupon__stub::after {
  content: "";
  position: absolute;
  left: -10px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--night);
}
.cupon__stub::before { top: -10px; }
.cupon__stub::after { bottom: -10px; }
.cupon__stub .ticket { width: 100%; justify-content: center; }

/* ===== mobile ===== */
@media (max-width: 720px) {
  .bono__head { max-width: none; }
  .cupon { grid-template-columns: 1fr; }
  .cupon__body p { max-width: none; }
  .cupon__stub {
    border-left: 0;
    border-top: 2px dashed var(--ember-line);
  }
  .cupon__stub::before { top: -10px; left: -10px; bottom: auto; }
  .cupon__stub::after  { top: -10px; right: -10px; left: auto; bottom: auto; }
}
