/* Estilos del contenedor del banner */
.hero-container {
    width: 100%;
    height: 50vh; /* Ajusta la altura del banner */
    background-image: url('quienes_somos.jpg'); /* URL de la imagen de fondo, cámbiala por la tuya si la tienes */
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

/* Capa oscura sobre la imagen para mejorar la legibilidad del texto */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Opacidad del 40% */
}

/* Estilos del contenido dentro del banner */
.hero-content {
    z-index: 1; /* Asegura que el contenido esté sobre la capa oscura */
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 10px 0 20px;
    letter-spacing: 2px;
}

/* Estilos del botón */
.hero-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #555;
}

/* Estilos de la sección de "Quiénes somos" */
.about-us-section {
    width: 100%;
    padding: 50px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.about-us-content {
    width: 80%; /* Ancho del contenedor, puedes ajustarlo */
    max-width: 900px;
}

.about-us-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.about-us-text {
    color: #666;
    font-size: 1rem;
}



section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
}

h2 {
  font-size: 1.5em;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

p:last-of-type {
  font-style: italic;
  font-size: 1em;
  margin-top: 30px;
}