        :root {

            --azul: #0e2a52;
            --azul-mid: #1a4580;
            --azul-claro: #2e7ed6;
            --azul-clarito: #4da9ff;
            --azul-lt: #e8f1fb;
            --verde: #95FF87;
            --bg: #f0f4fa;
            --card: #ffffff;
            --texto: #1a2b45;
            --suave: #5a6e8a;
            --borde: rgba(14, 42, 82, 0.09);
            --sombra: 0 2px 16px rgba(14, 42, 82, 0.07);
            --sombra-h: 0 12px 40px rgba(14, 42, 82, 0.13);
            --r: 16px;
            --r-sm: 10px;
            --font: 'Outfit', sans-serif;
            --font-display: 'DM Serif Display', serif;
            --ease: cubic-bezier(.22, 1, .36, 1);
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font);
            font-size: 13px;
            background: var(--bg);
            color: var(--texto);
            -webkit-font-smoothing: antialiased;
        }


        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes shimmer {

            0%,
            100% {
                background-position: 200% center
            }
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(46, 126, 214, .28)
            }

            50% {
                box-shadow: 0 0 0 8px rgba(46, 126, 214, 0)
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .7s var(--ease), transform .7s var(--ease);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }


        .divider {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 0 32px;
            margin: 48px 0;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--azul-claro), transparent);
            opacity: .5;
        }

        .divider-diamond {
            width: 8px;
            height: 8px;
            background: var(--azul-claro);
            transform: rotate(45deg);
            flex-shrink: 0;
            opacity: .7;
        }


        .btn-ya {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 26px;
            border-radius: 50px;
            font-family: var(--font);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .02em;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform .22s var(--ease), box-shadow .22s ease, background .22s ease, color .22s ease;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

        .btn-ya::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, .1);
            opacity: 0;
            transition: opacity .18s;
            border-radius: inherit;
        }

        .btn-ya:hover::after {
            opacity: 1;
        }

        .btn-ya:hover {
            transform: translateY(-2px);
            text-decoration: none;
        }

        .btn-ya:active {
            transform: scale(.97);
        }

        .btn-ya i {
            transition: transform .25s var(--ease);
        }

        .btn-ya:hover i.fa-arrow-right {
            transform: translateX(3px);
        }

        .btn-ya:hover i.fa-file-pdf {
            transform: scale(1.15) rotate(-5deg);
        }

        .btn-ya:hover i.fa-handshake {
            transform: scale(1.1);
        }

        /* Variantes */
        .btn-ya-primary {
            background: linear-gradient(135deg, var(--azul-mid), var(--azul-claro));
            color: #fff;
            box-shadow: 0 4px 18px rgba(46, 126, 214, .25);
        }

        .btn-ya-primary:hover {
            box-shadow: 0 8px 28px rgba(46, 126, 214, .38);
            color: #fff;
        }

        .btn-ya-outline {
            background: transparent;
            color: var(--azul-mid);
            border: 1.5px solid var(--azul-claro);
        }

        .btn-ya-outline:hover {
            background: var(--azul-lt);
            color: var(--azul-mid);
            box-shadow: 0 4px 16px rgba(46, 126, 214, .12);
        }

        .btn-ya-ghost {
            background: var(--azul-lt);
            color: var(--azul-mid);
        }

        .btn-ya-ghost:hover {
            background: var(--azul-mid);
            color: #fff;
            box-shadow: 0 4px 16px rgba(14, 42, 82, .15);
        }

        .btn-ya-danger {
            background: linear-gradient(135deg, #c0392b, #e53935);
            color: #fff;
            box-shadow: 0 4px 16px rgba(192, 57, 43, .22);
        }

        .btn-ya-danger:hover {
            box-shadow: 0 8px 24px rgba(192, 57, 43, .35);
            color: #fff;
        }

        .btn-ya-sm {
            padding: 8px 18px;
            font-size: 12px;
        }

        .btn-ya-lg {
            padding: 13px 34px;
            font-size: 14px;
        }


        #carousel-example {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra-h);
        }

        .rounded-img {
            display: block;
            width: 100%;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: 40px;
            height: 40px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(14, 42, 82, .6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s;
        }

        .carousel-control-prev {
            left: 14px;
        }

        .carousel-control-next {
            right: 14px;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(14, 42, 82, .85);
        }

        .avisos-section {
            padding: 32px 28px 48px;
            max-width: 1300px;
            margin: 0 auto;
        }

        /* Card individual */
        .av-card {
            background: var(--card);
            border-radius: var(--r);
            border: 1px solid var(--borde);
            border-top: 3px solid var(--azul-claro);
            box-shadow: var(--sombra);
            padding: 24px 20px 22px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
            position: relative;
            transition: transform .3s var(--ease), box-shadow .3s ease;
        }

        .av-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra-h);
        }

        .av-card-num {
            position: absolute;
            top: 12px;
            right: 14px;
            font-size: 10px;
            font-weight: 700;
            color: var(--suave);
            background: var(--azul-lt);
            padding: 2px 10px;
            border-radius: 20px;
            letter-spacing: .03em;
        }

        .av-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--azul-lt);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--azul-mid);
            font-size: 17px;
            flex-shrink: 0;
            margin-top: 4px;
            transition: background .25s, color .25s, transform .25s var(--ease);
        }

        .av-card:hover .av-card-icon {
            background: var(--azul-mid);
            color: #fff;
            transform: scale(1.08) rotate(-5deg);
        }

        .av-card h3 {
            font-size: 13px;
            font-weight: 700;
            color: var(--azul);
            margin: 0;
            line-height: 1.45;
        }

        .av-card p {
            font-size: 12px;
            color: var(--suave);
            line-height: 1.7;
            margin: 0;
            flex: 1;
        }

        .av-fecha {
            font-size: 11px !important;
            color: var(--azul-claro) !important;
            display: flex;
            align-items: center;
            gap: 5px;
            justify-content: center;
            font-weight: 500;
        }

        /* Grids */
        .av-grid-direct,
        .av-grid-acc {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        /* Aviso único */
        .av-single {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            border-top: 4px solid var(--azul-mid);
            padding: 40px 44px;
            text-align: center;
            transition: transform .3s var(--ease), box-shadow .3s ease;
        }

        .av-single:hover {
            transform: translateY(-3px);
            box-shadow: var(--sombra-h);
        }

        .av-single-icon {
            font-size: 32px;
            color: var(--azul-clarito);
            margin-bottom: 16px;
        }

        .av-single h2 {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--azul);
            margin-bottom: 12px;
        }

        .av-single p {
            font-size: 13px;
            color: var(--suave);
            line-height: 1.75;
            margin-bottom: 24px;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Toggle acordeón */
        .av-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--card);
            border: 1px solid var(--borde);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            padding: 18px 24px;
            cursor: pointer;
            transition: box-shadow .25s ease, border-color .25s;
            gap: 16px;
            position: relative;
            overflow: hidden;
        }

        .av-toggle::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--azul-claro), var(--azul-clarito));
        }

        .av-toggle:hover {
            box-shadow: var(--sombra-h);
        }

        .av-toggle.open {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
            border-bottom-color: transparent;
        }

        .av-toggle-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .av-toggle-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--azul-lt);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--azul-mid);
            font-size: 16px;
            flex-shrink: 0;
            transition: background .25s, color .25s;
        }

        .av-toggle:hover .av-toggle-icon {
            background: var(--azul-mid);
            color: #fff;
        }

        .av-toggle-texts h3 {
            font-family: var(--font);
            font-size: 14px;
            font-weight: 700;
            color: var(--azul);
            margin: 0 0 2px;
        }

        .av-toggle-texts p {
            font-size: 12px;
            color: var(--suave);
            margin: 0;
        }

        .av-toggle-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .av-total-badge {
            background: var(--azul-lt);
            color: var(--azul-mid);
            border: 1px solid rgba(46, 126, 214, .2);
            border-radius: 30px;
            padding: 4px 14px;
            font-size: 11px;
            font-weight: 700;
        }

        .av-chevron {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--azul-lt);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--azul);
            font-size: 13px;
            transition: transform .38s var(--ease), background .25s, color .25s;
            flex-shrink: 0;
        }

        .av-toggle.open .av-chevron {
            transform: rotate(180deg);
            background: var(--azul-mid);
            color: #fff;
        }

        .av-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height .55s cubic-bezier(.4, 0, .2, 1);
            background: var(--card);
            border: 1px solid var(--borde);
            border-top: none;
            border-bottom-left-radius: var(--r);
            border-bottom-right-radius: var(--r);
            box-shadow: var(--sombra);
        }

        .av-panel.open {
            max-height: 1400px;
        }

        .av-panel-inner {
            padding: 20px;
        }

        .av-scroll-box {
            max-height: 520px;
            overflow-y: auto;
            padding-right: 4px;
            scrollbar-width: thin;
            scrollbar-color: rgba(14, 42, 82, .12) transparent;
        }

        .av-scroll-box::-webkit-scrollbar {
            width: 4px;
        }

        .av-scroll-box::-webkit-scrollbar-thumb {
            background: rgba(14, 42, 82, .12);
            border-radius: 4px;
        }

        .av-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            margin-top: 12px;
            font-size: 11px;
            color: var(--suave);
            opacity: .6;
        }


        .tiltable {
            transition: transform .18s ease;
            transform-style: preserve-3d;
        }


        .payment-section-background {
            background: linear-gradient(135deg, var(--azul) 0%, var(--azul-mid) 100%);
            padding: 64px 24px;
            position: relative;
            overflow: hidden;
        }

        .payment-section-background::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 55% 60% at 80% 50%, rgba(77, 169, 255, .1), transparent);
            pointer-events: none;
        }

        /* Patrón sutil de puntos */
        .payment-section-background::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
            background-size: 28px 28px;
            pointer-events: none;
        }

        .payment-card {
            font-family: var(--font);
            background: rgba(255, 255, 255, .07);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, .14);
            border-radius: 22px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .12);
            width: 100%;
            max-width: 400px;
            text-align: center;
            padding: 48px 40px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .payment-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--azul-clarito), var(--verde), var(--azul-clarito));
            background-size: 200% auto;
            animation: shimmer 3.5s linear infinite;
        }

        .payment-card h1 {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 10px;
            line-height: 1.35;
        }

        .payment-card .instructions {
            font-size: 13px;
            color: rgba(255, 255, 255, .68);
            margin-bottom: 30px;
            line-height: 1.75;
        }

        .qr-container {
            margin: 0 auto 30px;
            padding: 14px;
            background: rgba(255, 255, 255, .96);
            border-radius: 14px;
            display: inline-block;
            box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
            transition: transform .3s var(--ease);
            cursor: pointer;
        }

        .qr-container:hover {
            transform: scale(1.04);
        }

        .qr-container img {
            display: block;
            width: 100%;
            max-width: 200px;
            height: auto;
        }


        .alianzas-wrap,
        .oficinavirtual-wrap {
            max-width: 900px;
            margin: 0 auto;
            padding: 28px 24px 48px;
        }

        .alianzas-card,
        .oficinavirtual-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            padding: 36px 44px;
            text-align: center;
            transition: transform .3s var(--ease), box-shadow .3s ease;
        }

        .alianzas-card:hover,
        .oficinavirtual-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--sombra-h);
        }

        .alianzas-card p,
        .oficinavirtual-card p {
            font-size: 13px;
            color: var(--suave);
            line-height: 1.9;
        }


        .ov-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 860px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .ov-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            text-align: center;
            text-decoration: none;
            transition: transform .3s var(--ease);
        }

        .ov-item:hover {
            transform: translateY(-6px);
            text-decoration: none;
        }

        .ov-icon-box {
            width: 68px;
            height: 68px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            background: linear-gradient(135deg, var(--azul-mid), var(--azul-claro));
            box-shadow: 0 6px 20px rgba(46, 126, 214, .24);
            transition: box-shadow .3s, transform .3s var(--ease);
            animation: pulse 3s ease-in-out infinite;
        }

        .ov-item:hover .ov-icon-box {
            box-shadow: 0 12px 32px rgba(46, 126, 214, .38);
            transform: scale(1.08);
            animation: none;
        }

        .ov-item span {
            font-size: 12px;
            font-weight: 600;
            color: var(--azul);
            line-height: 1.35;
        }


        .pq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            max-width: 820px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .pq-card {
            background: var(--card);
            border-radius: var(--r);
            border: 1px solid var(--borde);
            box-shadow: var(--sombra);
            padding: 4px 4px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 16px;
            transition: transform .3s var(--ease), box-shadow .3s ease;
            position: relative;
            overflow: hidden;
        }

        /* Línea inferior animada */
        .pq-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--azul-claro), var(--azul-clarito));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .38s var(--ease);
        }

        .pq-card:hover::after {
            transform: scaleX(1);
        }

        .pq-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra-h);
        }

        .pq-card img {
            width: 100%;
            border-radius: var(--r-sm);
        }

        .pq-card p.lead {
            font-size: 12px;
            color: var(--suave);
            line-height: 1.8;
            margin: 0 8px;
        }


        .banner-wrap {
            padding: 32px 24px 0;
        }

        .banner-wrap .inner {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra-h);
            transition: box-shadow .3s;
        }

        .banner-wrap .inner:hover {
            box-shadow: 0 20px 56px rgba(14, 42, 82, .16);
        }

        .banner-wrap img {
            width: 100%;
            display: block;
        }

        .banner-cta {
            text-align: center;
            margin-top: 24px;
        }


        .noticias-wrap {
            padding: 0 24px;
        }

        .noticias-wrap .inner {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra);
        }

        .noticias-wrap img {
            width: 100%;
            display: block;
        }


        .text-inicio {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--azul-mid);
            margin-bottom: 12px;
        }

        /*  PANEL DE ACCESIBILIDAD  */
        #acc-tooltip {
            position: fixed;
            bottom: 110px;
            left: 50%;
            transform: translateX(-50%) translateY(12px);
            background: var(--azul-claro);
            color: #fff;
            padding: 8px 20px;
            border-radius: 40px;
            font-size: 12px;
            font-family: var(--font);
            font-weight: 600;
            letter-spacing: .02em;
            box-shadow: 0 6px 28px rgba(14, 42, 82, .38);
            z-index: 9999990;
            opacity: 0;
            pointer-events: none;
            transition: opacity .2s, transform .2s;
            max-width: 82vw;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            border: 1px solid rgba(255, 255, 255, .12);
        }

        #acc-tooltip.show {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        #acc-fab {
            position: fixed !important;
            bottom: 32px;
            left: 32px;
            z-index: 9999999 !important;
            width: 52px;
            height: 52px;
            border-radius: 35px;
            background: var(--azul-claro) !important;
            color: #fff !important;
            border: 1.5px solid rgba(255, 255, 255, .15) !important;
            cursor: pointer;
            box-shadow: 0 6px 24px rgba(14, 42, 82, .45) !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            transition: transform .2s var(--ease), box-shadow .2s;
            filter: none !important;
            isolation: isolate;
        }

        #acc-fab:hover {
            transform: scale(1.08) translateY(-2px);
            box-shadow: 0 12px 36px rgba(14, 42, 82, .52) !important;
        }

        #acc-fab:active {
            transform: scale(.96);
        }

        #acc-dot {
            position: absolute;
            top: -4px;
            left: -4px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--azul-clarito);
            border: 2px solid #fff;
        }

        #acc-panel {
            position: fixed !important;
            bottom: 38px;
            left: 32px;
            z-index: 9999998 !important;
            width: 310px;
            background: #fff !important;
            border-radius: 20px;
            box-shadow: 0 20px 70px rgba(15, 23, 42, .16), 0 4px 14px rgba(15, 23, 42, .09) !important;
            border: 1px solid rgba(148, 163, 184, .16) !important;
            overflow: hidden;
            transform-origin: bottom left;
            transform: scale(.9) translateY(8px);
            opacity: 0;
            transition: transform .26s var(--ease), opacity .2s;
            pointer-events: none;
            filter: none !important;
            isolation: isolate;
        }

        #acc-panel.open {
            transform: scale(1) translateY(0);
            opacity: 1;
            pointer-events: all;
        }

        .ap-head {
            background: var(--azul-claro) !important;
            padding: 16px 18px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .ap-head-l {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ap-head-ico {
            width: 34px;
            height: 34px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .12) !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: #fff !important;
            flex-shrink: 0;
        }

        .ap-head-title {
            font-size: 13px !important;
            font-weight: 700;
            color: #fff !important;
            font-family: var(--font);
            line-height: 1.25;
        }

        .ap-head-sub {
            font-size: 10px !important;
            color: rgba(255, 255, 255, .48) !important;
            font-family: var(--font);
            margin-top: 1px;
        }

        .ap-close {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(255, 255, 255, .1) !important;
            border: none !important;
            color: rgba(255, 255, 255, .6) !important;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .15s, color .15s;
        }

        .ap-close:hover {
            background: rgba(255, 255, 255, .2) !important;
            color: #fff !important;
        }

        .ap-body {
            padding: 12px 12px 4px;
            display: flex;
            flex-direction: column;
            gap: 6px;
            background: #f7f9fc !important;
            max-height: 70vh;
            overflow-y: auto;
        }

        .ap-lbl {
            font-size: 9px !important;
            font-weight: 700;
            color: #94a3b8 !important;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 4px 0;
            font-family: var(--font);
        }

        .ap-card {
            background: #fff !important;
            border: 1px solid rgba(148, 163, 184, .14) !important;
            border-radius: 12px;
            padding: 12px 13px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .ap-card-ico {
            width: 34px;
            height: 34px;
            border-radius: 9px;
            background: var(--azul-lt) !important;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--azul) !important;
            flex-shrink: 0;
            font-weight: 700;
        }

        .ap-card-info {
            flex: 1;
            min-width: 0;
        }

        .ap-card-name {
            font-size: 12px !important;
            font-weight: 700;
            color: #1e293b !important;
            font-family: var(--font);
            line-height: 1.3;
        }

        .ap-card-desc {
            font-size: 10px !important;
            color: #94a3b8 !important;
            margin-top: 1px;
            font-family: var(--font);
        }

        .ap-sz {
            display: flex;
            align-items: center;
            gap: 4px;
            flex-shrink: 0;
        }

        .ap-sz-btn {
            width: 28px;
            height: 28px;
            border-radius: 7px;
            background: var(--azul-lt) !important;
            border: none !important;
            color: var(--azul) !important;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .15s, transform .12s;
        }

        .ap-sz-btn:hover {
            background: var(--azul) !important;
            color: #fff !important;
            transform: scale(1.1);
        }

        .ap-sz-val {
            font-size: 11px !important;
            font-weight: 700;
            color: var(--azul-claro) !important;
            min-width: 34px;
            text-align: center;
            font-family: var(--font);
        }

        .ap-sw {
            position: relative;
            width: 42px;
            height: 24px;
            flex-shrink: 0;
            cursor: pointer;
        }

        .ap-sw input {
            opacity: 0;
            width: 0;
            height: 0;
            position: absolute;
        }

        .ap-sw-track {
            position: absolute;
            inset: 0;
            background: #e2e8f0 !important;
            border-radius: 24px;
            transition: background .22s;
            border: 1px solid rgba(148, 163, 184, .2) !important;
        }

        .ap-sw-track::before {
            content: '';
            position: absolute;
            left: 3px;
            top: 3px;
            width: 16px;
            height: 16px;
            background: #fff !important;
            border-radius: 50%;
            transition: transform .22s var(--ease);
            box-shadow: 0 1px 4px rgba(0, 0, 0, .14);
        }

        .ap-sw input:checked~.ap-sw-track {
            background: var(--azul) !important;
            border-color: var(--azul) !important;
        }

        .ap-sw input:checked~.ap-sw-track::before {
            transform: translateX(18px);
        }

        .ap-voice-row {
            display: flex;
            gap: 6px;
            width: 100%;
        }

        .ap-vbtn {
            flex: 1;
            height: 32px;
            border-radius: 9px;
            background: var(--azul-lt) !important;
            border: 1px solid rgba(148, 163, 184, .12) !important;
            color: var(--azul) !important;
            font-size: 11px !important;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
            transition: background .15s, color .15s;
            font-family: var(--font);
        }

        .ap-vbtn.play:hover {
            background: var(--azul) !important;
            color: #fff !important;
            border-color: transparent !important;
        }

        .ap-vbtn.stop:hover {
            background: #dc2626 !important;
            color: #fff !important;
            border-color: transparent !important;
        }

        .ap-vbtn.active {
            background: var(--azul) !important;
            color: #fff !important;
            border-color: transparent !important;
        }

        .ap-vstatus {
            font-size: 10px !important;
            color: #94a3b8 !important;
            text-align: center;
            min-height: 14px;
            padding: 1px 0;
            font-family: var(--font);
            transition: color .18s;
        }

        .ap-vstatus.on {
            color: var(--azul-claro) !important;
            font-weight: 700;
        }

        .ap-footer {
            padding: 8px 12px 12px;
            background: #fff !important;
            border-top: 1px solid rgba(148, 163, 184, .09) !important;
        }

        .ap-reset {
            width: 100%;
            height: 32px;
            border-radius: 9px;
            background: transparent !important;
            border: 1px solid rgba(220, 38, 38, .2) !important;
            color: #dc2626 !important;
            font-size: 11px !important;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            transition: background .15s;
            font-family: var(--font);
        }

        .ap-reset:hover {
            background: #fef2f2 !important;
            border-color: #dc2626 !important;
        }

        /* ---BODY ALTO CONTRASTE--- */
        body.acc-hc-on {
            background: #000 !important;
            color: #fff !important;
        }

        body.acc-hc-on h1,
        body.acc-hc-on h2,
        body.acc-hc-on h3,
        body.acc-hc-on h4,
        body.acc-hc-on p,
        body.acc-hc-on span,
        body.acc-hc-on li {
            color: #fff !important;
        }

        body.acc-hc-on a {
            color: #ffda45 !important;
            text-decoration: underline !important;
        }

        body.acc-hc-on .av-card,
        body.acc-hc-on .av-single,
        body.acc-hc-on .alianzas-card,
        body.acc-hc-on .oficinavirtual-card,
        body.acc-hc-on .pq-card,
        body.acc-hc-on .av-toggle,
        body.acc-hc-on .av-panel {
            background: #111 !important;
            border-color: #fff !important;
        }

        body.acc-hc-on .btn-ya-primary,
        body.acc-hc-on .btn-ya-danger {
            background: #ffda45 !important;
            color: #000 !important;
            border: 2px solid #fff !important;
        }

        body.acc-hc-on .btn-ya-ghost,
        body.acc-hc-on .btn-ya-outline {
            background: #000 !important;
            color: #ffda45 !important;
            border: 2px solid #ffda45 !important;
        }

        body.acc-hc-on .ov-icon-box {
            background: #ffda45 !important;
            color: #000 !important;
        }

        body.acc-hc-on .av-card-icon,
        body.acc-hc-on .av-toggle-icon {
            background: #ffda45 !important;
            color: #000 !important;
        }

        body.acc-hc-on .av-card-num,
        body.acc-hc-on .av-total-badge {
            background: #333 !important;
            color: #fff !important;
        }

        body.acc-hc-on .text-inicio {
            color: #ffda45 !important;
        }

        body.acc-hc-on .av-fecha,
        body.acc-hc-on .av-fecha strong {
            color: #4da9ff !important;
        }


        /* ── NAVBAR ALTO CONTRASTE ── */
        body.acc-hc-on .yv-topbar {
            background: #000 !important;
            border-bottom: 1px solid #555 !important;
        }

        body.acc-hc-on .yv-topbar-item,
        body.acc-hc-on .yv-topbar-item svg {
            color: #fff !important;
            fill: #fff !important;
        }

        body.acc-hc-on .yv-nav {
            background: #111 !important;
            border-bottom: 3px solid #ffda45 !important;
            box-shadow: none !important;
        }

        body.acc-hc-on .yv-link {
            color: #fff !important;
        }

        body.acc-hc-on .yv-item:hover>.yv-link,
        body.acc-hc-on .yv-item.is-active>.yv-link {
            color: #ffda45 !important;
        }

        body.acc-hc-on .yv-item::after {
            background: #ffda45 !important;
        }

        body.acc-hc-on .yv-nav-divider {
            background: #444 !important;
        }

        /* Dropdown desktop */
        body.acc-hc-on .yv-dropdown {
            background: #111 !important;
            border: 1px solid #ffda45 !important;
            border-top: 3px solid #ffda45 !important;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6) !important;
        }

        body.acc-hc-on .yv-dropdown a {
            color: #fff !important;
            background: transparent !important;
            border-left-color: transparent !important;
        }

        body.acc-hc-on .yv-dropdown a:hover {
            background: #222 !important;
            color: #ffda45 !important;
            border-left-color: #ffda45 !important;
        }

        body.acc-hc-on .yv-dropdown-divider {
            background: #444 !important;
        }

        /* Botones derecha */
        body.acc-hc-on .yv-btn-outline {
            color: #ffda45 !important;
            border-color: #ffda45 !important;
            background: transparent !important;
        }

        body.acc-hc-on .yv-btn-outline:hover {
            background: #ffda45 !important;
            color: #000 !important;
        }

        body.acc-hc-on .yv-btn-webmail {
            background: #222 !important;
            border-color: #555 !important;
        }

        /* Menú móvil */
        body.acc-hc-on .yv-mobile-menu {
            background: #111 !important;
            border-top: 3px solid #ffda45 !important;
        }

        body.acc-hc-on .yv-mobile-link {
            color: #fff !important;
            border-bottom-color: #333 !important;
            background: transparent !important;
        }

        body.acc-hc-on .yv-mobile-sub {
            background: #1a1a1a !important;
        }

        body.acc-hc-on .yv-mobile-sub a {
            color: #ccc !important;
            border-bottom-color: #333 !important;
        }

        body.acc-hc-on .yv-mobile-sub a:hover {
            color: #ffda45 !important;
            border-left-color: #ffda45 !important;
            background: #222 !important;
        }

        body.acc-hc-on .yv-mobile-btn-outline {
            color: #ffda45 !important;
            border-color: #ffda45 !important;
        }

        body.acc-hc-on .yv-mobile-btn-outline:hover {
            background: #ffda45 !important;
            color: #000 !important;
        }

        body.acc-hc-on .yv-burger span {
            background: #fff !important;
        }

        /* ── FOOTER ALTO CONTRASTE ── */
        body.acc-hc-on .yf-wrap .yf-main {
            background: #000 !important;
            border-top: 2px solid #ffda45 !important;
        }

        body.acc-hc-on .yf-wrap .yf-bottom {
            background: #111 !important;
            border-top: 1px solid #555 !important;
        }

        body.acc-hc-on .yf-wrap .yf-col-title {
            color: #ffda45 !important;
        }

        body.acc-hc-on .yf-wrap .yf-block-label {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        body.acc-hc-on .yf-wrap .yf-block-text,
        body.acc-hc-on .yf-wrap .yf-phone {
            color: #fff !important;
        }

        body.acc-hc-on .yf-wrap .yf-block-text a {
            color: #ffda45 !important;
            text-decoration: underline !important;
        }

        body.acc-hc-on .yf-wrap .yf-emergency {
            background: rgba(220, 50, 50, 0.3) !important;
            border-color: #ff6b6b !important;
        }

        body.acc-hc-on .yf-wrap .yf-emergency-label {
            color: #ff9999 !important;
        }

        body.acc-hc-on .yf-wrap .yf-emergency-num {
            color: #fff !important;
        }

        body.acc-hc-on .yf-wrap .yf-em-icon {
            fill: #ff9999 !important;
        }

        body.acc-hc-on .yf-wrap .yf-divider {
            border-color: #444 !important;
        }

        body.acc-hc-on .yf-wrap .yf-bottom-left,
        body.acc-hc-on .yf-wrap .yf-bottom-left a {
            color: rgba(255, 255, 255, 0.8) !important;
        }

        body.acc-hc-on .yf-wrap .yf-badge,
        body.acc-hc-on .yf-wrap .yf-badge-g,
        body.acc-hc-on .yf-wrap .yf-badge-green {
            color: #ffda45 !important;
            border-color: #ffda45 !important;
            background: transparent !important;
        }

        /* ── PROTEGER PANEL ACCESIBILIDAD DEL ALTO CONTRASTE ── */
        body.acc-hc-on #acc-panel,
        body.acc-hc-on #acc-panel * {
            color: revert !important;
            background: revert !important;
            border-color: revert !important;
            filter: none !important;
        }

        /* Restaurar estilos específicos del panel */
        body.acc-hc-on #acc-panel .ap-head {
            background: var(--azul-claro) !important;
        }

        body.acc-hc-on #acc-panel .ap-head-title {
            color: #fff !important;
        }

        body.acc-hc-on #acc-panel .ap-head-sub {
            color: rgba(255, 255, 255, 0.48) !important;
        }

        body.acc-hc-on #acc-panel .ap-body {
            background: #f7f9fc !important;
        }

        body.acc-hc-on #acc-panel .ap-card {
            background: #fff !important;
        }

        body.acc-hc-on #acc-panel .ap-card-name {
            color: #1e293b !important;
        }

        body.acc-hc-on #acc-panel .ap-card-desc {
            color: #94a3b8 !important;
        }

        body.acc-hc-on #acc-panel .ap-sz-btn {
            background: var(--azul-lt) !important;
            color: var(--azul) !important;
        }

        body.acc-hc-on #acc-panel .ap-sz-val {
            color: var(--azul-claro) !important;
        }

        body.acc-hc-on #acc-panel .ap-footer {
            background: #fff !important;
        }

        body.acc-hc-on #acc-fab {
            background: var(--azul-claro) !important;
            color: #fff !important;
        }

        .acc-reading {
            outline: 2px solid var(--azul-claro) !important;
            outline-offset: 3px;
            border-radius: 4px;
            background: rgba(46, 126, 214, .07) !important;
        }


        @media (max-width: 860px) {

            .av-grid-direct,
            .av-grid-acc {
                grid-template-columns: repeat(2, 1fr);
            }

            .ov-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {

            .av-grid-direct,
            .av-grid-acc {
                grid-template-columns: 1fr;
            }

            .pq-grid {
                grid-template-columns: 1fr;
            }

            .ov-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .av-single,
            .alianzas-card,
            .oficinavirtual-card {
                padding: 24px 20px;
            }

            .payment-card {
                padding: 36px 24px;
            }

            #acc-panel {
                width: calc(100vw - 24px);
                left: 12px;
                bottom: 88px;
            }

            #acc-fab {
                bottom: 20px;
                left: 16px;
                width: 48px;
                height: 48px;
            }

            #acc-tooltip {
                bottom: 78px;
                font-size: 11px;
            }
        }

        @media (max-width: 420px) {
            .ov-grid {
                grid-template-columns: 1fr 1fr;
                gap: 14px;
            }
        }