/* --- CAMBIAR COLOR DE SELECCIÓN DE TEXTO EN TODA LA WEB --- */
::selection {
    background-color: #0e4db4 !important; /* Fondo azul corporativo */
    color: #ffffff !important;            /* Texto en blanco */
}

/* Para compatibilidad con versiones antiguas de Firefox */
::-moz-selection {
    background-color: #0e4db4 !important;
    color: #ffffff !important;
}