.contenedor_principal {
    width: 100%;
    margin: 0 auto;
}

h1,
h2,
h3 {
    margin: 0;
}

/* ====== SECCIÓN ACERCA DE NOSOTROS ====== */
.seccion_acerca {
  background-image: url('public/imagenes/somos/somos_innova.jpeg');

    color: white;
    padding: 80px 20px;
    text-align: left;
    position: relative;
}


.seccion_acerca::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.contenido_acerca {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

.titulo_acerca {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
}

.texto_acerca {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.estadisticas_acerca {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.caja_estadistica {
    flex: 1 1 180px;
    background: white;
    color: #222;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.caja_estadistica h3 {
    font-size: 28px;
    color: #0056b3;
}

/* ====== SECCIÓN PROPÓSITO ====== */
.seccion_proposito {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.titulo_proposito {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 20px;
}

.texto_proposito {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== PRINCIPIOS ====== */
.principios_contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.principio_caja {
    background: #f1f1f1;
    flex: 1 1 220px;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.principio_caja h3 {
    color: #0056b3;
    margin-bottom: 10px;
}