/* Fondo del encabezado de "Nosotros" */
.about-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: url('/img/ABOUT-FONDO.jpeg'); /* <-- Cambia por tu imagen real */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

/* Capa oscura para mejorar contraste */
.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
}

/* Texto encima del fondo */
.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffc107;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-hero-content p {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #f1f1f1;
}

/* Estilo de la descripción */
.about-description h2 {
  color: #343a40;
}

.about-description p {
  line-height: 1.7;
}
