/* ARCHIVO REPARADOR DE CENTRADO Y HUECOS - REUTILIZABLE */

/* 1. Fuerza el centrado de cualquier bloque o imagen rebelde */
.centrar-todo, .w3-center, div[align="center"] {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    width: 100% !important;
    float: none !important;
}

/* 2. Evita que las fotos se peguen a la izquierda */
img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* 3. Centrado de párrafos de texto tipo "biografía" */
.texto-centrado {
    max-width: 800px !important;
    margin: 20px auto !important;
    text-align: justify !important; /* El texto se ve mejor justificado pero el bloque centrado */
}

/* 4. Arreglo para que el footer no se rompa */
.footer-limpio {
    clear: both !important;
    display: block !important;
    width: 100% !important;
}