
    /* ─── CURSOR PERSONALIZADO ─── */
    #cursor {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      pointer-events: none;
      mix-blend-mode: difference;
    }

    #cursor-dot {
      width: 8px;
      height: 8px;
      background: #fff;
      border-radius: 50%;
      position: absolute;
      transform: translate(-50%, -50%);
      transition: width .15s, height .15s;
    }

    #cursor-ring {
      width: 36px;
      height: 36px;
      border: 1.5px solid #fff;
      border-radius: 50%;
      position: absolute;
      transform: translate(-50%, -50%);
      transition: width .25s, height .25s, transform .08s;
    }

    body:has(a:hover) #cursor-ring,
    body:has(button:hover) #cursor-ring {
      width: 52px;
      height: 52px;
    }

    /* ─── MARQUEE ─── */
    .marquee-wrap {
      overflow: hidden;
      background: #3D1E8A;
      padding: 10px 0;
    }

    .marquee-track {
      display: flex;
      gap: 0;
      white-space: nowrap;
      animation: marquee 22s linear infinite;
    }

    .marquee-track span {
      padding: 0 32px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .7);
    }

    .marquee-track span.hi {
      color: #F0C040;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    

    /* Hero bottom bar */
    .hero-bottom {
      position: relative;
      z-index: 2;
      background: rgba(255, 255, 255, .04);
      backdrop-filter: blur(8px);
      border-top: 1px solid rgba(255, 255, 255, .08);
      display: flex;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .hero-bottom::-webkit-scrollbar {
      display: none;
    }

    .hbtn {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 18px 24px;
      border-right: 1px solid rgba(255, 255, 255, .06);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .55);
      transition: all .15s;
      cursor: none;
      position: relative;
      overflow: hidden;
    }

    .hbtn::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: #F0C040;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .22s;
    }

    .hbtn:hover {
      color: #fff;
      background: rgba(255, 255, 255, .05);
    }

    .hbtn:hover::before {
      transform: scaleX(1);
    }

    .hbtn.primary {
      background: #F0C040;
      color: #1A0A3E;
    }

    .hbtn.primary:hover {
      background: #ffd23a;
    }

    .hbtn.primary::before {
      display: none;
    }

    .hbtn-ico {
      font-size: 14px;
    }

    .hbtn-label {
      line-height: 1.3;
    }

    /* ─── SECCIÓN: wrapper genérico ─── */
    .s {
      padding: 100px 60px;
    }

    .s-alt {
      background: #fff;
    }

    .s-dark {
      background: #1A0A3E;
    }

    .s-mid {
      background: #EAE7FF;
    }

    .s-ink {
      background: #F2F0EC;
    }

    /* ─── NÚMERO BIG ─── */
    .bignumber {
      font-size: clamp(100px, 18vw, 200px);
      font-weight: 900;
      letter-spacing: -.04em;
      line-height: .85;
      -webkit-text-stroke: 1.5px currentColor;
      color: transparent;
      opacity: .08;
      pointer-events: none;
      select: none;
      position: absolute;
    }

    /* ─── LÍNEA DIVISORA ─── */
    .rule {
      height: 1px;
      background: currentColor;
      opacity: .12;
      margin: 0;
    }

    /* ─── §1 QUÉ ES ─── */
    #que-es {
      position: relative;
      overflow: hidden;
      display: grid;
      /* grid-template-columns: 1fr 1fr; */
      gap: 0;
      min-height: 80vh;
    }

    .qe-left {
      padding: 80px 60px;
      background: #1A0A3E;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .qe-left .bignumber {
      color: #fff;
      top: -20px;
      right: -20px;
      font-size: clamp(120px, 16vw, 220px);
    }

    .qe-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: #F0C040;
      margin-bottom: 20px;
    }

    .qe-h {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      position: relative;
      z-index: 1;
    }

    .qe-h em {
      font-style: italic;
      color: #F0C040;
    }

    .qe-right {
      padding: 80px 60px;
      background: #F2F0EC;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 28px;
    }

    .qe-body p {
      font-size: 15px;
      color: #3D2A6E;
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .qe-body p:last-child {
      margin-bottom: 0;
    }

    .qe-quote {
      border-left: 3px solid #3D1E8A;
      padding-left: 24px;
      margin-top: 8px;
    }

    .qe-quote q {
      font-size: 14px;
      font-style: italic;
      color: #1A0A3E;
      font-weight: 700;
      line-height: 1.7;
      quotes: none;
    }

    .qe-quote cite {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #7B6FA0;
      margin-top: 8px;
      font-style: normal;
    }

    /* ─── §2 CONVOCATORIA ─── */
    #convocatoria {
      background: #fff;
      padding: 0;
    }

    .conv-header {
      padding: 80px 60px 0;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 40px;
      align-items: end;
    }

    .conv-num {
      font-size: clamp(80px, 14vw, 160px);
      font-weight: 900;
      color: #EAE7FF;
      line-height: 1;
      letter-spacing: -.04em;
      flex-shrink: 0;
    }

    .conv-titles {
      padding-bottom: 16px;
    }

    .conv-titles h2 {
      font-size: clamp(28px, 4vw, 48px);
      font-weight: 900;
      color: #1A0A3E;
      line-height: 1.1;
    }

    .conv-titles p {
      font-size: 14px;
      color: #7B6FA0;
      margin-top: 10px;
      /* max-width: 480px; */
    }


   

    .ci-n {
      font-size: 25px;
      font-weight: 850;
      letter-spacing: .1em;
      color: #B0A0EC;
    }

    .ci-title {
      font-size: 18px;
      font-weight: 800;
      color: #1A0A3E;
      line-height: 1.4;
    }

    .ci-body {
      font-size: 14px;
      color: #7B6FA0;
      line-height: 1.65;
    }

    /* ─── §3 REQUISITOS ─── */
    #requisitos {
      background: #1A0A3E;
      padding: 0;
      display: grid;
      grid-template-columns: 280px 1fr;
    }

    .req-sidebar {
      padding: 90px 30px;
      background: #442b75;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border-right: 1px solid rgba(255, 255, 255, .06);
      position: sticky;
      top: 62px;
      height: calc(100vh - 62px);
      overflow: hidden;
    }

    .req-sidebar h2 {
      font-size: clamp(22px, 2.5vw, 32px);
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
    }

    .req-sidebar h2 em {
      color: #F0C040;
      font-style: italic;
    }

    .req-sidebar .s-label {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 16px;
    }

    .req-count {
      font-size: clamp(60px, 8vw, 100px);
      font-weight: 900;
      color: #F0C040;
      line-height: 1;
      letter-spacing: -.03em;
    }

    .req-count span {
      font-size: 40%;
      color: rgba(255, 255, 255, .2);
    }

    .req-list {
      padding: 20px 50px;
    }

    .req-row {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid rgb(132 88 164 / 21%);
      align-items: start;
      transition: all .2s;
    }

    .req-row:last-child {
      border-bottom: none;
    }

    .req-row:hover .rn {
      background: #F0C040;
      color: #1A0A3E;
    }

    /* .rn {
      width: 36px;
      height: 36px;
      background: rgba(0, 157, 125, 0.695);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 800;
      color: #ffffff;
      transition: all .2s;
      margin-top: 2px;
    } */

    .rt {
      font-size: 16px;
      color: rgba(0, 0, 0, 0.82);
      line-height: 1.65;
      font-weight: 500;
    }

    .icono {
    width: 55px;
    height: 55px;
    vertical-align: middle;
    align-items: center;
    animation: float 3s ease-in-out infinite;
}



@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
    100% { transform: translateY(0px); }
}



    .req-row:hover .rt {
      color: #F0C040;
    }

    /* ─── §4 PERIODO ─── */
    #periodo {
      background: #F2F0EC;
      padding: 100px 60px;
      position: relative;
      overflow: hidden;
    }

    .periodo-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 64px;
      align-items: end;
    }

    .periodo-h {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 900;
      color: #1A0A3E;
      line-height: 1.1;
    }

    .periodo-h em {
      color: #3D1E8A;
      font-style: italic;
    }

    .periodo-sub {
      font-size: 14px;
      color: #7B6FA0;
      line-height: 1.8;
    }

    .periodo-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: #D0CADE;
    }

    .ps-item {
      background: #F2F0EC;
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: background .22s;
    }

    .ps-item:hover {
      background: #fff;
    }

    .ps-item::before {
      content: attr(data-n);
      position: absolute;
      top: -10px;
      right: 16px;
      font-size: clamp(80px, 12vw, 130px);
      font-weight: 900;
      color: #3D1E8A;
      opacity: .05;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .ps-icon {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .ps-title {
      font-size: 17px;
      font-weight: 800;
      color: #1A0A3E;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .ps-text {
      font-size: 13px;
      color: #7B6FA0;
      line-height: 1.75;
    }

    /* ─── §5 MÁS TIEMPO ─── */
    #mas-tiempo {
      background: #3D1E8A;
      padding: 80px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .mt-left h2 {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .mt-left p {
      font-size: 14px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.8;
    }

    .mt-items {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .mt-item {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      cursor: default;
      transition: all .2s;
      position: relative;
      overflow: hidden;
    }

    .mt-item:first-child {
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    .mt-item::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, .04);
      transform: translateX(-100%);
      transition: transform .3s;
    }

    .mt-item:hover::before {
      transform: translateX(0);
    }

    .mt-item:hover .mt-num {
      color: #F0C040;
    }

    .mt-num {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 900;
      color: rgba(255, 255, 255, .15);
      line-height: 1;
      flex-shrink: 0;
      min-width: 60px;
      transition: color .2s;
    }

    .mt-info {
      position: relative;
      z-index: 1;
    }

    .mt-info h4 {
      font-size: 14px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 4px;
    }

    .mt-info span {
      font-size: 11px;
      color: rgba(255, 255, 255, .45);
      font-weight: 600;
      letter-spacing: .06em;
    }

    /* ─── §6 A.C. SAT BANCO ─── */
    #ac-sat {
      background: #fff;
      padding: 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .ac-text {
      padding: 80px 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .ac-text h2 {
      font-size: clamp(24px, 3.5vw, 44px);
      font-weight: 900;
      color: #1A0A3E;
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .ac-text h2 strong {
      color: #3D1E8A;
    }

    .ac-text p {
      font-size: 14px;
      color: #7B6FA0;
      line-height: 1.8;
    }

    .ac-steps-panel {
      background: #F2F0EC;
      border-left: 1px solid #E0DAEE;
      display: flex;
      flex-direction: column;
    }

    .ac-step {
      padding: 40px 48px;
      border-bottom: 1px solid #E0DAEE;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      transition: background .2s;
      cursor: default;
    }

    .ac-step:last-child {
      border-bottom: none;
    }

    .ac-step:hover {
      background: #EAE7FF;
    }

    .ac-step:hover .as-n {
      background: #3D1E8A;
      color: #fff;
    }

    .as-n {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
      background: #fff;
      border: 1.5px solid #D0CADE;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 800;
      color: #3D1E8A;
      transition: all .2s;
      margin-top: 2px;
    }

    .as-title {
      font-size: 14px;
      font-weight: 800;
      color: #1A0A3E;
      margin-bottom: 6px;
    }

    .as-text {
      font-size: 12px;
      color: #7B6FA0;
      line-height: 1.7;
    }

    /* ─── §7 DOCS AC ─── */
    #docs-ac {
      background: #EAE7FF;
      padding: 80px 60px;
    }

    .da-head {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-bottom: 56px;
      align-items: end;
    }

    .da-head h2 {
      font-size: clamp(24px, 3.5vw, 44px);
      font-weight: 900;
      color: #1A0A3E;
      line-height: 1.15;
    }

    .da-head h2 em {
      color: #3D1E8A;
      font-style: italic;
    }

    .da-head p {
      font-size: 14px;
      color: #5A4E7A;
      line-height: 1.8;
    }

    .da-list {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0;
      border: 1px solid #C8C0E0;
      background: #C8C0E0;
    }

    .da-item {
      background: #EAE7FF;
      padding: 28px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: background .2s;
      cursor: default;
    }

    .da-item:hover {
      background: #fff;
    }

    .da-item:hover .da-ico {
      background: #3D1E8A;
      color: #fff;
    }

    .da-ico {
      width: 40px;
      height: 40px;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      transition: all .2s;
      flex-shrink: 0;
    }

    .da-text {
      font-size: 11px;
      color: #3D2A6E;
      font-weight: 600;
      line-height: 1.55;
    }

    /* ─── §8 FÓRMULA ─── */
    #formula {
      background: #1A0A3E;
      padding: 100px 60px;
    }

    .fm-head {
      margin-bottom: 64px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
    }

    .fm-head h2 {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
    }

    .fm-head h2 em {
      color: #F0C040;
      font-style: italic;
    }

    .fm-head p {
      font-size: 14px;
      color: rgba(255, 255, 255, .5);
      max-width: 380px;
      line-height: 1.75;
      text-align: right;
    }

    .fm-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 1px;
      background: rgba(255, 255, 255, .1);
    }

    .fm-item {
      background: #1A0A3E;
      padding: 48px 40px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: background .2s;
    }

    .fm-item:hover {
      background: #2D1870;
    }

    .fm-item-n {
      font-size: clamp(60px, 8vw, 90px);
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.03em;
      -webkit-text-stroke: 1px rgba(255, 255, 255, .2);
      color: transparent;
      transition: color .2s, -webkit-text-stroke .2s;
    }

    .fm-item:hover .fm-item-n {
      color: #F0C040;
      -webkit-text-stroke-color: transparent;
    }

    .fm-item-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
    }

    .fm-item-title {
      font-size: 20px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }

    .fm-item-text {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.75;
    }

    .fm-item-tag {
      align-self: flex-start;
      padding: 4px 12px;
      background: rgba(255, 255, 255, .07);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      border: 1px solid rgba(255, 255, 255, .1);
    }

    /* ─── §9 FIRMAS ─── */
    #firmas {
      background: #F2F0EC;
      padding: 100px 60px;
    }

    .firmas-layout {
      display: grid;
      grid-template-columns: 400px 1fr;
      gap: 80px;
    }

    .firmas-left {}

    .firmas-left h2 {
      font-size: clamp(26px, 3.8vw, 46px);
      font-weight: 900;
      color: #1A0A3E;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .firmas-left h2 em {
      color: #3D1E8A;
      font-style: italic;
    }

    .firmas-left p {
      font-size: 14px;
      color: #7B6FA0;
      line-height: 1.8;
      margin-bottom: 32px;
    }

    .firmas-bignum {
      font-size: clamp(80px, 14vw, 160px);
      font-weight: 900;
      color: #3D1E8A;
      line-height: 1;
      letter-spacing: -.04em;
    }

    .firmas-bignum-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #B0A0D0;
      margin-top: 6px;
    }

    .firmas-acc {
      display: flex;
      flex-direction: column;
      gap: 0;
      border: 1px solid #D8D0F0;
    }

    .fa-item {
      border-bottom: 1px solid #D8D0F0;
      overflow: hidden;
    }

    .fa-item:last-child {
      border-bottom: none;
    }

    .fa-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 32px;
      cursor: pointer;
      transition: background .15s;
      gap: 16px;
      background: #fff;
    }

    .fa-header:hover {
      background: #F8F7FF;
    }

    .fa-item.open .fa-header {
      background: #EAE7FF;
    }

    .fa-htitle {
      font-size: 14px;
      font-weight: 800;
      color: #1A0A3E;
    }

    .fa-htag {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #B0A0D0;
      flex-shrink: 0;
    }

    .fa-plus {
      width: 28px;
      height: 28px;
      background: #EAE7FF;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 300;
      color: #3D1E8A;
      transition: all .22s;
    }

    .fa-item.open .fa-plus {
      background: #3D1E8A;
      color: #fff;
      transform: rotate(45deg);
    }

    .fa-body {
      display: none;
      padding: 0 32px 28px;
      background: #fff;
    }

    .fa-item.open .fa-body {
      display: block;
    }

    .fa-body p {
      font-size: 13px;
      color: #7B6FA0;
      line-height: 1.75;
      border-top: 1px solid #EAE7FF;
      padding-top: 20px;
    }

    .fa-body strong {
      color: #3D1E8A;
    }

    /* ─── §10 TIEMPO FIRMAS ─── */
    #tiempo-firmas {
      background: #3D1E8A;
      padding: 0;
      display: grid;
      grid-template-columns: 360px 1fr;
    }

    .tf-left {
      padding: 80px 48px;
      border-right: 1px solid rgba(255, 255, 255, .1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .tf-left h2 {
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 900;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .tf-left p {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.8;
    }

    .tf-left .tf-note {
      padding: 20px;
      background: rgba(255, 255, 255, .07);
      border-left: 3px solid #F0C040;
      margin-top: 32px;
      font-size: 12px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.7;
    }

    .tf-rows {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .tf-row {
      padding: 48px 56px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      transition: background .2s;
      cursor: default;
    }

    .tf-row:last-child {
      border-bottom: none;
    }

    .tf-row:hover {
      background: rgba(255, 255, 255, .05);
    }

    .tf-row:hover .tf-days {
      color: #F0C040;
    }

    .tf-row-title {
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 8px;
    }

    .tf-row-body {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      line-height: 1.7;
      max-width: 400px;
    }

    .tf-row-bar {
      height: 3px;
      background: rgba(255, 255, 255, .1);
      margin-top: 16px;
      overflow: hidden;
    }

    .tf-row-fill {
      height: 100%;
      background: #F0C040;
      transform-origin: left;
      transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
    }

    .tf-days {
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 900;
      color: rgba(255, 255, 255, .15);
      line-height: 1;
      letter-spacing: -.03em;
      transition: color .2s;
      text-align: right;
    }

    .tf-days-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .25);
      text-align: right;
    }

    /* ─── §11 MIGRANTE ─── */
    #migrante {
      background: #F2F0EC;
      padding: 0;
    }

    .mig-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 70vh;
    }

    .mig-left {
      padding: 80px 60px;
      background: #120828;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .mig-left h2 {
      font-size: clamp(28px, 4vw, 52px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .mig-left h2 em {
      color: #F0C040;
      font-style: italic;
    }

    .mig-left p {
      font-size: 14px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .mig-left p:last-of-type {
      margin-bottom: 32px;
    }

    .mig-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: rgba(240, 192, 64, .12);
      border: 1px solid rgba(240, 192, 64, .25);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #F0C040;
      margin-bottom: 28px;
      align-self: flex-start;
    }

    .mig-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      padding: 14px 28px;
      background: #F0C040;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #1A0A3E;
      transition: background .15s;
      align-self: flex-start;
    }

    .mig-cta:hover {
      background: #ffd23a;
    }

    .mig-cta-arrow {
      transition: transform .2s;
    }

    .mig-cta:hover .mig-cta-arrow {
      transform: translateX(4px);
    }

    .mig-right {
      position: relative;
      overflow: hidden;
      background: #2D1870;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px;
    }

    .mig-img-placeholder {
      text-align: center;
      padding: 60px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .mig-img-placeholder .globe {
      font-size: 100px;
      opacity: .25;
      animation: spin 20s linear infinite;
    }

    @keyframes spin {
      from {
        transform: rotate(0);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .mig-img-placeholder p {
      font-size: 11px;
      color: rgba(255, 255, 255, .25);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .mig-stat {
      position: absolute;
      bottom: 32px;
      left: 32px;
      background: #F0C040;
      padding: 16px 20px;
    }

    .mig-stat-n {
      font-size: 28px;
      font-weight: 900;
      color: #1A0A3E;
      line-height: 1;
    }

    .mig-stat-l {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(26, 10, 62, .6);
    }

    /* ─── §12 FAQ ─── */
    #faq-link {
      background: #F2F0EC;
      padding: 80px 60px;
    }

    .faq-block {
      background: #1A0A3E;
      padding: 64px 72px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      position: relative;
      overflow: hidden;
      transition: transform .25s, box-shadow .25s;
    }

    .faq-block:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 60px rgba(26, 10, 62, .3);
    }

    .faq-block::before {
      content: '"??"';
      position: absolute;
      right: -20px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 200px;
      font-weight: 900;
      color: rgba(255, 255, 255, .025);
      line-height: 1;
      pointer-events: none;
    }

    .faq-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .35);
      margin-bottom: 12px;
    }

    .faq-title {
      font-size: clamp(22px, 3.5vw, 42px);
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 12px;
    }

    .faq-title span {
      color: #F0C040;
    }

    .faq-sub {
      font-size: 14px;
      color: rgba(255, 255, 255, .5);
      max-width: 500px;
      line-height: 1.7;
    }

    .faq-btn {
      display: flex;
      align-items: center;
      gap: 0;
      background: #F0C040;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      transition: background .15s;
    }

    .faq-btn:hover {
      background: #ffd23a;
    }

    .faq-btn-inner {
      padding: 22px 32px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #1A0A3E;
    }

    .faq-btn-arrow {
      width: 64px;
      height: 64px;
      background: #1A0A3E;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #F0C040;
      transition: transform .2s;
      align-self: stretch;
    }

    .faq-block:hover .faq-btn-arrow {
      transform: translateX(4px);
    }

    /* ─── FOOTER ─── */
    footer {
      background: #120828;
      padding: 0;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 320px 1fr 1fr 1fr;
      gap: 0;
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .ft-brand {
      padding: 56px 40px;
      border-right: 1px solid rgba(255, 255, 255, .07);
    }

    .ft-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .ft-logo-mark {
      width: 32px;
      height: 32px;
      background: #F0C040;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 900;
      color: #1A0A3E;
    }

    .ft-logo-name {
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      letter-spacing: .05em;
    }

    .ft-brand p {
      font-size: 11px;
      color: rgba(255, 255, 255, .4);
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .ft-socials {
      display: flex;
      gap: 6px;
    }

    .ft-soc {
      width: 32px;
      height: 32px;
      background: rgba(255, 255, 255, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: rgba(255, 255, 255, .45);
      transition: all .15s;
      border: 1px solid rgba(255, 255, 255, .06);
    }

    .ft-soc:hover {
      background: #3D1E8A;
      color: #fff;
      border-color: #3D1E8A;
    }

    .ft-col {
      padding: 56px 40px;
      border-right: 1px solid rgba(255, 255, 255, .07);
    }

    .ft-col:last-child {
      border-right: none;
    }

    .ft-col h5 {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .25);
      margin-bottom: 20px;
    }

    .ft-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ft-col a {
      font-size: 12px;
      color: rgba(255, 255, 255, .5);
      transition: .15s;
    }

    .ft-col a:hover {
      color: #fff;
    }

    .footer-bot {
      padding: 18px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
    }

    .footer-bot p {
      font-size: 10px;
      color: rgba(255, 255, 255, .2);
      letter-spacing: .05em;
    }

    .footer-bot-links {
      display: flex;
      gap: 16px;
    }

    .footer-bot-links a {
      font-size: 10px;
      color: rgba(255, 255, 255, .25);
      transition: .15s;
      letter-spacing: .04em;
    }

    .footer-bot-links a:hover {
      color: rgba(255, 255, 255, .6);
    }

    /* ─── RESPONSIVE ─── */
    @media(max-width:1024px) {

      .s,
      .qe-left,
      .qe-right,
      .s-dark,
      .s-mid,
      .s-ink {
        padding: 60px 40px;
      }

      #que-es {
        grid-template-columns: 1fr;
      }

      .req-sidebar {
        position: static;
        height: auto;
      }

      #requisitos {
        grid-template-columns: 1fr;
      }

      .req-list {
        padding: 40px;
      }

      .conv-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      #ac-sat {
        grid-template-columns: 1fr;
      }

      .firmas-layout {
        grid-template-columns: 1fr;
      }

      #tiempo-firmas {
        grid-template-columns: 1fr;
      }

      .tf-left {
        padding: 60px 40px;
      }

      .mig-inner {
        grid-template-columns: 1fr;
      }

      .faq-block {
        grid-template-columns: 1fr;
        padding: 48px 40px;
      }

      .footer-top {
        grid-template-columns: 1fr 1fr;
      }

      .ft-brand {
        grid-column: span 2;
      }

      #mas-tiempo {
        grid-template-columns: 1fr;
        padding: 60px 40px;
      }

      .fm-grid {
        grid-template-columns: 1fr;
      }

      .da-list {
        grid-template-columns: repeat(3, 1fr);
      }

      .periodo-strip {
        grid-template-columns: 1fr;
      }

      .periodo-head {
        grid-template-columns: 1fr;
      }

      .hero-body {
        grid-template-columns: 1fr;
        padding: 60px 40px 0;
      }

      .hero-right {
        display: none;
      }



      nav .nav-cta {
        display: none;
      }

      .nav-ham {
        display: flex;
      }

      .conv-header {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .conv-num {
        display: none;
      }
    }

    @media(max-width:768px) {

      .s,
      .qe-left,
      .qe-right {
        padding: 56px 24px;
      }

      nav {
        padding: 0;
      }

      .nav-logo {
        padding: 0 18px;
      }

      .conv-header {
        padding: 10px 24px 0;
      }

      .conv-grid {
        grid-template-columns: 1fr;
        border-top: 1px solid #E8E4F2;
      }

      .da-list {
        grid-template-columns: repeat(2, 1fr);
      }

      .fm-grid,
      .periodo-strip {
        grid-template-columns: 1fr;
      }

      .hero-body {
        padding: 40px 24px 0;
      }

      .hero h1 {
        font-size: clamp(44px, 12vw, 72px);
      }

      .hero-bottom {
        flex-direction: column;
      }

      .hbtn {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
      }

      .da-list {
        grid-template-columns: 1fr 1fr;
      }

      .footer-top {
        grid-template-columns: 1fr;
      }

      .ft-brand {
        grid-column: span 1;
      }

      .faq-block {
        padding: 36px 28px;
      }

      .tf-row {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .tf-days {
        font-size: clamp(40px, 8vw, 60px);
      }

      #mas-tiempo {
        padding: 56px 24px;
      }

      .mig-left {
        padding: 60px 28px;
      }

      #firmas {
        padding: 60px 28px;
      }
    }

    @media(max-width:480px) {
      body {
        cursor: auto;
      }

      #cursor {
        display: none;
      }

      .hero-h1 {
        font-size: clamp(40px, 12vw, 68px);
      }

      .req-list {
        padding: 28px 24px;
      }

      .da-list {
        grid-template-columns: 1fr;
      }
    }
