.mypi-about-container {
    font-size: 18px; /* Punto de control maestro */
    max-width: 65em;
    margin: 2em auto;
}

/* --- SECCIÓN 1: INTRODUCCIÓN (Misión y Visión) --- */
.mypi-intro {
    max-width: 55em; /* Acortamos el ancho solo aquí para una lectura perfecta */
    margin: 0 auto 4em auto; /* Centrado horizontal y margen inferior */
    text-align: center; /* Alineación centrada para dar porte institucional */
}

.mypi-intro p {
    font-size: 1.15em;
    line-height: 1.8;
    color: #4a4a4a; /* Un gris muy oscuro, más elegante que el negro puro */
    margin-bottom: 1.5em;
}

/* El primer párrafo actuará como un "Resumen Ejecutivo" destacado */
.mypi-intro p:first-of-type {
    font-size: 1.35em;
    font-weight: 600;
    color: var(--mypi-oscuro);
}

.mypi-intro h3 {
    color: var(--mypi-claro); /* Aseguramos tu azul corporativo */
    font-size: 3.5rem; /* Un tamaño más imponente */
    margin-top: 1.5em;
    letter-spacing: 1px; /* Separamos un poco las letras de la fuente Staatliches */
}

.mypi-stats-integration {
    margin: 3em 0;
}

/* --- SECCIÓN 3: EL EQUIPO --- */
.mypi-team-section {
    background: #f4f4f8; /* Un gris con un levísimo toque azulado, muy moderno */
    padding: 4em 2em;
    border-radius: 1em;
    margin-top: 5em;
}

.mypi-team-section h2 {
    color: var(--mypi-oscuro);
    font-size: 3.5rem;
    margin-bottom: 1.2em;
}

.mypi-team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

/* Diseño de tarjeta individual (Estilo Dashboard) */
.team-member {
    flex: 1;
    min-width: 260px;
    background: #ffffff;
    padding: 2.5em 1.5em;
    border-radius: 0.8em;
    box-shadow: 0 0.3em 1em rgba(0,0,0,0.03);
    border: 1px solid #eee;
    text-align: center; /* Centramos el texto para dar equilibrio */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover interactivo */
.team-member:hover {
    transform: translateY(-0.5em);
    box-shadow: 0 0.6em 1.5em rgba(0,0,0,0.08);
}

/* Nombre del miembro */
.team-member h4 {
    color: var(--mypi-claro);
    font-family: var(--fuente-headings); /* Usamos Staatliches */
    font-size: 2.4rem;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
}

/* Descripción */
.team-member p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.6;
    margin: 0;
}

/* --- TÍTULOS MAESTROS DE SECCIÓN (BLINDADOS) --- */
h2.mypi-main-title {
    font-family: var(--fuente-headings) !important; 
    font-size: 4.5rem !important; 
    color: var(--mypi-oscuro) !important; 
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px;
    margin-top: 1.5em !important;
    margin-bottom: 1em !important;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05); 
}