.bonos-hero {
  padding: 52px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(239, 68, 68, 0.12), transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--border);
}

.bonos-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 10px;
}

.bonos-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.bonos-mosaic {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.bonos-mosaic .stat {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 22px 16px;
  text-align: center;
}

.bonos-mosaic .stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 6px;
}

.bonos-mosaic .stat span {
  font-size: 0.8rem;
  color: var(--muted);
}

.bonos-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

.bonos-content h2 {
  color: var(--text);
  margin: 1.75rem 0 0.75rem;
  font-size: 1.3rem;
}

.bonos-content p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.bonos-content ul {
  margin: 0 0 1.25rem 1.25rem;
  color: var(--muted);
}

.bonos-img-band {
  max-width: 500px;
  max-height: 280px;
  margin: 28px auto;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.bonos-img-band img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

@media (max-width: 700px) {
  .bonos-mosaic {
    grid-template-columns: 1fr;
  }

  .bonos-img-band {
    max-width: 100%;
    max-height: 220px;
  }

  .bonos-img-band img {
    max-width: 100%;
    max-height: 220px;
  }
}

@media (max-width: 375px) {
  .bonos-hero,
  .bonos-content,
  .bonos-mosaic {
    padding-left: 16px;
    padding-right: 16px;
  }
}
