/**
 * StrictKit Accesibilidad v1.9.24
 * Widget de accesibilidad para sitios web.
 * https://strictkit.com
 */

/* =========================================================================
   0. WIDGET ROOT — prevent blue selection/tap highlight
   ========================================================================= */

.sk-a11y-widget,
.sk-a11y-widget * {
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

/* Kill browser-default blue focus ring on ALL interactive elements inside widget */
.sk-a11y-widget button:focus,
.sk-a11y-widget [role="switch"]:focus,
.sk-a11y-widget input:focus,
.sk-a11y-widget select:focus,
.sk-a11y-widget a:focus,
.sk-a11y-trigger:focus {
    outline: none !important;
}

/* Block Kadence global button styles from leaking into the widget.
   Kadence global.min.css uses CSS vars for button hover/active:
     button:hover { background: var(--global-palette-btn-bg-hover); color: var(--global-palette-btn-hover) }
   which resolves to #215387 (blue). We neutralize by overriding the vars at widget scope
   so they cascade harmlessly to all descendant buttons without breaking existing styles. */
.sk-a11y-widget {
    --global-palette-btn-bg-hover: transparent;
    --global-palette-btn-hover: #1f2533;
    --global-palette-btn-bg: transparent;
    --global-palette-btn: #1f2533;
}
button.sk-a11y-trigger,
button.sk-a11y-trigger:hover,
button.sk-a11y-trigger:focus,
button.sk-a11y-trigger:active {
    background: var(--sk-trigger-bg, #66391c) !important;
    color: #fff !important;
}

.sk-a11y-widget ::selection {
    background: rgba(102, 57, 28, 0.2);
    color: inherit;
}

.sk-a11y-widget .sk-a11y-search-input,
.sk-a11y-widget .sk-a11y-dict-content {
    user-select: text;
    -webkit-user-select: text;
}

/* =========================================================================
   1. FLOATING TRIGGER BUTTON
   ========================================================================= */

.sk-a11y-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2147483645;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--sk-trigger-bg, #66391c);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    padding: 0;
    outline: none;
}

.sk-a11y-trigger:hover {
    transform: scale(1.1);
    box-shadow: none !important;
}

.sk-a11y-trigger:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(102, 57, 28, 0.5);
}

.sk-a11y-trigger-icon {
    width: 22px;
    height: auto;
    fill: #fff;
    pointer-events: none;
}

/* Hide trigger when panel is open */
.sk-a11y-widget--open .sk-a11y-trigger {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
}

/* Hidden by "Ocultar" button */
.sk-a11y-trigger--hidden {
    display: none !important;
}

/* Active actions badge */
.sk-a11y-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: #c33;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    pointer-events: none;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .sk-a11y-trigger {
        width: 36px;
        height: 36px;
        bottom: 10px;
        right: 10px;
    }
    .sk-a11y-trigger-icon {
        width: 18px;
        height: auto;
    }
    .sk-a11y-badge {
        min-width: 16px;
        height: 16px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }
}

/* =========================================================================
   2. PANEL
   ========================================================================= */

.sk-a11y-panel {
    position: fixed;
    top: 5vh;
    right: 20px;
    width: 480px;
    max-width: calc(100vw - 40px);
    max-height: 90vh;
    background: #f2f3f8;
    z-index: 2147483646;
    transform: translateX(calc(100% + 20px));
    transition: transform 0.35s ease;
    box-shadow: 0 10px 30px rgba(60, 80, 170, 0.15);
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    border-radius: 20px;
    overflow: hidden;
}

.sk-a11y-widget--open .sk-a11y-panel {
    transform: translateX(0);
}

@media (max-width: 520px) {
    .sk-a11y-panel {
        width: 100vw;
        max-width: 100vw;
        top: 0;
        right: 0;
        max-height: 100vh;
        border-radius: 0;
        transform: translateX(100%);
    }
}

/* =========================================================================
   2a. PANEL HEADER (top bar: close left, minimal)
   ========================================================================= */

.sk-a11y-panel-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--sk-panel-color, #66391c);
    color: #fff;
    padding: 10px 16px;
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: 20px 20px 0 0;
}

@media (max-width: 520px) {
    .sk-a11y-panel-header {
        border-radius: 0;
    }
}

.sk-a11y-header-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    line-height: 1;
}

.sk-a11y-header-btn:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.sk-a11y-header-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sk-a11y-close-btn {
    margin-left: auto;
}

/* =========================================================================
   2a-ii. HERO SECTION (brown bg, title + pill buttons)
   ========================================================================= */

.sk-a11y-hero {
    background: var(--sk-panel-color, #66391c);
    padding: 0 20px 20px;
    text-align: center;
    position: relative;
}

.sk-a11y-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100px;
    height: 100px;
    background: var(--sk-panel-color, #66391c);
    z-index: 0;
}

.sk-a11y-panel-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin: 0 0 14px;
    padding: 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.sk-a11y-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.sk-a11y-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: var(--sk-panel-color, #66391c);
    border: none;
    border-radius: 50px;
    padding: 9px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, Helvetica, sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
    white-space: nowrap;
}

.sk-a11y-hero-btn:hover {
    background: #f0ebe7 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
    color: var(--sk-panel-color, #66391c) !important;
}

.sk-a11y-hero-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.sk-a11y-hero-btn svg {
    flex-shrink: 0;
}

.sk-a11y-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* =========================================================================
   2b. PANEL BODY (scrollable)
   ========================================================================= */

.sk-a11y-panel-body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    padding-top: 10px;
    position: relative;
}

/* =========================================================================
   2c. COLLAPSIBLE SECTIONS (white cards)
   ========================================================================= */

.sk-a11y-section {
    background: #fff;
    border-radius: 16px;
    margin: 0 15px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.sk-a11y-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1f2533;
    text-align: left;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
    border-radius: 16px 16px 0 0;
}

.sk-a11y-section-header:hover {
    background: #f8f9fb !important;
    color: #1f2533 !important;
}

.sk-a11y-section-header:focus-visible {
    outline: 2px solid var(--sk-panel-color, #66391c);
    outline-offset: -2px;
}

.sk-a11y-chevron {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.sk-a11y-section-header[aria-expanded="false"] .sk-a11y-chevron {
    transform: rotate(-90deg);
}

.sk-a11y-section-body {
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.sk-a11y-section-body[aria-hidden="true"] {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* =========================================================================
   2d. 3-COLUMN GRID (PROD accessiBe match)
   ========================================================================= */

.sk-a11y-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
    box-sizing: border-box;
}

@media (max-width: 520px) {
    .sk-a11y-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 380px) {
    .sk-a11y-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================================================
   2e. PROFILE CARDS (Section 1) — horizontal list layout (PROD match)
   ========================================================================= */

/* Profiles section uses 1-column layout */
[data-section-content="profiles"] {
    grid-template-columns: 1fr !important;
    gap: 8px;
    padding: 10px 16px;
}

.sk-a11y-card {
    background: #fff;
    border-radius: 10px;
    padding: 14px 18px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 14px;
    border: 2px solid transparent;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sk-a11y-card:hover {
    border-color: rgba(102, 57, 28, 0.3);
}

.sk-a11y-card--active {
    border-color: var(--sk-panel-color, #66391c);
    box-shadow: 0 0 0 1px var(--sk-panel-color, #66391c);
}

.sk-a11y-card-icon {
    order: 3;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sk-panel-color, #66391c);
    flex-shrink: 0;
}

.sk-a11y-card-icon svg {
    width: 22px;
    height: 22px;
}

.sk-a11y-card-text {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.sk-a11y-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2533;
    line-height: 1.3;
}

.sk-a11y-card-desc {
    font-size: 14px;
    color: #3e465d;
    line-height: 1.3;
}

.sk-a11y-card-toggle {
    order: 1;
    flex-shrink: 0;
}

/* =========================================================================
   2f. COMPACT CARDS (Section 2, 3, 4) — 120px vertical layout
   ========================================================================= */

.sk-a11y-card--compact {
    padding: 12px 10px;
    gap: 4px;
    height: 120px;
    background: #f2f7fa;
    border: 2px solid transparent;
    border-radius: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sk-a11y-card--compact.sk-a11y-card--active {
    border-color: var(--sk-panel-color, #66391c);
}

.sk-a11y-card-icon-sm {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sk-panel-color, #66391c);
    flex-shrink: 0;
}

.sk-a11y-card-label {
    font-size: 12px;
    font-weight: 600;
    color: #1f2533;
    line-height: 1.2;
    word-break: break-word;
}

.sk-a11y-card-switch {
    margin-top: auto;
}

/* Stepper cards span 2 columns */
.sk-a11y-card--stepper {
    grid-column: span 2;
    height: 120px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Color palette expandable cards: auto-height when palette visible */
.sk-a11y-card--expandable.sk-a11y-card--active {
    height: auto;
    min-height: 120px;
    grid-column: span 3;
}

@media (max-width: 520px) {
    .sk-a11y-card--stepper {
        grid-column: span 2;
    }
    .sk-a11y-card--expandable.sk-a11y-card--active {
        grid-column: span 2;
    }
}

/* =========================================================================
   2g. TOGGLE — pill buttons NO / SI (PROD accessiBe style)
   ========================================================================= */

.sk-a11y-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: #e8e9ee;
    border-radius: 12px;
    overflow: hidden;
}

.sk-a11y-toggle:hover {
    background: #ddd !important;
    color: inherit !important;
}

.sk-a11y-toggle:focus-visible {
    outline: 2px solid var(--sk-panel-color, #66391c);
    outline-offset: 2px;
}

/* Hide the sliding track and thumb */
.sk-a11y-toggle-track {
    display: none;
}

.sk-a11y-toggle-thumb {
    display: none;
}

.sk-a11y-toggle-label {
    font-size: 11px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    user-select: none;
    line-height: 1;
    padding: 6px 12px;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sk-a11y-toggle-off {
    color: #666;
    background: transparent;
}

.sk-a11y-toggle-on {
    color: #999;
    background: transparent;
}

/* Active: SI pill highlighted */
.sk-a11y-toggle[aria-checked="true"] .sk-a11y-toggle-on {
    color: #fff;
    background: var(--sk-panel-color, #66391c);
}

/* Inactive: NO pill highlighted */
.sk-a11y-toggle[aria-checked="false"] .sk-a11y-toggle-off {
    color: #fff;
    background: #999;
}

/* =========================================================================
   2h. STEPPER CONTROL
   ========================================================================= */

.sk-a11y-stepper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    width: 100%;
    margin-top: 4px;
}

.sk-a11y-stepper-btn {
    width: 30px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8e8e8;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    flex-shrink: 0;
    transition: background-color 0.15s ease;
    padding: 0;
    line-height: 1;
}

.sk-a11y-stepper-btn:hover {
    background: #ddd !important;
    color: inherit !important;
}

.sk-a11y-stepper-btn:focus-visible {
    outline: 2px solid var(--sk-panel-color, #66391c);
    outline-offset: -2px;
}

.sk-a11y-stepper-value {
    flex: 1;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: #555;
    font-family: Arial, Helvetica, sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 4px;
    line-height: 28px;
}

/* =========================================================================
   2i. COLOR PALETTE
   ========================================================================= */

.sk-a11y-color-palette {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding-top: 8px;
    margin-top: 4px;
    border-top: 1px solid #eee;
}

.sk-a11y-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
    transition: transform 0.15s ease, border-color 0.15s ease;
    box-sizing: border-box;
}

.sk-a11y-swatch:hover {
    transform: scale(1.15);
}

.sk-a11y-swatch:focus-visible {
    outline: 2px solid var(--sk-panel-color, #66391c);
    outline-offset: 2px;
}

.sk-a11y-swatch--active {
    border-color: var(--sk-panel-color, #66391c) !important;
    transform: scale(1.15);
}

.sk-a11y-cancel-color {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: #c33;
    font-family: Arial, Helvetica, sans-serif;
    padding: 2px 6px;
    margin-left: auto;
    transition: color 0.15s ease;
}

.sk-a11y-cancel-color:hover {
    color: #a00;
}

/* =========================================================================
   2j. PANEL FOOTER
   ========================================================================= */

.sk-a11y-panel-footer {
    padding: 12px 20px;
    background: var(--sk-panel-color, #66391c);
    text-align: left;
    flex-shrink: 0;
    box-sizing: border-box;
    border-radius: 0 0 0 20px;
}

@media (max-width: 520px) {
    .sk-a11y-panel-footer {
        border-radius: 0;
    }
}

.sk-a11y-panel-footer span {
    font-size: 13px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.sk-a11y-panel-footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

.sk-a11y-panel-footer a:hover {
    opacity: 0.8;
}

/* =========================================================================
   3. BACKDROP
   ========================================================================= */

.sk-a11y-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2147483644;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sk-a11y-widget--open .sk-a11y-backdrop {
    opacity: 1;
    visibility: visible;
}

/* =========================================================================
   4. DESKTOP-ONLY FEATURE CARDS
   ========================================================================= */

@media (max-width: 767px) {
    .sk-a11y-desktop-only {
        display: none !important;
    }
}

/* =========================================================================
   5. ACCESSIBILITY MODIFICATION STYLES
   Classes applied to <html> by JS.
   ========================================================================= */

/* --- Readable Font --- */
html.sk-a11y-readable-font,
html.sk-a11y-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
}

/* --- Emphasize Titles --- */
html.sk-a11y-emphasize-titles h1,
html.sk-a11y-emphasize-titles h2,
html.sk-a11y-emphasize-titles h3,
html.sk-a11y-emphasize-titles h4,
html.sk-a11y-emphasize-titles h5,
html.sk-a11y-emphasize-titles h6 {
    border-bottom: 3px solid currentColor !important;
    padding-bottom: 2px !important;
}

/* --- Emphasize Links --- */
html.sk-a11y-emphasize-links a {
    text-decoration: underline !important;
    font-weight: bold !important;
}

/* --- Cognitive Frames (red headings + orange links/buttons) --- */
html.sk-a11y-cognitive-frames h1:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames h2:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames h3:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames h4:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames h5:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames h6:not(.sk-a11y-widget *) {
    outline: 2px solid #E30B0B !important;
    outline-offset: 3px;
}
html.sk-a11y-cognitive-frames a[href]:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames button:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames input[type="submit"]:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames input[type="button"]:not(.sk-a11y-widget *),
html.sk-a11y-cognitive-frames [role="button"]:not(.sk-a11y-widget *) {
    outline: 2px solid rgba(255, 114, 22, 0.8) !important;
    outline-offset: 2px;
}

/* --- Text Alignment --- */
html.sk-a11y-text-align-center *:not(.sk-a11y-widget):not(.sk-a11y-widget *) {
    text-align: center !important;
}

html.sk-a11y-text-align-left *:not(.sk-a11y-widget):not(.sk-a11y-widget *) {
    text-align: left !important;
}

html.sk-a11y-text-align-right *:not(.sk-a11y-widget):not(.sk-a11y-widget *) {
    text-align: right !important;
}

/* --- Dark Contrast --- */
html.sk-a11y-dark-contrast {
    background: #000 !important;
    color: #fff !important;
}

html.sk-a11y-dark-contrast *:not(.sk-a11y-widget):not(.sk-a11y-widget *) {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #555 !important;
}

html.sk-a11y-dark-contrast a:not(.sk-a11y-widget a) {
    color: #ff0 !important;
}

html.sk-a11y-dark-contrast img:not(.sk-a11y-widget img) {
    filter: brightness(0.8) !important;
}

/* --- Light Contrast --- */
html.sk-a11y-light-contrast {
    background: #fff !important;
    color: #000 !important;
}

html.sk-a11y-light-contrast *:not(.sk-a11y-widget):not(.sk-a11y-widget *) {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #aaa !important;
}

html.sk-a11y-light-contrast a:not(.sk-a11y-widget a) {
    color: #00f !important;
}

html.sk-a11y-light-contrast img:not(.sk-a11y-widget img) {
    filter: brightness(1.1) !important;
}

/* --- High Contrast / High Saturation / Low Saturation / Monochrome --- */
/* Filter-based modes are now applied dynamically via JS (combined filter string)
   to support stacking (e.g., highContrast + lowSaturation).
   CSS classes are still toggled for self-preservation and state tracking. */

/* --- Hide Images --- */
html.sk-a11y-hide-images img:not(.sk-a11y-widget img) {
    opacity: 0 !important;
}

/* --- Stop Animations --- */
html.sk-a11y-stop-animations *:not(.sk-a11y-widget):not(.sk-a11y-widget *),
html.sk-a11y-stop-animations *:not(.sk-a11y-widget):not(.sk-a11y-widget *)::before,
html.sk-a11y-stop-animations *:not(.sk-a11y-widget):not(.sk-a11y-widget *)::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
}

/* --- Emphasize Hover (desktop) --- */
html.sk-a11y-emphasize-hover *:not(.sk-a11y-widget):not(.sk-a11y-widget *):hover {
    outline: 3px solid var(--sk-panel-color, #66391c) !important;
    outline-offset: 1px;
}

/* --- Emphasize Focus --- */
html.sk-a11y-emphasize-focus *:not(.sk-a11y-widget):not(.sk-a11y-widget *):focus {
    outline: 3px solid var(--sk-panel-color, #66391c) !important;
    outline-offset: 2px !important;
}

/* --- Big Black Cursor --- */
html.sk-a11y-big-black-cursor,
html.sk-a11y-big-black-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 2L5 28L11 22L17 30L21 28L15 20L23 20Z' fill='%23000' stroke='%23fff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"), auto !important;
}

html.sk-a11y-big-black-cursor a,
html.sk-a11y-big-black-cursor button,
html.sk-a11y-big-black-cursor [role="button"],
html.sk-a11y-big-black-cursor input[type="submit"],
html.sk-a11y-big-black-cursor input[type="button"],
html.sk-a11y-big-black-cursor a *,
html.sk-a11y-big-black-cursor button *,
html.sk-a11y-big-black-cursor [role="button"] * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 2L5 28L11 22L17 30L21 28L15 20L23 20Z' fill='%23000' stroke='%23fff' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"), pointer !important;
}

/* --- Big White Cursor --- */
html.sk-a11y-big-white-cursor,
html.sk-a11y-big-white-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 2L5 28L11 22L17 30L21 28L15 20L23 20Z' fill='%23fff' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"), auto !important;
}

html.sk-a11y-big-white-cursor a,
html.sk-a11y-big-white-cursor button,
html.sk-a11y-big-white-cursor [role="button"],
html.sk-a11y-big-white-cursor input[type="submit"],
html.sk-a11y-big-white-cursor input[type="button"],
html.sk-a11y-big-white-cursor a *,
html.sk-a11y-big-white-cursor button *,
html.sk-a11y-big-white-cursor [role="button"] * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath d='M5 2L5 28L11 22L17 30L21 28L15 20L23 20Z' fill='%23fff' stroke='%23000' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E"), pointer !important;
}

/* --- Useful Links --- */
html.sk-a11y-useful-links a:not(.sk-a11y-widget a) {
    outline: 2px solid var(--sk-panel-color, #66391c) !important;
    outline-offset: 2px !important;
    position: relative;
}


/* =========================================================================
   6. SELF-PRESERVATION: Widget styling under contrast modes
   ========================================================================= */

html.sk-a11y-dark-contrast .sk-a11y-trigger,
html.sk-a11y-light-contrast .sk-a11y-trigger {
    background-color: var(--sk-trigger-bg, #66391c) !important;
    border-color: var(--sk-trigger-bg, #66391c) !important;
}

html.sk-a11y-dark-contrast .sk-a11y-trigger svg,
html.sk-a11y-light-contrast .sk-a11y-trigger svg {
    fill: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-panel,
html.sk-a11y-light-contrast .sk-a11y-panel {
    background-color: #f2f3f8 !important;
}

html.sk-a11y-dark-contrast .sk-a11y-panel *,
html.sk-a11y-light-contrast .sk-a11y-panel * {
    background-color: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
}

html.sk-a11y-dark-contrast .sk-a11y-panel-header,
html.sk-a11y-light-contrast .sk-a11y-panel-header,
html.sk-a11y-dark-contrast .sk-a11y-hero,
html.sk-a11y-light-contrast .sk-a11y-hero {
    background-color: var(--sk-panel-color, #66391c) !important;
}

html.sk-a11y-dark-contrast .sk-a11y-panel-header *,
html.sk-a11y-light-contrast .sk-a11y-panel-header *,
html.sk-a11y-dark-contrast .sk-a11y-hero *,
html.sk-a11y-light-contrast .sk-a11y-hero * {
    color: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-hero-btn,
html.sk-a11y-light-contrast .sk-a11y-hero-btn {
    background-color: #fff !important;
    color: var(--sk-panel-color, #66391c) !important;
}

html.sk-a11y-dark-contrast .sk-a11y-hero-btn svg,
html.sk-a11y-light-contrast .sk-a11y-hero-btn svg {
    fill: var(--sk-panel-color, #66391c) !important;
}

html.sk-a11y-dark-contrast .sk-a11y-section,
html.sk-a11y-light-contrast .sk-a11y-section {
    background-color: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-section-header,
html.sk-a11y-light-contrast .sk-a11y-section-header {
    background-color: #fff !important;
    color: #1f2533 !important;
}

html.sk-a11y-dark-contrast .sk-a11y-card,
html.sk-a11y-light-contrast .sk-a11y-card {
    background-color: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-card--compact,
html.sk-a11y-light-contrast .sk-a11y-card--compact {
    background-color: #f2f7fa !important;
}

html.sk-a11y-dark-contrast .sk-a11y-card *,
html.sk-a11y-light-contrast .sk-a11y-card * {
    color: #333 !important;
}

html.sk-a11y-dark-contrast .sk-a11y-card-icon,
html.sk-a11y-dark-contrast .sk-a11y-card-icon-sm,
html.sk-a11y-light-contrast .sk-a11y-card-icon,
html.sk-a11y-light-contrast .sk-a11y-card-icon-sm {
    color: var(--sk-panel-color, #66391c) !important;
}

html.sk-a11y-dark-contrast .sk-a11y-card-desc,
html.sk-a11y-light-contrast .sk-a11y-card-desc {
    color: #3e465d !important;
}

html.sk-a11y-dark-contrast .sk-a11y-toggle-track,
html.sk-a11y-light-contrast .sk-a11y-toggle-track {
    background-color: #ccc !important;
}

html.sk-a11y-dark-contrast .sk-a11y-toggle[aria-checked="true"] .sk-a11y-toggle-track,
html.sk-a11y-light-contrast .sk-a11y-toggle[aria-checked="true"] .sk-a11y-toggle-track {
    background-color: var(--sk-panel-color, #66391c) !important;
}

html.sk-a11y-dark-contrast .sk-a11y-toggle-thumb,
html.sk-a11y-light-contrast .sk-a11y-toggle-thumb {
    background-color: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-panel-footer,
html.sk-a11y-light-contrast .sk-a11y-panel-footer {
    background-color: var(--sk-panel-color, #66391c) !important;
}

html.sk-a11y-dark-contrast .sk-a11y-panel-footer *,
html.sk-a11y-light-contrast .sk-a11y-panel-footer * {
    color: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-stepper,
html.sk-a11y-light-contrast .sk-a11y-stepper {
    background-color: #f5f5f5 !important;
    border-color: #ddd !important;
}

html.sk-a11y-dark-contrast .sk-a11y-stepper-btn,
html.sk-a11y-light-contrast .sk-a11y-stepper-btn {
    background-color: #e8e8e8 !important;
    color: #333 !important;
}

html.sk-a11y-dark-contrast .sk-a11y-stepper-value,
html.sk-a11y-light-contrast .sk-a11y-stepper-value {
    color: #555 !important;
}

html.sk-a11y-dark-contrast .sk-a11y-toggle,
html.sk-a11y-light-contrast .sk-a11y-toggle {
    background-color: #e8e9ee !important;
}

html.sk-a11y-dark-contrast .sk-a11y-toggle-label,
html.sk-a11y-light-contrast .sk-a11y-toggle-label {
    color: #999 !important;
}

html.sk-a11y-dark-contrast .sk-a11y-toggle[aria-checked="true"] .sk-a11y-toggle-on,
html.sk-a11y-light-contrast .sk-a11y-toggle[aria-checked="true"] .sk-a11y-toggle-on {
    background-color: var(--sk-panel-color, #66391c) !important;
    color: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-toggle[aria-checked="false"] .sk-a11y-toggle-off,
html.sk-a11y-light-contrast .sk-a11y-toggle[aria-checked="false"] .sk-a11y-toggle-off {
    background-color: #999 !important;
    color: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-backdrop,
html.sk-a11y-light-contrast .sk-a11y-backdrop {
    background-color: rgba(0, 0, 0, 0.4) !important;
}

/* Also preserve under filter-based modes */
html.sk-a11y-high-contrast .sk-a11y-widget,
html.sk-a11y-high-saturation .sk-a11y-widget,
html.sk-a11y-low-saturation .sk-a11y-widget,
html.sk-a11y-monochrome .sk-a11y-widget {
    filter: none !important;
}

/* =========================================================================
   7. DYNAMIC HELPER ELEMENTS (created by JS)
   ========================================================================= */

/* Reading guide — blue bar following cursor (senior profile) */
.sk-a11y-reading-guide-line {
    position: fixed;
    width: 500px;
    height: 8px;
    background: #146FF8;
    border-top: 2px solid #0a0e1a;
    border-bottom: 2px solid #0a0e1a;
    pointer-events: none;
    z-index: 2147483647;
    box-sizing: border-box;
    transform: translateX(-50%);
}

/* Reading popup — large black dialog showing hovered text (senior profile) */
.sk-a11y-reading-popup {
    position: fixed;
    background: #1a1a1a;
    color: #ffffff;
    padding: 28px 32px;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1.5;
    max-width: 500px;
    min-width: 200px;
    z-index: 2147483646;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7);
    word-break: break-word;
    display: none;
    font-family: Arial, Helvetica, sans-serif;
}

/* Reading mask overlays */
.sk-a11y-mask-overlay {
    position: fixed;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    z-index: 2147483643;
    transition: top 0.05s linear, height 0.05s linear;
}

/* Magnifier box */
.sk-a11y-magnifier {
    position: fixed;
    width: 200px;
    height: 100px;
    border: 2px solid var(--sk-panel-color, #66391c);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    pointer-events: none;
    z-index: 2147483643;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    font-size: 24px;
    line-height: 1.4;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    word-break: break-word;
}

/* Useful links badge */
.sk-a11y-link-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 20px;
    height: 20px;
    background: var(--sk-panel-color, #66391c);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
    line-height: 1;
}

/* Read mode overlay */
.sk-a11y-read-mode-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2147483640;
    overflow-y: auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.sk-a11y-read-mode-content {
    max-width: 700px;
    margin: 0 auto;
    font-family: Georgia, serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.sk-a11y-read-mode-content h1,
.sk-a11y-read-mode-content h2,
.sk-a11y-read-mode-content h3 {
    font-family: Arial, Helvetica, sans-serif;
    margin: 1.5em 0 0.5em;
    color: #111;
}

.sk-a11y-read-mode-content p {
    margin: 0 0 1em;
}

.sk-a11y-read-mode-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2147483641;
    width: 40px;
    height: 40px;
    background: var(--sk-panel-color, #66391c);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sk-a11y-read-mode-close:hover {
    background: #4a2710 !important;
}

/* =========================================================================
   8. SKIP LINKS (accessible navigation)
   ========================================================================= */

.sk-a11y-skip-links {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    display: flex;
    gap: 4px;
    padding: 4px;
}

.sk-a11y-skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    background: var(--sk-panel-color, #66391c);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    white-space: nowrap;
    z-index: 2147483647;
}

.sk-a11y-skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

/* =========================================================================
   9. PROFILE NOTES
   ========================================================================= */

.sk-a11y-card-note {
    display: block;
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-top: 4px;
    line-height: 1.3;
}

.sk-a11y-card-note strong {
    font-weight: 700;
    color: #777;
}

/* =========================================================================
   10. DICTIONARY SEARCH BAR
   ========================================================================= */

.sk-a11y-search-bar {
    position: relative;
    z-index: 1;
    padding: 10px 15px;
    margin: 0 15px 16px;
    background: transparent;
}

.sk-a11y-search-icon {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

input.sk-a11y-search-input {
    width: 100%;
    padding: 8px 12px 8px 30px !important;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 13px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.sk-a11y-search-input:focus {
    border-color: var(--sk-panel-color, #66391c);
    box-shadow: 0 0 0 2px rgba(102, 57, 28, 0.15);
}

.sk-a11y-search-input::placeholder {
    color: #aaa;
    font-style: italic;
}

.sk-a11y-dict-results {
    margin: -6px 15px 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 220px;
    overflow-y: auto;
}

.sk-a11y-dict-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s ease;
}

.sk-a11y-dict-item:last-child {
    border-bottom: none;
}

.sk-a11y-dict-item:hover {
    background: #f2f7fa;
}

.sk-a11y-dict-term {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1f2533;
    font-family: Arial, Helvetica, sans-serif;
}

.sk-a11y-dict-def {
    display: block;
    font-size: 11px;
    color: #666;
    margin-top: 2px;
    font-family: Arial, Helvetica, sans-serif;
}

/* =========================================================================
   11. ENLACES ÚTILES DROPDOWN
   ========================================================================= */

.sk-a11y-useful-links-select {
    width: 100%;
    margin-top: 6px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #555;
    background: #fff;
    cursor: pointer;
    outline: none;
    appearance: auto;
}

.sk-a11y-useful-links-select:focus {
    border-color: var(--sk-panel-color, #66391c);
    box-shadow: 0 0 0 2px rgba(102, 57, 28, 0.15);
}

/* =========================================================================
   12. SMART PROMPT (keyboard/screen reader detection)
   ========================================================================= */

.sk-a11y-smart-prompt {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 2147483644;
    background: #fff;
    border: 2px solid var(--sk-panel-color, #66391c);
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    font-family: Arial, Helvetica, sans-serif;
    animation: sk-a11y-slide-up 0.3s ease;
}

@keyframes sk-a11y-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.sk-a11y-smart-prompt-content {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.sk-a11y-smart-prompt-content svg {
    flex-shrink: 0;
    margin-top: 2px;
}

#sk-a11y-smart-prompt-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.sk-a11y-smart-prompt-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.sk-a11y-smart-prompt-btn {
    padding: 6px 18px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    transition: background 0.2s ease;
}

.sk-a11y-smart-prompt-yes {
    background: var(--sk-panel-color, #66391c);
    color: #fff;
}

.sk-a11y-smart-prompt-yes:hover {
    background: #4a2710 !important;
}

.sk-a11y-smart-prompt-no {
    background: #e8e9ee;
    color: #555;
}

.sk-a11y-smart-prompt-no:hover {
    background: #d5d6db !important;
}

/* Self-preservation: search bar, smart prompt, dropdown under contrast modes */
html.sk-a11y-dark-contrast .sk-a11y-search-bar,
html.sk-a11y-light-contrast .sk-a11y-search-bar,
html.sk-a11y-high-contrast .sk-a11y-search-bar {
    background: #f8f9fb !important;
    border-color: #e8e9ee !important;
}

html.sk-a11y-dark-contrast .sk-a11y-search-input,
html.sk-a11y-light-contrast .sk-a11y-search-input,
html.sk-a11y-high-contrast .sk-a11y-search-input {
    background: #fff !important;
    color: #333 !important;
    border-color: #ddd !important;
}

html.sk-a11y-dark-contrast .sk-a11y-smart-prompt,
html.sk-a11y-light-contrast .sk-a11y-smart-prompt,
html.sk-a11y-high-contrast .sk-a11y-smart-prompt {
    background: #fff !important;
    color: #333 !important;
    border-color: var(--sk-panel-color, #66391c) !important;
}

html.sk-a11y-dark-contrast #sk-a11y-smart-prompt-text,
html.sk-a11y-light-contrast #sk-a11y-smart-prompt-text,
html.sk-a11y-high-contrast #sk-a11y-smart-prompt-text {
    color: #333 !important;
}

html.sk-a11y-dark-contrast .sk-a11y-dict-results,
html.sk-a11y-light-contrast .sk-a11y-dict-results,
html.sk-a11y-high-contrast .sk-a11y-dict-results {
    background: #fff !important;
}

html.sk-a11y-dark-contrast .sk-a11y-dict-term,
html.sk-a11y-light-contrast .sk-a11y-dict-term,
html.sk-a11y-high-contrast .sk-a11y-dict-term {
    color: #1f2533 !important;
}

/* =========================================================================
   14. PRINT: hide widget entirely
   ========================================================================= */

@media print {
    .sk-a11y-widget,
    .sk-a11y-skip-links,
    .sk-a11y-reading-guide-line,
    .sk-a11y-mask-overlay,
    .sk-a11y-magnifier,
    .sk-a11y-link-badge,
    .sk-a11y-read-mode-overlay,
    .sk-a11y-read-mode-close,
    .sk-a11y-smart-prompt,
    .sk-a11y-sr-button {
        display: none !important;
    }
}
