/*-------------CONSUMOS-------------*/


 .uc-wrap {
            font-family: 'Plus Jakarta Sans', sans-serif;
            padding: 2rem 1.5rem;
            max-width: 860px;
            margin: 0 auto;
        }

        .uc-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 2rem;
            padding-bottom: 1.25rem;
            border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
        }

        .uc-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            background: #0e9a7a;
            flex-shrink: 0;
        }

        .uc-htitle {
            font-size: 1.5rem;
            font-weight: 500;
            color: #111;
        }

        .uc-hsub {
            font-size: 1.3rem;
            color: #999;
            margin-left: auto;
            font-family: 'DM Mono', monospace;
        }

        .uc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            align-items: start;
        }

        .uc-left {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .uc-account-row {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .uc-acct-label {
            font-size: 1.2rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }

        .uc-acct-val {
            font-family: 'DM Mono', monospace;
            font-size: 1.4rem;
            font-weight: 500;
            color: #111;
            background: #f4f4f2;
            border: 0.5px solid #e0e0dc;
            border-radius: 8px;
            padding: 6px 12px;
        }

        .uc-imgcard {
            background: #fff;
            border: 0.5px solid #e0e0dc;
            border-radius: 12px;
            overflow: hidden;
            min-height: 240px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .uc-imgcard img {
            max-width: 100%;
            padding: 1rem;
            border-radius: 8px;
        }

        .uc-loading {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 2.5rem 1rem;
            color: #999;
            font-size: 1.3rem;
        }

        .uc-spinner {
            width: 28px;
            height: 28px;
            border: 2px solid rgba(14, 154, 122, 0.2);
            border-top-color: #0e9a7a;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .uc-error {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 2.5rem 1rem;
            color: #999;
            font-size: 1.2rem;
            text-align: center;
        }

        .uc-right {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .uc-reading-card {
            background: #f7f7f5;
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .uc-reading-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            color: #999;
        }

        .uc-reading-val {
            font-family: 'DM Mono', monospace;
            font-size: 2.2rem;
            font-weight: 500;
            color: #0e9a7a;
            line-height: 1;
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .uc-reading-unit {
            font-size: 1.6rem;
            color: #999;
            font-weight: 400;
        }

        .uc-reading-sub {
            font-size: 1.3rem;
            color: #aaa;
            margin-top: 4px;
        }

        .uc-info-rows {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .uc-info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 14px;
            background: #fff;
            border: 0.5px solid #e0e0dc;
            border-radius: 8px;
            font-size: 1.4rem;
        }

        .uc-info-row-label {
            color: #888;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .uc-info-row-val {
            font-weight: 500;
            color: #111;
            font-family: 'DM Mono', monospace;
        }

        .uc-badge-ok {
            background: #e1f5ee;
            color: #085041;
            font-size: 1.2rem;
            padding: 3px 9px;
            border-radius: 20px;
            font-weight: 500;
        }

        @media (max-width: 640px) {
            .uc-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        
        
        
        
        /*--------------CONVENIOS--------------*/
         :root {
            --cg-blue: #1565C0;
            --cg-blue-mid: #1E88E5;
            --cg-blue-light: #42A5F5;
            --cg-green: #2E7D32;
            --cg-green-light: #43A047;
            --cg-dark: #0D1B2A;
            --cg-text: #1a1a2e;
            --cg-muted: #5a6a7a;
            --cg-bg: #f4f7fb;
            --cg-white: #ffffff;
            --cg-border: #dde4ef;
            --cg-yellow: #F9A825;
            --cg-yellow-dk: #E65100;
        }

   
        .conv-wrap * {
            box-sizing: border-box;
        }

        .conv-wrap {
            font-family: 'Exo 2', sans-serif;
            background: var(--cg-bg);
            padding: 3rem 1.5rem 4rem;
        }

    
        .conv-header {
            max-width: 860px;
            margin: 0 auto 3rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            border-left: 5px solid var(--cg-blue);
            padding-left: 1.5rem;
        }

        .conv-header-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #E3F2FD;
            border: 1px solid #90CAF9;
            border-radius: 6px;
            padding: 5px 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--cg-blue);
        }

        .conv-header h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 900;
            color: var(--cg-dark);
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin: 0;
        }

        .conv-header h1 span {
            color: var(--cg-blue-mid);
        }

        .conv-header p {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: var(--cg-muted);
            line-height: 1.7;
            max-width: 640px;
            margin: 0;
        }

   
        .conv-grid {
            max-width: 860px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 1.5rem;
        }


        .conv-card {
            background: var(--cg-white);
            border-radius: 20px;
            border: 1.5px solid var(--cg-border);
            overflow: hidden;
            transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
            animation: cgFadeUp 0.5s ease both;
        }

        .conv-grid .conv-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .conv-card:hover {
            transform: translateY(-5px);
            border-color: var(--cg-blue-light);
            box-shadow: 0 12px 32px rgba(21, 101, 192, 0.1);
        }

        @keyframes cgFadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .conv-card-stripe {
            height: 7px;
        }

        .card-efecty .conv-card-stripe {
            background: linear-gradient(90deg, var(--cg-yellow), #FFD54F);
        }

        .card-pse .conv-card-stripe {
            background: linear-gradient(90deg, var(--cg-blue), var(--cg-blue-light));
        }


        .conv-card-img {
            width: 100%;
            padding: 1.5rem 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 110px;
        }

        .conv-card-img img {
            max-height: 80px;
            max-width: 100%;
            width: auto;
            object-fit: contain;
            border-radius: 10px;
        }

   
        .conv-card-inner {
            padding: 1.25rem 1.75rem 1.75rem;
        }

        .conv-card-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--cg-muted);
            margin: 0 0 4px;
        }

        .conv-card-title {
            font-size: 1.9rem;
            font-weight: 900;
            color: var(--cg-dark);
            letter-spacing: -0.02em;
            margin: 0 0 0.6rem;
        }

        .conv-card-desc {
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            color: var(--cg-muted);
            line-height: 1.65;
            margin: 0 0 1rem;
        }


        .conv-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            border-radius: 8px;
            padding: 6px 12px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 1.1rem;
        }

        .card-efecty .conv-chip {
            background: #FFF8E1;
            color: var(--cg-yellow-dk);
        }

        .card-pse .conv-chip {
            background: #E3F2FD;
            color: var(--cg-blue);
        }

    
        .conv-steps {
            list-style: none;
            padding: 0;
            margin: 0 0 1.25rem;
            border-top: 1px solid var(--cg-border);
            padding-top: 0.85rem;
        }

        .conv-step {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-family: 'Nunito', sans-serif;
            font-size: 0.95rem;
            color: var(--cg-muted);
            line-height: 1.5;
            padding: 4px 0;
        }

        .conv-step-dot {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .card-efecty .conv-step-dot {
            background: #FFF8E1;
            color: var(--cg-yellow-dk);
        }

        .card-pse .conv-step-dot {
            background: #E3F2FD;
            color: var(--cg-blue);
        }

   
        .conv-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 10px;
            font-family: 'Exo 2', sans-serif;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: opacity 0.15s, transform 0.1s;
        }

        .conv-btn:hover {
            opacity: 0.88;
            transform: scale(0.98);
        }

        .conv-btn:active {
            transform: scale(0.95);
        }

        .btn-efecty {
            background: var(--cg-yellow);
            color: #3E2000;
        }

        .btn-pse {
            background: var(--cg-blue);
            color: #ffffff;
        }


        .conv-notice {
            max-width: 860px;
            margin: 1.75rem auto 0;
            background: #fff;
            border: 1.5px solid var(--cg-border);
            border-left: 5px solid var(--cg-blue-mid);
            border-radius: 12px;
            padding: 14px 18px;
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .conv-notice .bi {
            font-size: 1.3rem;
            color: var(--cg-blue-mid);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .conv-notice p {
            font-family: 'Nunito', sans-serif;
            font-size: 0.95rem;
            color: var(--cg-muted);
            line-height: 1.65;
            margin: 0;
        }

        .conv-notice strong {
            color: var(--cg-dark);
        }

        @media (max-width: 600px) {
            .conv-grid {
                grid-template-columns: 1fr;
            }

            .conv-header {
                padding-left: 1rem;
            }
        }
        
        
        
         /*--------------CREDITOS--------------*/
         *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --brand: #05377e;
            --brand-light: #3781e9;
            --brand-dark: #68dba3#68dba3;
            --navy: #07387c;
            --surface: #f0f6ff;
            --white: #fff;
            --gray: #f4f7fa;
            --border: rgba(26, 108, 181, 0.13);
            --text: #1a2332;
            --muted: #4a6080;
            --radius: 16px;
            --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
            --shadow-h: 0 14px 40px rgba(26, 108, 181, 0.16);
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--gray);
            color: var(--text);
            overflow-x: hidden;
        }


        #prog {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            z-index: 9999;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
            width: 0%;
            transition: width .1s;
            box-shadow: 0 0 8px rgba(41, 89, 220, 0.5);
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1
            }

            50% {
                opacity: .3
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-28px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(28px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(.92)
            }

            to {
                opacity: 1;
                transform: scale(1)
            }
        }

        @keyframes gradShift {
            0% {
                background-position: 0% 50%
            }

            50% {
                background-position: 100% 50%
            }

            100% {
                background-position: 0% 50%
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        @keyframes shimmer {
            0% {
                background-position: 200% center
            }

            100% {
                background-position: -200% center
            }
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(26, 108, 181, .3)
            }

            50% {
                box-shadow: 0 0 0 10px rgba(26, 108, 181, 0)
            }
        }

        @keyframes rowIn {
            from {
                opacity: 0;
                transform: translateX(-12px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(.7) rotate(-5deg)
            }

            to {
                opacity: 1;
                transform: scale(1) rotate(0)
            }
        }


        .anim {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
        }

        .anim.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .anim-l {
            opacity: 0;
            transform: translateX(-26px);
            transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
        }

        .anim-l.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .anim-r {
            opacity: 0;
            transform: translateX(26px);
            transition: opacity .65s cubic-bezier(.22, 1, .36, 1), transform .65s cubic-bezier(.22, 1, .36, 1);
        }

        .anim-r.visible {
            opacity: 1;
            transform: translateX(0);
        }


        .hero-credito {
            background: linear-gradient(135deg, #0d4a82 0%, #1a6cb5 55%, #29aadc 100%);
            background-size: 200% 200%;
            animation: gradShift 9s ease infinite;
            padding: 3.5rem 2rem 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-credito::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(255, 255, 255, .07) 0%, transparent 70%);
        }

        .hero-credito-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, .15);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 999px;
            padding: 6px 18px;
            font-size: .72rem;
            letter-spacing: .08em;
            color: rgba(255, 255, 255, .9);
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 600;
            animation: fadeInDown .7s .1s both;
        }

        .hero-credito-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #6de9c8;
            animation: blink 2s ease infinite;
        }

        .hero-credito h1 {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: clamp(1.8rem, 4vw, 2.4rem);
            color: #fff;
            margin-bottom: .6rem;
            line-height: 1.15;
            animation: fadeInDown .7s .25s both;
        }

        .hero-credito p {
            font-size: 1.8rem;
            color: rgba(255, 255, 255, .72);
            max-width: 480px;
            margin: 0 auto;
            line-height: 1.75;
            animation: fadeInDown .7s .4s both;
        }

        .hero-credito-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 60px;
        }


        .main-credito {
            padding: 2.5rem 1.5rem 5rem;
            max-width: 1060px;
            margin: 0 auto;
        }


        .search-panel-credito {
            background: var(--white);
            border-radius: var(--radius);
            border: .5px solid var(--border);
            padding: 2rem;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
            transition: box-shadow .3s;
        }

        .search-panel-credito:hover {
            box-shadow: var(--shadow-h);
        }

        .search-panel-credito::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
        }

        .search-panel-credito-tag {
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--brand);
            margin-bottom: .4rem;
            font-family: 'Outfit', sans-serif;
            display: inline-flex;
            align-items: center;
            gap: .4rem;
        }

        .search-panel-credito-tag::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-light);
        }

        .search-panel-credito h2 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 1.5rem;
        }

        .search-row-credito {
            display: flex;
            gap: 1rem;
            align-items: flex-end;
        }

        .field-credito {
            flex: 1;
        }

        .field-credito label {
            display: block;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .06em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 6px;
            font-family: 'Outfit', sans-serif;
        }

        .field-credito-wrap {
            position: relative;
        }

        .field-credito-wrap svg {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            fill: none;
            stroke: var(--muted);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            pointer-events: none;
        }

        .field-credito input {
            width: 100%;
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 11px 13px 11px 38px;
            font-family: 'Inter', sans-serif;
            font-size: .9rem;
            color: var(--text);
            background: var(--surface);
            transition: border-color .25s, box-shadow .25s, background .25s;
            outline: none;
        }

        .field-credito input:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px rgba(26, 108, 181, .1);
            background: #fff;
        }

        .field-credito input::placeholder {
            color: #a0b4cc;
        }

        .btn-buscar-credito {
            padding: 11px 28px;
            border: none;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--brand), var(--brand-light));
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: .9rem;
            cursor: pointer;
            transition: opacity .2s, transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s;
            display: flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
            height: 44px;
            box-shadow: 0 4px 16px rgba(26, 108, 181, .25);
        }

        .btn-buscar-credito:hover {
            opacity: .92;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(26, 108, 181, .35);
        }

        .btn-buscar-credito:active {
            transform: translateY(0);
        }

        .btn-buscar-credito svg {
            width: 14px;
            height: 14px;
            fill: none;
            stroke: #fff;
            stroke-width: 2.5;
            stroke-linecap: round;
            stroke-linejoin: round;
        }


        .aviso {
            display: none;
            border-radius: 10px;
            padding: 10px 16px;
            font-size: .84rem;
            margin-bottom: 1rem;
            align-items: center;
            gap: 8px;
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffc107;
            animation: fadeInUp .4s both;
        }

        .aviso.show {
            display: flex;
        }

        .aviso-err {
            background: #fde8ec;
            color: #842029;
            border-color: #f5c2c7;
        }

        .spinner {
            display: none;
            text-align: center;
            padding: 2.5rem;
            color: var(--muted);
            font-size: .9rem;
            font-family: 'Outfit', sans-serif;
        }

        .spinner::before {
            content: '';
            display: block;
            width: 36px;
            height: 36px;
            border: 3px solid var(--border);
            border-top-color: var(--brand);
            border-radius: 50%;
            margin: 0 auto 1rem;
            animation: spin .8s linear infinite;
        }


        .result-section-credito {
            display: none;
            animation: fadeInUp .6s both;
        }


        .info-grid-credito {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        @media(max-width:600px) {
            .info-grid-credito {
                grid-template-columns: repeat(2, 1fr);
            }

            .search-row-credito {
                flex-direction: column;
            }

            .btn-buscar-credito {
                width: 100%;
                justify-content: center;
            }
        }

        .info-card-credito {
            background: var(--surface);
            border-radius: 12px;
            padding: 1rem 1.1rem;
            border: .5px solid var(--border);
            transition: box-shadow .25s, transform .25s cubic-bezier(.22, 1, .36, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card-credito::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--brand), var(--brand-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .35s cubic-bezier(.22, 1, .36, 1);
        }

        .info-card-credito:hover::before {
            transform: scaleX(1);
        }

        .info-card-credito:hover {
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .info-card-credito .ic-lbl {
            font-size: .65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--muted);
            margin-bottom: 6px;
            font-family: 'Outfit', sans-serif;
        }

        .info-card-credito .ic-val {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text);
            font-family: 'Outfit', sans-serif;
            animation: countUp .5s cubic-bezier(.34, 1.56, .64, 1) both;
        }


        .obs-card-credito {
            background: var(--surface);
            border-radius: 12px;
            padding: 1rem 1.2rem;
            border: .5px solid var(--border);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--brand-light);
            border-radius: 0 12px 12px 0;
            animation: fadeInLeft .6s both;
        }

        .obs-lbl {
            font-size: .65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--muted);
            margin-bottom: 6px;
            font-family: 'Outfit', sans-serif;
        }

        .obs-txt {
            font-size: .88rem;
            color: var(--text);
            line-height: 1.65;
        }


        .summary-credito {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .summary-credito-card {
            background: linear-gradient(88deg, #053d4b, #0b7a7ab3);
            border-radius: 12px;
            padding: 1rem 1.1rem;
            border: .5px solid rgba(26, 108, 181, .15);
            transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s;
            position: relative;
            overflow: hidden;
        }

        .summary-credito-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(26, 108, 181, .05), transparent);
            opacity: 0;
            transition: opacity .3s;
        }

        .summary-credito-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-h);
        }

        .summary-credito-card:hover::after {
            opacity: 1;
        }

        .s-lbl {
            font-size: 1.1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
            color: var(--brand);
            margin-bottom: 5px;
            font-family: 'Outfit', sans-serif;
        }

        .s-val {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--brand-dark);
            font-family: 'Outfit', sans-serif;
            animation: countUp .6s cubic-bezier(.34, 1.56, .64, 1) both;
        }


        .section-title-credito {
            font-family: 'Outfit', sans-serif;
            font-size: .7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .09em;
            color: var(--muted);
            margin-bottom: .85rem;
            padding-bottom: .55rem;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: .5rem;
        }

        .section-title-credito::before {
            content: '';
            width: 4px;
            height: 14px;
            border-radius: 2px;
            background: linear-gradient(180deg, var(--brand), var(--brand-light));
        }


        .table-wrap {
            overflow-x: auto;
            border-radius: 14px;
            border: .5px solid var(--border);
            box-shadow: var(--shadow);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: .82rem;
        }

        thead th {
            background: linear-gradient(135deg, #053d4b, #0b7a7abd);
            color: #fff;
            padding: 11px 12px;
            text-align: left;
            font-size: .68rem;
            font-weight: 700;
            letter-spacing: .05em;
            text-transform: uppercase;
            white-space: nowrap;
            font-family: 'Outfit', sans-serif;
        }

        thead th:first-child {
            border-radius: 14px 0 0 0;
        }

        thead th:last-child {
            border-radius: 0 14px 0 0;
        }

        tbody tr {
            border-bottom: 1px solid var(--border);
            transition: background .2s;
        }

        tbody tr:last-child {
            border-bottom: none;
        }

        tbody tr:hover {
            background: rgba(26, 108, 181, .04);
        }

        tbody tr {
            animation: rowIn .4s both;
        }

        tbody td {
            padding: 9px 12px;
            white-space: nowrap;
            color: var(--text);
            font-size: .82rem;
        }


        .badge-a {
            background: #d1fae5;
            color: #065f46;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: .68rem;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
        }

        .badge-p {
            background: #fef3c7;
            color: #92400e;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: .68rem;
            font-weight: 700;
            font-family: 'Outfit', sans-serif;
        }

        .badge-n {
            background: var(--surface);
            color: var(--muted);
            padding: 3px 10px;
            border-radius: 999px;
            font-size: .68rem;
        }
        
        @media (max-width: 768px) {
    .main-credito {
        padding: 1.5rem 1rem 3rem;
    }

    .hero-credito {
        padding: 2rem 1rem 2.5rem;
    }

    .hero-credito p {
        font-size: 1rem;
    }

    .search-panel-credito {
        padding: 1.25rem;
    }

    .search-row-credito {
        flex-direction: column;
    }

    .btn-buscar-credito {
        width: 100%;
        justify-content: center;
    }

    .info-grid-credito {
        grid-template-columns: repeat(2, 1fr);
    }

    .summary-credito {
        grid-template-columns: 1fr;
    }

    .s-lbl {
        font-size: 0.85rem;
    }

    .s-val {
        font-size: 1.1rem;
    }

    /* Tabla con scroll horizontal */
    .table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    tbody td, thead th {
        font-size: 0.75rem;
        padding: 8px 8px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .info-grid-credito {
        grid-template-columns: 1fr;
    }
}








        :root {
            --cg-blue: #1565C0;
            --cg-blue-mid: #1E88E5;
            --cg-blue-light: #42A5F5;
            --cg-green: #2E7D32;
            --cg-green-light: #43A047;
            --cg-dark: #0D1B2A;
            --cg-muted: #5a6a7a;
            --cg-bg: #f4f7fb;
            --cg-white: #ffffff;
            --cg-border: #dde4ef;
        }

        .qs * {
            box-sizing: border-box;
        }

        .qs {
            font-family: 'Exo 2', sans-serif;
            background: var(--cg-bg);
            padding-bottom: 3rem;
        }



        .hero-regulatorio-empresa {
            position: relative;
            min-height: 420px;
            border-radius: 0 0 40px 40px;
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(15, 23, 42, .78)),
                url("<?php echo base_url(); ?>public/img/actual/quienesSomos-hero.png");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-regulatorio-empresa::before {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: rgba(0, 184, 148, .12);
            top: -250px;
            right: -120px;
        }

        .hero-regulatorio-empresa::after {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .04);
            bottom: -180px;
            left: -100px;
        }

        .hero-content-empresa {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 2rem;
            color: white;
        }

        .hero-content-empresa span {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            padding: .7rem 1.2rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            font-size: .95rem;
            margin-bottom: 1.5rem;
        }

        .hero-content-empresa h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-content-empresa p {
            max-width: 700px;
            font-size: 1.15rem;
            line-height: 1.8;
            opacity: .9;
        }


        .qs-banner-empresa {
            position: relative;
            width: 100%;
            height: 340px;
            overflow: hidden;
            background: var(--cg-dark);
        }

        .qs-banner-empresa-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
            display: block;
        }

        .qs-banner-empresa-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem 2.5rem;
            background: linear-gradient(90deg, rgba(13, 27, 42, 0.92) 45%, transparent);
        }

        .qs-banner-empresa-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(66, 165, 245, 0.18);
            border: 1px solid rgba(66, 165, 245, 0.35);
            border-radius: 6px;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: var(--cg-blue-light);
            margin-bottom: 1rem;
            width: fit-content;
        }

        .qs-banner-empresa h1 {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.05;
            letter-spacing: -0.02em;
            margin: 0 0 0.85rem;
        }

        .qs-banner-empresa h1 span {
            color: var(--cg-blue-light);
        }

        .qs-banner-empresa p {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.7;
            max-width: 540px;
            margin: 0;
        }

   
        .qs-body-empresa {
            padding: 2.5rem 2rem;
            max-width: 920px;
            margin: 0 auto;
        }

        .qs-lbl-empresa {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1.25rem;
        }

        .qs-lbl-empresa::after {
            content: '';
            flex: 1;
            height: 1.5px;
            background: var(--cg-border);
        }

        .qs-lbl-empresa span {
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--cg-muted);
            white-space: nowrap;
        }

     
        .qs-mv-grid-empresa {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .qs-mv-card-empresa {
            background: var(--cg-white);
            border: 1.5px solid var(--cg-border);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
            animation: cgUp 0.5s ease both;
        }

        .qs-mv-card-empresa:nth-child(2) {
            animation-delay: 0.1s;
        }

        .qs-mv-card-empresa:hover {
            transform: translateY(-5px);
            border-color: var(--cg-blue-light);
            box-shadow: 0 12px 30px rgba(21, 101, 192, 0.1);
        }

        @keyframes cgUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .qs-mv-stripe-empresa {
            height: 6px;
        }

        .card-mision .qs-mv-stripe-empresa {
            background: linear-gradient(90deg, var(--cg-green), var(--cg-green-light));
        }

        .card-vision .qs-mv-stripe-empresa {
            background: linear-gradient(90deg, var(--cg-blue), var(--cg-blue-light));
        }

        .qs-mv-img-empresa {
            width: 100%;
            height: 180px;
            overflow: hidden;
        }

        .qs-mv-img-empresa img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .qs-mv-inner-empresa {
            padding: 1.25rem 1.5rem 1.75rem;
        }

        .qs-mv-icon-empresa {
            width: 44px;
            height: 44px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 0.85rem;
        }

        .card-mision .qs-mv-icon-empresa {
            background: #E8F5E9;
            color: var(--cg-green);
        }

        .card-vision .qs-mv-icon-empresa {
            background: #E3F2FD;
            color: var(--cg-blue);
        }

        .qs-mv-title-empresa {
            font-size: 1.75rem;
            font-weight: 900;
            color: var(--cg-dark);
            letter-spacing: -0.01em;
            margin: 0 0 0.65rem;
        }

        .qs-mv-text-empresa {
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            color: var(--cg-muted);
            line-height: 1.72;
        }

       
        .qs-pol {
            background: var(--cg-white);
            border: 1.5px solid var(--cg-border);
            border-radius: 20px;
            overflow: hidden;
            margin-bottom: 2.5rem;
            animation: cgUp 0.5s ease 0.15s both;
        }

        .qs-pol-stripe-empresa {
            height: 6px;
            background: linear-gradient(90deg, var(--cg-blue), var(--cg-green-light));
        }

        .qs-pol-img-empresa {
            width: 100%;
            height: 210px;
            overflow: hidden;
        }

        .qs-pol-img-empresa img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .qs-pol-inner-empresa {
            padding: 1.75rem 2rem 2rem;
        }

        .qs-pol-header-empresa {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 1rem;
        }

        .qs-pol-icon-empresa {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #E3F2FD;
            color: var(--cg-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.45rem;
            flex-shrink: 0;
        }

        .qs-pol-title-empresa {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--cg-dark);
            letter-spacing: -0.01em;
        }

        .qs-pol-lead-empresa {
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            color: var(--cg-muted);
            line-height: 1.72;
            margin-bottom: 1.4rem;
        }

        .qs-pol-list-empresa {
            list-style: none;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .qs-pol-item-empresa {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-family: 'Nunito', sans-serif;
            font-size: 0.97rem;
            color: var(--cg-muted);
            line-height: 1.65;
            border-left: 3px solid var(--cg-border);
            padding: 4px 0 4px 14px;
            transition: border-color 0.2s, color 0.2s;
        }

        .qs-pol-item-empresa:hover {
            border-color: var(--cg-blue-light);
            color: var(--cg-dark);
        }

        .qs-pol-num-empresa {
            font-family: 'Exo 2', sans-serif;
            font-weight: 700;
            color: var(--cg-blue);
            font-size: 0.82rem;
            flex-shrink: 0;
            margin-top: 3px;
        }

       
        .qs-office {
            background: var(--cg-white);
            border: 1.5px solid var(--cg-border);
            border-radius: 20px;
            overflow: hidden;
            animation: cgUp 0.5s ease 0.2s both;
        }

        .qs-office-stripe-empresa {
            height: 6px;
            background: linear-gradient(90deg, var(--cg-blue), var(--cg-blue-light));
        }

        .qs-office-inner-empresa {
            padding: 1.75rem 2rem 2rem;
        }

        .qs-office-header-empresa {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 1.5rem;
        }

        .qs-office-icon-empresa {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: #E3F2FD;
            color: var(--cg-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.45rem;
            flex-shrink: 0;
        }

        .qs-office-title-empresa {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--cg-dark);
            letter-spacing: -0.01em;
        }

        .qs-office-grid-empresa {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 1.25rem;
            align-items: start;
        }

        .qs-office-img-empresa {
            width: 100%;
            height: 260px;
            border-radius: 14px;
            overflow: hidden;
        }

        .qs-office-img-empresa img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .qs-office-info-empresa {
            background: #fff;
            color: #000000;
            border-radius: 18px;
            padding: 35px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .qs-office-info-empresa h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .qs-office-info-empresa p {
            margin: 4px 0;
            line-height: 1.5;
            font-size: 16px;
        }

        .qs-office-map iframe {
            width: 100%;
            height: 260px;
            border: 0;
            border-radius: 14px;
            display: block;
        }


        @media (max-width: 640px) {
            .qs-mv-grid-empresa {
                grid-template-columns: 1fr;
            }

            .qs-office-grid-empresa {
                grid-template-columns: 1fr;
            }
            

            .qs-banner-empresa {
                height: auto;
                padding-bottom: 2.5rem;
            }

            .qs-banner-empresa-overlay {
                background: rgba(13, 27, 42, 0.82);
            }

            .qs-pol-inner-empresa,
            .qs-office-inner-empresa {
                padding: 1.25rem 1.25rem 1.5rem;
            }
        }

        @media(max-width:991px) {

            .hero-content-empresa h1 {
                font-size: 2.8rem;
            }


        }

        @media(max-width:576px) {

            .hero-regulatorio-empresa {
                min-height: 360px;
            }

            .hero-content-empresa h1 {
                font-size: 2.2rem;
            }

            .hero-content-empresa p {
                font-size: 1rem;
            }


        }
        
        
        @media (max-width: 768px) {
    .hero-content-empresa h1 {
        font-size: 2rem;
    }

    .hero-content-empresa p {
        font-size: 0.95rem;
    }

    .hero-regulatorio-empresa {
        min-height: 280px;
    }

    .qs-body-empresa {
        padding: 1.5rem 1rem;
    }

    .qs-mv-grid-empresa {
        grid-template-columns: 1fr;
    }

    .qs-office-grid-empresa {
        grid-template-columns: 1fr;
    }

    .qs-office-info-empresa {
        padding: 20px;
        border: 1px solid var(--cg-border);
        border-radius: 14px;
    }

    .qs-office-info-empresa h3,
    .qs-office-info-empresa p {
        color: var(--cg-dark);
    }

    .qs-pol-inner-empresa {
        padding: 1.25rem;
    }

    .qs-mv-title-empresa {
        font-size: 1.4rem;
    }

    .qs-pol-title-empresa,
    .qs-office-title-empresa {
        font-size: 1.4rem;
    }
}
        
        
        
 
 
 :root {
            --primary: #0f172a;
            --secondary: #1e293b;
            --accent: #00b894;
            --accent2: #00d2a0;
            --light: #f8fafc;
            --border: #e2e8f0;
            --danger: #ef4444;
            --success: #22c55e;
            --shadow: 0 10px 35px rgba(0, 0, 0, .08);
        }

        * {
            font-family: 'Barlow', sans-serif;
        }

        body {
            background: #f4f7fb;
            overflow-x: hidden;
        }

        .hero-factura {
            position: relative;
            min-height: 420px;
            border-radius: 0 0 40px 40px;
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(15, 23, 42, .75)),
                url("<?php echo base_url(); ?>public/img/actual/Cfactura.png");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-factura::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(0, 184, 148, .12);
            border-radius: 50%;
            top: -250px;
            right: -120px;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 2rem;
            color: white;
        }

        .hero-content h1 {
            font-size: 3.3rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .hero-content p {
            max-width: 650px;
            font-size: 1.15rem;
            opacity: .9;
            line-height: 1.7;
        }

        .consulta-section {
            width: 100%;
            max-width: 1200px;
            margin: -80px auto 5rem;
            position: relative;
            z-index: 5;
            padding: 0 1rem;
        }

        .consulta-card {
            background: white;
            border-radius: 30px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .consulta-header {
            padding: 2rem;
            border-bottom: 1px solid var(--border);
        }

        .consulta-header h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: .5rem;
        }

        .consulta-header p {
            margin: 0;
            color: #64748b;
        }

        .consulta-body {
            padding: 2rem;
        }

        .grid-form {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            align-items: end;
        }

        .input-group-custom label {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: .6rem;
            display: block;
        }

        .input-custom {
            width: 100%;
            height: 58px;
            border-radius: 16px;
            border: 1px solid var(--border);
            background: #f8fafc;
            padding: 0 1rem;
            font-size: 1rem;
            transition: .3s ease;
        }

        .input-custom:focus {
            outline: none;
            border-color: var(--accent);
            background: white;
            box-shadow: 0 0 0 4px rgba(0, 184, 148, .12);
        }

        .btn-consultar {
            width: 100%;
            height: 58px;
            border: none;
            border-radius: 16px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: white;
            font-weight: 700;
            font-size: 1rem;
            transition: .3s ease;
            box-shadow: 0 10px 25px rgba(0, 184, 148, .25);
        }

        .btn-consultar:hover {
            transform: translateY(-2px);
        }

        .msj-error {
            margin-top: 1rem;
        }

        .alert {
            border-radius: 14px;
            padding: 1rem;
            border: none;
        }

        .alert-danger {
            background: rgba(239, 68, 68, .12);
            color: #b91c1c;
        }

        .alert-warning {
            background: rgba(245, 158, 11, .12);
            color: #92400e;
        }

        /* MODAL */
        .modal.fade .modal-content {
            opacity: 0;
            transition: .3s ease;
        }

        .modal.show .modal-content {
            opacity: 1;
        }

        .modal-right-custom {
            position: fixed;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            margin: 0;
            width: 100%;
            max-width: 520px;
        }

        .modal.fade .modal-right-custom {
            transform: translate(120%, -50%);
            transition: .35s ease;
        }

        .modal.show .modal-right-custom {
            transform: translate(0, -50%);
        }

        .modal-content {
            border: none;
            border-radius: 28px;
            overflow: hidden;
            background: #ffffff;
            box-shadow: 0 25px 60px rgba(15, 23, 42, .25);
        }

       

        .modal-header {
            position: relative;
            background:
                linear-gradient(135deg,
                    rgba(15, 23, 42, .95),
                    rgba(30, 41, 59, .92));
            padding: 1.8rem 2rem;
            border: none;
        }

        .modal-header::before {
            content: '';
            position: absolute;
            width: 220px;
            height: 220px;
            background: rgba(0, 184, 148, .08);
            border-radius: 50%;
            top: -120px;
            right: -60px;
        }

        .heading {
            color: white;
            font-size: 1.4rem;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .close {
            position: relative;
            z-index: 2;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: rgba(255, 255, 255, .12);
            color: white;
            font-size: 1.4rem;
            transition: .3s ease;
        }

        .close:hover {
            background: white;
            color: #0f172a;
        }

        .modal-dialog.modal-side {
            position: fixed;
            top: 20px;
            right: 20px;
            margin: 0;
            width: 100%;
            max-width: 430px;
            height: calc(100vh - 40px);
        }

        .modal-content {
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
        }

        .modal-body {
            overflow-y: auto;
            max-height: calc(100vh - 180px);
            padding: 1.5rem;
        }


  
        body.modal-open {
            overflow: auto !important;
            padding-right: 0 !important;
        }

     

        .modal {
            overflow-y: auto;
            background: rgba(15, 23, 42, .45);
            backdrop-filter: blur(4px);
        }

     


        @media(max-width:768px) {

            .modal-dialog.modal-side {
                top: 10px;
                right: 10px;
                left: 10px;
                width: auto;
                max-width: unset;
                height: calc(100vh - 20px);
            }

        }

      

        .modal-body {
            background: #f8fafc;
            padding: 2rem;
        }

        .modal-body .row {
            align-items: center;
        }

   

        .cont__img__fact--le {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .LE_factura {
            width: 100%;
            max-width: 180px;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .12));
        }

    

        .F_modal {
            width: 100%;
        }

        .F_modal label {
            display: block;
            margin-bottom: .4rem;
            margin-top: 1rem;
            font-size: .92rem;
            font-weight: 700;
            color: #334155;
        }

        .F_modal label:first-child {
            margin-top: 0;
        }

        .F_modal .form-control {
            height: 52px;
            border-radius: 14px;
            border: 1px solid #e2e8f0;
            background: white;
            font-size: .95rem;
            font-weight: 600;
            color: #0f172a;
            padding: 0 1rem;
            transition: .3s ease;
            box-shadow: none;
        }

        .F_modal .form-control:focus {
            border-color: #00b894;
            box-shadow: 0 0 0 4px rgba(0, 184, 148, .10);
        }

        .F_modal .form-control[disabled],
        .F_modal .form-control[readonly] {
            background: #ffffff;
            opacity: 1;
        }

      

        .modal-footer {
            background: #f8fafc;
            border: none;
            padding: 0 2rem 2rem;
        }

        .Cont_btn_fac {
            display: flex;
            justify-content: center;
            width: 100%;
        }

        .btn_des_fac {
            width: 100%;
            height: 58px;
            border: none;
            border-radius: 16px;
            background: linear-gradient(135deg, #00b894, #00d2a0);
            color: white;
            font-size: 1rem;
            font-weight: 700;
            transition: .3s ease;
            box-shadow: 0 10px 25px rgba(0, 184, 148, .22);
        }

        .btn_des_fac:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(0, 184, 148, .30);
        }

    
        .estado-paga {
            color: #16a34a !important;
            font-weight: 700 !important;
        }

        .estado-pendiente {
            color: #dc2626 !important;
            font-weight: 700 !important;
        }

  
        @media(max-width:768px) {

            .modal-right-custom {
                right: 0;
                top: auto;
                bottom: 0;
                transform: none !important;
                max-width: 100%;
                width: 100%;
                height: auto;
                padding: 1rem;
            }

            .modal-content {
                border-radius: 24px 24px 0 0;
            }

        }

        @media(max-width: 991px) {

            .modal-body {
                padding: 1.5rem;
            }

            .col-1 {
                display: none;
            }

            .col-8 {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 0;
            }

            .LE_factura {
                max-width: 130px;
                margin-bottom: 1rem;
            }
        }

        @media(max-width: 576px) {

            .modal-dialog {
                max-width: 520px;
                margin-left: auto;
                margin-right: 1rem;
                height: 100vh;
                display: flex;
                align-items: center;
            }

            .modal-content {
                max-height: 90vh;
                overflow-y: auto;
            }

            .modal.fade.right .modal-dialog {
                position: fixed;
                right: 0;
                margin: 0;
                height: 100%;
                transform: translate3d(100%, 0, 0);
            }

            .modal.fade.right.show .modal-dialog {
                transform: translate3d(0, 0, 0);
            }

            .modal-header {
                padding: 1.2rem 1.4rem;
            }

            .heading {
                font-size: 1.1rem;
            }

            .modal-body {
                padding: 1.2rem;
            }

            .modal-footer {
                padding: 0 1.2rem 1.2rem;
            }

            .btn_des_fac {
                height: 54px;
                font-size: .95rem;
            }
        }

        @media(max-width:768px) {

            .modal-dialog {
                max-width: 92%;
                margin-right: .5rem;
            }

        }
  .modal-dialog.modal-side {
            position: fixed;
            top: 20px;
            right: 20px;
            margin: 0;
            width: 100%;
            max-width: 430px;
            height: calc(100vh - 40px);
        }

        .modal-content {
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
        }

        .modal-body {
            overflow-y: auto;
            max-height: calc(100vh - 180px);
            padding: 1.5rem;
        }


  
        body.modal-open {
            overflow: auto !important;
            padding-right: 0 !important;
        }

     

        .modal {
            overflow-y: auto;
            background: rgba(15, 23, 42, .45);
            backdrop-filter: blur(4px);
        }

     


        @media(max-width:768px) {

            .modal-dialog.modal-side {
                top: 10px;
                right: 10px;
                left: 10px;
                width: auto;
                max-width: unset;
                height: calc(100vh - 20px);
            }

        }

      

        .modal-body {
            background: #f8fafc;
            padding: 2rem;
        }

        .modal-body .row {
            align-items: center;
        }

   

        .cont__img__fact--le {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .LE_factura {
            width: 100%;
            max-width: 180px;
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .12));
        }

    

        .F_modal {
            width: 100%;
        }

        .F_modal label {
            display: block;
            margin-bottom: .4rem;
            margin-top: 1rem;
            font-size: .92rem;
            font-weight: 700;
            color: #334155;
        }

        @keyframes fade-up {
            from {
                opacity: 0;
                transform: translateY(28px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes fade-in {
            from {
                opacity: 0
            }

            to {
                opacity: 1
            }
        }

        @keyframes slide-l {
            from {
                opacity: 0;
                transform: translateX(-32px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        @keyframes slide-r {
            from {
                opacity: 0;
                transform: translateX(32px)
            }

            to {
                opacity: 1;
                transform: translateX(0)
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-10px)
            }
        }

        @keyframes pulse-dot {

            0%,
            100% {
                transform: scale(1);
                opacity: .8
            }

            50% {
                transform: scale(1.6);
                opacity: 0
            }
        }

        @keyframes bar-grow {
            from {
                width: 0
            }

            to {
                width: var(--w)
            }
        }

        @keyframes flame-dance {

            0%,
            100% {
                transform: scaleY(1) rotate(0deg)
            }

            40% {
                transform: scaleY(1.08) rotate(-1.5deg)
            }

            70% {
                transform: scaleY(.95) rotate(1deg)
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -600px 0
            }

            100% {
                background-position: 600px 0
            }
        }


        .hero-wrap {
            position: relative;
            width: 100%;
            height: min(560px, 70vw);
            min-height: 320px;
            overflow: hidden;
            background: var(--navy);
        }

        .slider-track {
            display: flex;
            height: 100%;
            transition: transform .65s cubic-bezier(.4, 0, .2, 1);
            will-change: transform;
        }

        .slider-track img {
            flex-shrink: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }


        .hero-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    transparent 40%,
                    rgba(12, 61, 107, .55) 100%);
            pointer-events: none;
        }


        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, .55);
            background: rgba(255, 255, 255, .18);
            backdrop-filter: blur(6px);
            color: #fff;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background var(--ease), border-color var(--ease), transform var(--ease);
        }

        .slider-btn:hover {
            background: rgba(255, 255, 255, .32);
            border-color: rgba(255, 255, 255, .8);
            transform: translateY(-50%) scale(1.08);
        }

        .slider-btn.prev {
            left: 18px;
        }

        .slider-btn.next {
            right: 18px;
        }


        .slider-dots {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 8px;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 20px;
            background: rgba(255, 255, 255, .45);
            cursor: pointer;
            transition: background var(--ease), width var(--ease);
        }

        .slider-dot.active {
            background: #fff;
            width: 24px;
        }


        .quick-bar {
            max-width: 1100px;
            margin: -36px auto 0;
            padding: 0 24px;
            position: relative;
            z-index: 20;
            animation: fade-up .6s .1s ease both;
        }

        .quick-bar-inner {
            background: var(--white);
            border-radius: var(--r);
            box-shadow: var(--shadow-lg);
            padding: 20px 28px;
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
            border: 1px solid var(--border);
        }

        .quick-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 12px 18px;
            border-radius: var(--r-sm);
            border: 1.5px solid var(--border);
            text-decoration: none;
            color: var(--navy);
            font-size: .85rem;
            font-weight: 600;
            background: #FAFCFE;
            transition: all var(--ease);
            flex: 1;
            min-width: 110px;
            text-align: center;
        }

        .quick-item:hover {
            background: var(--pale);
            border-color: var(--mid);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(21, 96, 168, .12);
            color: var(--blue);
        }

        .quick-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--pale);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--blue);
            transition: background var(--ease), color var(--ease);
        }

        .quick-item:hover .quick-icon {
            background: var(--blue);
            color: #fff;
        }

        .section {
            max-width: 1100px;
            margin: 0 auto;
            padding: 64px 24px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 48px;
            animation: fade-up .6s ease both;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(21, 96, 168, .09);
            color: var(--blue);
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .8px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            border: 1px solid rgba(21, 96, 168, .18);
            margin-bottom: 14px;
        }

        .section-badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--mid);
            animation: pulse-dot 1.8s ease infinite;
        }

        .section-title {
            font-family: var(--font-d);
            font-size: clamp(1.6rem, 3.5vw, 2.3rem);
            font-weight: 700;
            color: var(--navy);
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .section-title em {
            font-style: italic;
            color: var(--mid);
        }

        .section-sub {
            font-size: 1rem;
            color: var(--muted);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.7;
        }


        .aviso-wrap {
            background: linear-gradient(135deg, #FFF5F0, #FFF0E8);
            border-radius: var(--r);
            border: 1.5px solid #F5C9A8;
            padding: 36px 40px;
            display: flex;
            gap: 28px;
            align-items: flex-start;
            box-shadow: 0 4px 20px rgba(232, 113, 26, .10);
            animation: fade-up .7s .1s ease both;
            max-width: 860px;
            margin: 0 auto 0;
        }

        .aviso-icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 16px;
             background: linear-gradient(135deg, #E8711A, #C85A10);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            color: #fff;
            flex-shrink: 0;
            animation: float 3s ease-in-out infinite;
            box-shadow: 0 6px 18px rgba(232, 113, 26, .35);
        }

        .aviso-body {
            flex: 1;
        }

        .aviso-tag {
            font-size: .7rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--flame);
            margin-bottom: 6px;
        }

        .aviso-title {
            font-family: var(--font-d);
            font-size: 1.2rem;
            font-weight: 700;
            color: #6B2C00;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .aviso-desc {
            font-size: .93rem;
            color: #7A4010;
            line-height: 1.65;
            margin-bottom: 18px;
        }

        .aviso-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 11px 24px;
             background: linear-gradient(135deg, #E8711A, #C85A10);
            color: #fff;
            border-radius: 10px;
            font-size: .9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all var(--ease);
            box-shadow: 0 4px 14px rgba(232, 113, 26, .30);
        }

        .aviso-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 113, 26, .40);
        }

        .aviso-note {
            font-size: .78rem;
            color: #A06030;
            margin-top: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }


        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--r);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow);
            transition: transform var(--ease), box-shadow var(--ease);
            animation: fade-up .6s ease both;
        }

        .service-card:nth-child(2) {
            animation-delay: .1s;
        }

        .service-card:nth-child(3) {
            animation-delay: .2s;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .service-img-wrap {
            position: relative;
            height: 190px;
            overflow: hidden;
        }

        .service-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .service-card:hover .service-img-wrap img {
            transform: scale(1.06);
        }

        .service-num {
            position: absolute;
            top: 14px;
            left: 14px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--blue);
            color: #fff;
            font-size: .78rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(21, 96, 168, .4);
        }

        .service-body {
            padding: 22px 24px 26px;
        }

        .service-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--pale);
            color: var(--blue);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .service-title {
            font-family: var(--font-d);
            font-size: 1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .service-text {
            font-size: .88rem;
            color: var(--muted);
            line-height: 1.65;
        }

        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 14px;
            font-size: .72rem;
            font-weight: 600;
            color: var(--green);
            background: rgba(42, 122, 79, .08);
            padding: 4px 10px;
            border-radius: 20px;
            border: 1px solid rgba(42, 122, 79, .2);
        }


        .atenc-banner {
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 60%, var(--mid) 100%);
            padding: 56px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .atenc-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .atenc-inner {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .atenc-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .22);
            color: rgba(255, 255, 255, .9);
            font-size: .72rem;
            font-weight: 600;
            letter-spacing: .8px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 18px;
        }

        .atenc-title {
            font-family: var(--font-d);
            font-size: clamp(1.5rem, 3.5vw, 2.2rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 10px;
        }

        .atenc-title em {
            font-style: italic;
            color: #93C9F0;
        }

        .atenc-sub {
            font-size: 1rem;
            color: rgba(255, 255, 255, .75);
            margin-bottom: 36px;
            line-height: 1.65;
        }

        .contact-wrap {
            max-width: 1100px;
            margin: 0 auto;
            padding: 64px 24px;
            display: grid;
            grid-template-columns: 1fr 420px;
            gap: 48px;
            align-items: start;
        }

        .contact-info {
            animation: slide-l .7s ease both;
        }

        .contact-info-title {
            font-family: var(--font-d);
            font-size: clamp(1.4rem, 3vw, 1.9rem);
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .contact-info-title em {
            font-style: italic;
            color: var(--mid);
        }

        .contact-info-sub {
            font-size: .95rem;
            color: var(--muted);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .contact-channels {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .contact-ch {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 18px;
            background: var(--white);
            border: 1.5px solid var(--border);
            border-radius: var(--r-sm);
            text-decoration: none;
            color: var(--ink);
            transition: all var(--ease);
        }

        .contact-ch:hover {
            border-color: var(--mid);
            background: var(--pale);
            transform: translateX(4px);
        }

        .contact-ch-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--pale);
            color: var(--blue);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-ch strong {
            display: block;
            font-size: .88rem;
            font-weight: 600;
        }

        .contact-ch span {
            font-size: .8rem;
            color: var(--muted);
        }


        .contact-form-card {
            background: var(--white);
            border-radius: var(--r);
            box-shadow: var(--shadow-lg);
            overflow: hidden;
            animation: slide-r .7s ease both;
        }

        .contact-form-head {
            background: linear-gradient(135deg, var(--navy), var(--blue));
            padding: 22px 28px;
        }

        .contact-form-head h3 {
            font-family: var(--font-d);
            font-size: 1.15rem;
            font-weight: 700;
            color: #fff;
        }

        .contact-form-head p {
            font-size: .82rem;
            color: rgba(255, 255, 255, .72);
            margin-top: 3px;
        }

        .contact-form-body {
            padding: 28px;
        }

        .cf-field {
            margin-bottom: 16px;
        }

        .cf-label {
            display: block;
            font-size: .82rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 6px;
        }

        .cf-input,
        .cf-textarea {
            width: 100%;
            padding: 13px 15px;
            font-size: .95rem;
            font-family: var(--font-b);
            border: 1.5px solid var(--border);
            border-radius: var(--r-sm);
            background: #FAFCFE;
            color: var(--ink);
            outline: none;
            transition: border-color var(--ease), box-shadow var(--ease);
        }

        .cf-input:focus,
        .cf-textarea:focus {
            border-color: var(--mid);
            box-shadow: 0 0 0 4px rgba(43, 128, 212, .11);
            background: #fff;
        }

        .cf-input::placeholder,
        .cf-textarea::placeholder {
            color: #A0B5C8;
            font-size: .88rem;
        }

        .cf-textarea {
            resize: vertical;
            min-height: 96px;
        }

        .cf-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .cf-btn {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, var(--navy), var(--blue));
            color: #fff;
            border: none;
            border-radius: var(--r-sm);
            font-size: .95rem;
            font-weight: 600;
            font-family: var(--font-b);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all var(--ease);
            margin-top: 4px;
        }

        .cf-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(12, 61, 107, .28);
        }

        .cf-btn i {
            font-size: 1rem;
        }


        .section-alt {
            background: var(--white);
        }

        .section-aviso {
            background: var(--bg);
            padding: 56px 24px;
        }


        @media(max-width:900px) {
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-wrap {
                grid-template-columns: 1fr;
            }

            .aviso-wrap {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .aviso-note {
                justify-content: center;
            }
        }

        @media(max-width:640px) {
            .hero-wrap {
                height: 58vw;
                min-height: 220px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .quick-bar-inner {
                padding: 16px 12px;
                gap: 6px;
            }

            .quick-item {
                min-width: 90px;
                padding: 10px 10px;
                font-size: .78rem;
            }

            .quick-icon {
                width: 38px;
                height: 38px;
                font-size: 1.1rem;
            }

            .section {
                padding: 48px 16px;
            }

            .contact-form-body {
                padding: 20px;
            }

            .cf-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        
        
        
        
        
        
        
          /*--------------LOGIN--------------*/
        
        :root {
            --navy: #0C3D6B;
            --blue: #185FA5;
            --mid: #2B80D4;
            --sky: #5BAEE8;
            --pale: #E8F3FB;
            --white: #FFFFFF;
            --ink: #1A2B3C;
            --muted: #536475;
            --border: #C8DDEF;
            --red: #B03030;
            --font-display: 'Fraunces', Georgia, serif;
            --font-body: 'DM Sans', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            font-size: 18px;
        }

        body {
            font-family: var(--font-body);
            background: #EFF6FC;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

       
        @keyframes fade-up {
            from {
                opacity: 0;
                transform: translateY(24px)
            }

            to {
                opacity: 1;
                transform: translateY(0)
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-14px)
            }
        }

        @keyframes glow-ring {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(24, 95, 165, 0.25)
            }

            50% {
                box-shadow: 0 0 0 10px rgba(24, 95, 165, 0)
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg)
            }
        }

        @keyframes bar-grow {
            from {
                height: 0
            }

            to {
                height: var(--h)
            }
        }

        @keyframes particle {
            0% {
                transform: translate(0, 0) scale(1);
                opacity: .7;
            }

            100% {
                transform: translate(var(--tx), var(--ty)) scale(0);
                opacity: 0;
            }
        }

        @keyframes wave-x {

            0%,
            100% {
                d: path("M0,60 C150,20 350,100 500,60 L500,120 L0,120 Z");
            }

            50% {
                d: path("M0,80 C150,120 350,40 500,80 L500,120 L0,120 Z");
            }
        }

   
        .ov-page {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100vh;
        }

        
        .ov-left {
            background: linear-gradient(160deg, var(--navy) 0%, #1565B0 55%, var(--mid) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px 52px;
            position: relative;
            overflow: hidden;
        }

       
        .ov-deco {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            pointer-events: none;
        }

        .ov-deco-1 {
            width: 320px;
            height: 320px;
            top: -80px;
            right: -80px;
        }

        .ov-deco-2 {
            width: 200px;
            height: 200px;
            bottom: -40px;
            left: -40px;
            background: rgba(255, 255, 255, 0.04);
        }

        .ov-deco-3 {
            width: 100px;
            height: 100px;
            bottom: 100px;
            right: 40px;
            background: rgba(91, 174, 232, 0.12);
        }

      
        .ov-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            animation: particle 4s ease-in-out infinite;
        }

        .ov-brand {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: fade-up 0.7s 0.1s ease both;
        }

        .ov-brand-logo {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 28px;
        }

        .ov-logo-icon {
            width: 52px;
            height: 52px;
            background: rgba(255, 255, 255, 0.15);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: glow-ring 3s ease-in-out infinite;
        }

        .ov-logo-text {
            text-align: left;
        }

        .ov-logo-name {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-weight: 700;
            color: #fff;
            line-height: 1.1;
        }

        .ov-logo-name em {
            font-style: italic;
            font-weight: 500;
            color: #93C9F0;
        }

        .ov-logo-sub {
            font-size: 0.68rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .ov-headline {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .ov-headline em {
            font-style: italic;
            color: #93C9F0;
        }

        .ov-tagline {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.72);
            line-height: 1.65;
            margin-bottom: 40px;
            max-width: 340px;
            margin-left: auto;
            margin-right: auto;
        }

        .ov-illus {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 380px;
            animation: float 4s ease-in-out infinite;
        }

        .ov-dashboard {
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(8px);
            border-radius: 16px;
            padding: 20px;
        }

        .ov-db-header {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 16px;
        }

        .ov-db-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .ov-db-title {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 600;
            margin-left: 4px;
        }

        .ov-db-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 10px;
            margin-bottom: 14px;
        }

        .ov-db-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            padding: 10px;
            text-align: center;
        }

        .ov-db-card-val {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            line-height: 1;
        }

        .ov-db-card-lbl {
            font-size: 0.62rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 3px;
        }

        .ov-db-chart {
            display: flex;
            align-items: flex-end;
            gap: 6px;
            height: 52px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            padding-bottom: 6px;
            margin-bottom: 10px;
        }

        .ov-db-bar {
            flex: 1;
            background: rgba(255, 255, 255, 0.25);
            border-radius: 4px 4px 0 0;
            --h: 60%;
            animation: bar-grow 1.2s ease both;
        }

        .ov-db-bar:nth-child(2) {
            animation-delay: .1s;
        }

        .ov-db-bar:nth-child(3) {
            animation-delay: .2s;
        }

        .ov-db-bar:nth-child(4) {
            animation-delay: .3s;
        }

        .ov-db-bar:nth-child(5) {
            animation-delay: .4s;
        }

        .ov-db-bar:nth-child(6) {
            animation-delay: .5s;
        }

        .ov-db-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.65);
        }

        .ov-db-row span:last-child {
            color: #93C9F0;
            font-weight: 600;
        }

    
        .ov-trust {
            display: flex;
            gap: 10px;
            margin-top: 28px;
            flex-wrap: wrap;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .ov-trust-pill {
            display: flex;
            align-items: center;
            gap: 6px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.85);
        }

        .ov-trust-pill svg {
            width: 13px;
            height: 13px;
            fill: rgba(255, 255, 255, 0.7);
        }

        .ov-right {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px 40px;
            background: #EFF6FC;
        }

        .ov-form-wrap {
            width: 100%;
            max-width: 420px;
            animation: fade-up 0.7s 0.3s ease both;
        }

        .ov-welcome-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(24, 95, 165, 0.1);
            color: var(--blue);
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.6px;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            border: 1px solid rgba(24, 95, 165, 0.2);
            margin-bottom: 20px;
        }

        .ov-welcome-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--mid);
            animation: glow-ring 2s ease-in-out infinite;
        }

        .ov-form-title {
            font-family: var(--font-display);
            font-size: clamp(1.6rem, 3vw, 2rem);
            font-weight: 700;
            color: var(--navy);
            line-height: 1.15;
            margin-bottom: 8px;
        }

        .ov-form-title em {
            font-style: italic;
            color: var(--mid);
        }

        .ov-form-sub {
            font-size: 0.95rem;
            color: var(--muted);
            margin-bottom: 36px;
            line-height: 1.6;
        }

      
        .ov-field {
            margin-bottom: 20px;
        }

        .ov-label {
            display: block;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 8px;
        }

        .ov-input-wrap {
            position: relative;
        }

        .ov-input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--sky);
            pointer-events: none;
        }

        .ov-input-icon svg {
            width: 20px;
            height: 20px;
        }

        .ov-input {
            width: 100%;
            padding: 15px 16px 15px 48px;
            font-size: 1rem;
            font-family: var(--font-body);
            border: 1.5px solid var(--border);
            border-radius: 12px;
            background: #fff;
            color: var(--ink);
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .ov-input:focus {
            border-color: var(--mid);
            box-shadow: 0 0 0 4px rgba(43, 128, 212, 0.12);
        }

        .ov-input::placeholder {
            color: #A0B5C8;
            font-size: 0.93rem;
        }

       
        .ov-helper {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 6px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .ov-helper svg {
            width: 13px;
            height: 13px;
            fill: var(--sky);
            flex-shrink: 0;
        }

        
        .ov-error-box {
            display: none;
            background: #FBF0F0;
            border: 1px solid #E8AAAA;
            border-left: 4px solid var(--red);
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 0.88rem;
            color: #7A2020;
            margin-bottom: 20px;
            align-items: center;
            gap: 10px;
        }

        .ov-error-box.show {
            display: flex;
        }

        .ov-error-box svg {
            width: 18px;
            height: 18px;
            fill: #C04040;
            flex-shrink: 0;
        }

        
        .ov-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
            color: #fff;
            border: none;
            border-radius: 12px;
            font-size: 1.05rem;
            font-weight: 600;
            font-family: var(--font-body);
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-top: 8px;
            letter-spacing: 0.2px;
        }

        .ov-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(12, 61, 107, 0.30);
        }

        .ov-btn:active {
            transform: translateY(0);
        }

        .ov-btn.loading .btn-txt {
            display: none;
        }

        .ov-btn.loading .btn-icon {
            display: none;
        }

        .ov-btn.loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 2.5px solid rgba(255, 255, 255, 0.35);
            border-top-color: #fff;
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }

        .btn-icon svg {
            width: 18px;
            height: 18px;
            fill: #fff;
        }

        
        .ov-recover {
            text-align: center;
            margin-top: 20px;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .ov-recover a {
            color: var(--blue);
            text-decoration: none;
            font-weight: 600;
        }

        .ov-recover a:hover {
            text-decoration: underline;
        }

       
        .ov-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 24px 0;
            font-size: 0.78rem;
            color: var(--muted);
        }

        .ov-divider::before,
        .ov-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: var(--border);
        }

       
        .ov-quick {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ov-quick-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 16px;
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 12px;
            text-decoration: none;
            color: var(--ink);
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s;
        }

        .ov-quick-item:hover {
            border-color: var(--mid);
            background: var(--pale);
            transform: translateX(4px);
        }

        .ov-quick-icon {
            width: 36px;
            height: 36px;
            background: var(--pale);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .ov-quick-icon svg {
            width: 18px;
            height: 18px;
            fill: var(--blue);
        }

        .ov-quick-txt strong {
            display: block;
            font-size: 0.88rem;
        }

        .ov-quick-txt span {
            font-size: 0.75rem;
            color: var(--muted);
        }

        .ov-quick-arrow {
            margin-left: auto;
            color: var(--border);
        }

        .ov-quick-arrow svg {
            width: 16px;
            height: 16px;
            fill: var(--sky);
        }

        /* footer note */
        .ov-footer-note {
            margin-top: 32px;
            font-size: 0.75rem;
            color: var(--muted);
            text-align: center;
            line-height: 1.6;
        }

        
        @media(max-width:860px) {
            .ov-page {
                grid-template-columns: 1fr;
            }

            .ov-left {
                display: none;
            }

            .ov-right {
                padding: 40px 24px;
                min-height: 100vh;
                justify-content: flex-start;
                padding-top: 60px;
            }
        }
        
        
        
        /*--------------PQRS---------------*/
          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background:
                radial-gradient(circle at top left, rgba(0, 184, 255, 0.10), transparent 25%),
                radial-gradient(circle at bottom right, rgba(0, 255, 157, 0.08), transparent 25%),
                #f4f8fb;
            color: #1d2939;
            overflow-x: hidden;
        }

        
       
        .pqr-page-header {
            background: #fff;
            border-bottom: 1px solid #e5e7eb;
            padding: 28px 8vw;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .pqr-page-header-left h1 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #062f56;
            margin-bottom: 4px;
        }

        .pqr-page-header-left p {
            font-size: 1.1rem;
            color: #6b7280;
        }

        .pqr-breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.4rem;
            color: #6b7280;
        }

        .pqr-breadcrumb a {
            color: #062f56;
            text-decoration: none;
            font-weight: 500;
        }

        .pqr-breadcrumb a:hover {
            background: #add8e6;
            border-radius: 10px;
        }


        .pqr-breadcrumb span {
            color: #d1d5db;
        }

        .pqrs-hero {
            position: relative;
            padding: 7rem 8%;
            overflow: hidden;
            background:
                linear-gradient(135deg, #021b33 0%, #053463 45%, #0b5ea7 100%);
        }

        .pqrs-hero::before {
            content: '';
            position: absolute;
            width: 650px;
            height: 650px;
            background: rgba(255, 255, 255, .06);
            border-radius: 50%;
            top: -250px;
            right: -180px;
            animation: pulseHero 8s infinite alternate;
        }

        .pqrs-hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 50%;
            bottom: -180px;
            left: -120px;
        }

        @keyframes pulseHero {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.15);
            }
        }

        .pqrs-hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .16);
            backdrop-filter: blur(10px);
            padding: .7rem 1.2rem;
            border-radius: 100px;
            color: #fff;
            margin-bottom: 1.8rem;
            font-size: .95rem;
        }

        .pqrs-hero h1 {
            color: white;
            font-size: clamp(2.7rem, 5vw, 4.7rem);
            font-weight: 800;
            line-height: 1.05;
            margin-bottom: 1.4rem;
        }

        .pqrs-hero p {
            color: rgba(255, 255, 255, .82);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 620px;
        }

        .hero-stats {
            margin-top: 2.8rem;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-stat {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .10);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 1rem 1.4rem;
            min-width: 180px;
        }

        .hero-stat h4 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: .2rem;
        }

        .hero-stat span {
            color: rgba(255, 255, 255, .7);
            font-size: .92rem;
        }



        .pqrs-main {
            width: min(1500px, 92%);
            margin: -80px auto 5rem;
            position: relative;
            z-index: 5;
        }

        .pqrs-grid {
            display: grid;
            grid-template-columns: 370px 1fr;
            gap: 2rem;
            align-items: start;
        }

   

        .pqrs-sidebar {
            position: sticky;
            top: 100px;
        }

        .glass-card {
            background: rgba(255, 255, 255, .65);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, .6);
            border-radius: 28px;
            padding: 2rem;
            box-shadow:
                0 10px 40px rgba(0, 0, 0, .06);
            margin-bottom: 1.5rem;
        }


        .glass-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #062f56;
        }

        .info-item {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.4rem;
        }

        .btn-pdf {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 22px;
            border-radius: 14px;
            background: #eef5ff;
            color: #1677ff;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: .3s ease;
        }

        .btn-pdf::before {
            content: "\F63E";
            font-family: bootstrap-icons;
            font-size: 18px;
        }

        .btn-pdf:hover {
            background: #1677ff;
            color: #fff;
            transform: translateY(-2px);
        }


        @media(max-width:768px) {
            .btn-pdf {
                width: 100%;
                justify-content: center;
                font-size: 16px;
            }
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 48px;
            height: 48px;
            border-radius: 16px;
            background: linear-gradient(135deg, #0b84ff, #00b7ff);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-item h5 {
            font-size: .98rem;
            margin-bottom: .3rem;
            color: #0a2540;
        }

        .info-item p,
        .info-item a {
            font-size: .92rem;
            color: #5b6575;
            text-decoration: none;
        }

        .contact-link {
            display: flex;
            align-items: center;
            gap: .9rem;
            background: #f7fbff;
            padding: 1rem 1.1rem;
            border-radius: 18px;
            text-decoration: none;
            color: #123;
            margin-bottom: .8rem;
            transition: .3s ease;
        }

        .contact-link:hover {
            transform: translateY(-3px);
            background: #0b84ff;
        }

 

        .form-card {
            background: rgba(255, 255, 255, .72);
            backdrop-filter: blur(18px);
            border-radius: 34px;
            border: 1px solid rgba(255, 255, 255, .65);
            overflow: hidden;
            box-shadow:
                0 20px 60px rgba(0, 0, 0, .07);
        }

        .form-header {
            padding: 2.5rem 3rem;
            border-bottom: 1px solid rgba(0, 0, 0, .06);
            background:
                linear-gradient(to right,
                    rgba(255, 255, 255, .6),
                    rgba(255, 255, 255, .2));
        }

        .form-header h2 {
            font-size: 2rem;
            color: #082d52;
            margin-bottom: .5rem;
        }

        .form-header p {
            color: #5f6b7a;
        }

        .form-body {
            padding: 3rem;
        }

        .pqr-section-label {
            display: flex;
            align-items: center;
            gap: .8rem;
            font-size: 1.2rem;
            font-weight: 700;
            color: #0a2f55;
            margin-bottom: 2rem;
        }

        .pqr-section-label i {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: linear-gradient(135deg, #0b84ff, #00b7ff);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pqr-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.4rem;
        }

        .pqr-field {
            margin-bottom: 1.5rem;
        }

        .pqr-field label {
            display: block;
            margin-bottom: .8rem;
            font-weight: 600;
            color: #223548;
        }

        .pqr-field label em {
            color: #00a1ff;
            font-style: normal;
        }

        .pqr-field input,
        .pqr-field textarea {
            width: 100%;
            border: 1px solid rgba(0, 0, 0, .08);
            background: rgba(255, 255, 255, .75);
            border-radius: 18px;
            padding: 1rem 1.1rem;
            font-size: .97rem;
            transition: .3s ease;
            outline: none;
        }

        .pqr-field input:focus,
        .pqr-field textarea:focus {
            border-color: #00a8ff;
            background: white;
            box-shadow: 0 0 0 5px rgba(0, 168, 255, .10);
        }

        .pqr-divider {
            height: 1px;
            background: linear-gradient(to right,
                    transparent,
                    rgba(0, 0, 0, .12),
                    transparent);
            margin: 2.8rem 0;
        }

      

        .radio-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .radio-grid.columna {
            grid-template-columns: 1fr;
        }

        .radio-card {
            position: relative;
            display: flex;
            align-items: center;
            gap: .8rem;
            padding: 1rem 1.2rem;
            border-radius: 20px;
            border: 1px solid rgba(0, 0, 0, .08);
            background: rgba(255, 255, 255, .65);
            cursor: pointer;
            transition: .3s ease;
            font-weight: 500;
        }

        .radio-card:hover {
            transform: translateY(-2px);
            background: white;
        }

        .radio-card input {
            display: none;
        }

        .radio-card.activo {
            border-color: #00a8ff;
            background: rgba(0, 168, 255, .08);
            box-shadow: 0 0 0 4px rgba(0, 168, 255, .08);
        }

        .radio-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            border: 2px solid #0b84ff;
            position: relative;
        }

        .radio-card.activo .radio-dot::after {
            content: '';
            width: 8px;
            height: 8px;
            background: #0b84ff;
            border-radius: 50%;
            position: absolute;
            top: 3px;
            left: 3px;
        }

        .auth-box {
            background: rgba(0, 168, 255, .08);
            border: 1px solid rgba(0, 168, 255, .12);
            padding: 1.3rem;
            border-radius: 18px;
            line-height: 1.7;
            margin-bottom: 1.4rem;
        }

        .auth-radio-group {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .input-otro {
            margin-top: 1rem;
            display: none;
        }

        .input-otro.visible {
            display: block;
        }

   

        .hint {
            font-size: .9rem;
            color: #6b7280;
            margin-bottom: .8rem;
        }

        .textarea-wrap {
            position: relative;
        }

        .char-counter {
            position: absolute;
            right: 14px;
            bottom: 14px;
            background: rgba(255, 255, 255, .95);
            padding: .3rem .6rem;
            border-radius: 100px;
            font-size: .78rem;
            color: #667085;
        }

      

        .pqr-dropzone {
            border: 2px dashed rgba(0, 168, 255, .25);
            background: rgba(0, 168, 255, .05);
            border-radius: 24px;
            padding: 3rem 2rem;
            text-align: center;
            cursor: pointer;
            transition: .3s ease;
        }

        .pqr-dropzone:hover {
            background: rgba(0, 168, 255, .08);
            transform: translateY(-3px);
        }

        .pqr-dropzone i {
            font-size: 2.8rem;
            color: #0b84ff;
            margin-bottom: 1rem;
        }

        .pqr-dropzone input {
            display: none;
        }

        .pqr-file-name {
            display: none;
            align-items: center;
            gap: .8rem;
            background: #effcf5;
            color: #15803d;
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 16px;
        }

      

        .form-footer {
            padding: 2rem 3rem;
            border-top: 1px solid rgba(0, 0, 0, .06);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .form-footer p {
            color: #667085;
            font-size: .92rem;
            max-width: 700px;
            line-height: 1.7;
        }

        .btn-submit {
            border: none;
            background: linear-gradient(135deg, #0b84ff, #00b7ff);
            color: white;
            padding: 1rem 2rem;
            border-radius: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: .3s ease;
            box-shadow: 0 14px 30px rgba(0, 168, 255, .25);
        }

        .btn-submit:hover {
            transform: translateY(-3px);
        }

        @media(max-width:1100px) {

            .pqrs-grid {
                grid-template-columns: 1fr;
            }

            .pqrs-sidebar {
                position: relative;
                top: 0;
            }

            .pqr-grid,
            .radio-grid {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:768px) {

            .pqrs-hero {
                padding: 5rem 7%;
            }

            .form-body,
            .form-header,
            .form-footer {
                padding: 2rem 1.3rem;
            }

            .hero-stats {
                flex-direction: column;
            }
        }
        
        
        
        
        /*---------------PREGUNTAS--------------*/
        
         :root {
            --primary: #0f172a;
            --secondary: #1e293b;
            --accent: #00b894;
            --accent2: #00d2a0;
            --light: #f8fafc;
            --border: #e2e8f0;
            --text: #64748b;
            --shadow: 0 20px 50px rgba(0, 0, 0, .08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Barlow', sans-serif;
        }

        body {
            background: #f1f5f9;
            overflow-x: hidden;
        }

       

        .hero-faq {
            position: relative;
            min-height: 480px;
            overflow: hidden;
            border-radius: 0 0 40px 40px;

            background:
                linear-gradient(135deg,
                    rgba(15, 23, 42, .92),
                    rgba(15, 23, 42, .78)),
                url("<?php echo base_url(); ?>public/img/actual/preguntasFrecuentes.png");

            background-size: cover;
            background-position: center;

            display: flex;
            align-items: center;
        }

        .hero-faq::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: rgba(0, 184, 148, .10);
            border-radius: 50%;
            top: -260px;
            right: -180px;
            animation: float 8s ease-in-out infinite;
        }

        .hero-faq::after {
            content: '';
            position: absolute;
            width: 280px;
            height: 280px;
            background: rgba(255, 255, 255, .05);
            border-radius: 50%;
            bottom: -120px;
            left: -80px;
            animation: float2 10s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(25px);
            }

            100% {
                transform: translateY(0);
            }
        }

        @keyframes float2 {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0);
            }
        }

        .hero-content-faq {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 2rem;
            color: white;
        }

        .hero-badge-faq {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: rgba(255, 255, 255, .1);
            padding: .8rem 1.2rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255, 255, 255, .08);
        }

        .hero-content-faq h1 {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.2rem;
            max-width: 700px;
        }

        .hero-content-faq p {
            max-width: 650px;
            line-height: 1.8;
            font-size: 1.1rem;
            opacity: .92;
        }

       

        .faq-container {
            width: 100%;
            max-width: 1150px;
            margin: -80px auto 5rem;
            position: relative;
            z-index: 5;
            padding: 0 1rem;
        }

        .faq-card {
            background: white;
            border-radius: 32px;
            box-shadow: var(--shadow);
            overflow: hidden;
        }

        .faq-header {
            padding: 2.5rem 2.5rem 1rem;
            text-align: center;
        }

        .faq-header h2 {
            font-size: 2.6rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .faq-header p {
            color: var(--text);
            max-width: 700px;
            margin: auto;
            line-height: 1.8;
        }

        

        .faq-body {
            padding: 1rem 2rem 2rem;
        }

        .container__question {
            background: white;
            border: 1px solid var(--border);
            border-radius: 24px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: .35s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, .03);
        }

        .container__question:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, .06);
        }

        .container__question[open] {
            border-color: rgba(0, 184, 148, .25);
            box-shadow: 0 15px 35px rgba(0, 184, 148, .10);
        }

        .acordeon__question {
            position: relative;
            list-style: none;
            cursor: pointer;
            padding: 1.5rem 4rem 1.5rem 1.5rem;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--primary);
            transition: .3s ease;
        }

        .acordeon__question::-webkit-details-marker {
            display: none;
        }

        .acordeon__question::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(0, 184, 148, .10);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            transition: .35s ease;
        }

        .container__question[open] .acordeon__question::after {
            content: '—';
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: white;
            transform: translateY(-50%) rotate(180deg);
        }

        .container__question[open] .acordeon__question {
            color: var(--accent);
        }

        .acordeon__text__info {
            padding: 0 1.5rem 1.5rem;
            color: var(--text);
            line-height: 1.9;
            animation: fadeIn .35s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .enlaces__negrilla {
            color: var(--accent);
            font-weight: 700;
            text-decoration: none;
            position: relative;
        }

        .enlaces__negrilla::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: .3s ease;
        }

        .enlaces__negrilla:hover::after {
            width: 100%;
        }

     

        .faq-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: .3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .stat-card h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: .5rem;
        }

        .stat-card p {
            color: var(--text);
            margin: 0;
        }

        

        @media(max-width:991px) {

            .hero-content-faq h1 {
                font-size: 2.8rem;
            }

            .faq-stats {
                grid-template-columns: 1fr;
            }

        }

        @media(max-width:576px) {

            .hero-faq {
                min-height: 400px;
            }

            .hero-content-faq h1 {
                font-size: 2rem;
            }

            .hero-content-faq p {
                font-size: .95rem;
            }

            .faq-header {
                padding: 1.8rem 1.3rem 1rem;
            }

            .faq-header h2 {
                font-size: 2rem;
            }

            .faq-body {
                padding: 1rem;
            }

            .acordeon__question {
                font-size: .95rem;
                padding: 1.2rem 3.5rem 1.2rem 1.2rem;
            }

            .acordeon__text__info {
                padding: 0 1.2rem 1.2rem;
                font-size: .95rem;
            }

        }
        
        
        
        
        
        /*------------RECONEXION---------*/
         * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background: #eaf4fb;
        }

        .rc-root {
            font-family: 'DM Sans', sans-serif;
            background: linear-gradient(135deg, #e8f4fd 0%, #d0eaf8 40%, #e1f5ee 100%);
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
        }

        .rc-bg-pipes {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            width: 100%;
            height: 100%;
        }

        .rc-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: calc(100vh - 80px);
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            gap: 2rem;
            align-items: center;
        }

        @media (max-width: 768px) {
            .rc-content {
                grid-template-columns: 1fr;
            }

            .rc-left {
                order: 2;
            }

            .rc-right {
                order: 1;
            }
        }

      
        .rc-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            padding: 2rem 1rem;
        }

        .rc-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #0a3d62;
            color: #b5d4f4;
            font-size: 0.72rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 5px 14px;
            border-radius: 20px;
            margin-bottom: 1.4rem;
        }

        .rc-badge-dot {
            width: 6px;
            height: 6px;
            background: #5DCAA5;
            border-radius: 50%;
            animation: pulse-dot 1.5s infinite;
        }

        @keyframes pulse-dot {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(1.5);
            }
        }

        .rc-title {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 3rem;
            line-height: 1.05;
            color: #0a3d62;
            margin-bottom: 1rem;
        }

        .rc-title .highlight {
            color: #1a8cbe;
            display: block;
            position: relative;
        }

        .rc-title .highlight::after {
            content: '';
            position: absolute;
            bottom: 3px;
            left: 0;
            right: 0;
            height: 5px;
            background: #1a8cbe;
            border-radius: 3px;
            transform: scaleX(0);
            transform-origin: left;
            animation: underline-in 0.8s 0.8s cubic-bezier(.22, 1, .36, 1) forwards;
        }

        @keyframes underline-in {
            to {
                transform: scaleX(1);
            }
        }

        .rc-subtitle {
            font-size: 1rem;
            color: #4a7fa5;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 340px;
        }

        .rc-title-char {
            display: inline-block;
            animation: char-drop 0.5s cubic-bezier(.22, 1, .36, 1) both;
        }

        @keyframes char-drop {
            from {
                opacity: 0;
                transform: translateY(-18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

    
        .rc-anim-wrap {
            position: relative;
            width: 300px;
            height: 230px;
        }

        .pipe-row {
            position: absolute;
            top: 28px;
            left: 0;
            right: 0;
        }

        .worker {
            position: absolute;
            bottom: 0;
            left: 20px;
            animation: worker-bob 2.6s ease-in-out infinite;
        }

        .worker2 {
            position: absolute;
            bottom: 0;
            left: 150px;
            animation: worker-bob 2.6s 0.9s ease-in-out infinite;
        }

        @keyframes worker-bob {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-9px);
            }
        }

        .gas-particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: #5DCAA5;
            border-radius: 50%;
            opacity: 0;
            top: 50px;
            left: 10px;
        }

        .gas-particle:nth-child(1) {
            animation: gas-flow 2.2s 0.1s infinite;
        }

        .gas-particle:nth-child(2) {
            animation: gas-flow 2.2s 0.8s infinite;
        }

        .gas-particle:nth-child(3) {
            animation: gas-flow 2.2s 1.5s infinite;
        }

        @keyframes gas-flow {
            0% {
                opacity: 0;
                transform: translateX(0);
            }

            15% {
                opacity: 1;
            }

            85% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                transform: translateX(220px);
            }
        }

      
        .rc-right {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .rc-card {
            background: rgba(255, 255, 255, 0.90);
            backdrop-filter: blur(10px);
            border-radius: 22px;
            border: 1.5px solid rgba(26, 140, 190, 0.18);
            padding: 2.2rem 2rem;
            width: 100%;
            max-width: 420px;
            box-shadow: 0 10px 40px rgba(10, 61, 98, 0.10);
            animation: card-rise 0.7s 0.2s cubic-bezier(.22, 1, .36, 1) both;
        }

        @keyframes card-rise {
            from {
                opacity: 0;
                transform: translateY(28px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-dots {
            display: flex;
            gap: 6px;
            margin-bottom: 1.4rem;
        }

        .step-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(26, 140, 190, 0.18);
            transition: background 0.3s, transform 0.3s;
        }

        .step-dot.active {
            background: #1a8cbe;
            transform: scale(1.35);
        }

        .step-dot.done {
            background: #5DCAA5;
        }

        .rc-card-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
            color: #0a3d62;
            margin-bottom: 1.6rem;
            display: flex;
            align-items: center;
            gap: 9px;
        }

        .rc-card-title .title-icon {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #1a8cbe, #5DCAA5);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
        }

        .rc-field {
            margin-bottom: 1.1rem;
        }

        .rc-label {
            display: block;
            font-size: 0.71rem;
            font-weight: 500;
            color: #4a7fa5;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .rc-input,
        .rc-textarea {
            width: 100%;
            padding: 10px 13px;
            border: 1.5px solid rgba(26, 140, 190, 0.22);
            border-radius: 11px;
            font-size: 0.9rem;
            color: #0a3d62;
            background: rgba(230, 241, 251, 0.35);
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
            outline: none;
            font-family: 'DM Sans', sans-serif;
        }

        .rc-input:focus,
        .rc-textarea:focus {
            border-color: #1a8cbe;
            background: rgba(230, 241, 251, 0.65);
            box-shadow: 0 0 0 3px rgba(26, 140, 190, 0.12);
        }

        .rc-input[readonly] {
            background: rgba(26, 140, 190, 0.08);
            color: #1a8cbe;
            font-weight: 500;
            cursor: not-allowed;
        }

        .rc-input.error {
            border-color: #E24B4A !important;
        }

        .rc-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .rc-textarea {
            resize: none;
            height: 78px;
        }

        .rc-file-area {
            border: 1.5px dashed rgba(26, 140, 190, 0.38);
            border-radius: 11px;
            padding: 11px 14px;
            text-align: center;
            cursor: pointer;
            transition: background 0.2s, border-color 0.2s;
            background: rgba(230, 241, 251, 0.18);
            margin-bottom: 1.2rem;
            position: relative;
        }

        .rc-file-area:hover {
            background: rgba(26, 140, 190, 0.07);
            border-color: #1a8cbe;
        }

        .rc-file-area input[type="file"] {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
        }

        .rc-file-label {
            font-size: 0.8rem;
            color: #4a7fa5;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 7px;
            pointer-events: none;
        }

        .rc-file-label i {
            font-size: 20px;
            color: #1a8cbe;
        }

        .rc-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #0a3d62 0%, #1a8cbe 100%);
            color: #fff;
            border: none;
            border-radius: 13px;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.15s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            letter-spacing: 0.04em;
        }

        .rc-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(10, 61, 98, 0.28);
        }

        .rc-btn:active {
            transform: scale(0.98);
        }

        .rc-btn i {
            font-size: 19px;
        }

        .rc-alert {
            display: none;
            padding: 9px 13px;
            border-radius: 10px;
            font-size: 0.82rem;
            margin-bottom: 1rem;
            align-items: center;
            gap: 7px;
        }

        .rc-alert.error {
            display: flex;
            background: rgba(226, 75, 74, 0.1);
            color: #A32D2D;
            border: 1px solid rgba(226, 75, 74, 0.25);
        }

        .rc-alert.success {
            display: flex;
            background: rgba(93, 202, 165, 0.12);
            color: #0f6e56;
            border: 1px solid rgba(93, 202, 165, 0.3);
        }

        .rc-success {
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 12px;
            padding: 1rem 0;
        }

        .rc-success-icon {
            width: 62px;
            height: 62px;
            background: linear-gradient(135deg, #5DCAA5, #1a8cbe);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 30px;
            animation: pop-in 0.4s cubic-bezier(.22, 1, .36, 1) both;
        }

        @keyframes pop-in {
            from {
                transform: scale(0);
                opacity: 0;
            }

            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        .rc-success-title {
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 1.15rem;
            color: #0a3d62;
        }

        .rc-success-sub {
            font-size: 0.87rem;
            color: #4a7fa5;
            line-height: 1.6;
            max-width: 280px;
        }

        .rc-btn-outline {
            margin-top: 8px;
            padding: 9px 24px;
            width: auto;
            background: transparent;
            border: 1.5px solid #1a8cbe;
            color: #1a8cbe;
            border-radius: 11px;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }

        .rc-btn-outline:hover {
            background: rgba(26, 140, 190, 0.08);
        }
        
        
        
        
        /*-------------REGULATORIO---------------*/
        
         :root {
            --primary: #0f172a;
            --secondary: #1e293b;
            --accent: #00b894;
            --accent2: #00d2a0;
            --light: #f8fafc;
            --border: #e2e8f0;
            --text: #475569;
            --shadow: 0 15px 40px rgba(0, 0, 0, .08);
        }

        * {
            font-family: 'Barlow', sans-serif;
        }

        body {
            background: #f1f5f9;
            overflow-x: hidden;
        }

        /* HERO */

        .hero-regulatorio {
            position: relative;
            min-height: 420px;
            border-radius: 0 0 40px 40px;
            overflow: hidden;
            background:
                linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(15, 23, 42, .78)),
                url("<?php echo base_url(); ?>public/img/actual/marcoRegulatorio.png");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-regulatorio::before {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: rgba(0, 184, 148, .12);
            top: -250px;
            right: -120px;
        }

        .hero-regulatorio::after {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .04);
            bottom: -180px;
            left: -100px;
        }

        .hero-content-regulatorio {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 2rem;
            color: white;
        }

        .hero-content-regulatorio span {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            padding: .7rem 1.2rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            font-size: .95rem;
            margin-bottom: 1.5rem;
        }

        .hero-content-regulatorio h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-content-regulatorio p {
            max-width: 700px;
            font-size: 1.15rem;
            line-height: 1.8;
            opacity: .9;
        }

    

        .pdf-section-regulatorio {
            width: 100%;
            max-width: 1200px;
            margin: -70px auto 4rem;
            position: relative;
            z-index: 5;
            padding: 0 1rem;
        }

        .pdf-card-regulatorio {
            background: white;
            border-radius: 28px;
            padding: 2rem;
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .pdf-info-regulatorio h2 {
            font-size: 2rem;
            color: var(--primary);
            font-weight: 800;
            margin-bottom: .7rem;
        }

        .pdf-info-regulatorio p {
            color: var(--text);
            margin: 0;
            line-height: 1.7;
        }

        .btn-pdf-regulatorio {
            width: 90px;
            height: 90px;
            border-radius: 24px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            font-size: 2.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: .35s ease;
            box-shadow: 0 15px 30px rgba(239, 68, 68, .28);
        }

        .btn-pdf-regulatorio:hover {
            transform: translateY(-5px) scale(1.04);
            color: white;
            text-decoration: none;
        }

     

        .regulatorio-container {
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 0 1rem 5rem;
            display: grid;
            gap: 2rem;
        }

        .reg-card {
            background: white;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow);
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            transition: .4s ease;
            position: relative;
        }

        .reg-card:hover {
            transform: translateY(-5px);
        }

        .reg-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 184, 148, .02), transparent);
            pointer-events: none;
        }

        .reg-card.reverse .reg-image {
            order: 2;
        }

        .reg-card.reverse .reg-content {
            order: 1;
        }

        

        .reg-image {
            position: relative;
            height: 100%;
            overflow: hidden;
        }

        .reg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 1s ease;
        }

        .reg-card:hover .reg-image img {
            transform: scale(1.08);
        }

        
        .reg-content {
            padding: 3rem;
            position: relative;
        }

        .reg-badge {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: linear-gradient(135deg, var(--accent), var(--accent2));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 15px 30px rgba(0, 184, 148, .25);
        }

        .reg-content h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: .7rem;
        }

        .reg-content h3 {
            font-size: 1rem;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .reg-content p {
            color: var(--text);
            line-height: 1.9;
            margin: 0;
            font-size: 1rem;
        }

       

        .floating-shape-regulatorio {
            position: absolute;
            border-radius: 50%;
            background: rgba(0, 184, 148, .08);
            animation: float 6s ease-in-out infinite;
        }

        .shape-1-regulatorio {
            width: 120px;
            height: 120px;
            top: 20%;
            right: -40px;
        }

        .shape-2-regulatorio {
            width: 70px;
            height: 70px;
            bottom: 10%;
            left: -20px;
            animation-delay: 2s;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-18px);
            }

            100% {
                transform: translateY(0px);
            }
        }

       

        @media(max-width:991px) {

            .hero-content-regulatorio h1 {
                font-size: 2.8rem;
            }

            .reg-card {
                grid-template-columns: 1fr;
            }

            .reg-card.reverse .reg-image,
            .reg-card.reverse .reg-content {
                order: unset;
            }

            .reg-image {
                height: 320px;
            }
        }

        @media(max-width:576px) {

            .hero-regulatorio {
                min-height: 360px;
            }

            .hero-content-regulatorio h1 {
                font-size: 2.2rem;
            }

            .hero-content-regulatorio p {
                font-size: 1rem;
            }

            .pdf-card-regulatorio {
                text-align: center;
                justify-content: center;
            }

            .reg-content {
                padding: 2rem;
            }

            .reg-content h2 {
                font-size: 1.8rem;
            }

            .btn-pdf-regulatorio {
                width: 75px;
                height: 75px;
                font-size: 2.2rem;
            }
        }
        
        
        
        /*--------------SCONSUMOS--------------*/
        
         :root {
            --primary: #0C447C;
            --primary-light: #1560a8;
            --secondary: #22A699;
            --bg: #f5f7fb;
            --text: #1f2937;
            --muted: #6b7280;
            --border: #e5e7eb;
            --white: #fff;
            --shadow: 0 10px 35px rgba(0, 0, 0, .06);
            --radius: 22px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family: 'Poppins', sans-serif;
        }

        .consumo-page {
            width: min(1400px, 92%);
            margin: 2rem auto 4rem;
        }

        

        .hero-consumo {
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            padding: 3rem;
            background:
                linear-gradient(135deg,
                    #0C447C 0%,
                    #1560a8 45%,
                    #22A699 100%);
            color: #fff;
            margin-bottom: 2rem;
            box-shadow: var(--shadow);
        }

        .hero-consumo::before {
            content: '';
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .08);
            right: -120px;
            top: -120px;
        }

        .hero-consumo::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
            left: -80px;
            bottom: -80px;
        }

        .hero-content-consumos {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 2rem;
            align-items: center;
        }

        .hero-text-consumos h1 {
            font-size: clamp(2rem, 4vw, 3.3rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-text-consumos p {
            max-width: 700px;
            color: rgba(255, 255, 255, .92);
            line-height: 1.7;
            font-size: 1rem;
        }

        .hero-badges-consumos {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .hero-badge {
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .15);
            backdrop-filter: blur(10px);
            padding: .9rem 1.2rem;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: .8rem;
        }

        .hero-badge i {
            font-size: 1.3rem;
        }

        .hero-image-consumos {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-consumos img {
            width: 100%;
            max-width: 360px;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .18));
        }

   

        .dashboard-grid-consumos {
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 1.5rem;
        }

       

        .side-card-consumos {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.7rem;
            border: 1px solid rgba(0, 0, 0, .03);
            margin-bottom: 1.5rem;
        }

        .card-title-consumos {
            display: flex;
            align-items: center;
            gap: .8rem;
            margin-bottom: 1.5rem;
        }

        .card-title-consumos .icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(12, 68, 124, .08);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .card-title-consumos h3 {
            font-size: 1.1rem;
            margin: 0;
            font-weight: 700;
        }

        .card-title-consumos p {
            margin: 0;
            color: var(--muted);
            font-size: .88rem;
        }

        .metric-card-consumos {
            background: linear-gradient(135deg, #f8fbff, #eef6ff);
            border: 1px solid #d9e8fa;
            border-radius: 18px;
            padding: 1rem;
            margin-bottom: 1rem;
        }

        .metric-label-consumos {
            color: var(--muted);
            font-size: .85rem;
            margin-bottom: .4rem;
        }

        .metric-value-consumos {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
        }

        .venta-input-consumos label {
            font-size: .88rem;
            font-weight: 600;
            margin-bottom: .6rem;
            display: block;
        }

        .venta-input-consumos input {
            width: 100%;
            border-radius: 14px;
            border: 1px solid var(--border);
            padding: .9rem 1rem;
            background: #f8fafc;
            font-weight: 700;
            color: var(--primary);
        }

        .illustration-consumos {
            margin-top: 1.5rem;
            text-align: center;
        }

        .illustration-consumos img {
            width: 100%;
            max-width: 260px;
        }

      

        .chart-card-consumos {
            background: var(--white);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 1.8rem;
            border: 1px solid rgba(0, 0, 0, .03);
        }

        .chart-header-consumos {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .chart-header-consumos h2 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
        }

        .chart-header-consumos p {
            margin: .3rem 0 0;
            color: var(--muted);
        }

        .chart-actions-consumos {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .chart-btn-consumos {
            border: none;
            border-radius: 14px;
            padding: .9rem 1.3rem;
            display: flex;
            align-items: center;
            gap: .8rem;
            font-weight: 700;
            transition: .3s ease;
            cursor: pointer;
            background: #edf4fc;
            color: var(--primary);
        }

        .chart-btn-consumos:hover {
            transform: translateY(-2px);
        }

        .chart-btn-consumos.active {
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            color: #fff;
            box-shadow: 0 10px 25px rgba(12, 68, 124, .25);
        }

        .chart-btn-consumos img {
            width: 24px;
        }

        .chart-container-consumos {
            position: relative;
            width: 100%;
            min-height: 450px;
        }

        .chart-box-consumos {
            width: 100%;
            height: 100%;
        }

        canvas {
            width: 100% !important;
            height: 450px !important;
        }


        .bottom-info-consumos {
            margin-top: 1.5rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
        }

        .info-box-consumos {
            background: #f8fbff;
            border: 1px solid #e1edf8;
            border-radius: 18px;
            padding: 1.2rem;
        }

        .info-box-consumos i {
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: .8rem;
            display: block;
        }

        .info-box-consumos h4 {
            font-size: 1rem;
            margin-bottom: .5rem;
            font-weight: 700;
        }

        .info-box-consumos p {
            color: var(--muted);
            line-height: 1.5;
            font-size: .92rem;
            margin: 0;
        }

       

        @media(max-width:1100px) {

            .dashboard-grid-consumos {
                grid-template-columns: 1fr;
            }

            .hero-content-consumos {
                grid-template-columns: 1fr;
            }

            .hero-image-consumos {
                order: -1;
            }

        }

        @media(max-width:768px) {

            .consumo-page {
                width: 94%;
            }

            .hero-consumo {
                padding: 2rem 1.5rem;
            }

            .chart-header-consumos {
                flex-direction: column;
                align-items: flex-start;
            }

            .chart-actions-consumos {
                width: 100%;
            }

            .chart-btn-consumos {
                flex: 1;
                justify-content: center;
            }

            canvas {
                height: 320px !important;
            }

        }

        @media(max-width:500px) {

            .hero-badges-consumos {
                flex-direction: column;
            }

            .chart-actions-consumos {
                flex-direction: column;
            }

            .chart-btn-consumos {
                width: 100%;
            }

        }
        
        
        
        
        
        
        
        
        
        /*------------TRANSPARENCIA---------------*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Barlow', sans-serif;
        }

        :root {
            --primary: #03377e;
            --primary-light: #3682e7;
            --green: #71d7a9;
            --dark: #093879;
            --white: #ffffff;
            --text: #44546a;
            --soft: #f4f8ff;
            --border: rgba(3, 55, 126, .08);

            --shadow:
                0 15px 40px rgba(3, 55, 126, .08);

            --radius: 28px;
        }

        body {
            background:
                radial-gradient(circle at top left, rgba(54, 130, 231, .12), transparent 30%),
                radial-gradient(circle at bottom right, rgba(113, 215, 169, .12), transparent 30%),
                #f7fbff;
            overflow-x: hidden;
            color: var(--text);
        }

        a {
            text-decoration: none;
        }

       

        .hero-regulatorio-transp {
            position: relative;
            min-height: 420px;
            border-radius: 0 0 40px 40px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(15, 23, 42, .78)),
             url("<?php echo base_url(); ?>public/img/I_RevNorma.jpg");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }

        .hero-regulatorio-transp::before {
            content: '';
            position: absolute;
            width: 550px;
            height: 550px;
            border-radius: 50%;
            background: rgba(0, 184, 148, .12);
            top: -250px;
            right: -120px;
        }

        .hero-regulatorio-transp::after {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .04);
            bottom: -180px;
            left: -100px;
        }

        .hero-content-transp {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 2rem;
            color: white;
        }

        .hero-content-transp span {
            display: inline-flex;
            align-items: center;
            gap: .5rem;
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .08);
            padding: .7rem 1.2rem;
            border-radius: 50px;
            backdrop-filter: blur(10px);
            font-size: .95rem;
            margin-bottom: 1.5rem;
        }

        .hero-content-transp h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .hero-content-transp p {
            max-width: 700px;
            font-size: 1.15rem;
            line-height: 1.8;
            opacity: .9;
        }

        .hero-transparencia {
            position: relative;
            overflow: hidden;
            padding: 7rem 0 8rem;
            background:
                linear-gradient(135deg,
                    #03377e 0%,
                    #093879 45%,
                    #3682e7 100%);
        }

        .hero-transparencia::before {
            content: '';
            position: absolute;
            width: 520px;
            height: 520px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .05);
            top: -220px;
            right: -160px;
        }

        .hero-transparencia::after {
            content: '';
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(113, 215, 169, .12);
            bottom: -140px;
            left: -80px;
        }

        .hero-container-transp {
            max-width: 1350px;
            margin: auto;
            padding: 0 1.5rem;

            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-badge-transp {
            display: inline-flex;
            align-items: center;
            gap: .6rem;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .15);
            backdrop-filter: blur(15px);
            color: #fff;
            padding: .9rem 1.3rem;
            border-radius: 100px;
            font-weight: 600;
            margin-bottom: 1.7rem;
            animation: fadeUp .7s ease;
        }

        .hero-badge-transp i {
            color: var(--green);
        }

        .hero-text-transp h1 {
            color: #fff;
            font-size: 4rem;
            line-height: 1.08;
            margin-bottom: 1.5rem;
            font-weight: 800;
            animation: fadeUp .8s ease;
        }

        .hero-text-transp p {
            color: rgba(255, 255, 255, .88);
            font-size: 1.12rem;
            line-height: 1.9;
            max-width: 760px;
            animation: fadeUp .9s ease;
        }

        .hero-stats {
            margin-top: 2rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .hero-stat {
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .10);
            backdrop-filter: blur(14px);
            border-radius: 22px;
            padding: 1rem 1.2rem;
            color: #fff;
            min-width: 180px;
            transition: .3s ease;
        }

        .hero-stat:hover {
            transform: translateY(-6px);
            background: rgba(255, 255, 255, .16);
        }

        .hero-stat span {
            display: block;
            font-size: 2rem;
            font-weight: 800;
            color: var(--green);
            margin-bottom: .2rem;
        }

        .hero-visual-transp {
            position: relative;
        }

        .glass-card-transp {
            background: rgba(255, 255, 255, .10);
            border: 1px solid rgba(255, 255, 255, .15);
            backdrop-filter: blur(18px);
            border-radius: 35px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
            animation: floatCard 5s ease-in-out infinite;
        }

        .glass-card-transp img {
            width: 100%;
            display: block;
        }

        .floating-mini-transp {
            position: absolute;
            background: #fff;
            border-radius: 22px;
            padding: 1rem;
            box-shadow: var(--shadow);
            display: flex;
            align-items: center;
            gap: .9rem;
            animation: floatMini 4s ease-in-out infinite;
        }

        .floating-mini-transp i {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-light), var(--primary));
            color: #fff;
            font-size: 1.2rem;
        }

        .floating-mini-transp strong {
            display: block;
            color: var(--dark);
        }

        .floating-mini-transp p {
            margin: 0;
            font-size: .88rem;
            color: #74839a;
        }

        .mini-1-transp {
            top: -20px;
            left: -30px;
        }

        .mini-2-transp {
            bottom: -15px;
            right: -20px;
            animation-delay: 1s;
        }


        .content-wrapper-transp {
            max-width: 1350px;
            margin: auto;
            padding: 0 1.5rem 5rem;
            margin-top: -85px;
            position: relative;
            z-index: 20;
        }

        

        .top-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .top-card {
            background: rgba(255, 255, 255, .75);
            border: 1px solid rgba(255, 255, 255, .7);
            backdrop-filter: blur(18px);
            border-radius: 30px;
            padding: 1.7rem;
            box-shadow: var(--shadow);
            transition: .35s ease;
        }

        .top-card:hover {
            transform: translateY(-8px);
        }

        .top-card .icon {
            width: 70px;
            height: 70px;
            border-radius: 24px;
            background:
                linear-gradient(135deg,
                    var(--primary-light),
                    var(--primary));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            margin-bottom: 1.2rem;
        }

        .top-card h4 {
            color: var(--dark);
            font-size: 1.2rem;
            font-weight: 800;
            margin-bottom: .7rem;
        }

        .top-card p {
            color: #72839d;
            line-height: 1.8;
            margin: 0;
        }


        .transparency-accordion {
            display: flex;
            flex-direction: column;
            gap: 1.3rem;
        }

        .trans-card {
            background: rgba(255, 255, 255, .82);
            border: 1px solid rgba(255, 255, 255, .7);
            backdrop-filter: blur(18px);
            border-radius: 32px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: .35s ease;
        }

        .trans-card:hover {
            transform: translateY(-4px);
        }

        .trans-card.active {
            border: 1px solid rgba(54, 130, 231, .18);
            box-shadow:
                0 20px 50px rgba(3, 55, 126, .12);
        }

        .trans-header {
            width: 100%;
            border: none;
            background: transparent;
            padding: 1.5rem 1.8rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            cursor: pointer;
        }

        .trans-header-left {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .trans-icon {
            width: 68px;
            height: 68px;
            border-radius: 22px;
            flex-shrink: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            background:
                linear-gradient(135deg,
                    var(--primary-light),
                    var(--primary));

            color: #fff;
            font-size: 1.45rem;

            box-shadow:
                0 12px 25px rgba(54, 130, 231, .25);
        }

        .trans-title h3 {
            margin: 0;
            color: var(--dark);
            font-size: 1.2rem;
            font-weight: 800;
        }

        .trans-title p {
            margin: .4rem 0 0;
            color: #7d8ba1;
            font-size: .95rem;
        }

        .trans-arrow {
            width: 52px;
            height: 52px;
            border-radius: 18px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: rgba(54, 130, 231, .10);
            color: var(--primary);
            font-size: 1.2rem;

            transition: .35s ease;
            flex-shrink: 0;
        }

        .trans-card.active .trans-arrow {
            transform: rotate(180deg);
            background: var(--primary);
            color: #fff;
        }

        .trans-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height .55s ease;
        }

        .trans-inner {
            padding: 0 1.8rem 1.8rem;
        }

        .item-grid-transp {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .item-box-transp {
            background: #f8fbff;
            border: 1px solid rgba(3, 55, 126, .06);
            border-radius: 22px;
            padding: 1rem 1.1rem;

            display: flex;
            align-items: flex-start;
            gap: .9rem;

            transition: .3s ease;
        }

        .item-box-transp:hover {
            transform: translateY(-3px);
            background: #fff;
            border-color: rgba(54, 130, 231, .14);
        }

        .item-box-transp i {
            color: var(--primary-light);
            font-size: 1rem;
            margin-top: .25rem;
        }

        .item-box-transp a {
            color: var(--primary);
            font-weight: 700;
        }

        .item-box-transp a:hover {
            color: var(--primary-light);
        }

        .note-box-transp {
            margin-top: 1.2rem;
            background:
                linear-gradient(135deg,
                    rgba(54, 130, 231, .08),
                    rgba(113, 215, 169, .10));

            border-left: 5px solid var(--green);
            border-radius: 22px;
            padding: 1.2rem 1.4rem;
            color: #587089;
            line-height: 1.8;
        }



        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes floatMini {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-8px);
            }
        }



        @media(max-width:1200px) {

            .hero-container-transp {
                grid-template-columns: 1fr;
            }

            .hero-text-transp h1 {
                font-size: 3.2rem;
            }

            .hero-visual-transp {
                max-width: 500px;
            }

            .top-cards {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:900px) {

            .item-grid-transp {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:768px) {

            .hero-transparencia {
                padding: 5rem 0 7rem;
            }

            .hero-text-transp h1 {
                font-size: 2.3rem;
            }

            .hero-text-transp p {
                font-size: 1rem;
            }

            .content-wrapper-transp {
                margin-top: -60px;
            }

            .trans-header {
                padding: 1.2rem;
                align-items: flex-start;
            }

            .trans-inner {
                padding: 0 1.2rem 1.2rem;
            }

            .trans-icon {
                width: 58px;
                height: 58px;
                border-radius: 18px;
            }

            .trans-title h3 {
                font-size: 1rem;
            }

            .floating-mini-transp {
                display: none;
            }

            .hero-stat {
                width: 100%;
            }
        }

        @media(max-width:991px) {

            .hero-content-transp h1 {
                font-size: 2.8rem;
            }


        }

        @media(max-width:576px) {

            .hero-regulatorio-transp {
                min-height: 360px;
            }

            .hero-content-transp h1 {
                font-size: 2.2rem;
            }

            .hero-content-transp p {
                font-size: 1rem;
            }


        }
        
        
        
        
        
        
        
        
        
        /*-----------------VENTA---------------*/
          :root{
            --primary:#0f172a;
            --secondary:#1e293b;
            --accent:#00b894;
            --accent2:#00d2a0;
            --light:#f8fafc;
            --border:#e2e8f0;
            --danger:#ef4444;
            --shadow:0 15px 40px rgba(15,23,42,.08);
        }

        *{
            font-family:'Barlow',sans-serif;
        }

        body{
            background:#f4f7fb;
            overflow-x:hidden;
        }

     

        .hero-venta{
            position:relative;
            min-height:420px;
            border-radius:0 0 40px 40px;
            overflow:hidden;

            background:
            linear-gradient(135deg, rgba(15,23,42,.93), rgba(15,23,42,.75)),
            /*url("<?php echo base_url(); ?>public/img/actual/Gemini_Generated_Image_sc3w9isc3w9isc3w.png");*/

            background-size:cover;
            background-position:center;

            display:flex;
            align-items:center;
        }

        .hero-venta::before{
            content:'';
            position:absolute;
            width:500px;
            height:500px;
            border-radius:50%;
            background:rgba(0,184,148,.10);
            top:-220px;
            right:-120px;
            animation:float 8s ease-in-out infinite;
        }

        @keyframes float{
            0%{transform:translateY(0px);}
            50%{transform:translateY(20px);}
            100%{transform:translateY(0px);}
        }

        .hero-content-venta{
            position:relative;
            z-index:2;
            width:100%;
            max-width:1200px;
            margin:auto;
            padding:2rem;
            color:white;
        }

        .hero-content-venta h1{
            font-size:3.4rem;
            font-weight:800;
            margin-bottom:1rem;
            color: #000000;
        }

        .hero-content-venta p{
            max-width:650px;
            font-size:1.1rem;
            opacity:.92;
            line-height:1.7;
            color: #000000;
        }

        

        .consulta-section-venta{
            width:100%;
            max-width:1200px;
            margin:-90px auto 5rem;
            position:relative;
            z-index:5;
            padding:0 1rem;
        }

        .consulta-card-venta{
            background:white;
            border-radius:32px;
            overflow:hidden;
            box-shadow:var(--shadow);

            display:grid;
            grid-template-columns:1fr 480px;
        }

        

        .consulta-info-venta{
            padding:3rem;
            position:relative;
        }

        .consulta-badge-venta{
            display:inline-flex;
            align-items:center;
            gap:.5rem;
            background:rgba(0,184,148,.10);
            color:#00a884;
            padding:.7rem 1rem;
            border-radius:50px;
            font-size:.9rem;
            font-weight:700;
            margin-bottom:1.5rem;
        }

        .consulta-info-venta h2{
            font-size:2.5rem;
            font-weight:800;
            color:var(--primary);
            line-height:1.2;
            margin-bottom:1rem;
        }

        .consulta-info-venta p{
            color:#64748b;
            line-height:1.8;
            margin-bottom:2rem;
            max-width:520px;
        }

        .features{
            display:grid;
            grid-template-columns:repeat(2,1fr);
            gap:1rem;
            margin-top:2rem;
        }

        .feature{
            background:#f8fafc;
            border:1px solid #edf2f7;
            border-radius:18px;
            padding:1rem;
            transition:.3s ease;
        }

        .feature:hover{
            transform:translateY(-4px);
            box-shadow:0 10px 25px rgba(0,0,0,.05);
        }

        .feature i{
            font-size:1.4rem;
            color:var(--accent);
            margin-bottom:.7rem;
            display:block;
        }

        .feature h5{
            font-size:1rem;
            font-weight:700;
            color:var(--primary);
            margin-bottom:.3rem;
        }

        .feature span{
            color:#64748b;
            font-size:.92rem;
        }

      

        .consulta-form-venta{
            position:relative;
            background:
            linear-gradient(180deg,
            #0f172a,
            #111827);

            padding:3rem;
            overflow:hidden;

            display:flex;
            flex-direction:column;
            justify-content:center;
        }

        .consulta-form-venta::before{
            content:'';
            position:absolute;
            width:260px;
            height:260px;
            border-radius:50%;
            background:rgba(0,184,148,.08);
            top:-120px;
            right:-100px;
        }

        .form-box-venta{
            position:relative;
            z-index:2;
        }

        .form-box-venta h3{
            color:white;
            font-size:2rem;
            font-weight:800;
            margin-bottom:.7rem;
        }

        .form-box-venta p{
            color:rgba(255,255,255,.75);
            margin-bottom:2rem;
            line-height:1.7;
        }

        .input-group-custom-venta{
            margin-bottom:1.4rem;
        }

        .input-group-custom-venta label{
            color:white;
            font-weight:600;
            margin-bottom:.6rem;
            display:block;
        }

        .input-custom-venta{
            width:100%;
            height:60px;
            border:none;
            border-radius:18px;
            background:rgba(255,255,255,.08);
            padding:0 1rem;
            color:white;
            font-size:1rem;
            transition:.3s ease;
        }

        .input-custom-venta::placeholder{
            color:rgba(255,255,255,.45);
        }

        .input-custom-venta:focus{
            outline:none;
            background:rgba(255,255,255,.14);
            box-shadow:0 0 0 4px rgba(0,184,148,.15);
        }

        .btn-consultar-venta{
            width:100%;
            height:60px;
            border:none;
            border-radius:18px;

            background:linear-gradient(135deg,var(--accent),var(--accent2));

            color:white;
            font-size:1rem;
            font-weight:700;

            transition:.3s ease;

            box-shadow:0 12px 25px rgba(0,184,148,.25);
        }

        .btn-consultar-venta:hover{
            transform:translateY(-3px);
            box-shadow:0 18px 30px rgba(0,184,148,.35);
        }

        .msjerror{
            margin-top:1rem;
        }

        .alert{
            border:none;
            border-radius:14px;
            padding:1rem;
        }

        .alert-danger-venta{
            background:rgba(239,68,68,.12);
            color:#dc2626;
        }

        .alert-success-venta{
            background:rgba(34,197,94,.12);
            color:#15803d;
        }

        .resultado{
            margin-top:1.4rem;
            padding:1rem;
            border-radius:18px;
            background:rgba(255,255,255,.08);
            border:1px solid rgba(255,255,255,.06);
            display:none;
        }

        .resultado span{
            display:block;
            color:rgba(255,255,255,.7);
            font-size:.9rem;
            margin-bottom:.4rem;
        }

        .resultado h4{
            color:white;
            font-size:2rem;
            font-weight:800;
            margin:0;
        }

        

        @media(max-width:991px){

            .consulta-card-venta{
                grid-template-columns:1fr;
            }

            .hero-content-venta h1{
                font-size:2.5rem;
            }

            .consulta-info-venta,
            .consulta-form-venta{
                padding:2rem;
            }
        }

        @media(max-width:576px){

            .hero-venta{
                min-height:360px;
            }

            .hero-content-venta h1{
                font-size:2rem;
            }

            .features{
                grid-template-columns:1fr;
            }

            .consulta-info-venta,
            .consulta-form-venta{
                padding:1.5rem;
            }

            .consulta-info-venta h2{
                font-size:2rem;
            }

            .form-box-venta h3{
                font-size:1.6rem;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        