.bonos-hero {
  padding: 3.5rem 20px;
  background: var(--surface);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.bonos-hero h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.bonos-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1280px;
  margin: 0 auto;
}

.bonos-stat {
  background: var(--bg);
  padding: 2rem;
  text-align: center;
}

.bonos-stat__num {
  font-family: var(--real-estate-serif);
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
}

.bonos-stat__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 8px;
}

.bonos-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 20px 4rem;
}

.bonos-content__img {
  float: right;
  margin: 0 0 1.5rem 2rem;
  max-width: 320px;
}

.bonos-content__img img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--property-radius);
  border: 1px solid var(--border);
}

.bonos-content h2 {
  font-size: 1.4rem;
  color: var(--accent);
  margin: 2rem 0 1rem;
  clear: both;
}

.bonos-content h2:first-of-type {
  margin-top: 0;
}

.bonos-content p {
  margin-bottom: 1.15rem;
  color: rgba(250, 250, 250, 0.88);
}

.bonos-content ul {
  margin: 0 0 1.15rem 1.5rem;
  color: rgba(250, 250, 250, 0.88);
}

@media (max-width: 768px) {
  .bonos-stats {
    grid-template-columns: 1fr;
  }

  .bonos-content__img {
    float: none;
    margin: 0 auto 2rem;
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .bonos-content__img img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
  }
}
