    /* ============================================================
                              COBERTURA
        ============================================================ */

    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --white: #fff;
        --border: rgba(26, 108, 181, 0.13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 16px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 14px 40px rgba(26, 108, 181, 0.15);
        --font: 'Outfit', sans-serif;
    }

    body {
        font-family: var(--font);
        background: var(--white);
        color: var(--text)
    }


    .hero-consumos {
        background: linear-gradient(135deg, #0a3561 0%, #1a6cb5 55%, #29aadc 100%);
        padding: 2.5rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-consumos::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 130%, rgba(255, 255, 255, .08) 0%, transparent 70%);
    }

    .hero-consumos::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle 1px at 20% 30%, rgba(255, 255, 255, .25) 0%, transparent 1px),
            radial-gradient(circle 1px at 75% 20%, rgba(255, 255, 255, .2) 0%, transparent 1px),
            radial-gradient(circle 1px at 55% 70%, rgba(255, 255, 255, .18) 0%, transparent 1px),
            radial-gradient(circle 1.5px at 10% 80%, rgba(255, 255, 255, .15) 0%, transparent 2px),
            radial-gradient(circle 1px at 90% 60%, rgba(255, 255, 255, .2) 0%, transparent 1px);
        pointer-events: none;
    }

    .hero-consumos-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 999px;
        padding: 6px 18px;
        font-size: 10px;
        letter-spacing: .1em;
        color: rgba(255, 255, 255, .9);
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .25
        }
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(.88)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-9px)
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    @keyframes pulse-ring {
        0% {
            box-shadow: 0 0 0 0 rgba(41, 170, 220, .4);
        }

        70% {
            box-shadow: 0 0 0 14px rgba(41, 170, 220, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(41, 170, 220, 0);
        }
    }

    .hero-consumos h1 {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(1.6rem, 4vw, 2.1rem);
        color: #fff;
        margin-bottom: .6rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos p {
        font-size: 15px;
        color: rgba(255, 255, 255, .7);
        max-width: 480px;
        margin: 0 auto;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .18s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 64px;
    }

    .main-cobertura {
        padding: 3rem 1.5rem 4rem;
        max-width: 1040px;
        margin: 0 auto
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 2rem;
        align-items: start
    }

    @media(max-width:700px) {
        .grid {
            grid-template-columns: 1fr
        }
    }


    .map-card {
        background: var(--white);
        border-radius: var(--radius);
        border: .5px solid var(--border);
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .map-header {
        padding: 1.25rem 1.5rem;
        border-bottom: .5px solid var(--border);
        display: flex;
        align-items: center;
        gap: .75rem
    }

    .map-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0
    }

    .map-icon svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .map-title {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--text)
    }

    .map-sub {
        font-size: 13px;
        color: var(--text-muted)
    }

    .map-frame {
        width: 100%;
        height: 380px;
        border: none;
        display: block
    }


    .offices {
        display: flex;
        flex-direction: column;
        gap: 1rem
    }

    .office-card {
        background: var(--white);
        border-radius: var(--radius);
        border: .5px solid var(--border);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: transform .3s, box-shadow .3s;
        position: relative;
    }

    .office-card::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--brand), var(--brand-light));
        transform: scaleY(0);
        transform-origin: top;
        transition: transform .35s;
    }

    .office-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-h)
    }

    .office-card:hover::after {
        transform: scaleY(1)
    }

    .office-head {
        padding: 1rem 1.25rem .75rem;
        display: flex;
        align-items: center;
        gap: .75rem;
        border-bottom: .5px solid var(--border);
    }

    .office-num {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .office-name {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--text);
        line-height: 1.3
    }

    .office-city {
        font-size: 13px;
        color: var(--text-muted)
    }

    .office-body {
        padding: .9rem 1.25rem 1rem;
        display: flex;
        flex-direction: column;
        gap: .55rem
    }

    .office-row {
        display: flex;
        gap: .6rem;
        align-items: flex-start
    }

    .office-row svg {
        width: 13px;
        height: 13px;
        flex-shrink: 0;
        fill: none;
        stroke: var(--brand);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        margin-top: 2px
    }

    .office-lbl {
        font-size: 13px;
        font-weight: 600;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: .04em;
        min-width: 52px;
        flex-shrink: 0
    }

    .office-val {
        font-size: .80rem;
        color: var(--text-muted);
        line-height: 1.55
    }


    .coverage-strip {
        background: var(--brand);
        padding: 1.5rem 2rem;
        display: flex;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .cov-stat {
        text-align: center;
        padding: .75rem 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.18);
        flex: 1;
        min-width: 130px
    }

    .cov-stat:last-child {
        border-right: none
    }

    .cov-num {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #fff;
        line-height: 1
    }

    .cov-lbl {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.7);
        margin-top: .3rem;
        letter-spacing: .04em;
        text-transform: uppercase
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 8px rgba(41, 170, 220, .6)
    }



.office-card {
    cursor: pointer;
}
 
.office-card.active-card {
    border-color: var(--brand);
    border-width: 1.5px;
    background: #f0f6ff;
    box-shadow: var(--shadow-h);
    transform: translateY(-3px);
}
 
.office-card.active-card::after {
    transform: scaleY(1);
}

  @keyframes cobSpin { to { transform: rotate(360deg); } }

  .oficina-card {
      cursor: pointer;
  }

  .oficina-card .ver-mapa-hint {
      display: none;
      font-size: .75rem;
      color: #00796b;
      margin-top: 8px;
      gap: 5px;
      align-items: center;
  }

  .oficina-card:hover .ver-mapa-hint {
      display: flex;
  }

  .oficina-card.active-oficina {
      border-left-color: #00796b;
      border-left-width: 5px;
      background: #e8f5e9;
      box-shadow: 0 4px 20px rgba(0,121,107,.15);
      transform: translateX(4px);
  }

  .oficina-card.active-oficina .ver-mapa-hint {
      display: none !important;
  }



    /* ============================================================
                                    CONSUMOS
        ============================================================ */

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --brand-mid: #1557a0;
        --surface: #f0f6ff;
        --surface-2: #e6f0fb;
        --white: #ffffff;
        --border: rgba(26, 108, 181, 0.12);
        --text: #1a2332;
        --text-muted: #4a6080;
        --text-light: #7a95b0;
        --radius: 18px;
        --radius-sm: 10px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 16px 48px rgba(26, 108, 181, 0.16);
        --font: 'Outfit', sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font);
        font-size: 12px;
        background: var(--surface);
        color: var(--text);
        min-height: 100vh;
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 10px rgba(41, 170, 220, .6);
    }


    .hero-consumos {
        background: linear-gradient(135deg, #0a3561 0%, #1a6cb5 55%, #29aadc 100%);
        padding: 2.5rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-consumos::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 130%, rgba(255, 255, 255, .08) 0%, transparent 70%);
    }

    .hero-consumos::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle 1px at 20% 30%, rgba(255, 255, 255, .25) 0%, transparent 1px),
            radial-gradient(circle 1px at 75% 20%, rgba(255, 255, 255, .2) 0%, transparent 1px),
            radial-gradient(circle 1px at 55% 70%, rgba(255, 255, 255, .18) 0%, transparent 1px),
            radial-gradient(circle 1.5px at 10% 80%, rgba(255, 255, 255, .15) 0%, transparent 2px),
            radial-gradient(circle 1px at 90% 60%, rgba(255, 255, 255, .2) 0%, transparent 1px);
        pointer-events: none;
    }

    .hero-consumos-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 999px;
        padding: 6px 18px;
        font-size: 10px;
        letter-spacing: .1em;
        color: rgba(255, 255, 255, .9);
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .25
        }
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(.88)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-9px)
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    @keyframes pulse-ring {
        0% {
            box-shadow: 0 0 0 0 rgba(41, 170, 220, .4);
        }

        70% {
            box-shadow: 0 0 0 14px rgba(41, 170, 220, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(41, 170, 220, 0);
        }
    }

    .hero-consumos h1 {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(1.6rem, 4vw, 2.1rem);
        color: #fff;
        margin-bottom: .6rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos p {
        font-size: 15px;
        color: rgba(255, 255, 255, .7);
        max-width: 480px;
        margin: 0 auto;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .18s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 64px;
    }


    .consumo-wrap {
        max-width: 860px;
        margin: -28px auto 60px;
        padding: 0 18px;
        position: relative;
        z-index: 2;
        animation: fadeUp .75s .25s cubic-bezier(.22, 1, .36, 1) both;
    }


    .consumo-card {
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        border: 1px solid var(--border);
        overflow: hidden;
    }


    .consumo-card-header {
        background: linear-gradient(90deg, var(--brand-dark), var(--brand));
        padding: 1.1rem 1.6rem;
        display: flex;
        align-items: center;
        gap: 14px;
        position: relative;
        overflow: hidden;
    }

    .consumo-card-header::after {
        content: '';
        position: absolute;
        right: -20px;
        top: -20px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .06);
    }

    .consumo-card-header-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        flex-shrink: 0;
    }

    .consumo-card-header-text h2 {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 2px;
    }

    .consumo-card-header-text p {
        font-size: 16px;
        color: rgba(255, 255, 255, .65);
        margin: 0;
    }


    .consumo-card-body {
        padding: 1.8rem;
    }

    .consumo-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.4rem;
        align-items: start;
    }


    .panel-left-consumos {
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }


    .field-group-consumos {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .field-label-consumos {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .field-input-wrap-consumos {
        position: relative;
    }

    .field-input-wrap-consumos i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--brand);
        font-size: 13px;
    }

    .field-input-wrap-consumos input {
        width: 100%;
        padding: 10px 12px 10px 36px;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        font-size: 13px;
        font-family: var(--font);
        font-weight: 600;
        background: var(--surface-2);
        color: var(--text-muted);
        outline: none;
        cursor: default;
        transition: border-color .2s;
    }

    .field-input-wrap-consumos input:focus {
        border-color: var(--brand-light);
    }


    .img-medidor-box {
        border: 2px dashed var(--border);
        border-radius: var(--radius-sm);
        min-height: 190px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        color: var(--text-light);
        font-size: 12px;
        transition: border-color .3s, background .3s;
        background: var(--surface);
        position: relative;
        overflow: hidden;
    }

    .img-medidor-box.loading {
        border-color: var(--brand-light);
        background: var(--surface-2);
    }

    .img-medidor-box img {
        max-width: 100%;
        border-radius: 8px;
    }

    .img-medidor-placeholder {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--text-light);
    }

    .img-medidor-placeholder i {
        font-size: 28px;
        color: var(--border);
    }

    .img-medidor-placeholder span {
        font-size: 11px;
        text-align: center;
        max-width: 140px;
        line-height: 1.5;
    }


    .spinner-ya {
        width: 32px;
        height: 32px;
        border: 3px solid var(--border);
        border-top-color: var(--brand-light);
        border-radius: 50%;
        animation: spin .8s linear infinite;
    }


    .panel-right-consumos {
        background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        padding: 1.6rem 1.4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        position: relative;
        overflow: hidden;
    }

    .panel-right-consumos::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(41, 170, 220, .1), transparent 70%);
        pointer-events: none;
    }

    .panel-right-consumos-label {
        font-size: 14px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: .08em;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .panel-right-consumos-label i {
        color: var(--brand-light);
    }


    .consumo-img-float {
        animation: float 4s ease-in-out infinite;
    }

    .consumo-img-float img {
        max-width: 110px;
        width: 100%;
        filter: drop-shadow(0 8px 20px rgba(26, 108, 181, .2));
    }

    .lectura-valor-consumos {
        background: var(--white);
        border: 1.5px solid var(--border);
        border-radius: 999px;
        padding: 10px 28px;
        font-size: 22px;
        font-weight: 800;
        color: var(--brand-dark);
        letter-spacing: .02em;
        box-shadow: var(--shadow);
        animation: pulse-ring 2.5s ease infinite;
        min-width: 160px;
        text-align: center;
        transition: all .4s;
    }

    .lectura-valor-consumos .unidad {
        font-size: 13px;
        font-weight: 500;
        color: var(--text-muted);
        margin-left: 4px;
    }

    .lectura-valor-consumos.loaded {
        color: var(--brand);
        border-color: var(--brand-light);
    }


    .estado-badge-consumos {
        display: none;
        align-items: center;
        gap: 6px;
        background: #d4f4e2;
        color: #1a6e3c;
        border: 1px solid #a8e4c0;
        border-radius: 999px;
        padding: 5px 16px;
        font-size: 11px;
        font-weight: 700;
        animation: scaleIn .4s cubic-bezier(.22, 1, .36, 1) both;
    }

    .estado-badge-consumos.show {
        display: inline-flex;
    }

    .estado-badge-consumos i {
        font-size: 10px;
    }


    .lectura-hint-consumos {
        font-size: 14px;
        color: var(--text-light);
        line-height: 1.6;
        max-width: 200px;
    }


    .shimmer-line {
        height: 3px;
        width: 60%;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--brand-light), var(--brand), var(--brand-light));
        background-size: 200% auto;
        animation: shimmer 2.5s linear infinite;
        margin-top: .5rem;
    }


    @media (max-width: 640px) {
        .consumo-grid {
            grid-template-columns: 1fr;
        }

        .panel-right-consumos {
            padding: 1.4rem 1.1rem;
        }

        .consumo-wrap {
            margin-top: -18px;
        }
    }


    /* ============================================================
                              CONTACTANOS
        ============================================================ */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0
        }

        :root {
            --azul: #0e2a52;
            --brand: #1a6cb5;
            --brand-light: #29aadc;
            --navy: #003366;
            --green: #007A3D;
            --sky: #29aadc;
            --blue: #1a6cb5;
            --bg: #f0f4f9;
            --white: #fff;
            --text: #1e2a38;
            --muted: #8896a8;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden
        }


        .hero-contactanos {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
            line-height: 0
        }

        .hero-contactanos img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%
        }


        @media(max-width:768px) {
            .hero-contactanos img {
                height: 155px
            }
        }

        @media(max-width:480px) {
            .hero-contactanos img {
                height: 155px
            }
        }

        @media(max-width:320px) {
            .hero-contactanos img {
                height: 155px
            }
        }



        .hero-contactanos-overlay {

            inset: 0;
            background: linear-gradient(100deg, rgba(0, 51, 102, .78) 0%, rgba(0, 51, 102, .2) 65%, transparent 100%)
        }

        .hero-contactanos-title {
            position: absolute;
            top: 50%;
            left: 6%;
            transform: translateY(-50%);
            z-index: 4
        }

        .hero-contactanos-title h1 {
            font-size: clamp(1.4rem, 3.5vw, 2.2rem);
            font-weight: 800;
            color: #fff;
            letter-spacing: -.02em;
            line-height: 1.1
        }

        .hero-contactanos-title h1 em {
            font-style: normal;
            color: var(--sky)
        }

        .hero-contactanos-wave {
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            z-index: 3
        }


        .section-contacto {
            padding: 2.5rem 1.5rem 4rem;
            max-width: 1060px;
            margin: 0 auto
        }


        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 270px;
            gap: 1.8rem;
            align-items: start;
        }


        .form-card-contacto {
            background: var(--white);
            border-radius: 18px;
            box-shadow: 0 2px 8px rgba(0, 51, 102, .06), 0 12px 40px rgba(0, 51, 102, .1);
            padding: 2rem 2rem 1.8rem;
        }

        .form-card-contacto-head {
            margin-bottom: 1.4rem;
            padding-bottom: 1rem;
            border-bottom: 1.5px solid #eef1f6
        }
        
        .title-contac {
            font-size: .95rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: .01em;
            margin-bottom: .2rem
        }

        .text-contac {
            font-size: .75rem;
            color: var(--muted);
            line-height: 1.6
        }

        .form-row-contacto {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: .9rem;
            margin-bottom: .9rem
        }

        .form-row-contacto.full {
            grid-template-columns: 1fr
        }

        .field-contacto {
            position: relative
        }

        .field-contacto label {
            display: block;
            font-size: .99rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-bottom: .3rem;
        }

        .field-contacto input,
        .field-contacto textarea {
            width: 100%;
            border: 1.5px solid #dde3ee;
            border-radius: 10px;
            padding: .6rem .85rem;
            font-family: 'Montserrat', sans-serif;
            font-size: .95rem;
            color: var(--text);
            background: #fafbfd;
            transition: border-color .2s, box-shadow .2s, background .2s;
            outline: none;
            resize: none;
        }

        .field-contacto input::placeholder,
        .field-contacto textarea::placeholder {
            color: #b0bac8;
            font-size: .98rem
        }

        .field-contacto input:focus,
        .field-contacto textarea:focus {
            border-color: var(--sky);
            background: #fff;
            box-shadow: 0 0 0 3.5px rgba(41, 170, 220, .13);
        }

        .field-contacto textarea {
            min-height: 100px
        }


        .field-contacto::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 10px;
            left: 10px;
            height: 2px;
            background: linear-gradient(90deg, var(--sky), var(--navy));
            border-radius: 2px;
            transform: scaleX(0);
            transition: transform .3s ease;
            pointer-events: none;
        }

        .field-contacto:focus-within::after {
            transform: scaleX(1)
        }

        .btn-contacto {
            margin-top: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: .55rem;
            background: var(--navy);
            color: #fff;
            border: none;
            border-radius: 10px;
            padding: .7rem 1.8rem;
            font-family: 'Montserrat', sans-serif;
            font-size: .95rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background .2s, transform .15s, box-shadow .2s;
            box-shadow: 0 4px 16px rgba(0, 51, 102, .22);
        }

        .btn-contacto:hover {
            background: var(--blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 51, 102, .3)
        }

        .btn-contacto:active {
            transform: translateY(0)
        }

        .btn-contacto svg {
            width: 15px;
            height: 15px;
            fill: #fff
        }


        .sidebar-contacto {
            position: sticky;
            top: 20px;
            display: flex;
            flex-direction: column;
            gap: .7rem;
        }

        .info-card-contacto {
            background: var(--white);
            border-radius: 14px;
            padding: .9rem 1rem;
            display: flex;
            align-items: center;
            gap: .85rem;
            box-shadow: 0 2px 6px rgba(0, 51, 102, .07), 0 8px 28px rgba(0, 51, 102, .09);
            border: 1px solid rgba(255, 255, 255, .8);
            transition: transform .25s cubic-bezier(.34, 1.4, .64, 1), box-shadow .25s;
            cursor: default;
        }

        .info-card-contacto:hover {

            box-shadow: 0 6px 12px rgba(0, 51, 102, .08), 0 18px 48px rgba(0, 51, 102, .16);
        }

        .info-icon-contacto {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--sky) 0%, var(--blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(41, 170, 220, .35);
        }

        .info-icon-contacto svg {
            width: 18px;
            height: 18px;
            fill: #fff
        }

        .info-body-contacto {}

        .info-label-contact {
            font-size: .8rem;
            font-weight: 700;
            color: var(--navy);
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: .2rem
        }

        .info-val-contact {
            font-size: .80rem;
            color: #4a5568;
            line-height: 1.45
        }


        .wa-card-contact {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border-radius: 14px;
            padding: .9rem 1rem;
            display: flex;
            align-items: center;
            gap: .85rem;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(37, 211, 102, .28), 0 12px 32px rgba(18, 140, 126, .2);
            transition: transform .25s cubic-bezier(.34, 1.4, .64, 1), box-shadow .25s;
        }

        .wa-card-contact:hover {
            transform: translateY(-4px) scale(1.01);
            box-shadow: 0 8px 20px rgba(37, 211, 102, .35), 0 20px 48px rgba(18, 140, 126, .28);
        }

        .wa-icon-contacto {
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, .18);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wa-icon-contacto svg {
            width: 20px;
            height: 20px;
            fill: #fff
        }

        .wa-label-contacto {
            font-size: .99rem;
            font-weight: 700;
            color: rgba(255, 255, 255, .85);
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: .2rem
        }

        .wa-val-contacto {
            font-size: .98rem;
            font-weight: 600;
            color: #fff
        }

        .anim-fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .55s ease, transform .55s ease
        }

        .anim-fade-up.visible {
            opacity: 1;
            transform: translateY(0)
        }

        .anim-pop {
            opacity: 0;
            transform: translateY(14px) scale(.96);
            transition: opacity .45s ease, transform .45s cubic-bezier(.34, 1.4, .64, 1)
        }

        .anim-pop.visible {
            opacity: 1;
            transform: translateY(0) scale(1)
        }

        @media(max-width:768px) {
            .contact-layout {
                grid-template-columns: 1fr
            }

            .sidebar-contacto {
                position: static
            }

            .form-row-contacto {
                grid-template-columns: 1fr
            }

            .hero-contactanos {
                height: 155px
            }
        }


        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0px);
                box-shadow: 0 2px 6px rgba(0, 51, 102, .07), 0 8px 28px rgba(0, 51, 102, .09);
            }

            50% {
                transform: translateY(-6px);
                box-shadow: 0 8px 16px rgba(0, 51, 102, .1), 0 20px 48px rgba(0, 51, 102, .18);
            }
        }

        .info-card-contacto {
            animation: floatCard 3s ease-in-out infinite;
        }

        .wa-card-contact {
            animation: floatCard 3s ease-in-out infinite;
        }

        /* ===== SCROLL PROGRESS ===== */
        .progress-bar {
            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 linear;
            box-shadow: 0 0 8px rgba(41, 170, 220, .6)
        }




    /* ============================================================
                            CONVENIOS
        ============================================================ */


    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --sky: #29aadc;
        --sky-dark: #1a8abf;
        --sky-light: #eaf6fd;
        --navy: #1a6cb5;
        --navy-mid: #243044;
        --white: #fff;
        --gray: #f6f8fa;
        --text: #1a2332;
        --muted: #52677a;
        --border: #d0e8f4;
        --radius: 10px;
        --shadow: 0 2px 16px rgba(26, 35, 50, 0.07);
        --shadow-h: 0 8px 32px rgba(26, 35, 50, 0.13);
        --font: 'Outfit', sans-serif;
    }

    body {
        font-family: var(--font);
        background: var(--gray);
        color: var(--text);
        overflow-x: hidden
    }


    .hero-consumos {
        background: linear-gradient(135deg, #0a3561 0%, #1a6cb5 55%, #29aadc 100%);
        padding: 2.5rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-consumos::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 130%, rgba(255, 255, 255, .08) 0%, transparent 70%);
    }

    .hero-consumos::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle 1px at 20% 30%, rgba(255, 255, 255, .25) 0%, transparent 1px),
            radial-gradient(circle 1px at 75% 20%, rgba(255, 255, 255, .2) 0%, transparent 1px),
            radial-gradient(circle 1px at 55% 70%, rgba(255, 255, 255, .18) 0%, transparent 1px),
            radial-gradient(circle 1.5px at 10% 80%, rgba(255, 255, 255, .15) 0%, transparent 2px),
            radial-gradient(circle 1px at 90% 60%, rgba(255, 255, 255, .2) 0%, transparent 1px);
        pointer-events: none;
    }

    .hero-consumos-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 999px;
        padding: 6px 18px;
        font-size: 10px;
        letter-spacing: .1em;
        color: rgba(255, 255, 255, .9);
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.25rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .25
        }
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(24px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(.88)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-9px)
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    @keyframes pulse-ring {
        0% {
            box-shadow: 0 0 0 0 rgba(41, 170, 220, .4);
        }

        70% {
            box-shadow: 0 0 0 14px rgba(41, 170, 220, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(41, 170, 220, 0);
        }
    }

    .hero-consumos h1 {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(1.6rem, 4vw, 2.1rem);
        color: #fff;
        margin-bottom: .6rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos p {
        font-size: 15px;
        color: rgba(255, 255, 255, .7);
        max-width: 480px;
        margin: 0 auto;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .18s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-consumos-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 64px;
    }

    #prog {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        z-index: 9999;
        background: linear-gradient(90deg, var(--navy), var(--sky));
        width: 0%;
        transition: width .12s;
        box-shadow: 0 0 6px rgba(41, 170, 220, .4)
    }


    .topbar {
        background: var(--navy);
        padding: .55rem 3rem;
        display: flex;
        align-items: center;
        justify-content: space-between
    }

    .t-left {
        display: flex;
        align-items: center;
        gap: .65rem
    }

    .t-left svg {
        width: 26px;
        height: 26px
    }

    .t-brand {
        font-size: 10px;
        font-weight: 800;
        color: #fff;
        letter-spacing: .04em
    }

    .t-brand em {
        color: var(--sky);
        font-style: normal
    }

    .t-esp {
        font-size: .6rem;
        color: rgba(255, 255, 255, .38);
        letter-spacing: .12em;
        text-transform: uppercase
    }

    .t-right {
        font-size: .72rem;
        color: rgba(255, 255, 255, .42);
        text-align: right
    }

    .t-right strong {
        color: var(--sky);
        display: block;
        font-size: .77rem
    }


    .breadcrumb {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: .5rem 3rem;
        font-size: .73rem;
        color: var(--muted);
        display: flex;
        gap: .35rem;
        align-items: center
    }

    .breadcrumb a {
        color: var(--sky-dark);
        text-decoration: none;
        font-weight: 500
    }

    .breadcrumb a:hover {
        text-decoration: underline
    }


    .page-head {
        background: var(--white);
        border-bottom: 2px solid var(--sky);
        padding: 1.8rem 3rem
    }

    .page-head h1 {
        font-size: 14px;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: .4rem
    }

    .page-head h1 span {
        color: var(--sky)
    }

    .page-head p {
        font-size: 12px;
        color: var(--muted);
        line-height: 1.7;
        max-width: 640px
    }


    .wrap {
        max-width: 1060px;
        margin: 0 auto;
        padding: 2.5rem 2rem
    }


    .intro-box {
        background: var(--white);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        border-left: 5px solid var(--sky);
        padding: 1.4rem 1.8rem;
        margin-bottom: 2.5rem;
        font-size: 13px;
        color: var(--muted);
        line-height: 1.75;
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateX(-20px);
        transition: all .7s cubic-bezier(.22, 1, .36, 1)
    }

    .intro-box.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .intro-box strong {
        color: var(--navy)
    }


    .pse-block {
        background: var(--white);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        margin-bottom: 2.5rem;
        overflow: hidden;
        opacity: 0;
        transform: translateY(22px);
        transition: all .7s cubic-bezier(.22, 1, .36, 1)
    }

    .pse-block.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .pse-block:hover {
        box-shadow: var(--shadow-h)
    }

    .pse-head {
        background: var(--navy);
        padding: .85rem 1.6rem;
        display: flex;
        align-items: center;
        gap: .7rem
    }

    .pse-head-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--sky);
        flex-shrink: 0
    }

    .pse-head h3 {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        letter-spacing: .01em
    }

    .pse-content {
        display: grid;
        grid-template-columns: 1fr 160px;
        gap: 2rem;
        align-items: center;
        padding: 1.6rem
    }

    @media(max-width:520px) {
        .pse-content {
            grid-template-columns: 1fr
        }
    }

    .pse-steps {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .8rem
    }

    .pse-step {
        display: flex;
        gap: .7rem;
        align-items: flex-start;
        opacity: 0;
        transform: translateX(-14px);
        transition: all .5s cubic-bezier(.22, 1, .36, 1)
    }

    .pse-step.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .ps-num {
        min-width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--sky);
        color: #fff;
        font-size: 12px;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: .1rem
    }

    .ps-txt {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.65
    }

    .ps-txt strong {
        color: var(--text)
    }

    .pse-logo-wrap {
        text-align: center
    }

    .pse-logo-wrap a {
        display: inline-block;
        transition: transform .3s, box-shadow .3s;
        border-radius: 8px
    }

    .pse-logo-wrap a:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(41, 170, 220, .25)
    }

    .pse-logo-wrap img {
        width: 140px;
        height: auto;
        border-radius: 10px;
        border: 1px solid var(--border)
    }


    .section-sep {
        display: flex;
        align-items: center;
        gap: .75rem;
        margin: 2.5rem 0 1.5rem;
        opacity: 0;
        transition: all .5s
    }

    .section-sep.visible {
        opacity: 1
    }

    .sep-line {
        flex: 1;
        height: 1px;
        background: var(--border)
    }

    .sep-label {
        font-size: 13px;
        font-weight: 700;
        color: var(--sky-dark);
        background: var(--sky-light);
        border: 1px solid var(--border);
        padding: .2rem .75rem;
        border-radius: 20px;
        letter-spacing: .07em;
        text-transform: uppercase;
        white-space: nowrap
    }


    .pay-row {
        background: var(--white);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        margin-bottom: 1.2rem;
        overflow: hidden;
        display: grid;
        grid-template-columns: 180px 1fr;
        align-items: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all .65s cubic-bezier(.22, 1, .36, 1)
    }

    .pay-row.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .pay-row.reverse {
        grid-template-columns: 1fr 180px
    }

    .pay-row:hover {
        box-shadow: var(--shadow-h);
        border-color: var(--border)
    }

    @media(max-width:540px) {

        .pay-row,
        .pay-row.reverse {
            grid-template-columns: 1fr
        }

        .pay-row.reverse .pay-img {
            order: -1
        }
    }

    .pay-img {
        padding: 1.4rem 1.6rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray);
        border-right: 1px solid var(--border);
        min-height: 120px
    }

    .pay-row.reverse .pay-img {
        border-right: none;
        border-left: 1px solid var(--border)
    }

    .pay-img img {
        max-width: 140px;
        max-height: 110px;
        width: 100%;
        object-fit: contain;
        transition: transform .35s cubic-bezier(.22, 1, .36, 1);
        filter: grayscale(5%)
    }

    .pay-row:hover .pay-img img {
        transform: scale(1.05)
    }

    .pay-text {
        padding: 1.4rem 1.8rem
    }

    .pay-text p {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.75
    }

    .pay-text p strong {
        color: var(--navy)
    }

    .pay-link {
        display: inline-flex;
        align-items: center;
        gap: .3rem;
        margin-top: .75rem;
        font-size: .78rem;
        font-weight: 600;
        color: var(--sky-dark);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: all .2s
    }

    .pay-link:hover {
        color: var(--sky);
        border-bottom-color: var(--sky)
    }


    .nota {
        display: flex;
        gap: .7rem;
        align-items: flex-start;
        background: var(--sky-light);
        border: 1px solid var(--border);
        border-left: 4px solid var(--sky);
        border-radius: 0 var(--radius) var(--radius) 0;
        padding: 1rem 1.4rem;
        font-size: 14px;
        color: var(--muted);
        line-height: 1.7;
        margin-top: 2rem;
        margin-bottom: 2.5rem;
        opacity: 0;
        transform: translateX(-16px);
        transition: all .7s cubic-bezier(.22, 1, .36, 1)
    }

    .nota.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .nota strong {
        color: var(--sky-dark)
    }


    .cob-block {
        background: var(--navy);
        border-radius: var(--radius);
        padding: 1.7rem 1.2rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
        flex-wrap: wrap;
        border-top: 3px solid var(--sky);
        box-shadow: 0 6px 28px rgba(26, 35, 50, .18);
        margin-bottom: 3rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all .8s cubic-bezier(.22, 1, .36, 1)
    }

    .cob-block.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .cob-block h2 {
        font-size: 15px;
        font-weight: 800;
        color: #fff;
        margin-bottom: .3rem
    }

    .cob-block h2 span {
        color: var(--sky)
    }

    .cob-block p {
        font-size: 13px;
        color: rgba(255, 255, 255, .52);
        max-width: 380px;
        line-height: 1.6
    }

    .cob-btn {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .7rem 1.6rem;
        background: var(--sky);
        color: #fff;
        border-radius: 40px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
        transition: all .3s cubic-bezier(.22, 1, .36, 1);
        white-space: nowrap;
        flex-shrink: 0;
        box-shadow: 0 3px 12px rgba(41, 170, 220, .3)
    }

    .cob-btn:hover {
        background: var(--sky-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(41, 170, 220, .4);
        color: #fff;
        text-decoration: none
    }


    @keyframes fadeD {
        from {
            opacity: 0;
            transform: translateY(-16px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    .topbar,
    .breadcrumb,
    .page-head {
        animation: fadeD .5s both
    }

    .breadcrumb {
        animation-delay: .08s
    }

    .page-head {
        animation-delay: .14s
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 8px rgba(41, 170, 220, .6)
    }

    /* ============================================================
          CREDITOS
        ============================================================ */

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --navy: #1a6cb5;
        --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, 170, 220, .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: 15px;
        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(135deg, rgba(26, 108, 181, .09), rgba(41, 170, 220, .09));
        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: .65rem;
        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.05rem;
        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, var(--brand-dark), var(--brand));
        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;
    }

    /* ============================================================
                                CUENTA
        ============================================================ */
    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --brand-mid: #1557a0;
        --surface: #f0f6ff;
        --surface-2: #e6f0fb;
        --white: #ffffff;
        --border: rgba(26, 108, 181, 0.12);
        --text: #1a2332;
        --text-muted: #4a6080;
        --text-light: #7a95b0;
        --radius: 18px;
        --radius-sm: 10px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 16px 48px rgba(26, 108, 181, 0.16);
        --font: 'Outfit', sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font);
        font-size: 12px;
        background: var(--surface);
        color: var(--text);
        min-height: 100vh;
    }


    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(28px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes scaleIn {
        from {
            opacity: 0;
            transform: scale(.88)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .25
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    @keyframes slideRight {
        from {
            transform: scaleX(0);
            transform-origin: left
        }

        to {
            transform: scaleX(1);
            transform-origin: left
        }
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 10px rgba(41, 170, 220, .6);
    }


    .hero-cuenta {
        background: linear-gradient(135deg, #0a3561 0%, #1a6cb5 55%, #29aadc 100%);
        padding: 2.5rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-cuenta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 130%, rgba(255, 255, 255, .08), transparent 70%);
    }

    .hero-cuenta::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle 1px at 15% 35%, rgba(255, 255, 255, .22), transparent 1px),
            radial-gradient(circle 1px at 80% 20%, rgba(255, 255, 255, .18), transparent 1px),
            radial-gradient(circle 1.5px at 60% 75%, rgba(255, 255, 255, .15), transparent 2px),
            radial-gradient(circle 1px at 92% 55%, rgba(255, 255, 255, .2), transparent 1px);
        pointer-events: none;
    }

    .hero-cuenta-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .13);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 999px;
        padding: 6px 18px;
        font-size: 10px;
        letter-spacing: .1em;
        color: rgba(255, 255, 255, .9);
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.2rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-cuenta-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    .hero-cuenta h1 {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(1.7rem, 4.5vw, 2.2rem);
        color: #fff;
        margin-bottom: .5rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-cuenta p {
        font-size: 14px;
        color: rgba(255, 255, 255, .7);
        max-width: 460px;
        margin: 0 auto;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .18s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-cuenta-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 64px;
    }


    .page-wrap-cuenta {
        max-width: 860px;
        margin: -28px auto 60px;
        padding: 0 18px;
        position: relative;
        z-index: 2;
        animation: fadeUp .75s .22s cubic-bezier(.22, 1, .36, 1) both;
    }

    .search-panel-cuenta {
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        border: 1px solid var(--border);
        overflow: hidden;
        margin-bottom: 1.6rem;
    }


    .search-panel-cuenta-head {
        background: linear-gradient(90deg, var(--brand-dark), var(--brand));
        padding: 1rem 1.6rem;
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .search-panel-cuenta-head-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        flex-shrink: 0;
    }

    .search-panel-cuenta-head-text h2 {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 2px;
    }

    .search-panel-cuenta-head-text p {
        font-size: 15px;
        color: rgba(255, 255, 255, .65);
        margin: 0;
    }


    .search-panel-cuenta-body {
        padding: 1.6rem;
    }


    .alerta {
        display: none;
        align-items: center;
        gap: 10px;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        font-size: 12px;
        margin-bottom: 1.2rem;
        border: 1px solid;
        animation: scaleIn .3s cubic-bezier(.22, 1, .36, 1) both;
    }

    .alerta.show {
        display: flex;
    }

    .alerta-warning {
        background: #fffbeb;
        color: #92400e;
        border-color: #fbbf24;
    }

    .alerta-error {
        background: #fef2f2;
        color: #991b1b;
        border-color: #fca5a5;
    }

    .alerta i {
        font-size: 14px;
        flex-shrink: 0;
    }


    .search-row-cuenta {
        display: flex;
        gap: 1rem;
        align-items: flex-end;
    }

    .field-wrap {
        flex: 1;
    }

    .field-label {
        display: block;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 5px;
    }

    .field-input-rel {
        position: relative;
    }

    .field-input-rel i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--brand);
        font-size: 13px;
        pointer-events: none;
    }

    .field-input-rel input {
        width: 100%;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 10px 12px 10px 36px;
        font-family: var(--font);
        font-size: 13px;
        color: var(--text);
        background: var(--surface);
        transition: border-color .2s, box-shadow .2s, background .2s;
        outline: none;
    }

    .field-input-rel input:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(26, 108, 181, .1);
        background: #fff;
    }

    .field-input-rel input::placeholder {
        color: var(--text-light);
    }


    .btn-buscar-cuenta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 26px;
        border: none;
        border-radius: var(--radius-sm);
        background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
        color: #fff;
        font-family: var(--font);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: transform .2s, box-shadow .2s, opacity .2s;
        box-shadow: 0 6px 20px rgba(26, 108, 181, .25);
        white-space: nowrap;
        height: 42px;
    }

    .btn-buscar-cuenta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(26, 108, 181, .35);
    }

    .btn-buscar-cuenta:active {
        transform: scale(.97);
    }

    .btn-buscar-cuenta i {
        font-size: 13px;
        transition: transform .25s;
    }

    .btn-buscar-cuenta:hover i {
        transform: translateX(3px);
    }


    .spinner-wrap-cuenta {
        display: none;
        text-align: center;
        padding: 2.5rem;
    }

    .spinner-ring-cuenta {
        width: 36px;
        height: 36px;
        border: 3px solid var(--border);
        border-top-color: var(--brand);
        border-radius: 50%;
        margin: 0 auto 12px;
        animation: spin .8s linear infinite;
    }

    .spinner-txt-cuenta {
        font-size: 12px;
        color: var(--text-muted);
    }


    .result-section-cuenta {
        display: none;
        animation: fadeUp .5s cubic-bezier(.22, 1, .36, 1) both;
    }


    .result-card-cuenta {
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        border: 1px solid var(--border);
        overflow: hidden;
    }

    .result-card-cuenta-head {
        background: linear-gradient(90deg, #0c5c38, #1a9f6a);
        padding: .9rem 1.6rem;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .result-card-cuenta-head i {
        color: rgba(255, 255, 255, .8);
        font-size: 16px;
    }

    .result-card-cuenta-head span {
        font-size: 13px;
        font-weight: 700;
        color: #fff;
    }

    .result-card-cuenta-body {
        padding: 1.5rem;
    }


    .info-grid-cuenta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .info-card-cuenta {
        background: var(--surface);
        border-radius: 12px;
        padding: 1rem 1.1rem;
        border: 1px solid var(--border);
        transition: box-shadow .25s, transform .25s;
        position: relative;
        overflow: hidden;
    }

    .info-card-cuenta::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;
    }

    .info-card-cuenta:hover::before {
        transform: scaleX(1);
    }

    .info-card-cuenta:hover {
        box-shadow: var(--shadow);
        transform: translateY(-3px);
    }

    .info-card-cuenta .ic-lbl-cuenta {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--text-muted);
        margin-bottom: 6px;
    }

    .info-card-cuenta .ic-val-cuenta {
        font-size: 14px;
        font-weight: 700;
        color: var(--text);
    }


    .summary-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .summary-card {
        background: linear-gradient(135deg, rgba(26, 108, 181, .07), rgba(41, 170, 220, .07));
        border-radius: 12px;
        padding: .9rem 1rem;
        border: 1px solid rgba(26, 108, 181, .14);
    }

    .s-lbl {
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--brand);
        margin-bottom: 5px;
    }

    .s-val {
        font-size: 14px;
        font-weight: 800;
        color: var(--brand-dark);
    }

    @media(max-width: 600px) {
        .search-row-cuenta {
            flex-direction: column;
        }

        .btn-buscar-cuenta {
            width: 100%;
            justify-content: center;
        }

        .info-grid-cuenta,
        .summary-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 400px) {

        .info-grid-cuenta,
        .summary-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ============================================================
                                        EMPRESA
        ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --white: #fff;
        --border: rgba(26, 108, 181, 0.13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 16px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 14px 40px rgba(26, 108, 181, 0.18);
    }

    body {
        font-family: 'Outfit', sans-serif;
        background: var(--white);
        color: var(--text);
        overflow-x: hidden
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-40px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(40px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-50px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    @keyframes zoomIn {
        from {
            opacity: 0;
            transform: scale(0.7)
        }

        to {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes zoomInBounce {
        0% {
            opacity: 0;
            transform: scale(0.5)
        }

        70% {
            transform: scale(1.08)
        }

        100% {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes flipInX {
        from {
            opacity: 0;
            transform: perspective(600px) rotateX(-90deg)
        }

        to {
            opacity: 1;
            transform: perspective(600px) rotateX(0)
        }
    }

    @keyframes slideReveal {
        from {
            clip-path: inset(0 100% 0 0)
        }

        to {
            clip-path: inset(0 0% 0 0)
        }
    }

    @keyframes countUp {
        from {
            opacity: 0;
            transform: scale(0.5) rotate(-10deg)
        }

        to {
            opacity: 1;
            transform: scale(1) rotate(0)
        }
    }

    @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, 0.4)
        }

        50% {
            box-shadow: 0 0 0 14px rgba(26, 108, 181, 0)
        }
    }

    @keyframes rotateIn {
        from {
            opacity: 0;
            transform: rotate(-200deg) scale(0.5)
        }

        to {
            opacity: 1;
            transform: rotate(0) scale(1)
        }
    }

    @keyframes waveText {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-8px)
        }
    }

    @keyframes hero-empresaFloat {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.7)
        }

        15% {
            opacity: .9
        }

        80% {
            opacity: .55
        }

        100% {
            opacity: 0;
            transform: translateY(-80px) scale(1.2)
        }
    }

    @keyframes scrollBici {
        0% {
            transform: translateX(0)
        }

        100% {
            transform: translateX(-50%)
        }
    }

    @keyframes barGrow {
        from {
            width: 0
        }

        to {
            width: var(--w)
        }
    }

    @keyframes underlineSlide {
        from {
            transform: scaleX(0);
            transform-origin: left
        }

        to {
            transform: scaleX(1);
            transform-origin: left
        }
    }

    @keyframes glowPulse {

        0%,
        100% {
            filter: brightness(1)
        }

        50% {
            filter: brightness(1.15)
        }
    }

    @keyframes typewriter {
        from {
            width: 0
        }

        to {
            width: 100%
        }
    }

    @keyframes blink {
        50% {
            border-color: transparent
        }
    }

    @keyframes tilt {

        0%,
        100% {
            transform: rotate(0deg)
        }

        25% {
            transform: rotate(-2deg)
        }

        75% {
            transform: rotate(2deg)
        }
    }

    @keyframes ripple {
        0% {
            transform: scale(0);
            opacity: .5
        }

        100% {
            transform: scale(4);
            opacity: 0
        }
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    @keyframes float3D {

        0%,
        100% {
            transform: translateY(0) rotateX(0)
        }

        50% {
            transform: translateY(-8px) rotateX(4deg)
        }
    }

    @keyframes borderDance {
        0% {
            border-radius: 16px
        }

        25% {
            border-radius: 24px 8px 24px 8px
        }

        50% {
            border-radius: 8px 24px 8px 24px
        }

        75% {
            border-radius: 20px 4px 20px 4px
        }

        100% {
            border-radius: 16px
        }
    }

    @keyframes iconSpin {
        0% {
            transform: scale(1) rotate(0)
        }

        50% {
            transform: scale(1.2) rotate(180deg)
        }

        100% {
            transform: scale(1) rotate(360deg)
        }
    }

    @keyframes gradLine {
        from {
            width: 0
        }

        to {
            width: 100%
        }
    }

    .hero-empresa {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden
    }

    .hero-empresa img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center 30%;
        animation: zoomIn 1.2s cubic-bezier(.22, 1, .36, 1) both
    }


    .hero-empresa-overlay-grad {
        inset: 0;
        background: linear-gradient(100deg, rgba(0, 51, 102, .82) 0%, rgba(0, 51, 102, .2) 65%, transparent 100%)
    }


    @media(max-width:768px) {
        .hero-empresa {
            height: 155px
        }
    }

    @media(max-width:768px) {
        .hero-empresa img {
            height: 155px
        }
    }


    .section-empresa {
        padding: 3rem 1rem;
        max-width: 1040px;
        margin: 0 auto
    }

    .welcome-grid-empresa {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center
    }

    @media(max-width:680px) {
        .welcome-grid-empresa {
            grid-template-columns: 1fr
        }
    }

    .welcome-img-empresa {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        object-fit: cover;
        aspect-ratio: 4/3;
        opacity: 0;
        transform: translateX(-50px) scale(.95);
        transition: all .9s cubic-bezier(.22, 1, .36, 1)
    }

    .welcome-img-empresa.visible {
        opacity: 1;
        transform: translateX(0) scale(1)
    }

    .welcome-img-empresa:hover {
        transform: scale(1.03) rotate(1deg);
        box-shadow: 0 20px 60px rgba(26, 108, 181, .22);
        transition: all .4s cubic-bezier(.22, 1, .36, 1)
    }

    .welcome-text-empresa {
        opacity: 0;
        transform: translateX(50px);
        transition: all .9s .2s cubic-bezier(.22, 1, .36, 1)
    }

    .welcome-text-empresa.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .welcome-text-empresa h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.30rem;
        font-weight: 700;
        color: var(--brand);
        margin-bottom: 1rem;
        line-height: 1.35;
        background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand));
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 4s linear infinite
    }

    .welcome-text-empresa p {
        color: var(--text-muted);
        line-height: 1.9;
        font-size: 1.10rem
    }


    .typewriter-wrap {
        overflow: hidden
    }


    .stat-empresas-empresa {
        background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--brand-light));
        background-size: 200% 200%;
        animation: gradientShift 6s ease infinite;
        padding: 1.4rem 1rem;
        display: flex;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap
    }

    .stat-empresa {
        text-align: center;
        padding: 1.2rem 2.5rem;
        border-right: 1px solid rgba(255, 255, 255, .18);
        flex: 1;
        min-width: 150px;
        opacity: 0;
        transform: translateY(30px) scale(.9);
        transition: all .7s cubic-bezier(.22, 1, .36, 1)
    }

    .stat-empresa.visible {
        opacity: 1;
        transform: translateY(0) scale(1)
    }

    .stat-empresa:hover {
        transform: scale(1.08) translateY(-4px);
        background: rgba(255, 255, 255, .1);
        border-radius: 12px;
        transition: all .3s cubic-bezier(.22, 1, .36, 1)
    }

    .stat-empresa:last-child {
        border-right: none
    }

    .stat-empresa-num {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        display: inline-block;
        animation: none
    }

    .stat-empresa-num.counted {
        animation: zoomInBounce .6s cubic-bezier(.22, 1, .36, 1) both
    }

    .stat-empresa-lbl {
        font-size: 1.10rem;
        color: rgba(255, 255, 255, .8);
        margin-top: .4rem;
        letter-spacing: .04em;
        text-transform: uppercase
    }

    .mv-section-empresa {
        background: var(--surface);
        padding: 2rem 1rem
    }

    .mv-inner-empresa {
        max-width: 1040px;
        margin: 0 auto
    }

    .section-label-empresa {
        font-family: 'Outfit', sans-serif;
        font-size: 1.10rem;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--brand);
        margin-bottom: .5rem;
        opacity: 0;
        transform: translateX(-20px);
        transition: all .5s
    }

    .section-label-empresa.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .section-title-empresa {
        font-family: 'Outfit', sans-serif;
        font-size: 1.30rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: 2rem;
        position: relative;
        display: inline-block;
        opacity: 0;
        transform: translateY(20px);
        transition: all .6s .1s
    }

    .section-title-empresa.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .section-title-empresa::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--brand-light));
        border-radius: 2px;
        width: 0;
        transition: width .8s .4s
    }

    .section-title-empresa.visible::after {
        width: 100%
    }

    .mv-grid-empresa {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem
    }

    @media(max-width:640px) {
        .mv-grid-empresa {
            grid-template-columns: 1fr
        }
    }

    .mv-card-empresa {
        background: var(--white);
        border-radius: var(--radius);
        border: .5px solid var(--border);
        padding: 2rem;
        box-shadow: var(--shadow);
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(40px) scale(.95);
        transition: all .8s cubic-bezier(.22, 1, .36, 1);
        cursor: pointer
    }

    .mv-card-empresa:nth-child(2) {
        transition-delay: .15s
    }

    .mv-card-empresa.visible {
        opacity: 1;
        transform: translateY(0) scale(1)
    }

    .mv-card-empresa::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        opacity: 0;
        transition: opacity .4s
    }

    .mv-card-empresa:hover::before {
        opacity: .05
    }

    .mv-card-empresa::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--brand-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .5s cubic-bezier(.22, 1, .36, 1)
    }

    .mv-card-empresa:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: var(--shadow-h);
        animation: pulse 2s infinite
    }

    .mv-card-empresa:hover::after {
        transform: scaleX(1)
    }

    .mv-icon-empresa {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        transition: all .4s;
        box-shadow: 0 4px 16px rgba(26, 108, 181, .25)
    }

    .mv-card-empresa:hover .mv-icon-empresa {
        transform: rotate(360deg) scale(1.15);
        box-shadow: 0 8px 24px rgba(26, 108, 181, .4);
        animation: iconSpin .6s cubic-bezier(.22, 1, .36, 1)
    }

    .mv-icon-empresa svg {
        width: 24px;
        height: 24px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .mv-title-empresa {
        font-family: 'Outfit', sans-serif;
        font-size: 1.50rem;
        font-weight: 700;
        color: var(--brand);
        letter-spacing: .06em;
        text-transform: uppercase;
        margin-bottom: .75rem
    }

    .mv-text-empresa {
        font-size: 1.35rem;
        color: var(--text-muted);
        line-height: 1.9;
        text-align: justify
    }


    .slider-section-empresa {
        overflow: hidden;
        padding: 80px 5%;
        background: #fff;
        position: relative
    }

    .slider-label {
        opacity: 0;
        transform: translateY(-20px);
        transition: all .5s
    }

    .slider-label.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .slider-track-empresa {
        display: flex;
        gap: 30px;
        width: max-content;
        animation: scrollBici 22s linear infinite
    }

    .slider-track-empresa :hover {
        animation-play-stat-empresae: paused
    }

    .slider-track-empresa img {
        width: 500px;
        height: 380px;
        object-fit: cover;
        border-radius: 20px;
        transition: transform .5s, box-shadow .5s;
        cursor: pointer
    }

    .slider-track-empresa img:hover {
        transform: scale(1.07) rotate(-1deg);
        box-shadow: 0 20px 60px rgba(26, 108, 181, .25)
    }

    .slider-fade-l-empresa,
    .slider-fade-r-empresa {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        z-index: 5;
        pointer-events: none
    }

    .slider-fade-l-empresa {
        left: 0;
        background: linear-gradient(to right, #fff, transparent)
    }

    .slider-fade-r-empresa {
        right: 0;
        background: linear-gradient(to left, #fff, transparent)
    }


    .highlight-para-empresa {
        max-width: 1040px;
        margin: 0 auto;
        padding: 3rem;
        border-left: 4px solid var(--brand-light);
        border-radius: 0 12px 12px 0;
        background: linear-gradient(90deg, rgba(26, 108, 181, .06), transparent);
        font-size: 1.25rem;
        color: var(--text-muted);
        line-height: 1.9;
        opacity: 0;
        transform: translateX(-30px);
        transition: all .8s cubic-bezier(.22, 1, .36, 1)
    }

    .highlight-para-empresa.visible {
        opacity: 1;
        transform: translateX(0)
    }


    .obj-section {
        padding: 2rem 1rem;
        max-width: 1040px;
        margin: 0 auto
    }

    .obj-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center
    }

    @media(max-width:680px) {
        .obj-grid {
            grid-template-columns: 1fr
        }
    }

    .obj-text {
        opacity: 0;
        transform: translateY(40px);
        transition: all .8s cubic-bezier(.22, 1, .36, 1)
    }

    .obj-text.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .obj-text h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: .75rem
    }

    .obj-text p {
        font-size: 1.15rem;
        color: var(--text-muted);
        line-height: 1.9;
        text-align: justify
    }

    .obj-img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        object-fit: cover;
        aspect-ratio: 16/9;
        opacity: 0;
        transform: translateX(40px) scale(.95) perspective(800px) rotateY(8deg);
        transition: all 1s cubic-bezier(.22, 1, .36, 1)
    }

    .obj-img.visible {
        opacity: 1;
        transform: translateX(0) scale(1) perspective(800px) rotateY(0)
    }

    .obj-img:hover {
        transform: scale(1.04) perspective(800px) rotateY(-4deg);
        box-shadow: 0 24px 60px rgba(26, 108, 181, .22)
    }


    .glp-section {
        background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
        background-size: 200% 200%;
        animation: gradientShift 8s ease infinite;
        padding: 2.5rem 2rem;
        opacity: 0;
        transform: scaleX(.95);
        transition: all .9s cubic-bezier(.22, 1, .36, 1)
    }

    .glp-section.visible {
        opacity: 1;
        transform: scaleX(1)
    }

    .glp-inner {
        max-width: 1040px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        align-items: center
    }

    @media(max-width:600px) {
        .glp-inner {
            grid-template-columns: 1fr
        }
    }

    .glp-badge {
        width: 78px;
        height: 78px;
        flex-shrink: 0;
        border-radius: 20px;
        background: rgba(255, 255, 255, .15);
        border: 1px solid rgba(255, 255, 255, .3);
        display: flex;
        align-items: center;
        justify-content: center;
        animation: float3D 4s ease-in-out infinite;
        transition: all .4s
    }

    .glp-badge:hover {
        transform: scale(1.2) rotate(15deg);
        background: rgba(255, 255, 255, .25)
    }

    .glp-badge svg {
        width: 36px;
        height: 36px;
        fill: none;
        stroke: #fff;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .glp-text h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: .5rem;
        letter-spacing: .04em;
        text-transform: uppercase;
        opacity: 0;
        transform: translateY(20px);
        transition: all .6s .3s
    }

    .glp-section.visible .glp-text h3 {
        opacity: 1;
        transform: translateY(0)
    }

    .glp-text p {

        color: rgba(255, 255, 255, .85);
        line-height: 1.85;
        opacity: 0;
        transform: translateY(20px);
        transition: all .6s .5s
    }

    .glp-section.visible .glp-text p {
        opacity: 1;
        transform: translateY(0)
    }


    .final-img {
        width: 100%;
        opacity: 0;
        transform: scaleY(.9);
        transition: all 1s cubic-bezier(.22, 1, .36, 1)
    }

    .final-img.visible {
        opacity: 1;
        transform: scaleY(1)
    }

    .final-img:hover {
        transform: scale(1.01);
        transition: all .4s
    }


    .ripple-btn-empresa {
        position: relative;
        overflow: hidden;
        cursor: pointer
    }

    .ripple-btn-empresa::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, .4);
        border-radius: 50%;
        transform: scale(0);
        animation: ripple .6s linear;
        pointer-events: none;
        display: none
    }

    .ripple-btn-empresa:active::after {
        display: block
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 8px rgba(41, 170, 220, .6)
    }


    /* ============================================================
                                  NOTICIAS
        ============================================================ */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --navy: #1a6cb5;
        --sky: #29aadc;
        --sky-light: #eaf6fd;
        --surface: #f0f6ff;
        --white: #fff;
        --gray: #f4f7fa;
        --border: rgba(26, 108, 181, .13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 14px;
        --shadow: 0 4px 24px rgba(26, 108, 181, .09);
        --shadow-h: 0 12px 36px rgba(26, 108, 181, .18);
    }

    body {
        font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
        background: var(--white);
        color: var(--text);
        overflow-x: hidden;
    }


    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-24px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes floatUp {
        from {
            opacity: 0;
            transform: translateY(52px) scale(.96)
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1)
        }
    }

    @keyframes cardShine {
        0% {
            left: -80%
        }

        100% {
            left: 130%
        }
    }

    @keyframes gradShift {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    .hero-noticias {
        background: linear-gradient(135deg, #0a3561 0%, #1a6cb5 55%, #29aadc 100%);
        padding: 2.5rem 2rem 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-noticias::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 130%, rgba(255, 255, 255, .08), transparent 70%);
    }

    .hero-noticias::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle 1px at 15% 35%, rgba(255, 255, 255, .22), transparent 1px),
            radial-gradient(circle 1px at 80% 20%, rgba(255, 255, 255, .18), transparent 1px),
            radial-gradient(circle 1.5px at 60% 75%, rgba(255, 255, 255, .15), transparent 2px),
            radial-gradient(circle 1px at 92% 55%, rgba(255, 255, 255, .2), transparent 1px);
        pointer-events: none;
    }

    .hero-noticias-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .13);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 999px;
        padding: 6px 18px;
        font-size: 10px;
        letter-spacing: .1em;
        color: rgba(255, 255, 255, .9);
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.2rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-noticias-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    .hero-noticias h1 {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(2.7rem, 4.5vw, 2.2rem);
        color: #fff;
        margin-bottom: .5rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-noticias p {
        font-size: 16px;
        color: rgba(255, 255, 255, .7);
        max-width: 460px;
        margin: 0 auto;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .18s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-noticias-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 64px;
    }

    .main-noticias {
        padding: 2.5rem 1.5rem 5rem;
        max-width: 1100px;
        margin: 0 auto;
    }

    .section-label-noticias {
        display: flex;
        align-items: center;
        gap: .75rem;
        margin-bottom: 2rem;
    }

    .sl-line-noticias {
        flex: 1;
        height: 1px;
        background: var(--border);
    }

    .sl-text-noticias {
        font-family: 'Outfit', sans-serif;
        font-size: .95rem;
        font-weight: 700;
        color: var(--brand);
        background: var(--sky-light);
        border: 1px solid rgba(41, 170, 220, .2);
        padding: .22rem .85rem;
        border-radius: 20px;
        letter-spacing: .08em;
        text-transform: uppercase;
        white-space: nowrap;
    }


    .slider-noticias-wrapper {
        position: relative;
    }

    /* ── viewport: clips overflow ── */
    .slider-noticias-viewport {
        overflow: hidden;
        border-radius: var(--radius);
    }

    /* ── track: contains all cards side-by-side ── */
    .slider-noticias-track {
        display: flex;
        gap: 1.5rem;
        transition: transform .52s cubic-bezier(.4, 0, .2, 1);
        will-change: transform;
    }

    /* ── cada card ── */
    .news-card-noticias {
        /* ancho = (100% - 2 gaps de 1.5rem) / 3  →  calculado por JS */
        flex: 0 0 auto;
        background: var(--white);
        border-radius: var(--radius);
        border: .5px solid var(--border);
        box-shadow: var(--shadow);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        position: relative;
        transition: transform .35s cubic-bezier(.22, 1, .36, 1),
            box-shadow .35s;
    }

    .news-card-noticias::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--brand-light));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    }

    .news-card-noticias:hover::before {
        transform: scaleX(1);
    }

    .news-card-noticias:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-h);
    }

    .news-card-noticias::after {
        content: '';
        position: absolute;
        top: 0;
        left: -80%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
        transform: skewX(-20deg);
        pointer-events: none;
    }

    .news-card-noticias:hover::after {
        animation: cardShine .6s ease forwards;
    }

    /* ── imagen ── */
    .card-img-wrap-noticias {
        overflow: hidden;
        aspect-ratio: 4/3;
        position: relative;
    }

    .card-img-wrap-noticias img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .45s cubic-bezier(.22, 1, .36, 1);
    }

    .news-card-noticias:hover .card-img-wrap-noticias img {
        transform: scale(1.07);
    }

    /* ── body ── */
    .card-body-noticias {
        padding: 1rem 1.1rem 1.1rem;
        display: flex;
        flex-direction: column;
        gap: .55rem;
        flex: 1;
    }

    .card-tag-noticias {
        display: inline-flex;
        align-items: center;
        gap: .3rem;
        font-family: 'Outfit', sans-serif;
        font-size: .84rem;
        font-weight: 700;
        color: var(--brand);
        background: var(--sky-light);
        padding: .18rem .6rem;
        border-radius: 12px;
        letter-spacing: .05em;
        text-transform: uppercase;
        align-self: flex-start;
        transition: background .25s, color .25s;
    }

    .news-card-noticias:hover .card-tag-noticias {
        background: var(--brand);
        color: #fff;
    }

    .card-title-noticias {
        font-family: 'Outfit', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--text);
        line-height: 1.45;
    }

    .card-desc-noticias {
        font-size: .96rem;
        color: var(--text-muted);
        line-height: 1.68;
        flex: 1;
    }

    .card-link {
        font-family: 'Outfit', sans-serif;
        font-size: .95rem;
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: .2rem;
        transition: gap .2s, color .2s;
    }

    .card-link:hover {
        gap: 9px;
        color: var(--brand-light);
    }

    .card-link svg {
        width: 12px;
        height: 12px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }


    .carousel-card .card-img-wrap-noticias {
        overflow: hidden;
    }

    .c-track-noticias {
        display: flex;
        height: 100%;
        transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    }

    .c-slide-noticias {
        min-width: 100%;
        height: 100%;
        flex-shrink: 0;
    }

    .c-slide-noticias img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .c-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, .22);
        backdrop-filter: blur(4px);
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .2s, transform .2s;
        z-index: 4;
    }

    .c-btn:hover {
        background: rgba(255, 255, 255, .45);
        transform: translateY(-50%) scale(1.1);
    }

    .c-btn svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: #fff;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .c-btn.prev {
        left: 8px;
    }

    .c-btn.next {
        right: 8px;
    }

    .c-dots {
        position: absolute;
        bottom: 9px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 5px;
        z-index: 4;
    }

    .c-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .5);
        border: none;
        cursor: pointer;
        transition: background .2s, transform .2s;
        padding: 0;
    }

    .c-dot.active {
        background: #fff;
        transform: scale(1.3);
    }

    .slider-controls {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        margin-top: 2rem;
    }

    /* flechas */
    .s-arrow {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid var(--border);
        background: var(--white);
        box-shadow: var(--shadow);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .22s, border-color .22s, transform .22s, box-shadow .22s;
        flex-shrink: 0;
    }

    .s-arrow:hover {
        background: var(--brand);
        border-color: var(--brand);
        transform: scale(1.08);
        box-shadow: 0 6px 20px rgba(26, 108, 181, .25);
    }

    .s-arrow:hover svg {
        stroke: #fff;
    }

    .s-arrow:disabled {
        opacity: .35;
        cursor: default;
        pointer-events: none;
    }

    .s-arrow svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: var(--brand);
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke .22s;
    }

    /* dots externos */
    .s-dots {
        display: flex;
        gap: 7px;
        align-items: center;
    }

    .s-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background .25s, transform .25s, width .3s;
    }

    .s-dot.active {
        background: var(--brand);
        transform: scale(1.25);
        width: 22px;
        border-radius: 4px;
    }


    .s-counter {
        font-family: 'Outfit', sans-serif;
        font-size: .82rem;
        font-weight: 700;
        color: var(--text-muted);
        min-width: 40px;
        text-align: center;
        user-select: none;
    }


    .card-anim {
        opacity: 0;
        transform: translateY(40px) scale(.97);
        transition: opacity .55s cubic-bezier(.22, 1, .36, 1),
            transform .55s cubic-bezier(.22, 1, .36, 1);
    }

    .card-anim.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }



    @media (max-width: 700px) {
        .s-arrow {
            width: 38px;
            height: 38px;
        }
    }


    /* ============================================================
                     FACTURA MASIVA
        ============================================================ */
    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --surface-2: #e6f0fb;
        --white: #ffffff;
        --border: rgba(26, 108, 181, 0.12);
        --text: #1a2332;
        --text-muted: #4a6080;
        --text-light: #7a95b0;
        --radius: 18px;
        --radius-sm: 10px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 16px 48px rgba(26, 108, 181, 0.16);
        --font: 'Outfit', sans-serif;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        font-family: var(--font);
        font-size: 12px;
        background: var(--surface);
        color: var(--text);
        min-height: 100vh;
    }


    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-20px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(28px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .25
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-7px)
        }
    }

    @keyframes spin {
        to {
            transform: rotate(360deg)
        }
    }


    .hero-masiva {
        background: linear-gradient(135deg, #0a3561 0%, #1a6cb5 55%, #29aadc 100%);
        padding: 2.5rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-masiva::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 130%, rgba(255, 255, 255, .08), transparent 70%);
    }

    .hero-masiva::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            radial-gradient(circle 1px at 12% 30%, rgba(255, 255, 255, .22), transparent 1px),
            radial-gradient(circle 1px at 82% 18%, rgba(255, 255, 255, .18), transparent 1px),
            radial-gradient(circle 1.5px at 65% 78%, rgba(255, 255, 255, .14), transparent 2px),
            radial-gradient(circle 1px at 90% 60%, rgba(255, 255, 255, .2), transparent 1px);
        pointer-events: none;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        background: rgba(255, 255, 255, .13);
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 999px;
        padding: 6px 18px;
        font-size: 10px;
        letter-spacing: .1em;
        color: rgba(255, 255, 255, .9);
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.2rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .6s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    .hero-masiva h1 {
        font-family: 'Outfit', sans-serif;
        font-size: clamp(1.7rem, 4.5vw, 2.2rem);
        color: #fff;
        margin-bottom: .5rem;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .1s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-masiva p {
        font-size: 14px;
        color: rgba(255, 255, 255, .7);
        max-width: 460px;
        margin: 0 auto;
        line-height: 1.8;
        position: relative;
        z-index: 1;
        animation: fadeDown .7s .18s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 64px;
    }


    .masiva-wrap {
        max-width: 720px;
        margin: -32px auto 60px;
        padding: 0 18px;
        position: relative;
        z-index: 2;
        animation: fadeUp .75s .22s cubic-bezier(.22, 1, .36, 1) both;
    }


    .masiva-card {
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        border: 1px solid var(--border);
        overflow: hidden;
    }


    .masiva-card-head {
        background: linear-gradient(90deg, var(--brand-dark), var(--brand));
        padding: 1.1rem 1.6rem;
        display: flex;
        align-items: center;
        gap: 14px;
        position: relative;
        overflow: hidden;
    }

    .masiva-card-head::after {
        content: '';
        position: absolute;
        right: -24px;
        top: -24px;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .06);
        pointer-events: none;
    }

    .masiva-card-head-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 17px;
        flex-shrink: 0;
    }

    .masiva-card-head-text h2 {
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 2px;
    }

    .masiva-card-head-text p {
        font-size: 11px;
        color: rgba(255, 255, 255, .65);
        margin: 0;
    }


    .masiva-card-body {
        padding: 2rem 1.8rem;
    }


    .field-block {
        margin-bottom: 1.6rem;
    }

    .field-block-label {
        display: block;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .07em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 6px;
    }

    .field-select-rel {
        position: relative;
    }

    .field-select-rel i {
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--brand);
        font-size: 13px;
        pointer-events: none;
    }

    .field-select-rel .chevron {
        position: absolute;
        right: 13px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        font-size: 11px;
        pointer-events: none;
    }

    .field-select-rel select {
        width: 100%;
        appearance: none;
        -webkit-appearance: none;
        border: 1.5px solid var(--border);
        border-radius: var(--radius-sm);
        padding: 11px 36px 11px 38px;
        font-family: var(--font);
        font-size: 13px;
        font-weight: 500;
        color: var(--text);
        background: var(--surface);
        cursor: pointer;
        outline: none;
        transition: border-color .2s, box-shadow .2s, background .2s;
    }

    .field-select-rel select:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(26, 108, 181, .1);
        background: var(--white);
    }

    .field-select-rel select:hover {
        border-color: rgba(26, 108, 181, .35);
    }


    .field-hint {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-top: 7px;
        font-size: 11px;
        color: var(--text-light);
    }

    .field-hint i {
        font-size: 10px;
        color: var(--brand-light);
    }

    .btn-consultar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        width: 100%;
        padding: 13px 28px;
        border: none;
        border-radius: var(--radius-sm);
        background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, var(--brand-light) 100%);
        background-size: 200% auto;
        color: #fff;
        font-family: var(--font);
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        transition: background-position .4s, transform .2s, box-shadow .2s;
        box-shadow: 0 6px 20px rgba(26, 108, 181, .28);
        letter-spacing: .02em;
        position: relative;
        overflow: hidden;
    }

    .btn-consultar::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, .1);
        opacity: 0;
        transition: opacity .2s;
    }

    .btn-consultar:hover::after {
        opacity: 1;
    }

    .btn-consultar:hover {
        background-position: right center;
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(26, 108, 181, .38);
    }

    .btn-consultar:active {
        transform: scale(.98);
    }

    .btn-consultar i {
        font-size: 15px;
        transition: transform .25s;
    }

    .btn-consultar:hover i {
        transform: scale(1.15) rotate(-5deg);
    }


    .btn-shimmer {
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
        animation: shimmer 2.5s linear infinite;
    }


    .masiva-deco {
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        opacity: .5;
    }

    .masiva-deco-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--brand-light), transparent);
    }

    .masiva-deco-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--brand-light);
    }


    .info-chips {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 1.8rem;
        justify-content: center;
    }

    .info-chip {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: var(--surface-2);
        border: 1px solid var(--border);
        border-radius: 999px;
        padding: 5px 14px;
        font-size: 11px;
        color: var(--text-muted);
        font-weight: 500;
    }

    .info-chip i {
        color: var(--brand-light);
        font-size: 10px;
    }

    @media(max-width: 480px) {
        .masiva-card-body {
            padding: 1.4rem;
        }
    }


    /* ============================================================
                                      LOGIN
        ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --white: #fff;
        --border: rgba(26, 108, 181, 0.13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 16px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 14px 40px rgba(26, 108, 181, 0.18);
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--white);
        color: var(--text);
        overflow-x: hidden
    }

    @keyframes hero-loginFloat {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.7)
        }

        15% {
            opacity: .9
        }

        80% {
            opacity: .55
        }

        100% {
            opacity: 0;
            transform: translateY(-80px) scale(1.2)
        }
    }

    .hero-login {
        background: linear-gradient(135deg, #0d4a82 0%, #1a6cb5 50%, #29aadc 100%);
        padding: 2.5rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-login::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    }

    .hero-login-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        padding: 6px 16px;
        font-size: 14px;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-bottom: 1.25rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
    }

    .hero-login-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    .hero-login h1 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: clamp(2rem, 5vw, 3.2rem);
        color: #fff;
        margin-bottom: .75rem;
        line-height: 1.15;
    }

    .hero-login p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.75);
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.75;
    }

    .hero-login-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px;
    }

    .info-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 3rem 2rem 2rem;
        max-width: 680px;
        margin: 0 auto
    }

    .info-section img {
        width: 180px;
        margin-bottom: 1.5rem
    }

    .info-section p {
        font-size: 13px;
        color: var(--text-muted);
        line-height: 1.8;
        font-style: italic
    }


    .login-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        max-width: 860px;
        margin: 0 auto 4rem;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        border: .5px solid var(--border)
    }

    @media(max-width:640px) {
        .login-row {
            grid-template-columns: 1fr
        }
    }

    .login-form-side {
        background: var(--white);
        padding: 2.5rem
    }

    .login-form-side h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.45rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: .3rem
    }

    .login-form-side .sub {
        font-size: 1.35rem;
        color: var(--text-muted);
        margin-bottom: 1.5rem
    }

    .msj-error {
        margin-bottom: .75rem;
        min-height: 4px
    }

    .alert-danger {
        background: #fff0f0;
        border: 1px solid #fcc;
        border-radius: 9px;
        padding: 10px 14px;
        font-size: .83rem;
        color: #a32d2d
    }

    .field-login {
        margin-bottom: 1rem
    }

    .field-login label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .05em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 5px
    }

    .field-login-wrap {
        position: relative
    }

    .field-login-wrap svg {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        fill: none;
        stroke: var(--text-muted);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        pointer-events: none
    }

    .field-login input {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 11px 13px 11px 38px;
        font-family: 'DM Sans', sans-serif;
        font-size: 13px;
        color: var(--text);
        background: var(--surface);
        transition: border-color .2s, box-shadow .2s;
        outline: none
    }

    .field-login input:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(26, 108, 181, .1);
        background: #fff
    }

    .field-login input::placeholder {
        color: #a0b4cc
    }

    .btn-login {
        padding: 12px 28px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        transition: opacity .2s, transform .15s;
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: .5rem
    }

    .btn-login:hover {
        opacity: .9;
        transform: translateY(-1px)
    }

    .btn-login:active {
        transform: translateY(0)
    }

    .btn-login svg {
        width: 14px;
        height: 14px;
        fill: none;
        stroke: #fff;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .login-bot-side {
        background: linear-gradient(135deg, #0d4a82, #1a6cb5);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2rem
    }

    .login-bot-side img {
        width: 220px;
        max-width: 100%;
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2))
    }

    @media(max-width:640px) {
        .login-bot-side {
            display: none
        }
    }



    /* ============================================================
                         OFICINA VIRTUAL
        ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --navy: #1a6cb5;
        --navy-mid: #1a6cb5;
        --blue: #29aadc;
        --gold: #6dd5f0;
        --gold-light: #0c1c30;
        --white: #ffffff;
        --off-white: #f7f9fc;
        --divider: #dde4ee;
        --text: #0b2545;
        --muted: #5a708a;
        --radius: 4px;
        --radius-lg: 10px;
    }

    body {
        font-family: 'Sora' sans-serif;
        background: var(--off-white);
        color: var(--text);
        min-height: 100vh;
        overflow-x: hidden;
    }


    #prog {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        z-index: 9999;
        background: linear-gradient(90deg, var(--navy), var(--gold));
        width: 0%;
        transition: width .1s linear;
    }




    .hero-oficinavirtual {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden
    }

    .hero-oficinavirtual img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center 30%;
        animation: zoomIn 1.2s cubic-bezier(.22, 1, .36, 1) both
    }

    .hero-oficinavirtual-overlay-grad {
        inset: 0;
        background: linear-gradient(100deg, rgba(0, 51, 102, .82) 0%, rgba(0, 51, 102, .2) 65%, transparent 100%)
    }

    @keyframes hero-oficinavirtualFloat {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.7)
        }

        15% {
            opacity: .9
        }

        80% {
            opacity: .55
        }

        100% {
            opacity: 0;
            transform: translateY(-80px) scale(1.2)
        }
    }

    @keyframes zoomIn {
        from {
            transform: scale(1.08);
        }

        to {
            transform: scale(1.00);
        }
    }



    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(-50%) translateX(-14px);
        }

        to {
            opacity: 1;
            transform: translateY(-50%) translateX(0);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }




    .page-wrap-oficinavirtual {
        max-width: 1080px;
        margin: 0 auto;
        padding: 44px 24px 80px;
    }


    .user-strip-oficinavirtual {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--white);
        border: 1px solid var(--divider);
        border-left: 4px solid var(--gold);
        border-radius: var(--radius-lg);
        padding: 14px 22px;
        margin-bottom: 40px;
        box-shadow: 0 2px 12px rgba(11, 37, 69, .06);
        animation: fadeIn .6s .5s both;
    }

    .user-strip-oficinavirtual .avatar-oficinavirtual {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--navy);
        display: grid;
        place-items: center;
        color: var(--gold);
        font-family: 'Playfair Display', serif;
        font-size: 1.1rem;
        font-weight: 700;
        margin-right: 14px;
        flex-shrink: 0;
        border: 2px solid var(--gold);
    }

    .user-strip-oficinavirtual .info-oficinavirtual small {
        display: block;
        font-size: .68rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .14em;
        color: var(--muted);
    }

    .user-strip-oficinavirtual .info-oficinavirtual strong {
        font-size: .96rem;
        font-weight: 600;
        color: var(--navy);
    }

    .user-strip-oficinavirtual .badge-role {
        margin-left: auto;
        font-size: .72rem;
        font-weight: 600;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--gold);
        background: rgba(40, 60, 151, 0.1);
        border: 1px solid rgba(64, 130, 252, 0.3);
        border-radius: 50px;
        padding: 4px 12px;
    }


    .sec-header-oficinavirtual {
        display: flex;
        align-items: baseline;
        gap: 16px;
        margin-bottom: 28px;
        animation: fadeIn .6s .6s both;
    }

    .sec-header-oficinavirtual h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.45rem;
        font-weight: 700;
        color: var(--navy);
    }

    .sec-header-oficinavirtual .line {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, var(--divider), transparent);
    }


    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
        gap: 20px;
        margin-bottom: 48px;
    }


    .svc-card {
        background: var(--white);
        border: 1px solid var(--divider);
        border-radius: var(--radius-lg);
        padding: 0;
        box-shadow: 0 2px 14px rgba(11, 37, 69, .05);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        animation: cardIn .5s both;
    }

    .svc-card:nth-child(1) {
        animation-delay: .65s
    }

    .svc-card:nth-child(2) {
        animation-delay: .72s
    }

    .svc-card:nth-child(3) {
        animation-delay: .79s
    }

    .svc-card:nth-child(4) {
        animation-delay: .86s
    }

    .svc-card:nth-child(5) {
        animation-delay: .93s
    }

    .svc-card:nth-child(6) {
        animation-delay: 1.0s
    }

    @keyframes cardIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .svc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(11, 37, 69, .13);
        border-color: rgba(44, 109, 184, 0.35);
    }


    .card-topbar {
        height: 5px;
        background: linear-gradient(90deg, var(--navy-mid), var(--blue));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .35s ease;
    }

    .svc-card:hover .card-topbar {
        transform: scaleX(1);
    }

    .card-body {
        padding: 26px 24px 22px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        flex: 1;
    }

    .card-icon-row {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .card-icon {
        width: 46px;
        height: 46px;
        border-radius: var(--radius-lg);
        background: var(--navy);
        display: grid;
        place-items: center;
        color: var(--gold);
        font-size: 1.1rem;
        flex-shrink: 0;
        transition: background .28s ease;
    }

    .svc-card:hover .card-icon {
        background: var(--blue);
    }

    .card-num {
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--muted);
    }

    .card-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        line-height: 1.3;
    }

    .card-desc {
        font-size: .85rem;
        color: var(--muted);
        line-height: 1.6;
        font-weight: 400;
        flex: 1;
    }


    .card-footer {
        border-top: 1px solid var(--divider);
        padding: 14px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .card-footer span {
        font-size: .8rem;
        font-weight: 600;
        color: var(--blue);
        text-transform: uppercase;
        letter-spacing: .1em;
        transition: color .2s ease;
    }

    .svc-card:hover .card-footer span {
        color: var(--gold);
    }

    .card-footer .arrow {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1.5px solid var(--divider);
        display: grid;
        place-items: center;
        font-size: .75rem;
        color: var(--muted);
        transition: all .25s ease;
    }

    .svc-card:hover .arrow {
        background: var(--navy);
        border-color: var(--navy);
        color: var(--gold);
        transform: translateX(3px);
    }

    .logout-section {
        display: flex;
        align-items: center;
        gap: 16px;
        padding-top: 12px;
    }

    .logout-section .divider-line {
        flex: 1;
        height: 1px;
        background: var(--divider);
    }

    .btn-logout {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 11px 26px;
        border: 1.5px solid var(--divider);
        border-radius: var(--radius);
        background: var(--white);
        color: var(--muted) !important;
        font-family: 'Outfit', sans-serif;
        font-size: .85rem;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: .06em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all .25s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    }

    .btn-logout:hover {
        border-color: #b03a2e;
        color: #b03a2e !important;
        box-shadow: 0 4px 16px rgba(176, 58, 46, .12);
        transform: translateY(-1px);
    }


    @media (max-width: 640px) {
        .hero-oficinavirtual {
            height: 210px;
        }

        .page-wrap-oficinavirtual {
            padding: 28px 14px 60px;
        }

        .cards-grid {
            grid-template-columns: 1fr;
            gap: 14px;
        }

        .hero-oficinavirtual-text h1 {
            font-size: 1.45rem;
        }

        .user-strip-oficinavirtual .badge-role {
            display: none;
        }
    }


    /* ============================================================
                                  PQRS
        ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --white: #fff;
        --border: rgba(26, 108, 181, 0.13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 16px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 14px 40px rgba(26, 108, 181, 0.15);
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--white);
        color: var(--text)
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 8px rgba(41, 170, 220, .5)
    }



    .hero-pqrs {
        background: linear-gradient(135deg, #0d4a82 0%, #1a6cb5 50%, #29aadc 100%);
        padding: 2rem 1rem 2rem;
        text-align: center;
        position: relative;
        overflow: hidden
    }

    .hero-pqrs::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(255, 255, 255, 0.07) 0%, transparent 70%)
    }

    .hero-pqrs-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        padding: 6px 16px;
        font-size: 11px;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-bottom: 1.25rem;
        font-family: 'DM Sans', sans-serif;
        font-weight: 600
    }

    .hero-pqrs-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    .hero-pqrs h1 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: clamp(2rem, 5vw, 2.2rem);
        color: #fff;
        margin-bottom: .75rem;
        line-height: 1.15
    }

    .hero-pqrs p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.75);
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.75
    }

    .hero-pqrs-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px
    }


    .main-pqrs {
        padding: 3rem 1.5rem 4rem;
        max-width: 1040px;
        margin: 0 auto
    }

    .grid-pqrs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: start
    }

    @media(max-width:700px) {
        .grid-pqrs {
            grid-template-columns: 1fr
        }
    }


    .instructions-pqrs {
        display: flex;
        flex-direction: column;
        gap: .75rem
    }
    
.print-notice {
background: #fff3cd;
border-left: 4px solid #f0a500;
border-radius: 8px;
padding: 14px 16px;
font-size: .99rem;
color: #5a4000;
margin-top: 20px;
}
.print-notice a { color: #b00020; font-weight: 600; }
.radio-grid {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 6px;
}
.radio-grid.columna {
flex-direction: column;
gap: 8px;
}

.radio-card {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
font-size: .99rem;
color: #444;
padding: 9px 16px;
border-radius: 8px;
border: 1.5px solid #ddd;
background: #fff;
transition: all .2s;
user-select: none;
}
.radio-card input[type="radio"] { display: none; }
.radio-card .radio-dot {
width: 16px;
height: 16px;
border-radius: 50%;
border: 2px solid #ccc;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
transition: all .2s;
}
.radio-card .radio-dot::after {
content: '';
width: 7px;
height: 7px;
border-radius: 50%;
background: #b00020;
opacity: 0;
transition: opacity .2s;
}
.radio-card:hover {
border-color: #b00020;
background: #fff5f7;
}
.radio-card.activo {
border-color: #b00020;
background: #fde8ec;
color: #7a0015;
font-weight: 600;
}
.radio-card.activo .radio-dot {
border-color: #b00020;
}
.radio-card.activo .radio-dot::after {
opacity: 1;
}

/* ── Radio Sí/No (autorización) ── */
.auth-radio-group { display: flex; gap: 12px; margin-top: 8px; }
.radio-card.si { color: #1a7a3c; border-color: #1a7a3c; }
.radio-card.no { color: #b00020; border-color: #b00020; }
.radio-card.si .radio-dot { border-color: #1a7a3c; }
.radio-card.si .radio-dot::after { background: #1a7a3c; }
.radio-card.si.activo { background: #e8f5ee; box-shadow: 0 0 0 3px rgba(26,122,60,.12); }
.radio-card.no.activo { background: #fde8ec; box-shadow: 0 0 0 3px rgba(176,0,32,.12); }

/* ── Campo "Otro" condicional ── */
.input-otro { margin-top: 10px; display: none; }
.input-otro.visible { display: block; }

/* ── Textarea con contador ── */
.textarea-wrap { position: relative; }
.char-counter {
position: absolute;
bottom: 8px; right: 10px;
font-size: 1.1rem; color: #aaa;
pointer-events: none;
}
.char-counter.warn { color: #e67e22; }
.char-counter.over { color: #b00020; font-weight: 700; }

/* ── Badges ── */
.badge-req {
font-size: 1.3rem;font-weight: 600;
padding: 2px 8px; border-radius: 20px;
}
.badge-req.obli { background:#fde8ec; color:#b00020; }
.badge-req.opci { background:#e8f4fd; color:#0665a5; }

/* ── Auth box ── */
.auth-box {
background: #fff8e1;
border-left: 3px solid #f0a500;
border-radius: 6px;
padding: 12px 14px;
font-size: .80rem;
color: #5a4000;
line-height: 1.65;
margin-bottom: 10px;
}
    .instr-title-pqrs {
        font-family: 'Outfit', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: .25rem
    }

    .instr-sub-pqrs {
        font-size: .83rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: .5rem
    }

    .step-item-pqrs {
        display: flex;
        gap: .875rem;
        align-items: flex-start;
        padding: .85rem 1rem;
        background: var(--surface);
        border-radius: 12px;
        border: .5px solid var(--border);
        transition: transform .25s, box-shadow .25s
    }

    .step-item-pqrs:hover {
        transform: translateX(4px);
        box-shadow: var(--shadow)
    }

    .step-num-pqrs {
        width: 26px;
        height: 26px;
        border-radius: 7px;
        flex-shrink: 0;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-size: .72rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1px
    }

    .step-text-pqrs {
        font-size: .82rem;
        color: var(--text-muted);
        line-height: 1.6
    }

    .step-text-pqrs strong {
        color: var(--text);
        font-weight: 600
    }

    .step-text-pqrs a {
        color: var(--brand);
        font-weight: 500;
        text-decoration: none
    }

    .step-text-pqrs a:hover {
        text-decoration: underline
    }


    .form-card-pqrs {
        background: var(--white);
        border-radius: var(--radius);
        border: .5px solid var(--border);
        padding: 2rem;
        box-shadow: var(--shadow);
        position: sticky;
        top: 1rem
    }

    .form-card-pqrs-tag {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--brand);
        margin-bottom: .4rem;
        font-family: 'Sora', sans-serif
    }

    .form-card-pqrs h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 1.5rem
    }

    .field-pqrs {
        margin-bottom: .9rem
    }

    .field-pqrs label {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .05em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 5px
    }

    .field-wrap-pqrs {
        position: relative
    }

    .field-wrap-pqrs svg {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        fill: none;
        stroke: var(--text-muted);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        pointer-events: none
    }

    .field-pqrs input,
    .field-pqrs select,
    .field-pqrs textarea {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 10px 13px 10px 36px;
        font-family: 'DM Sans', sans-serif;
        font-size: .88rem;
        color: var(--text);
        background: var(--surface);
        transition: border-color .2s, box-shadow .2s;
        outline: none;
    }

    .field-pqrs textarea {
        padding-left: 13px;
        resize: none;
        height: 88px
    }

    .field-pqrs select {
        padding-left: 36px;
        cursor: pointer;
        appearance: none
    }

    .field-pqrs input:focus,
    .field-pqrs select:focus,
    .field-pqrs textarea:focus {
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(26, 108, 181, 0.1);
        background: #fff
    }

    .field-pqrs input::placeholder,
    .field-pqrs textarea::placeholder {
        color: #a0b4cc
    }

    .field-row-pqrs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .75rem
    }

    @media(max-width:420px) {
        .field-row-pqrs {
            grid-template-columns: 1fr
        }
    }

    .tipo-wrap-pqrs {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
        margin-bottom: .9rem
    }

    .tipo-opt-pqrs {
        flex: 1;
        min-width: 80px
    }

    .tipo-opt-pqrs input[type=radio] {
        display: none
    }

    .tipo-opt-pqrs label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 9px 6px;
        border-radius: 9px;
        border: 1px solid var(--border);
        background: var(--surface);
        font-size: .78rem;
        font-weight: 600;
        color: var(--text-muted);
        cursor: pointer;
        transition: all .2s;
        text-align: center;
    }

    .tipo-opt-pqrs input[type=radio]:checked+label {
        background: var(--brand);
        border-color: var(--brand);
        color: #fff
    }

    .tipo-opt-pqrs label:hover {
        border-color: var(--brand);
        color: var(--brand)
    }

    .btn-submit-pqrs {
        width: 100%;
        padding: 13px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: .95rem;
        cursor: pointer;
        transition: opacity .2s, transform .15s;
        margin-top: .25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-submit-pqrs:hover {
        opacity: .9;
        transform: translateY(-1px)
    }

    .btn-submit-pqrs:active {
        transform: translateY(0)
    }

    .btn-submit-pqrs svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: #fff;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round
    }
/* ── Adjuntar evidencia ── */
.field-pqrs input[type="file"] {
    padding: 10px 13px;
    background: var(--surface);
    border: 1.5px dashed rgba(26, 108, 181, 0.35);
    border-radius: 10px;
    cursor: pointer;
    font-size: .82rem;
    color: var(--text-muted);
    transition: border-color .2s, background .2s;
    height: 50px;
}

.field-pqrs input[type="file"]:hover {
    border-color: var(--brand);
    background: #e8f1fc;
}

.field-pqrs input[type="file"]::file-selector-button {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 6px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    margin-right: 12px;
    transition: background .2s;
    
}

.field-pqrs input[type="file"]::file-selector-button:hover {
    background: var(--brand-dark);
}

.field-pqrs .text-muted {
    color: var(--text-muted);
    font-size: .60rem;
    margin-bottom: 6px;
 
}




    /* ============================================================
                              REGULATORIO
        ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --white: #fff;
        --border: rgba(26, 108, 181, 0.13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 16px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --shadow-h: 0 14px 40px rgba(26, 108, 181, 0.18);
    }

    body {
        font-family: 'Outfit', sans-serif;
        background: var(--white);
        color: var(--text);
        overflow-x: hidden
    }


    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-50px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(50px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeInLeft {
        from {
            opacity: 0;
            transform: translateX(-60px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(60px)
        }

        to {
            opacity: 1;
            transform: translateX(0)
        }
    }

    @keyframes zoomInBounce {
        0% {
            opacity: 0;
            transform: scale(0.5)
        }

        70% {
            transform: scale(1.06)
        }

        100% {
            opacity: 1;
            transform: scale(1)
        }
    }

    @keyframes heroFloat {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.7)
        }

        15% {
            opacity: .9
        }

        80% {
            opacity: .55
        }

        100% {
            opacity: 0;
            transform: translateY(-80px) scale(1.2)
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    @keyframes gradientShift {
        0% {
            background-position: 0% 50%
        }

        50% {
            background-position: 100% 50%
        }

        100% {
            background-position: 0% 50%
        }
    }

    @keyframes float3D {

        0%,
        100% {
            transform: translateY(0) rotateY(0)
        }

        50% {
            transform: translateY(-6px) rotateY(4deg)
        }
    }

    @keyframes pulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(26, 108, 181, .35)
        }

        50% {
            box-shadow: 0 0 0 12px rgba(26, 108, 181, 0)
        }
    }

    @keyframes borderSlide {
        from {
            transform: scaleX(0);
            transform-origin: left
        }

        to {
            transform: scaleX(1);
            transform-origin: left
        }
    }

    @keyframes iconRotate {
        from {
            transform: rotate(-20deg) scale(.8)
        }

        to {
            transform: rotate(0) scale(1)
        }
    }

    @keyframes slideRevealLeft {
        from {
            clip-path: inset(0 100% 0 0)
        }

        to {
            clip-path: inset(0 0 0 0)
        }
    }

    @keyframes slideRevealRight {
        from {
            clip-path: inset(0 0 0 100%)
        }

        to {
            clip-path: inset(0 0 0 0)
        }
    }

    @keyframes numberPop {
        0% {
            opacity: 0;
            transform: scale(0) rotate(-15deg)
        }

        80% {
            transform: scale(1.1) rotate(2deg)
        }

        100% {
            opacity: 1;
            transform: scale(1) rotate(0)
        }
    }

    @keyframes tagFloat {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-4px)
        }
    }

    @keyframes rippleOut {
        0% {
            transform: scale(0);
            opacity: .6
        }

        100% {
            transform: scale(3);
            opacity: 0
        }
    }

    @keyframes underlineGrow {
        from {
            width: 0
        }

        to {
            width: 100%
        }
    }

    @keyframes glowBorder {

        0%,
        100% {
            border-color: var(--brand-light)
        }

        50% {
            border-color: var(--brand)
        }
    }

    @keyframes imgParallax {
        from {
            transform: scale(1.1) translateY(10px)
        }

        to {
            transform: scale(1.05) translateY(-10px)
        }
    }

    @keyframes badgePop {
        0% {
            opacity: 0;
            transform: scale(0) rotate(-30deg)
        }

        80% {
            transform: scale(1.15) rotate(3deg)
        }

        100% {
            opacity: 1;
            transform: scale(1) rotate(0)
        }
    }

    .progress-bar {
        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, 170, 220, .6)
    }


    .hero-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        line-height: 0
    }

    .hero-img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        object-position: center 35%;
        animation: zoomInBounce 1.3s cubic-bezier(.22, 1, .36, 1) both
    }

    .hero-overlay {
        inset: 0;
        background: linear-gradient(110deg, rgba(0, 51, 102, .85) 0%, rgba(0, 51, 102, .25) 60%, transparent 100%);
        pointer-events: none;
        z-index: 2
    }


    .hero-wave-svg {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        z-index: 3
    }

    #heroParticles {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none
    }

    .hero-particle {
        position: absolute;
        font-weight: 800;
        opacity: 0;
        animation: heroFloat linear infinite;
        pointer-events: none
    }


    .parrafo-inicio-regulatorio {
        font-size: 1.20rem;
        max-width: 1040px;
        margin: 3rem auto 2rem;
        padding: 2rem 2.5rem;
        border-left: 5px solid var(--brand-light);
        border-radius: 0 14px 14px 0;
        background: linear-gradient(90deg, rgba(26, 108, 181, .07), transparent);
        color: var(--text-muted);
        line-height: 1.9;
        opacity: 0;
        transform: translateX(-40px);
        transition: all .9s cubic-bezier(.22, 1, .36, 1);
        position: relative;
        overflow: hidden
    }

    .parrafo-inicio-regulatorio.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .parrafo-inicio-regulatorio::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 5px;
        background: linear-gradient(180deg, var(--brand), var(--brand-light));
        animation: gradientShift 4s ease infinite;
        background-size: 200% 200%
    }

    .parrafo-inicio-regulatorio strong {
        color: var(--brand);
        font-weight: 700
    }


    .btn-doc {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
        margin-top: 1rem;
        padding: .4rem 1.4rem;
        background: var(--brand);
        color: #fff;
        border-radius: 40px;
        font-size: 1.10rem;
        font-weight: 600;
        text-decoration: none;
        font-family: 'Outfit', sans-serif;
        transition: all .3s cubic-bezier(.22, 1, .36, 1);
        box-shadow: 0 4px 16px rgba(26, 108, 181, .28);
        position: relative;
        overflow: hidden
    }

    .btn-doc:hover {
        background: var(--brand-dark);
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 8px 28px rgba(26, 108, 181, .4);
        color: #fff;
        text-decoration: none
    }

    .btn-doc::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, .2);
        border-radius: 40px;
        transform: scale(0);
        transition: transform .4s
    }

    .btn-doc:active::after {
        transform: scale(2);
        opacity: 0;
        transition: transform .6s, opacity .6s
    }


    .main-regulatorio {
        max-width: 1100px;
        margin: 0 auto;
        padding: 2rem 2rem 4rem
    }


    .page-heading {
        font-size: 18px;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        color: var(--text);
        margin-bottom: .5rem;
        opacity: 0;
        animation: fadeInDown .8s .2s both;
        position: relative;
        display: inline-block
    }

    .page-heading::after {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 0;
        height: 4px;
        width: 0;
        background: linear-gradient(90deg, var(--brand), var(--brand-light));
        border-radius: 2px;
        animation: underlineGrow .8s .9s both
    }


    .info-row-regulatorio {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        margin-bottom: 4rem
    }

    @media(max-width:680px) {
        .info-row-regulatorio {
            grid-template-columns: 1fr
        }
    }


    .info-text-regulatorio {
        opacity: 0;
        transform: translateX(-50px);
        transition: all .9s cubic-bezier(.22, 1, .36, 1)
    }

    .info-text-regulatorio.from-right {
        transform: translateX(50px)
    }

    .info-text-regulatorio.visible {
        opacity: 1;
        transform: translateX(0)
    }

    .info-text-regulatorio h3 {
        font-size: 1.30rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 800;
        color: var(--brand);
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        position: relative;
        display: inline-block
    }

    .info-text-regulatorio h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--brand), var(--brand-light));
        border-radius: 2px;
        width: 0;
        transition: width .6s .3s
    }

    .info-text-regulatorio.visible h3::after {
        width: 100%
    }

    .info-text-regulatorio p {
        font-size: 1.18rem;
        color: var(--text-muted);
        line-height: 1.9;
        text-align: justify
    }

    .info-text-regulatorio a {
        color: var(--brand-light);
        font-weight: 600;
        font-style: italic;
        text-decoration: none;
        transition: color .2s
    }

    .info-text-regulatorio a:hover {
        color: var(--brand);
        text-decoration: underline
    }


    .emergency-card-regulatorio {
        margin-top: .99rem;
        padding: 1rem 1.4rem;
        border-radius: 12px;
        background: linear-gradient(90deg, rgba(220, 40, 40, .07), transparent);
        border-left: 4px solid #e53e3e;
        font-size: 1.15rem;
        color: #8b2020;
        line-height: 1.7;
        opacity: 0;
        transform: translateY(10px);
        transition: all .5s .4s
    }

    .info-text-regulatorio.visible .emergency-card-regulatorio {
        opacity: 1;
        transform: translateY(0)
    }


    .info-img-wrap-regulatorio {
        opacity: 0;
        transform: translateX(50px) scale(.95) perspective(800px) rotateY(-8deg);
        transition: all 1s cubic-bezier(.22, 1, .36, 1)
    }

    .info-img-wrap-regulatorio.from-left {
        transform: translateX(-50px) scale(.95) perspective(800px) rotateY(8deg)
    }

    .info-img-wrap-regulatorio.visible {
        opacity: 1;
        transform: translateX(0) scale(1) perspective(800px) rotateY(0)
    }

    .info-img-wrap-regulatorio img {
        width: 100%;
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        object-fit: cover;
        aspect-ratio: 4/3;
        display: block;
        transition: transform .5s cubic-bezier(.22, 1, .36, 1), box-shadow .5s
    }

    .info-img-wrap-regulatorio:hover img {
        transform: scale(1.04) rotate(.8deg);
        box-shadow: 0 24px 60px rgba(26, 108, 181, .22)
    }

    .section-badge-regulatorio {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        padding: .35rem 1rem;
        border-radius: 30px;
        background: rgba(26, 108, 181, .1);
        color: var(--brand);
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: .75rem;
        font-family: 'Outfit', sans-serif;
        opacity: 0;
        animation: badgePop .7s cubic-bezier(.34, 1.56, .64, 1) both
    }

    .info-text-regulatorio.visible .section-badge-regulatorio {
        animation: badgePop .7s .1s cubic-bezier(.34, 1.56, .64, 1) both
    }

    .anim-divider {
        height: 2px;
        border-radius: 1px;
        background: linear-gradient(90deg, var(--brand), var(--brand-light), transparent);
        width: 0;
        margin: 3rem 0;
        transition: width 1s cubic-bezier(.22, 1, .36, 1)
    }

    .anim-divider.visible {
        width: 100%
    }


    .stats-strip-regulatorio {
        background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--brand-light));
        background-size: 200% 200%;
        animation: gradientShift 7s ease infinite;
        padding: 1.5rem 1rem;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0;
        margin-bottom: 0
    }

    .stat-item-regulatorio {
        text-align: center;
        padding: 1rem 2.5rem;
        border-right: 1px solid rgba(255, 255, 255, .18);
        flex: 1;
        min-width: 150px;
        opacity: 0;
        transform: translateY(30px);
        transition: all .7s cubic-bezier(.22, 1, .36, 1)
    }

    .stat-item-regulatorio:last-child {
        border-right: none
    }

    .stat-item-regulatorio.visible {
        opacity: 1;
        transform: translateY(0)
    }

    .stat-item-regulatorio:hover {
        background: rgba(255, 255, 255, .1);
        border-radius: 12px;
        transform: scale(1.07) translateY(-4px)
    }

    .stat-num-regulatorio {
        font-family: 'Outfit', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        color: #fff;
        line-height: 1
    }

    .stat-lbl-regulatorio {
        font-size: 1.10rem;
        color: rgba(255, 255, 255, .8);
        margin-top: .35rem;
        letter-spacing: .04em;
        text-transform: uppercase
    }


    .tiltable {
        transition: transform .15s ease;
        transform-style: preserve-3d
    }

    /* ============================================================
                              PREGUNTAS
        ============================================================ */
    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --azul: #1a3358;
        --azul-mid: #254878;
        --azul-lt: #eef2f8;
        --rojo: #3060ff;
        --bg: #f2f5fb;
        --card: #ffffff;
        --texto: #2d3748;
        --suave: #6b7280;
        --borde: rgba(26, 51, 88, 0.10);
        --sombra: 0 4px 24px rgba(26, 51, 88, 0.08);
        --sombra-h: 0 14px 40px rgba(26, 51, 88, 0.16);
        --r: 18px;
        --r-sm: 10px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        background: var(--bg);
        margin: 0;
    }

    .main-questions,
    .main-questions * {
        font-family: 'Sora', sans-serif;
        color: var(--texto);
    }



    .main-questions {
        max-width: 900px;
        margin: 48px auto;
        padding: 0 24px 80px;
    }


    .section-text-questions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--rojo);
        margin-bottom: 6px;
    }

    .section-text-questions::before,
    .section-text-questions::after {
        content: '';
        flex: 1;
        height: 2px;
        background: var(--borde);
    }

    .title-questions {
        font-family: 'Outfit', sans-serif;
        font-size: 30px;
        color: var(--azul);
        margin-bottom: 6px;
        line-height: 1.2;
        text-align: center;
    }

    .bar-questions {
        width: 48px;
        height: 3px;
        background: linear-gradient(90deg, var(--rojo), var(--azul));
        border-radius: 3px;
        margin: 0 auto 32px;
    }


    .faq-categories-questions {
        display: flex;
        gap: 8px;
        margin-bottom: 28px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cat-btn-questions {
        padding: 7px 18px;
        border-radius: 20px;
        border: 1px solid var(--borde);
        background: var(--card);
        color: var(--suave);
        font-size: 14px;
        font-family: 'Sora', sans-serif;
        cursor: pointer;
        transition: all .2s;
    }

    .cat-btn-questions.active {
        background: var(--azul);
        color: #fff;
        border-color: var(--azul);
    }

    .cat-btn-questions:hover:not(.active) {
        border-color: var(--azul-mid);
        color: var(--azul);
    }


    .faq-list-questions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .faq-card-questions {
        background: var(--card);
        border-radius: var(--r-sm);
        border: 1px solid var(--borde);
        box-shadow: var(--sombra);
        overflow: hidden;
        transition: box-shadow .3s, border-color .25s;
    }

    .faq-card-questions:hover {
        box-shadow: var(--sombra-h);
    }

    .faq-card-questions.open {
        border-color: rgba(26, 51, 88, 0.25);
    }

    .faq-head-questions {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 20px;
        cursor: pointer;
        user-select: none;
        border-left: 4px solid var(--azul);
        transition: border-color .3s;
    }

    .faq-card-questions.open .faq-head-questions {
        border-left-color: var(--rojo);
    }

    .faq-num-questions {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--azul-lt);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 600;
        color: var(--azul-mid);
        flex-shrink: 0;
        transition: background .3s, color .3s;
    }

    .faq-card-questions.open .faq-num-questions {
        background: var(--rojo);
        color: #fff;
    }

    .faq-q-questions {
        flex: 1;
        font-size: 18px;
        font-weight: 600;
        color: var(--azul);
        line-height: 1.4;
    }

    .faq-chevron-questions {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .35s;
    }

    .faq-card-questions.open .faq-chevron-questions {
        transform: rotate(180deg);
    }

    .faq-body-questions {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
    }

    .faq-card-questions.open .faq-body-questions {
        max-height: 400px;
    }

    .faq-inner-questions {
        padding: 0 20px 20px 68px;
    }

    .faq-divider-questions {
        height: 1px;
        background: var(--borde);
        margin-bottom: 14px;
    }

    .faq-a-questions {
        font-size: 16px;
        color: var(--suave);
        line-height: 1.8;
        margin: 0 0 14px;
    }

    .faq-a-questions strong {
        color: var(--azul);
    }

    .faq-cta-questions {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 7px 16px;
        border-radius: var(--r-sm);
        border: 1px solid var(--azul);
        color: var(--azul);
        font-size: 12px;
        font-weight: 600;
        font-family: 'Sora', sans-serif;
        background: var(--azul-lt);
        text-decoration: none;
        transition: background .2s, color .2s;
        cursor: pointer;
    }

    .faq-cta-questions:hover {
        background: var(--azul);
        color: #fff;
        text-decoration: none;
    }


    .faq-contact-questions {
        margin-top: 40px;
        background: var(--card);
        border-radius: var(--r);
        border: 1px solid var(--borde);
        box-shadow: var(--sombra);
        padding: 28px 27px;
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
    }

    .contact-icon-questions {
        width: 52px;
        height: 52px;
        background: var(--azul-lt);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .contact-icon-questions svg {
        width: 24px;
        height: 24px;
    }

    .contact-label-questions {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--suave);
        margin: 0 0 4px;
    }

    .contact-val-questions {
        font-size: 15px;
        font-weight: 600;
        color: var(--azul);
        margin: 0;
    }

    .contact-sep-questions {
        width: 1px;
        height: 48px;
        background: var(--borde);
    }



    .progress-bar {
        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 linear;
        box-shadow: 0 0 8px rgba(41, 170, 220, .6)
    }

    .anim-zoom-in {
        opacity: 0;
        transform: scale(0.7);
        transition: opacity .6s cubic-bezier(.34, 1.56, .64, 1), transform .6s cubic-bezier(.34, 1.56, .64, 1);
    }

    .anim-zoom-in.visible {
        opacity: 1;
        transform: scale(1);
    }

    .anim-fade-up-questions {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .anim-fade-up-questions.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .anim-pop {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        transition: opacity .5s ease, transform .5s cubic-bezier(.34, 1.4, .64, 1);
    }

    .anim-pop.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .hero-questions-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .hero-questions-overlay {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 2;
    }

    .hero-questions-wave-svg {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        z-index: 3;
    }

    .hero-questions-particle {
        position: absolute;
        font-weight: 800;
        opacity: 0;
        animation: hero-questionsFloat linear infinite;
        pointer-events: none;
    }

    @keyframes hero-questionsFloat {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(0.7);
        }

        15% {
            opacity: 0.9;
        }

        80% {
            opacity: 0.55;
        }

        100% {
            opacity: 0;
            transform: translateY(-70px) scale(1.15);
        }
    }

    .hero-questions {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        line-height: 0
    }

    @media(max-width:768px) {
        .hero-questions {
            height: 155px;
        }
    }



    /* ============================================================
                        PROCESOS
        ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700&family=DM+Sans:wght@400;500&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --white: #fff;
        --border: rgba(26, 108, 181, 0.13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 14px;
        --shadow: 0 4px 24px rgba(26, 108, 181, 0.09);
        --shadow-h: 0 12px 36px rgba(26, 108, 181, 0.16);
    }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--white);
        color: var(--text)
    }


    .hero-procesos {
        background: linear-gradient(135deg, #0d4a82 0%, #1a6cb5 50%, #29aadc 100%);
        padding: 2.5rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden
    }

    .hero-procesos::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(255, 255, 255, 0.07) 0%, transparent 70%)
    }

    .hero-procesos-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        padding: 6px 16px;
        font-size: 11px;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-bottom: 1.25rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600
    }

    .hero-procesos-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    .hero-procesos h1 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: clamp(2rem, 5vw, 3.2rem);
        color: #fff;
        margin-bottom: .75rem;
        line-height: 1.15
    }

    .hero-procesos-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px
    }


    .banner-wrap-procesos {
        max-width: 960px;
        margin: 2.5rem auto 0;
        padding: 0 1.5rem
    }

    .banner-wrap-procesos img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: var(--radius);
        box-shadow: var(--shadow-h);
        display: block
    }


    .content-procesos {
        max-width: 700px;
        margin: 2.5rem auto 4rem;
        padding: 0 1.5rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem
    }

    .content-procesos h4 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text);
        line-height: 1.4
    }


    .pdf-btn-procesos {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 13px 28px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        color: #fff;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: .92rem;
        text-decoration: none;
        transition: opacity .2s, transform .15s;
        box-shadow: 0 4px 16px rgba(26, 108, 181, 0.25);
    }

    .pdf-btn-procesos:hover {
        opacity: .9;
        transform: translateY(-2px)
    }

    .pdf-btn-procesos:active {
        transform: translateY(0)
    }

    .pdf-btn-procesos svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round
    }


    .info-box-procesos {
        background: var(--surface);
        border: .5px solid var(--border);
        border-radius: var(--radius);
        padding: 1.5rem 2rem;
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        text-align: left;
    }

    .info-icon-procesos {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--brand);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px
    }

    .info-icon-procesos svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: #fff;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round
    }

    .info-text-procesos {
        font-size: .9rem;
        color: var(--text-muted);
        line-height: 1.8
    }


    /* ============================================================
                              PROYECTOS
        ============================================================ */
    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d3f72;
        --brand-mid: #1557a0;
        --gold: #29aadc;
        --gold-light: #0d3f72;
        --surface: #f4f8fd;
        --surface-2: #eaf2fb;
        --white: #ffffff;
        --text: #0e1c2f;
        --text-muted: #4a6080;
        --text-light: #7a95b0;
        --border: rgba(26, 108, 181, 0.12);
        --r: 18px;
        --r-sm: 10px;
        --shadow: 0 6px 36px rgba(13, 63, 114, 0.10);
        --shadow-h: 0 18px 56px rgba(13, 63, 114, 0.20);
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Outfit', sans-serif;
        background: #ffffff;
        color: var(--text);
        overflow-x: hidden;
    }


    #prog {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0;
        background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--gold));
        z-index: 9999;
        transition: width .1s linear;
    }


    .section-proyectos {
        padding: 80px 5%;
    }

    .section-alt-proyectos {
        background: var(--surface);
    }

    .section-dark {
        background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 100%);
        color: #fff;
    }

    .section-dark .lead-proyectos,
    .section-dark li {
        color: rgba(255, 255, 255, .85);
    }


    .divider {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 36px;
    }

    .divider-line {
        flex: 1;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--brand-light), transparent);
    }

    .divider-diamond {
        width: 10px;
        height: 10px;
        background: var(--gold);
        transform: rotate(45deg);
        flex-shrink: 0;
    }

/* ============================================================
   PROYECTOS — selectores con scope (no globales)
   ============================================================ */

.section-proyectos h1,
.section-alt-proyectos h1,
.section-dark h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.30rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-proyectos h2,
.section-alt-proyectos h2,
.section-dark h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.99rem;
    font-weight: 600;
    color: var(--brand);
    margin-top: 52px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 14px;
}

.section-proyectos h2::after,
.section-alt-proyectos h2::after,
.section-dark h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brand-light));
    border-radius: 4px;
}

.section-dark h2 {
    color: var(--gold-light);
}

.section-dark h2::after {
    background: linear-gradient(90deg, var(--gold-light), rgba(255,255,255,.4));
}

.section-proyectos li,
.section-alt-proyectos li,
.section-dark li,
.media-row-proyectos li {
    font-size: 1.04rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
    list-style: none;
    padding-left: 1.6em;
    position: relative;
    margin-bottom: 6px;
}

.section-proyectos li::before,
.section-alt-proyectos li::before,
.section-dark li::before,
.media-row-proyectos li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--brand-light);
    font-size: .8em;
    top: .2em;
}

.section-dark li::before {
    color: var(--gold-light);
}

    .section-dark h2 {
        color: var(--gold-light);
    }

    .section-dark h2::after {
        background: linear-gradient(90deg, var(--gold-light), rgba(255, 255, 255, .4));
    }

    .lead-proyectos {
        font-size: 1.06rem;
        line-height: 1.85;
        color: var(--text-muted);
        font-weight: 300;
    }



    .section-dark li::before {
        color: var(--gold-light);
    }


    .img-full {
        width: 100%;
        border-radius: var(--r);
        box-shadow: var(--shadow);
        display: block;
        object-fit: cover;
    }

    .img-frame-proyectos {
        border-radius: var(--r);
        box-shadow: var(--shadow-h);
        border: 1px solid var(--border);
        overflow: hidden;
        display: block;
    }

    .img-frame-proyectos img {
        width: 100%;
        display: block;
        object-fit: cover;
    }


    .grid-2-proyectos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-top: 36px;
    }

    @media(max-width:768px) {
        .grid-2-proyectos {
            grid-template-columns: 1fr;
        }

        .row-media {
            flex-direction: column !important;
        }
    }


    .banner-full-proyectos {
        width: 100%;
        border-radius: var(--r);
        box-shadow: var(--shadow-h);
        overflow: hidden;
        margin-top: 36px;
        position: relative;
    }

    .banner-full-proyectos img {
        width: 100%;
        display: block;
        object-fit: cover;
        height: 460px;
    }

    .banner-full-proyectos::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 2px solid rgba(41, 170, 220, .18);
        border-radius: var(--r);
        z-index: 1;
        pointer-events: none;
    }


    .slider-section-proyectos {
        overflow: hidden;
        padding: 60px 0;
        background: var(--surface-2);
        position: relative;
    }

    .slider-label-proyectos {
        text-align: center;
        margin-bottom: 28px;
        font-family: 'Outfit', sans-serif;
        font-size: 1.2rem;
        color: var(--brand);
        letter-spacing: .1em;
        font-weight: 600;
    }

    @keyframes scrollBici {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .slider-track-proyectos {
        display: flex;
        gap: 24px;
        width: max-content;
        animation: scrollBici 28s linear infinite;
    }

    .slider-track-proyectos:hover {
        animation-play-state: paused;
    }

    .slider-track-proyectos img {
        width: 480px;
        height: 340px;
        object-fit: cover;
        border-radius: var(--r);
        transition: transform .5s, box-shadow .5s;
        cursor: pointer;
        border: 1px solid var(--border);
    }

    .slider-track-proyectos img:hover {
        transform: scale(1.05) rotate(-1deg);
        box-shadow: 0 20px 60px rgba(26, 108, 181, .28);
    }

    .slider-fade-l-proyectos,
    .slider-fade-r-proyectos {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 5;
        pointer-events: none;
    }

    .slider-fade-l-proyectos {
        left: 0;
        background: linear-gradient(to right, var(--surface-2), transparent);
    }

    .slider-fade-r-proyectos {
        right: 0;
        background: linear-gradient(to left, var(--surface-2), transparent);
    }


    .media-row-proyectos {
        display: flex;
        align-items: center;
        gap: 48px;
        padding: 56px 5%;
        border-bottom: 1px solid var(--border);
    }

    .media-row-proyectos:last-child {
        border-bottom: none;
    }

    .media-row-proyectos.reverse {
        flex-direction: row-reverse;
    }

    .media-row-proyectos .media-img-proyectos {
        flex: 0 0 48%;
        border-radius: var(--r);
        overflow: hidden;
        box-shadow: var(--shadow-h);
    }

    .media-row-proyectos .media-img-proyectos img {
        width: 100%;
        display: block;
        object-fit: cover;
    }

    .media-row-proyectos .media-text-proyectos {
        flex: 1;
    }

    .media-row-proyectos .media-text-proyectos .tag-proyectos {
        display: inline-block;
        margin-bottom: 14px;
        font-size: .72rem;
        font-weight: 700;
        letter-spacing: .2em;
        text-transform: uppercase;
        color: var(--brand-light);
        border-bottom: 2px solid var(--brand-light);
        padding-bottom: 3px;
    }

    .media-row-proyectos .media-text-proyectos h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .video-wrapper-proyectos {
        border-radius: var(--r);
        overflow: hidden;
        box-shadow: var(--shadow-h);
        width: 100%;
    }

    .video-wrapper-proyectos video {
        width: 100%;
        display: block;
    }


    .biogas-banner-proyectos {
        position: relative;
        overflow: hidden;
    }

    .biogas-banner-proyectos img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        display: block;
    }

    .biogas-overlay-proyectos {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 30%, rgba(10, 38, 72, .7) 100%);
    }


    .energy-text-section-proyectos {
        padding: 72px 5%;
        background: var(--white);
    }

    .energy-text-section-proyectos .energy-grid-proyectos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-top: 32px;
    }

    @media(max-width:768px) {
        .energy-text-section-proyectos .energy-grid-proyectos {
            grid-template-columns: 1fr;
        }
    }

    .energy-quote-proyectos {
        background: var(--surface-2);
        border-left: 4px solid var(--brand-light);
        border-radius: 0 var(--r-sm) var(--r-sm) 0;
        padding: 28px 28px 28px 32px;
        font-family: 'Outfit', sans-serif;
        font-size: 1.05rem;
        font-style: italic;
        color: var(--brand-dark);
        line-height: 1.85;
    }

    .h-card-proyectos {
        background: var(--white);
        border-radius: var(--r-sm);
        border: 1px solid var(--border);
        padding: 26px 28px;
    }

    .h-card-proyectos-icon {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--brand), var(--brand-light));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 14px;
    }

    .h-card-proyectos-icon svg {
        fill: #fff;
        width: 22px;
        height: 22px;
    }


    .stripe-proyectos {
        height: 6px;
        background: linear-gradient(90deg, var(--brand-dark), var(--brand), var(--brand-light), var(--gold), var(--brand-light), var(--brand));
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-top: 40px;
    }

    @media(max-width:900px) {
        .cards-grid {
            grid-template-columns: 1fr;
        }
    }

    .h-card-proyectos {
        border-radius: var(--r);
        overflow: hidden;
        background: var(--white);
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
        transition: transform .35s, box-shadow .35s;
        position: relative;
    }

    .h-card-proyectos:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-h);
    }

    .h-card-proyectos::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .h-card-proyectos:nth-child(1)::before {
        background: linear-gradient(90deg, #2ecc71, var(--brand-light));
    }

    .h-card-proyectos:nth-child(2)::before {
        background: linear-gradient(90deg, #95a5a6, #bdc3c7);
    }

    .h-card-proyectos:nth-child(3)::before {
        background: linear-gradient(90deg, var(--brand-light), var(--brand));
    }

    .h-card-proyectos img {
        width: 100%;
        height: 240px;
        object-fit: cover;
        display: block;
    }

    .h-card-proyectos-body {
        padding: 24px 26px 28px;
    }

    .h-card-proyectos-title {
        font-family: 'Outfit', sans-serif;
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--brand-dark);
        margin-bottom: 10px;
    }

    .h-card-proyectos-desc {
        font-size: .97rem;
        line-height: 1.75;
        color: var(--text-muted);
        font-weight: 300;
    }
    /* ============================================================
                              RECONEXION
        ============================================================ */
         @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #eef2f7;
            color: #1a2b3c;
            margin: 0;
        }


        .page-body-reconexion {
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 24px 80px;
        }

        .grid-reconexion {
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 32px;
            align-items: start;
        }

        @media(max-width: 900px) {
            .grid-reconexion {
                grid-template-columns: 1fr;
            }
        }

        .panel-reconexion {
            background: #fff;
            border-radius: 24px;
            padding: 32px;
            border: 1px solid #e0e8f0;
            box-shadow: 0 4px 20px rgba(10, 35, 66, 0.06);
        }

        .panel-reconexion-title {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #0b5cab;
            margin-bottom: 10px;
        }

        .panel-reconexion h2 {
            font-size: 22px;
            font-weight: 800;
            color: #0a2342;
            margin: 0 0 24px;
            line-height: 1.3;
        }

        .step-item-reconexion {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            align-items: flex-start;
        }

        .step-num-reconexion {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            background: #e8f2fd;
            color: #0b5cab;
            font-size: 13px;
            font-weight: 800;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2px;
        }

        .step-content-reconexion strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: #0a2342;
            margin-bottom: 3px;
        }

        .step-content-reconexion span {
            font-size: 13px;
            color: #5a7080;
            line-height: 1.5;
        }

        .divider {
            border: none;
            border-top: 1px solid #e8eef5;
            margin: 24px 0;
        }

        .info-tag-reconexion {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #fff8e6;
            color: #8a6000;
            font-size: 12px;
            font-weight: 600;
            padding: 7px 14px;
            border-radius: 50px;
            border: 1px solid #f0d080;
        }

        .img-panel-reconexion {
            width: 100%;
            margin-top: 28px;
            border-radius: 16px;
            overflow: hidden;
        }

        .img-panel-reconexion img {
            width: 100%;
            display: block;
        }

        .form-card-reconexion {
            background: #fff;
            border-radius: 28px;
            padding: 44px;
            border: 1px solid #e0e8f0;
            box-shadow: 0 4px 24px rgba(10, 35, 66, 0.07);
        }

        .form-header-reconexion {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 32px;
            padding-bottom: 28px;
            border-bottom: 1px solid #eef2f8;
        }

        .form-icon-reconexion {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, #0b5cab, #1a7fd4);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .form-icon-reconexion svg {
            stroke: #fff;
        }

        .form-header-reconexion h3 {
            font-size: 26px;
            font-weight: 800;
            color: #0a2342;
            margin: 0 0 6px;
            line-height: 1.2;
        }

        .form-header-reconexion p {
            font-size: 14px;
            color: #7a90a4;
            margin: 0;
        }

        .form-header-reconexion p span {
            color: #d62828;
            font-weight: 700;
        }


        .section-sep-reconexion {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 28px 0 20px;
        }

        .section-sep-reconexion span {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #9ab0c4;
            white-space: nowrap;
        }

        .section-sep-reconexion::before,
        .section-sep-reconexion::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #e8eef5;
        }


        .row-reconexion {
            margin: 0 -8px;
        }

        .col-half-reconexion {
            padding: 0 8px;
            float: left;
            width: 50%;
        }

        .col-full-reconexion {
            padding: 0 8px;
            float: left;
            width: 100%;
        }

        @media(max-width: 600px) {
            .col-half-reconexion {
                width: 100%;
            }
        }

        .clearfix::after {
            content: '';
            display: table;
            clear: both;
        }

        .fg {
            margin-bottom: 22px;
            position: relative;
        }

        .fg label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #2c4a62;
            margin-bottom: 8px;
            letter-spacing: 0.2px;
        }

        .req {
            color: #d62828;
        }

        .input-wrap {
            position: relative;
        }

        .input-wrap .ico {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
            color: #9ab0c4;
            display: flex;
        }

        .input-wrap .ico svg {
            width: 18px;
            height: 18px;
        }

        input.fc,
        textarea.fc,
        select.fc {
            width: 100%;
            height: 52px;
            border-radius: 14px;
            border: 1.5px solid #d4e0ec;
            background: #f8fafc;
            font-family: inherit;
            font-size: 15px;
            color: #1a2b3c;
            padding: 0 16px 0 46px !important;
            transition: border-color .2s, box-shadow .2s, background .2s;
            outline: none;
            appearance: none;
        }

        textarea.fc {
            height: auto;
            min-height: 130px;
            resize: vertical;
            padding: 14px 16px 14px 46px !important;
        }

        input.fc:focus,
        textarea.fc:focus {
            border-color: #0b5cab;
            background: #fff;
            box-shadow: 0 0 0 4px rgba(11, 92, 171, 0.1);
        }

        input.fc::placeholder,
        textarea.fc::placeholder {
            color: #a8bccf;
            font-size: 14px;
        }

        input.fc.valid {
            border-color: #1aa355;
            background: #f6fdf9;
        }


        .pac-container {
            border-radius: 14px !important;
            border: 1.5px solid #d4e0ec !important;
            box-shadow: 0 8px 24px rgba(10, 35, 66, 0.1) !important;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
            margin-top: 4px !important;
        }

        .pac-item {
            padding: 10px 16px !important;
            font-size: 14px !important;
        }

        .pac-item:hover {
            background: #f0f6ff !important;
        }

        .pac-icon {
            display: none !important;
        }


        .auto-badge {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 11px;
            font-weight: 700;
            background: #e0f5ea;
            color: #1aa355;
            padding: 3px 10px;
            border-radius: 50px;
            display: none;
        }

        .auto-badge.show {
            display: block;
        }


        .file-zone {
            border: 2px dashed #c7d7e7;
            border-radius: 18px;
            padding: 32px 20px;
            text-align: center;
            background: #f6fafd;
            position: relative;
            transition: .25s ease;
            cursor: pointer;
        }

        .file-zone:hover,
        .file-zone.drag {
            border-color: #0b5cab;
            background: #edf5fc;
        }

        .file-zone input[type=file] {
            position: absolute;
            inset: 0;
            opacity: 0;
            cursor: pointer;
            width: 100%;
            height: 100%;
        }

        .fz-icon {
            width: 52px;
            height: 52px;
            background: #e8f2fd;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
        }

        .fz-icon svg {
            stroke: #0b5cab;
            width: 26px;
            height: 26px;
        }

        .fz-main {
            font-size: 15px;
            font-weight: 700;
            color: #0a2342;
            margin-bottom: 6px;
        }

        .fz-sub {
            font-size: 13px;
            color: #7a90a4;
        }

        #file-name {
            margin-top: 12px;
            font-size: 13px;
            font-weight: 600;
            color: #1aa355;
            min-height: 20px;
        }


        .btn-submit {
            width: 100%;
            height: 60px;
            border: none;
            border-radius: 16px;
            background: linear-gradient(135deg, #0a3d82 0%, #0b74d1 100%);
            color: #fff;
            font-family: inherit;
            font-size: 17px;
            font-weight: 800;
            letter-spacing: 0.3px;
            cursor: pointer;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: transform .2s, box-shadow .2s;
            box-shadow: 0 8px 24px rgba(11, 92, 171, 0.28);
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 14px 32px rgba(11, 92, 171, 0.38);
        }

        .btn-submit:active {
            transform: translateY(0);
        }


        .stepper {
            display: flex;
            align-items: center;
            gap: 0;
            margin-bottom: 36px;
        }

        .st-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            flex: 1;
            position: relative;
        }

        .st-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 16px;
            left: 60%;
            width: 80%;
            height: 2px;
            background: #dce8f5;
            z-index: 0;
            transition: background .4s;
        }

        .st-step.done:not(:last-child)::after {
            background: #1aa355;
        }

        .st-dot {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #e8f0fa;
            border: 2px solid #d4e0ec;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: #9ab0c4;
            z-index: 1;
            transition: all .35s;
        }

        .st-step.active .st-dot {
            background: #0b5cab;
            border-color: #0b5cab;
            color: #fff;
            box-shadow: 0 0 0 5px rgba(11, 92, 171, 0.15);
        }

        .st-step.done .st-dot {
            background: #1aa355;
            border-color: #1aa355;
            color: #fff;
        }

        .st-label {
            font-size: 11px;
            font-weight: 600;
            color: #9ab0c4;
            text-align: center;
            white-space: nowrap;
        }

        .st-step.active .st-label {
            color: #0b5cab;
        }

        .st-step.done .st-label {
            color: #1aa355;
        }


        .dir-spinner {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            display: none;
        }

        .dir-spinner.show {
            display: block;
        }

        @keyframes spin {
            to {
                transform: translateY(-50%) rotate(360deg);
            }
        }

        .dir-spinner svg {
            animation: spin .8s linear infinite;
        }


        .rc-alert {
            background: #fff1f1;
            border: 1.5px solid #f5c0c0;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: 13px;
            font-weight: 600;
            color: #c0392b;
            display: none;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .rc-alert.error {
            display: flex;
        }


        #successMsg {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px 20px;
            text-align: center;
            gap: 16px;
        }

        .success-circle {
            width: 80px;
            height: 80px;
            background: #e6f9ef;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #successMsg h4 {
            font-size: 22px;
            font-weight: 800;
            color: #0a2342;
            margin: 0;
        }

        #successMsg p {
            font-size: 15px;
            color: #6b8090;
            margin: 0;
            max-width: 340px;
        }

        .btn-reset {
            margin-top: 8px;
            padding: 12px 32px;
            border-radius: 12px;
            border: 1.5px solid #d4e0ec;
            background: #fff;
            font-family: inherit;
            font-size: 14px;
            font-weight: 700;
            color: #0b5cab;
            cursor: pointer;
            transition: background .2s;
        }

        .btn-reset:hover {
            background: #edf5fc;
        }


        input.fc.error {
            border-color: #d62828 !important;
            box-shadow: 0 0 0 4px rgba(214, 40, 40, 0.1) !important;
        }


        .dir-auto {
            display: none;
            font-size: 11px;
            font-weight: 700;
            color: #1aa355;
            margin-left: 8px;
        }

        .dir-auto.show {
            display: inline;
        }


        @media(max-width: 600px) {
            .form-card-reconexion {
                padding: 24px 18px;
            }

            .form-header-reconexion {
                flex-direction: column;
                gap: 12px;
            }

            .form-header-reconexion h3 {
                font-size: 20px;
            }

            .st-label {
                display: none;
            }
        }

    /* ============================================================
                              SCONSUMOS
        ============================================================ */
    @import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700&family=DM+Sans:wght@300;400;500&display=swap');

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    :root {
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --surface: #f0f6ff;
        --white: #fff;
        --border: rgba(26, 108, 181, 0.13);
        --text: #1a2332;
        --text-muted: #4a6080;
        --radius: 16px;
        --shadow: 0 4px 28px rgba(26, 108, 181, 0.08);
        --font: 'Outfit', sans-serif;
    }

    body {
        font-family: var(--font);
        background: var(--white);
        color: var(--text);
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 8px rgba(41, 170, 220, .5);
    }

    .hero-sconsumos {
        background: linear-gradient(135deg, #0d4a82 0%, #1a6cb5 50%, #29aadc 100%);
        padding: 3rem 2rem 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-sconsumos::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    }

    .hero-sconsumos-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        padding: 6px 16px;
        font-size: 11px;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-bottom: 1.25rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
    }

    .hero-sconsumos-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    .hero-sconsumos h1 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: clamp(2rem, 5vw, 2.2rem);
        color: #fff;
        margin-bottom: .75rem;
        line-height: 1.15;
    }

    .hero-sconsumos p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.75);
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.75;
    }

    .hero-sconsumos-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px;
    }

    .main-sconsumos {
        padding: 3rem 1.5rem 4rem;
        max-width: 1040px;
        margin: 0 auto;
    }

    .grid-sconsumos {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 1.5rem;
        align-items: start;
    }

    @media(max-width:768px) {
        .grid-sconsumos {
            grid-template-columns: 1fr
        }
    }


    .card-sconsumos {
        background: var(--white);
        border-radius: var(--radius);
        border: .5px solid var(--border);
        padding: 2rem;
        box-shadow: var(--shadow);
    }

    .card-sconsumos-tag {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .08em;
        text-transform: uppercase;
        color: var(--brand);
        margin-bottom: .4rem;
        font-family: 'Outfit', sans-serif;
    }

    .card-sconsumos h2 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: 1.5rem;
    }


    .field-sconsumos {
        margin-bottom: 1.2rem
    }

    .field-sconsumos label {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: .05em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 5px;
    }

    .field-sconsumos-wrap {
        position: relative
    }

    .field-sconsumos-wrap svg {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        fill: none;
        stroke: var(--text-muted);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        pointer-events: none;
    }

    .field-sconsumos input {
        width: 100%;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 10px 13px 10px 36px;
        font-family: 'DM Sans', sans-serif;
        font-size: .88rem;
        color: var(--text);
        background: var(--surface);
        outline: none;
    }

    .field-sconsumos input[readonly] {
        background: var(--surface);
        color: var(--text-muted);
        cursor: default;
    }


    .stats-grid-sconsumos {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .75rem;
        margin-bottom: 1.5rem;
    }

    .stat-card-sconsumos {
        background: linear-gradient(135deg, rgba(26, 108, 181, 0.07), rgba(41, 170, 220, 0.07));
        border-radius: 12px;
        padding: .9rem 1rem;
        border: .5px solid rgba(26, 108, 181, 0.15);
        transition: box-shadow .2s;
    }

    .stat-card-sconsumos:hover {
        box-shadow: var(--shadow)
    }

    .stat-lbl-sconsumos {
        font-size: 10px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: var(--brand);
        margin-bottom: 5px;
        font-family: 'Outfit', sans-serif;
    }

    .stat-val-sconsumos {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--brand-dark);
        font-family: 'Outfit', sans-serif;
    }

    .stat-unit {
        font-size: .7rem;
        font-weight: 400;
        color: var(--text-muted);
        margin-left: 2px;
    }

    .info-box-sconsumos {
        background: var(--surface);
        border-radius: 12px;
        padding: 1.2rem;
        text-align: center;
        border: .5px solid var(--border);
    }

    .info-box-sconsumos svg {
        width: 40px;
        height: 40px;
        stroke: var(--brand);
        fill: none;
        stroke-width: 1.5;
        stroke-linecap: round;
        stroke-linejoin: round;
        margin-bottom: .75rem;
    }

    .info-box-sconsumos p {
        font-size: .8rem;
        color: var(--text-muted);
        line-height: 1.6;
    }


    .chart-wrap-sconsumos {
        position: relative;
        width: 100%;
    }


    .skeleton {
        background: linear-gradient(90deg, #e8f0fb 25%, #d0e2f5 50%, #e8f0fb 75%);
        background-size: 200% 100%;
        animation: shimmer 1.5s infinite;
        border-radius: 8px;
    }

    @keyframes shimmer {
        0% {
            background-position: 200% 0
        }

        100% {
            background-position: -200% 0
        }
    }








    /* ============================================================
                              FACTURA
        ============================================================ */

    :root {
        --azul: #1a6cb5;
        --azul-md: #29aadc;
        --azul-lt: #eef2f8;
        --rojo: #0d4a82;
        --bg: #f7f9fc;
        --card: #ffffff;
        --texto: #2d3748;
        --suave: #718096;
        --suave-oscuro: #000;
        --borde: rgba(26, 51, 88, 0.09);
        --sombra: 0 2px 16px rgba(26, 51, 88, 0.07);
        --sombra-h: 0 8px 32px rgba(26, 51, 88, 0.13);
        --r: 14px;
        --r-sm: 8px;
    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        background: var(--bg);
        margin: 0;
        font-family: 'Outfit', sans-serif;
    }


    .progress-bar {
        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 linear;
        box-shadow: 0 0 8px rgba(41, 170, 220, .5);
    }


    .hero-factura {
        background: linear-gradient(135deg, #0d4a82 0%, #1a6cb5 50%, #29aadc 100%);
        padding: 2.5rem 2rem 3rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .hero-factura::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 50% 120%, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    }

    .hero-factura-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        padding: 6px 16px;
        font-size: .99rem;
        letter-spacing: .08em;
        color: rgba(255, 255, 255, 0.9);
        text-transform: uppercase;
        margin-bottom: 1.25rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
    }

    .hero-factura-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #6de9c8;
        animation: blink 2s ease infinite;
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    .hero-factura h1 {
        font-family: 'Outfit', sans-serif;
        font-weight: 700;
        font-size: clamp(2rem, 5vw, 3.2rem);
        color: #fff;
        margin-bottom: .75rem;
        line-height: 1.15;
    }

    .hero-factura p {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.75);
        max-width: 520px;
        margin: 0 auto;
        line-height: 1.75;
    }

    .hero-factura-wave {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 60px;
    }


    .factura-wrap {
        max-width: 800px;
        margin: 36px auto 70px;
        padding: 0 20px;

    }


    .section-consulta {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 28px;
    }

    .section-consulta-line {
        flex: 1;
        height: 1px;
        background: var(--borde);
    }

    .section-consulta-badge {
        background: var(--azul);
        color: #fff;
        font-size: .99rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 5px 18px;
        border-radius: 20px;
        white-space: nowrap;
    }

    .f-card {
        background: var(--card);
        border-radius: var(--r);
        border: 1px solid var(--borde);
        box-shadow: var(--sombra);
        margin-bottom: 20px;
        overflow: hidden;
        transition: box-shadow .3s, transform .3s;
    }

    .f-card:hover {
        box-shadow: var(--sombra-h);
        transform: translateY(-3px);
    }


    .f-card-strip {
        height: 3px;
        background: linear-gradient(90deg, var(--azul) 0%, var(--rojo) 100%);
    }

    .f-card-body {
        padding: 28px 32px;
    }

    .f-card-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--azul);
        margin: 0 0 22px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .f-card-title .ic {
        width: 32px;
        height: 32px;
        background: var(--azul-lt);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        flex-shrink: 0;
    }


    .items {
        list-style: none;
        padding: 0;
        counter-reset: s;
        margin-bottom: 22px;
    }

    .items li {
        position: relative;
        padding: 10px 0 10px 38px;
        font-size: 1.2rem;
        color: var(--suave-osscuro);
        border-bottom: 1px solid var(--borde);
        counter-increment: s;
        line-height: 1.65;
    }

    .items li:last-child {
        border-bottom: none;
    }

    .items li::before {
        content: counter(s);
        position: absolute;
        left: 0;
        top: 11px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: var(--azul-lt);
        color: var(--azul);
        font-size: .99rem;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid rgba(26, 51, 88, 0.15);
    }

    .items li strong {
        color: var(--azul);
    }


    .tip {
        background: var(--azul-lt);
        border-left: 3px solid var(--azul);
        border-radius: var(--r-sm);
        padding: 11px 16px;
        font-size: 1.1rem;
        color: var(--azul);
        margin-bottom: 16px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }



    .fields-grid-factura {
        display: grid;
        grid-template-columns: 1fr 1fr auto;
        gap: 14px;
        align-items: end;
        margin-top: 8px;
    }

    .fg label {
        display: block;
        font-size: .99rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--azul);
        margin-bottom: 6px;
    }

    .fg input {
        width: 100%;
        padding: 10px 14px;
        border: 1.5px solid rgba(26, 51, 88, 0.14);
        border-radius: var(--r-sm);
        font-size: 1.2rem;
        color: var(--texto);
        background: #f8fafc;
        outline: none;
        transition: border-color .2s, box-shadow .2s;
    }

    .fg input:focus {
        border-color: var(--azul);
        box-shadow: 0 0 0 3px rgba(26, 51, 88, 0.08);
        background: #fff;
    }

    .btn-exec {
        padding: 10px 24px;
        background: var(--rojo);
        color: #fff;
        border: none;
        border-radius: 30px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        letter-spacing: 0.3px;
        transition: background .25s, box-shadow .25s, transform .2s;
    }

    .btn-exec:hover {
        background: var(--suave);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(240, 134, 122, 0.22);
    }

    .pse-wrap {
        text-align: center;
        padding: 14px 0 4px;
    }

    .pse-wrap img {
        max-width: 130px;
        opacity: 0.80;
        transition: opacity .3s, transform .3s;
    }

    .pse-wrap img:hover {
        opacity: 1;
        transform: scale(1.05);
    }


    .modal-header {
        background: var(--rojo) !important;
        border-bottom: none;
    }

    .modal-header .heading {
        color: #fff;
        font-weight: 700;
        margin: 0;
        font-size: 1.5rem;
    }

    .modal-content {
        border-radius: var(--r);
        overflow: hidden;
        border: none;
    }

    .modal-body label {
        font-size: .95rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--rojo);
        margin-top: 10px;
        display: block;
        margin-bottom: 3px;
    }

    .modal-body .form-control {
        border-radius: var(--r-sm);
        font-size: 1.2rem;
        border: 1px solid var(--borde);
        background: #f8fafc;
    }

    .modal-footer {
        background: #f7f9fc;
        border-top: 1px solid var(--borde);
    }

    .btn-dl {
        background: var(--rojo);
        color: #fff;
        border: none;
        padding: 9px 20px;
        border-radius: 30px;
        font-size: 1.2rem;
        font-weight: 700;
        cursor: pointer;
        transition: background .2s;
    }

    .btn-dl:hover {
        background: var(--suave);
    }


    .fade-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .6s ease, transform .6s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }


    @media (max-width: 640px) {
        .fields-grid-factura {
            grid-template-columns: 1fr;
        }

        .f-card-body {
            padding: 20px;
        }
    }












    /* ============================================================
                               TRANSPARENCIA
        ============================================================ */



    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --navy: #1a6cb5;
        --navy-mid: #29aadc;
        --sky: #29aadc;
        --sky-dark: #1a8abf;
        --sky-light: #eaf6fd;
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --azul: #1a3358;
        --azul-mid: #254878;
        --azul-lt: #eef2f8;
        --white: #fff;
        --gray: #f4f7fa;
        --bg: #f2f5fb;
        --text: #1a2332;
        --muted: #4a6080;
        --suave: #6b7280;
        --border: rgba(26, 108, 181, 0.13);
        --shadow: 0 4px 24px rgba(26, 51, 88, 0.08);
        --shadow-h: 0 14px 40px rgba(26, 51, 88, 0.16);
        --radius: 16px;
    }

    body {
        font-family: 'Inter', sans-serif;
        background: var(--bg);
        color: var(--text);
        overflow-x: hidden;
    }


    #prog {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        z-index: 9999;
        background: linear-gradient(90deg, var(--navy), var(--sky));
        width: 0%;
        transition: width .12s;
        box-shadow: 0 0 8px rgba(41, 170, 220, .5);
    }


    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-28px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(28px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes fadeInLeft {
        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 hero-transparenciaFloat {
        0% {
            opacity: 0;
            transform: translateY(20px) scale(.7)
        }

        15% {
            opacity: .9
        }

        80% {
            opacity: .55
        }

        100% {
            opacity: 0;
            transform: translateY(-70px) scale(1.15)
        }
    }

    @keyframes blink {

        0%,
        100% {
            opacity: 1
        }

        50% {
            opacity: .3
        }
    }

    @keyframes rowSlide {
        from {
            opacity: 0;
            transform: translateY(18px)
        }

        to {
            opacity: 1;
            transform: translateY(0)
        }
    }

    @keyframes shimmer {
        0% {
            background-position: 200% center
        }

        100% {
            background-position: -200% center
        }
    }

    @keyframes floatY {

        0%,
        100% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-6px)
        }
    }


    .anim {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .anim.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .anim-l {
        opacity: 0;
        transform: translateX(-26px);
        transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .anim-l.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .anim-z {
        opacity: 0;
        transform: scale(.93);
        transition: opacity .7s cubic-bezier(.22, 1, .36, 1), transform .7s cubic-bezier(.22, 1, .36, 1);
    }

    .anim-z.visible {
        opacity: 1;
        transform: scale(1);
    }

    /* ── hero-transparencia ── */
    .hero-transparencia {
        position: relative;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .hero-transparencia img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        object-position: center 30%;
        display: block;
        animation: zoomIn 1.2s cubic-bezier(.22, 1, .36, 1) both;
    }

    .hero-transparencia-grad {
        inset: 0;
        background: linear-gradient(110deg, rgba(26, 35, 50, .88) 0%, rgba(26, 35, 50, .3) 60%, transparent 100%);
        z-index: 2;
    }


    .hero-transparencia-wave-svg {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        z-index: 5;
    }

    /* ── SECCIÓN PRINCIPAL ── */
    .transp-section {
        max-width: 820px;
        margin: 0 auto;
        padding: 3rem 1.5rem 5rem;
    }

    /* Header de sección */
    .transp-header {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1.5rem;
        padding-bottom: 1.8rem;
        border-bottom: 1px solid var(--border);
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .transp-header-left {}

    .transp-label {
        font-family: 'Sora', sans-serif;
        font-size: .68rem;
        font-weight: 700;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--sky);
        margin-bottom: .6rem;
        display: block;
    }

    .transp-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3rem;
        font-weight: 300;
        color: var(--navy);
        line-height: .95;
        letter-spacing: -1px;
    }

    .transp-title em {
        font-style: italic;
        color: var(--brand);
    }

    .transp-header-right {
        font-size: .75rem;
        color: var(--muted);
        line-height: 1.75;
        text-align: right;
        flex-shrink: 0;
        border-left: 1px solid var(--border);
        padding-left: 1.5rem;
    }

    .transp-header-right strong {
        color: var(--navy);
        display: block;
    }


    .law-badge-trans {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        background: var(--sky-light);
        border: 1px solid rgba(41, 170, 220, .2);
        border-radius: 20px;
        padding: .28rem .9rem;
        font-family: 'Sora', sans-serif;
        font-size: .68rem;
        font-weight: 700;
        color: var(--sky-dark);
        letter-spacing: .04em;
        text-transform: uppercase;
        margin-top: .5rem;
        display: inline-flex;
        animation: floatY 4s ease-in-out infinite;
    }

    /* ── ACORDEÓN ── */D
    .accordion-list-trans {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .acc-row {
        border-bottom: 1px solid rgba(26, 108, 181, .1);
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
    }

    .acc-row:first-child {
        border-top: 1px solid rgba(26, 108, 181, .1);
    }

    .acc-row.in {
        opacity: 1;
        transform: translateY(0);
    }

    .acc-row-head {
        display: grid;
        grid-template-columns: 44px 1fr 32px;
        align-items: center;
        min-height: 64px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        padding: 0 6px;
        transition: background .2s;
        border-radius: 4px;
    }

    /* Fondo hover deslizante */
    .acc-row-bg {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, var(--brand-dark), var(--brand));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .45s cubic-bezier(.4, 0, .2, 1);
        border-radius: 6px;
        z-index: 0;
    }

    .acc-row:hover .acc-row-bg {
        transform: scaleX(1);
    }

    /* Emoji */
    .acc-row-ico {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: transform .45s cubic-bezier(.34, 1.56, .64, 1), filter .35s;
    }

    .acc-row:hover .acc-row-ico {
        transform: scale(1.25);
        filter: brightness(10);
    }

    /* Nombre */
    .acc-row-name {
        position: relative;
        z-index: 1;
        font-family: 'Sora', sans-serif;
        font-size: .88rem;
        font-weight: 600;
        color: var(--text);
        letter-spacing: .01em;
        padding: 0 8px;
        transition: font-size .35s cubic-bezier(.4, 0, .2, 1), color .3s, letter-spacing .35s;
    }

    .acc-row:hover .acc-row-name {
        font-size: 1rem;
        color: #fff;
        letter-spacing: .02em;
    }

    /* Toggle ring */
    .acc-row-tog {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .acc-tog-ring {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        border: 1.5px solid rgba(26, 108, 181, .25);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), background .3s, border-color .3s;
    }

    .acc-tog-line {
        position: relative;
        width: 9px;
        height: 9px;
    }

    .acc-tog-line::before,
    .acc-tog-line::after {
        content: '';
        position: absolute;
        background: var(--muted);
        border-radius: 2px;
        transition: background .25s, transform .4s cubic-bezier(.34, 1.56, .64, 1);
    }

    .acc-tog-line::before {
        width: 9px;
        height: 1.5px;
        top: 3.75px;
        left: 0;
    }

    .acc-tog-line::after {
        width: 1.5px;
        height: 9px;
        top: 0;
        left: 3.75px;
    }

    .acc-row:hover .acc-tog-ring {
        border-color: rgba(255, 255, 255, .4);
        background: rgba(255, 255, 255, .14);
    }

    .acc-row:hover .acc-tog-line::before,
    .acc-row:hover .acc-tog-line::after {
        background: #fff;
    }

    .acc-row.open .acc-tog-ring {
        background: var(--brand);
        border-color: var(--brand);
    }

    .acc-row.open .acc-tog-line::after {
        transform: rotate(90deg) scaleY(0);
    }

    .acc-row.open .acc-tog-line::before {
        background: #fff;
    }

    /* Panel */
    .acc-row-panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
    }

    .acc-row.open .acc-row-panel {
        max-height: 600px;
    }

    .acc-row-body {
        padding: 1.2rem 1rem 1.4rem 2.8rem;
        background: linear-gradient(90deg, rgba(26, 108, 181, .03), transparent);
        border-top: 1px solid rgba(26, 108, 181, .07);
    }

    .acc-row-body ol,
    .acc-row-body ul {
        padding-left: 1rem;
    }

    .acc-row-body li {
        font-size: .84rem;
        color: var(--muted);
        padding: 4px 0;
        line-height: 1.65;
    }

    .acc-row-body li a {
        color: var(--brand);
        text-decoration: none;
        font-weight: 600;
        transition: color .2s;
    }

    .acc-row-body li a:hover {
        color: var(--sky);
        text-decoration: underline;
    }

    .acc-row-body p {
        font-size: .84rem;
        color: var(--muted);
        line-height: 1.7;
    }

    /* PDF BUTTON */
    .pdf-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1.5px solid var(--brand);
        color: var(--brand);
        text-decoration: none;
        padding: 9px 22px;
        border-radius: 999px;
        font-size: .82rem;
        font-weight: 600;
        font-family: 'Sora', sans-serif;
        transition: background .25s, color .25s, transform .2s, box-shadow .2s;
    }

    .pdf-btn:hover {
        background: var(--brand);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(26, 108, 181, .28);
    }

    /* IROWS (contacto) */
    .irows {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .irow {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 8px 14px;
        transition: box-shadow .25s, transform .25s cubic-bezier(.22, 1, .36, 1);
    }

    .irow:hover {
        box-shadow: var(--shadow);
        transform: translateX(4px);
    }

    .irow-ico {
        font-size: .9rem;
        flex-shrink: 0;
    }

    .irow-lbl {
        font-size: .62rem;
        font-weight: 700;
        color: var(--brand);
        text-transform: uppercase;
        letter-spacing: .08em;
        min-width: 56px;
        font-family: 'Sora', sans-serif;
    }

    .irow-val {
        font-size: .82rem;
        color: var(--text);
    }

    .irow-val a {
        color: var(--brand);
        text-decoration: none;
        font-weight: 600;
    }

    .irow-val a:hover {
        text-decoration: underline;
    }


    .stats-bar-transparencia {
        background: linear-gradient(135deg, var(--navy), var(--brand), var(--sky));
        background-size: 200% 200%;
        animation: gradShift 8s ease infinite;
        padding: 1rem 1.4rem;
        display: flex;
        justify-content: center;
        gap: 0;
        flex-wrap: wrap;
    }

    .stat-item-transparencia {
        text-align: center;
        padding: 1rem 2.5rem;
        border-right: 1px solid rgba(255, 255, 255, .15);
        flex: 1;
        min-width: 140px;
        opacity: 0;
        transform: translateY(20px);
        transition: all .6s cubic-bezier(.22, 1, .36, 1);
    }

    .stat-item-transparencia:last-child {
        border-right: none;
    }

    .stat-item-transparencia.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .stat-item-transparencia:hover {
        background: rgba(255, 255, 255, .08);
        border-radius: 12px;
        transform: translateY(-3px);
    }

    .stat-num-transparencia {
        font-family: 'Sora', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: #fff;
        line-height: 1;
    }

    .stat-lbl-transparencia {
        font-size: .72rem;
        color: rgba(255, 255, 255, .72);
        margin-top: .3rem;
        letter-spacing: .05em;
        text-transform: uppercase;
    }

  
    @media(max-width:600px) {
        .transp-title {
            font-size: 2.2rem;
        }

        .transp-header {
            flex-direction: column;
        }

        .transp-header-right {
            border-left: none;
            border-top: 1px solid var(--border);
            padding-left: 0;
            padding-top: .8rem;
            text-align: left;
        }
    }



    /* ============================================================
                              CONTACTOS
        ============================================================ */

    :root {
        --navy: #1a6cb5;
        --navy-mid: #243044;
        --sky: #29aadc;
        --sky-dark: #1a8abf;
        --sky-light: #eaf6fd;
        --brand: #1a6cb5;
        --brand-light: #29aadc;
        --brand-dark: #0d4a82;
        --azul: #1a3358;
        --azul-mid: #254878;
        --azul-lt: #eef2f8;
        --white: #fff;
        --gray: #f4f7fa;
        --bg: #f2f5fb;
        --text: #1a2332;
        --muted: #4a6080;
        --suave: #6b7280;
        --border: rgba(26, 108, 181, 0.13);
        --shadow: 0 4px 24px rgba(26, 51, 88, 0.08);
        --shadow-h: 0 14px 40px rgba(26, 51, 88, 0.16);
        --radius: 16px;
    }

    #acc-tooltip {
        position: fixed;
        bottom: 108px;
        right: 50%;
        transform: translateX(-50%) translateY(14px);
        background: var(--navy);
        color: #fff;
        padding: 9px 22px;
        border-radius: 40px;
        font-size: 13px;
        font-family: 'Sora', sans-serif;
        font-weight: 600;
        letter-spacing: .2px;
        box-shadow: 0 8px 32px rgba(26, 51, 88, .4);
        z-index: 9999990;
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s, transform .22s;
        max-width: 82vw;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: 1px solid rgba(255, 255, 255, .14);
    }

    #acc-tooltip.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    #acc-fab {
        position: fixed !important;
        bottom: 32px;
        left: 32px;
        z-index: 9999999 !important;
        width: 54px;
        height: 54px;
        border-radius: 35px;
        background: var(--navy) !important;
        color: #fff !important;
        border: 1.5px solid rgba(255, 255, 255, .18) !important;
        cursor: pointer;
        box-shadow: 0 8px 30px rgba(26, 51, 88, .52) !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), box-shadow .2s;
        filter: none !important;
        isolation: isolate;
        will-change: transform;
    }

    #acc-fab:hover {
        transform: scale(1.1) translateY(-2px);
    }

    #acc-dot {
        position: absolute;
        top: -4px;
        left: -4px;
        width: 11px;
        height: 11px;
        border-radius: 50%;
        background: var(--sky);
        border: 2px solid #fff;
    }

    #acc-panel {
        position: fixed !important;
        bottom: 38px;
        left: 32px;
        z-index: 9999998 !important;
        width: 312px;
        background: #fff !important;
        border-radius: 22px;
        box-shadow: 0 24px 80px rgba(15, 23, 42, .18), 0 4px 16px rgba(15, 23, 42, .10) !important;
        border: 1px solid rgba(148, 163, 184, .18) !important;
        overflow: hidden;
        transform-origin: bottom left;
        transform: scale(.88) translateY(10px);
        opacity: 0;
        transition: transform .28s cubic-bezier(.34, 1.56, .64, 1), opacity .2s;
        pointer-events: none;
        filter: none !important;
        isolation: isolate;
    }

    #acc-panel.open {
        transform: scale(1) translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .ap-head {
        background: var(--navy) !important;
        padding: 16px 18px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ap-head-l {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .ap-head-ico {
        width: 34px;
        height: 34px;
        border-radius: 10px;
        background: rgba(255, 255, 255, .12) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        color: #fff !important;
        flex-shrink: 0;
    }

    .ap-head-title {
        font-size: 13px !important;
        font-weight: 700;
        color: #fff !important;
        letter-spacing: .3px;
        font-family: 'Sora', sans-serif;
        line-height: 1.25;
    }

    .ap-head-sub {
        font-size: 10px !important;
        color: rgba(255, 255, 255, .5) !important;
        font-family: 'Sora', sans-serif;
        margin-top: 1px;
    }

    .ap-close {
        width: 30px;
        height: 30px;
        border-radius: 9px;
        background: rgba(255, 255, 255, .1) !important;
        border: none !important;
        color: rgba(255, 255, 255, .65) !important;
        cursor: pointer;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .15s, color .15s;
    }

    .ap-close:hover {
        background: rgba(255, 255, 255, .22) !important;
        color: #fff !important;
    }

    .ap-body {
        padding: 14px 14px 6px;
        display: flex;
        flex-direction: column;
        gap: 7px;
        background: #f8fafc !important;
        max-height: 72vh;
        overflow-y: auto;
    }

    .ap-lbl {
        font-size: 9px !important;
        font-weight: 700;
        color: #94a3b8 !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 4px 4px 0;
        font-family: 'Sora', sans-serif;
    }

    .ap-card {
        background: #fff !important;
        border: 1px solid rgba(148, 163, 184, .16) !important;
        border-radius: 14px;
        padding: 13px 14px;
        display: flex;
        align-items: center;
        gap: 11px;
    }

    .ap-card-ico {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: var(--azul-lt) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: var(--azul) !important;
        flex-shrink: 0;
        font-weight: 700;
    }

    .ap-card-info {
        flex: 1;
        min-width: 0;
    }

    .ap-card-name {
        font-size: 12px !important;
        font-weight: 700;
        color: #1e293b !important;
        font-family: 'Sora', sans-serif;
        line-height: 1.3;
    }

    .ap-card-desc {
        font-size: 10px !important;
        color: #94a3b8 !important;
        margin-top: 1px;
        font-family: 'Sora', sans-serif;
    }

    .ap-sz {
        display: flex;
        align-items: center;
        gap: 5px;
        flex-shrink: 0;
    }

    .ap-sz-btn {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        background: var(--azul-lt) !important;
        border: none !important;
        color: var(--azul) !important;
        font-size: 17px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background .15s, transform .12s;
    }

    .ap-sz-btn:hover {
        background: var(--azul) !important;
        color: #fff !important;
        transform: scale(1.08);
    }

    .ap-sz-val {
        font-size: 11px !important;
        font-weight: 700;
        color: var(--sky) !important;
        min-width: 36px;
        text-align: center;
        font-family: 'Sora', sans-serif;
    }

    .ap-sw {
        position: relative;
        width: 44px;
        height: 25px;
        flex-shrink: 0;
        cursor: pointer;
    }

    .ap-sw input {
        opacity: 0;
        width: 0;
        height: 0;
        position: absolute;
    }

    .ap-sw-track {
        position: absolute;
        inset: 0;
        background: #e2e8f0 !important;
        border-radius: 25px;
        transition: background .25s;
        border: 1px solid rgba(148, 163, 184, .22) !important;
    }

    .ap-sw-track::before {
        content: '';
        position: absolute;
        left: 3px;
        top: 3px;
        width: 17px;
        height: 17px;
        background: #fff !important;
        border-radius: 50%;
        transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
        box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
    }

    .ap-sw input:checked~.ap-sw-track {
        background: var(--navy) !important;
        border-color: var(--navy) !important;
    }

    .ap-sw input:checked~.ap-sw-track::before {
        transform: translateX(19px);
    }

    .ap-voice-row {
        display: flex;
        gap: 7px;
        width: 100%;
    }

    .ap-vbtn {
        flex: 1;
        height: 34px;
        border-radius: 10px;
        background: var(--azul-lt) !important;
        border: 1px solid rgba(148, 163, 184, .14) !important;
        color: var(--azul) !important;
        font-size: 11px !important;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        transition: background .15s, color .15s;
        font-family: 'Sora', sans-serif;
    }

    .ap-vbtn.play:hover {
        background: var(--navy) !important;
        color: #fff !important;
        border-color: transparent !important;
    }

    .ap-vbtn.stop:hover {
        background: #dc2626 !important;
        color: #fff !important;
        border-color: transparent !important;
    }

    .ap-vbtn.active {
        background: var(--navy) !important;
        color: #fff !important;
        border-color: transparent !important;
    }

    .ap-vstatus {
        font-size: 10px !important;
        color: #94a3b8 !important;
        text-align: center;
        min-height: 14px;
        padding: 1px 0;
        font-family: 'Sora', sans-serif;
        transition: color .2s;
    }

    .ap-vstatus.on {
        color: var(--sky) !important;
        font-weight: 700;
    }

    .ap-footer {
        padding: 10px 14px 14px;
        background: #fff !important;
        border-top: 1px solid rgba(148, 163, 184, .1) !important;
    }

    .ap-reset {
        width: 100%;
        height: 34px;
        border-radius: 10px;
        background: transparent !important;
        border: 1px solid rgba(220, 38, 38, .22) !important;
        color: #dc2626 !important;
        font-size: 11px !important;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        transition: background .15s;
        font-family: 'Sora', sans-serif;
    }

    .ap-reset:hover {
        background: #fef2f2 !important;
        border-color: #dc2626 !important;
    }

    body.acc-hc-on>*:not(#acc-fab):not(#acc-panel):not(#acc-tooltip) {
        filter: contrast(1.65) brightness(0.88);
    }

    body.acc-hc-on h1,
    body.acc-hc-on h2,
    body.acc-hc-on h3,
    body.acc-hc-on a {
        color: #ffe066 !important;
    }

    body.acc-kb *:focus {
        outline: 2.5px solid #f59e0b !important;
        outline-offset: 3px !important;
        border-radius: 6px;
    }

    .acc-reading {
        outline: 2px solid var(--sky) !important;
        outline-offset: 3px;
        border-radius: 4px;
        background: rgba(41, 170, 220, .08) !important;
    }

    @media(max-width:600px) {
        .transp-title {
            font-size: 2.2rem;
        }

        .transp-header {
            flex-direction: column;
        }

        .transp-header-right {
            border-left: none;
            border-top: 1px solid var(--border);
            padding-left: 0;
            padding-top: .8rem;
            text-align: left;
        }
    }
    
    
    
    
    
    /*=====================================
                   DIAN
    ========================================*/
   
        .panel-body {
            border-radius: 10px;
            margin: auto;
            box-shadow: 0 6px 15px rgba(48, 148, 214, 0.2);

        }

        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .fade-in.show {
            opacity: 1;
            transform: translateY(0);
        }
         
          .actualizacion-container {
            margin-top: 60px;
            margin-bottom: 60px;
        }

        .card-actualizacion {
            background: #fff;
            border-radius: 20px;
            padding: 45px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
            border-top: 6px solid #0A4D8C;
        }

        .encabezado-formulario-dian {
            text-align: center;
            margin-bottom: 35px;
        }

        .icono-seguridad-dian {
            width: 85px;
            height: 85px;
            margin: auto;
            border-radius: 50%;
            background: #eef6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .icono-seguridad-dian i {
            font-size: 4rem;
            color: #0A4D8C;
        }

        .encabezado-formulario-dian h1 {
            color: #0A2D57;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .encabezado-formulario-dian p {
            font-size: 1.3rem;
            line-height: 1.9;
            color: #5b6470;
        }

        .alerta-dian {
            background: #f2f8ff;
            border-left: 5px solid #0A4D8C;
            padding: 18px;
            font-size: 1.1rem;
            border-radius: 10px;
            margin-bottom: 35px;
            color: #34495e;
        }

        .alerta-dian i {
            color: #0A4D8C;
            margin-right: 8px;
        }

        .seccion-dian {
            margin-bottom: 25px;
        }

        .seccion-dian h4 {
            color: #0A2D57;
            font-weight: 700;
            border-bottom: 2px solid #e8eef5;
            padding-bottom: 10px;
        }

        .form-group-dian {
            margin-bottom: 22px;
        }

        .form-group-dian label {
            color: #0A2D57;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .custom-control-dian {
            height: 52px;
            border-radius: 12px;
            border: 1px solid #d9e2ec;
            box-shadow: none;
            transition: .3s;
        }

        .custom-control-dian:focus {
            border-color: #0A4D8C;
            box-shadow: 0 0 0 4px rgba(10, 77, 140, .12);
        }

        .politica-box-dian {
            margin-top: 20px;
            padding: 25px;
            background: #fafbfd;
            border: 1px solid #e5edf5;
            border-radius: 15px;
        }

        .politica-box-dian h5 {
            color: #0A2D57;
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .politica-box-dian p {
            color: #5d6673;
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .politica-box-dian a {
            color: #0A4D8C;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            font-size: .99rem;
        }

        .radio-container-dian {
            margin-top: 15px;
        }

        .radio-inline-dian {
            margin-right: 25px;
            font-weight: 600;
        }

        .radio-card-group-dian {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }

        .radio-card-group-dian input[type="radio"] {
            display: none;
        }

        .radio-card-dian {
            flex: 1;
            min-width: 180px;
            padding: 15px 20px;
            border: 2px solid #d7e1ec;
            border-radius: 12px;
            background: #fff;
            cursor: pointer;
            font-weight: 600;
            text-align: center;
            transition: all .25s ease;
            color: #495057;
        }

        .radio-card-dian:hover {
            border-color: #0A4D8C;
            transform: translateY(-2px);
        }



        #autoriza_si:checked+.radio-card-dian {
            background: #e8f5ec;
            border-color: #28a745;
            color: #1d6d32;
            box-shadow: 0 4px 15px rgba(40, 167, 69, .15);
        }

        #autoriza_no:checked+.radio-card-dian {
            background: #fff1f1;
            border-color: #dc3545;
            color: #b02a37;
            box-shadow: 0 4px 15px rgba(220, 53, 69, .15);
        }

        .btn-guardar-dian {
            background: #0A4D8C;
            color: white;
            border: none;
            padding: 15px 45px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            letter-spacing: .5px;
            transition: .3s;
        }

        .btn-guardar-dian:hover {
            background: #083b6a;
            transform: translateY(-2px);
        }

        @media(max-width:768px) {

            .card-actualizacion {
                padding: 25px;
            }

            .encabezado-formulario-dian h1 {
                font-size: 1.5rem;
            }

            .encabezado-formulario-dian p {
                font-size: 1.4rem;
            }

        }
       