/* ==========================================================================
   ESTILOS DEL ASISTENTE VISUAL (PATRÓN DE ACCESIBILIDAD) - SANTA ANA MAYA
   ========================================================================== */
.accessibility-widget-wrapper {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 1090;
}

/* Botón flotante redondo */
.btn-accessibility-main {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--pt-rojo, #E30613);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accessibility-main:hover {
    background-color: #B8000A;
    color: var(--pt-amarillo, #FFED00);
    transform: scale(1.08);
}

/* Panel flotante */
.accessibility-panel-box {
    position: absolute;
    bottom: 65px;
    left: 0;
    width: 280px;
    z-index: 1095;
    animation: accessSlideUp 0.25s ease-out;
}

/* REGLAS MODO ALTO CONTRASTE */
body.mode-high-contrast {
    background-color: #000000 !important;
    color: #FFFF00 !important;
}

body.mode-high-contrast *:not(.accessibility-widget-wrapper *) {
    background-color: #000000 !important;
    color: #FFFF00 !important;
    border-color: #FFFF00 !important;
}

body.mode-high-contrast a {
    color: #00FFFF !important;
    text-decoration: underline !important;
}

/* ESCALA DE GRISES */
body.mode-monochrome {
    filter: grayscale(100%) !important;
}

/* RESALTAR ENLACES */
body.mode-highlight-links a {
    background-color: #FFED00 !important;
    color: #000000 !important;
    font-weight: 800 !important;
    padding: 0 3px !important;
}

/* FUENTE LEGIBLE */
body.mode-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
}

@keyframes accessSlideUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}