/* BONUS */
.bonus {
  background: linear-gradient(
    135deg,
    rgba(255, 204, 0, 0.1) 0%,
    rgba(245, 160, 32, 0.06) 100%
  );
  border: 1px solid rgba(255, 204, 0, 0.25);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.bonus::before {
  content: "BONO EXCLUSIVO";
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--g);
  opacity: 0.6;
}
.bicon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}
.bonus h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--g);
  margin-bottom: 10px;
  line-height: 1.25;
}
.bonus p {
  font-size: 14px;
  color: var(--w6);
  line-height: 1.75;
}
@media (max-width: 500px) {
  .bonus {
    grid-template-columns: 1fr;
  }
}
