.herobg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 340px;
  padding: 1rem 0; /* espacio arriba y abajo */
  text-align: center;

  background: url("../img/logo_default.png") center center / contain no-repeat;
  /* Transición suave para cambios */
  transition: background-size 0.3s ease;
}

/* Overlay rosita CLARO con un poco de transparencia para destacar el texto */
.herobg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(225deg, rgba(34,36,41,0.8), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Si tienes texto encima, aseguramos que esté encima del overlay */
.herobg > * {
  position: relative;
  z-index: 2;
  color: #fff; /* texto blanco para contraste */
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
}

/* 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;
}

@media (max-width: 411px) {
  .herobg h1 {
    font-size: 2rem;
  }
}