/* ==========================================================
   ESTILOS INTERNOS DE LA SECCIÓN PERFIL (sectionperfil.css)
   ========================================================== */
/* Subtítulos de las tarjetas con el fondo azul corporativo y barra amarilla */
.profile-subtitle {
    background-color: #0b2545;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 8px;
    margin: -30px -30px 25px -30px; /* Extiende el fondo de lado a lado del padding interno */
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

    .profile-subtitle::before {
        content: "";
        display: inline-block;
        width: 4px;
        height: 20px;
        background-color: #f7c331; /* Barra amarilla corporativa */
        border-radius: 2px;
    }
/* Bloque de contenido de texto */
.profile-content {
    display: flex;
    flex-direction: column;
    gap: 14px; /* Separación uniforme entre cada línea de datos */
}

    /* Estilo de los párrafos y etiquetas */
    .profile-content p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.6;
        color: #4a5568; /* Gris oscuro de alta legibilidad */
    }

    /* Destacar las etiquetas (Apellidos, Nombres, C.I., etc.) */
    .profile-content strong {
        color: #1a202c;
        font-weight: 600;
    }

    /* Enlaces (como el correo electrónico) */
    .profile-content a {
        color: #0066cc;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s ease;
    }

        .profile-content a:hover {
            color: #004d99;
            text-decoration: underline;
        }
