.herobg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  text-align: center;

  background: url("../img/default.png") center center / cover no-repeat;
}

/* overlay rosita CLARO */
.herobg::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    328deg,
    rgba(34, 36, 41, 0.2),
    rgba(34, 36, 41, 0.2)
  );
}

/* texto arriba del overlay */
.herobg h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0,0,0,0.8);
}

/* CONTENIDO */
.contenido {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.contenido h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contenido p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}