/* Mejoras de accesibilidad */

/* Enfoque visible para navegación por teclado */
:focus {
    outline: 3px solid #007BC0;
    outline-offset: 2px;
}

/* Mejora de contraste para textos pequeños */
.central1, .central2 {
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Skip to main content - visible solo al recibir foco */
.skip-to-main-content {
    position: absolute;
    left: -999px;
    width: 1px;
    height: 1px;
    top: auto;
}

.skip-to-main-content:focus {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    padding: 10px;
    background: #FFFFFF;
    z-index: 9999;
    color: #007BC0;
}