  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;

  }

  :root {
      --N: #0a2540;
      --N2: #12355e;
      --R: #bf3a2b;
      --R2: #d9503f;
      --W: #fff;
      --G: #f6f8fb;
      --G2: #edf0f5;
      --M: #68788a;
      --BD: #dde3ec;
      --T: #18232f
  }

  html {
      scroll-behavior: smooth
  }

  body {
      font-family: 'Inter', sans-serif;
      background: var(--W);
      color: var(--T);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased
  }

  /* NAV — fuera de cualquier media query */
  #hd {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 900;
      height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5vw;
      background: rgba(255, 255, 255, .97);
      border-bottom: 1px solid transparent;
      transition: border-color .3s, box-shadow .3s
  }

  #hd.on {
      border-color: var(--BD);
      box-shadow: 0 2px 24px rgba(10, 37, 64, .07)
  }


  .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none
  }

  .logo svg {
      width: 34px;
      height: 34px
  }

  .logo-t {
      display: flex;
      flex-direction: column
  }

  .logo-t em {
      font-size: .56rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--M);
      font-style: normal;
      font-weight: 500
  }

  .logo-t strong {
      font-family: 'Sora', sans-serif;
      font-size: .95rem;
      color: var(--N)
  }

  .nav-links {
      display: flex;
      align-items: center;
      gap: 2.2rem
  }

  .nav-links a {
      text-decoration: none;
      font-size: .8rem;
      font-weight: 500;
      color: var(--T);
      transition: color .2s
  }

  .nav-links a:hover {
      color: var(--N)
  }

  .nav-cta {
      background: var(--R) !important;
      color: #fff !important;
      padding: .5rem 1.25rem;
      font-weight: 600 !important;
      transition: background .25s !important;
      display: inline-block
  }

  .nav-cta:hover {
      background: var(--R2) !important
  }

  .brgr {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer
  }

  .brgr span {
      display: block;
      width: 21px;
      height: 1.8px;
      background: var(--N)
  }

  .mob {
      display: none;
      position: fixed;
      top: 66px;
      left: 0;
      right: 0;
      background: var(--W);
      border-bottom: 1px solid var(--BD);
      padding: 1.4rem 5vw;
      flex-direction: column;
      gap: 1.1rem;
      z-index: 899
  }

  .mob.show {
      display: flex
  }

  .mob a {
      text-decoration: none;
      font-size: .88rem;
      font-weight: 500;
      color: var(--T)
  }

  /* CAROUSEL */
  .hero {
      position: relative;
      height: 100vh;
      min-height: 560px;
      overflow: hidden;
      background: var(--N)
  }

  .trk {
      display: flex;
      height: 100%;
      transition: transform .75s cubic-bezier(.77, 0, .175, 1)
  }

  .sl {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: flex-end
  }

  .slbg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center
  }

  .slbg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10, 37, 64, .93) 0%, rgba(10, 37, 64, .28) 65%, transparent 100%)
  }

  .slc {
      position: relative;
      z-index: 2;
      padding: 0 5vw 5rem;
      max-width: 680px
  }

  .sl-tag {
      display: inline-block;
      background: var(--R);
      color: #fff;
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      padding: .32rem .85rem;
      margin-bottom: 1.1rem
  }

  .sl-h {
      font-family: 'Sora', sans-serif;
      font-size: clamp(2rem, 4.8vw, 3.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.08;
      margin-bottom: .9rem
  }

  .sl-p {
      font-size: .9rem;
      color: rgba(255, 255, 255, .65);
      line-height: 1.82;
      margin-bottom: 1.8rem;
      max-width: 520px;
      font-weight: 300
  }

  .sl-btn {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: #fff;
      color: var(--N);
      text-decoration: none;
      padding: .72rem 1.7rem;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      transition: background .25s, gap .25s
  }

  .sl-btn:hover {
      background: var(--G);
      gap: .9rem
  }

  .c-dots {
      position: absolute;
      bottom: 1.8rem;
      right: 5vw;
      display: flex;
      gap: .55rem;
      z-index: 10
  }

  .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .28);
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background .3s, transform .3s
  }

  .dot.a {
      background: #fff;
      transform: scale(1.35)
  }

  .c-arr {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 46px;
      height: 46px;
      background: rgba(255, 255, 255, .1);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .25s
  }

  .c-arr:hover {
      background: rgba(255, 255, 255, .2)
  }

  .c-arr svg {
      stroke: #fff;
      width: 18px;
      height: 18px
  }

  .arr-l {
      left: 1.5rem
  }

  .arr-r {
      right: 1.5rem
  }

  /* ===================== STATS ===================== */

  .stats {
      background: var(--N);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      /* 🔥 responsive automático */
      border-top: 1px solid rgba(255, 255, 255, .06);
      gap: 1px;
      /* 🔥 efecto tarjetas */
  }

  /* ITEM */
  .sc {
      background: var(--N);
      padding: 2rem 1rem;
      text-align: center;
      border-right: 1px solid rgba(255, 255, 255, .06);
      min-width: 0;
      /* 🔥 evita overflow */
  }

  /* quitar borde del último */
  .sc:last-child {
      border-right: none;
  }

  /* NUMERO */
  .sn {
      font-family: 'Sora', sans-serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
  }

  /* SIGNO + */
  .sn sup {
      font-size: 1rem;
      color: var(--R);
  }

  /* TEXTO */
  .sl2 {
      font-size: .67rem;
      color: rgba(255, 255, 255, .32);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-top: .35rem;
  }

  /* ===================== RESPONSIVE ===================== */

  @media (max-width: 1024px) {
      .stats {
          grid-template-columns: repeat(2, 1fr);
      }

      .sc {
          border-right: none;
          border-bottom: 1px solid rgba(255, 255, 255, .06);
      }
  }

  @media (max-width: 480px) {
      .stats {
          grid-template-columns: 1fr;
      }

      .sc {
          border-bottom: 1px solid rgba(255, 255, 255, .06);
      }
  }

  /* ===================== FIX GLOBAL (IMPORTANTE) ===================== */

  *,
  *::before,
  *::after {
      box-sizing: border-box;
  }

  html,
  body {
      overflow-x: hidden;
  }

  /* SECTIONS */
  .sec {
      padding: 5.5rem 5vw
  }

  .lbl {
      font-size: .67rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--R);
      margin-bottom: .7rem;
      display: flex;
      align-items: center;
      gap: .65rem
  }

  .lbl::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 2px;
      background: var(--R)
  }

  h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.5rem);
      font-weight: 800;
      color: var(--N);
      line-height: 1.15
  }

  .sub {
      font-size: .9rem;
      color: var(--M);
      line-height: 1.85;
      max-width: 500px;
      font-weight: 300;
      margin-top: .7rem
  }

  /* ABOUT */
  .about {
      background: var(--G)
  }

  .ag {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5vw;
      align-items: center;
      margin-top: 3.5rem
  }

  .a-img {
      position: relative
  }

  .a-ph {
      width: 100%;
      min-height: 400px;
      background: linear-gradient(145deg, #bfcdd8, #d5e2eb);
      display: flex;
      align-items: center;
      justify-content: center
  }

  .a-ph svg {
      width: 70px;
      height: 70px;
      opacity: .14
  }

  .a-badge {
      position: absolute;
      bottom: -1.2rem;
      right: 0;
      background: var(--R);
      color: #fff;
      padding: 1.3rem;
      width: 150px;
      text-align: center;
  }

  .a-badge strong {
      font-family: 'Sora', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      display: block;
      line-height: 1
  }

  .a-badge span {
      font-size: .67rem;
      text-transform: uppercase;
      letter-spacing: .1em;
      opacity: .8
  }

  .a-vals {
      margin-top: 2.2rem;
      display: flex;
      flex-direction: column;
      gap: 1px;
      background: var(--BD)
  }

  .av {
      background: var(--W);
      padding: 1.3rem 1.6rem;
      display: flex;
      align-items: flex-start;
      gap: .9rem;
      transition: background .2s
  }

  .av:hover {
      background: var(--G)
  }

  .avd {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--R);
      flex-shrink: 0;
      margin-top: .46rem
  }

  .av-t {
      font-size: .85rem;
      font-weight: 700;
      color: var(--N);
      margin-bottom: .18rem
  }

  .av-s {
      font-size: .8rem;
      color: var(--M);
      line-height: 1.7
  }

  /* STORIES */
  .stories {
      background: var(--W)
  }

  .sh {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      margin-bottom: 2.5rem
  }

  .sg {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: var(--BD)
  }

  .sc2 {
      background: var(--W);
      overflow: hidden;
      position: relative;
      transition: box-shadow .3s
  }

  .sc2:hover {
      box-shadow: 0 8px 32px rgba(10, 37, 64, .1)
  }

  .sth {
      width: 100%;
      aspect-ratio: 16/10;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative
  }

  .sth svg {
      width: 44px;
      height: 44px;
      opacity: .18
  }

  .stl {
      position: absolute;
      top: .9rem;
      left: .9rem;
      background: var(--N);
      color: #fff;
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: .22rem .65rem
  }

  .sc2::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--R);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s;
      z-index: 2
  }

  .sc2:hover::before {
      transform: scaleX(1)
  }

  .sb {
      padding: 1.5rem
  }

  .stag {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--R);
      margin-bottom: .45rem
  }

  .sti {
      font-family: 'Sora', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--N);
      line-height: 1.3;
      margin-bottom: .55rem
  }

  .stx {
      font-size: .8rem;
      color: var(--M);
      line-height: 1.75
  }

  .stlk {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      margin-top: .9rem;
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: var(--N);
      text-decoration: none;
      transition: gap .2s, color .2s
  }

  .stlk:hover {
      color: var(--R);
      gap: .65rem
  }

  /* PROGRAMS */
  .progs {
      background: var(--N)
  }

  .progs .lbl {
      color: rgba(255, 255, 255, .3)
  }

  .progs .lbl::before {
      background: rgba(255, 255, 255, .18)
  }

  .progs h2 {
      color: #fff
  }

  .pg {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .06);
      margin-top: 3.5rem
  }

  .pi {
      background: var(--N);
      padding: 2.5rem 2rem;
      border-top: 2px solid rgba(255, 255, 255, .06);
      transition: border-color .3s, background .3s
  }

  .pi:hover {
      border-color: var(--R);
      background: var(--N2)
  }

  .pi-ic {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, .05);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.3rem
  }

  .pi-ic svg {
      width: 20px;
      height: 20px;
      stroke: rgba(255, 255, 255, .6)
  }

  .pi-n {
      font-size: .62rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .22);
      margin-bottom: .55rem
  }

  .pi-t {
      font-family: 'Sora', sans-serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .7rem
  }

  .pi-d {
      font-size: .82rem;
      color: rgba(255, 255, 255, .38);
      line-height: 1.82;
      font-weight: 300
  }

  .pi-l {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      margin-top: 1.3rem;
      font-size: .7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .07em;
      color: rgba(255, 255, 255, .32);
      text-decoration: none;
      transition: color .25s, gap .25s
  }

  .pi-l:hover {
      color: #fff;
      gap: .65rem
  }

  /* GALLERY */
  .gal {
      background: var(--G);
      padding: 5.5rem 5vw 4rem
  }

  .gg {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 210px 210px;
      gap: 4px;
      margin-top: 2.5rem
  }

  .gi {
      overflow: hidden;
      position: relative;
      cursor: pointer
  }

  .gi:nth-child(1) {
      grid-column: span 2;
      grid-row: span 2
  }

  .gi:nth-child(4) {
      grid-column: span 2
  }

  .gp {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative
  }

  .gp svg {
      width: 28px;
      height: 28px;
      opacity: .13;
      position: absolute
  }

  .gp .glb {
      position: absolute;
      bottom: .7rem;
      left: .7rem;
      background: rgba(10, 37, 64, .72);
      color: #fff;
      font-size: .6rem;
      font-weight: 700;
      padding: .2rem .55rem;
      letter-spacing: .06em;
      text-transform: uppercase
  }

  .gov {
      position: absolute;
      inset: 0;
      background: rgba(10, 37, 64, 0);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .3s
  }

  .gi:hover .gov {
      background: rgba(10, 37, 64, .45)
  }

  .gov svg {
      opacity: 0;
      stroke: #fff;
      width: 24px;
      height: 24px;
      transition: opacity .3s
  }

  .gi:hover .gov svg {
      opacity: 1
  }

  /* TEAM */
  .team {
      background: var(--W)
  }

  .tg {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.8rem;
      margin-top: 3rem
  }

  .tc {
      text-align: center
  }

  .tph {
      width: 100%;
      aspect-ratio: 1;
      margin-bottom: 1rem;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center
  }

  .tph svg {
      width: 50px;
      height: 50px;
      opacity: .16;
      position: relative;
      z-index: 1
  }

  .tpbg {
      position: absolute;
      inset: 0
  }

  .tn {
      font-family: 'Sora', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--N);
      margin-bottom: .15rem
  }

  .tr {
      font-size: .72rem;
      color: var(--R);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: .45rem
  }

  .td {
      font-size: .78rem;
      color: var(--M);
      line-height: 1.7
  }

  /* DONATE */
  .don {
      background: var(--G);
      padding: 5.5rem 5vw
  }

  .di {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5vw;
      align-items: start;
      margin-top: 2.8rem
  }

  .amts {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: .7rem;
      margin-top: 1.8rem
  }

  .ab {
      background: var(--W);
      border: 1.5px solid var(--BD);
      padding: .9rem;
      text-align: center;
      cursor: pointer;
      transition: all .2s;
      font-family: 'Sora', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--N)
  }

  .ab:hover,
  .ab.s {
      background: var(--N);
      border-color: var(--N);
      color: #fff
  }

  .dimpa {
      margin-top: 1.8rem;
      background: var(--W);
      border-left: 3px solid var(--R);
      padding: 1.1rem 1.4rem
  }

  .dimpa p {
      font-size: .83rem;
      color: var(--M);
      line-height: 1.7
  }

  .dimpa strong {
      color: var(--N);
      font-weight: 700
  }

  .dform {
      background: var(--W);
      padding: 2.2rem;
      border: 1px solid var(--BD)
  }

  .dft {
      font-family: 'Sora', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--N);
      margin-bottom: 1.3rem
  }

  .fg {
      display: flex;
      flex-direction: column;
      gap: .38rem;
      margin-bottom: .9rem
  }

  .fg label {
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--N)
  }

  .fg input,
  .fg select,
  .fg textarea {
      background: var(--G);
      border: 1.5px solid var(--BD);
      padding: .78rem .95rem;
      font-family: 'Inter', sans-serif;
      font-size: .86rem;
      color: var(--T);
      outline: none;
      transition: border-color .2s;
      border-radius: 0
  }

  .fg input:focus,
  .fg select:focus,
  .fg textarea:focus {
      border-color: var(--N)
  }

  .fg textarea {
      min-height: 85px;
      resize: vertical
  }

  .fr {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: .7rem
  }

  .dsub {
      width: 100%;
      background: var(--R);
      color: #fff;
      border: none;
      padding: .95rem;
      font-family: 'Sora', sans-serif;
      font-size: .85rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .25s;
      margin-top: .4rem
  }

  .dsub:hover {
      background: var(--R2)
  }

  /* CONTACT */
  .cstrip {
      background: var(--N);
      padding: 3.8rem 5vw;
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 2.5rem
  }

  .cstrip .lbl {
      color: rgba(255, 255, 255, .26)
  }

  .cstrip .lbl::before {
      background: rgba(255, 255, 255, .16)
  }

  .csh {
      font-family: 'Sora', sans-serif;
      font-size: 1.9rem;
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: .5rem
  }

  .csp {
      font-size: .85rem;
      color: rgba(255, 255, 255, .38);
      line-height: 1.8;
      font-weight: 300
  }

  .csb {
      display: flex;
      flex-direction: column;
      gap: .7rem;
      flex-shrink: 0
  }

  .bwh {
      background: #fff;
      color: var(--N);
      text-decoration: none;
      padding: .75rem 1.9rem;
      font-size: .77rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      white-space: nowrap;
      display: inline-block;
      transition: background .25s
  }

  .bwh:hover {
      background: var(--G)
  }

  .bow {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .25);
      text-decoration: none;
      padding: .75rem 1.9rem;
      font-size: .77rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      white-space: nowrap;
      display: inline-block;
      transition: border-color .25s
  }

  .bow:hover {
      border-color: #fff
  }

  /* FOOTER */
  footer {
      background: #060d18;
      padding: 3.2rem 5vw 2rem
  }

  .ftp {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3.5rem;
      padding-bottom: 2.2rem;
      border-bottom: 1px solid rgba(255, 255, 255, .05)
  }

  .fbn {
      font-family: 'Sora', sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      color: #fff;
      margin-top: .35rem
  }

  .fbt {
      font-size: .65rem;
      color: rgba(255, 255, 255, .16);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-top: .28rem
  }

  .fbd {
      font-size: .78rem;
      color: rgba(255, 255, 255, .25);
      line-height: 1.8;
      margin-top: .9rem;
      font-weight: 300;
      max-width: 240px
  }

  .fct {
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .18);
      margin-bottom: .9rem
  }

  .fls {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .55rem
  }

  .fls a {
      text-decoration: none;
      font-size: .8rem;
      color: rgba(255, 255, 255, .3);
      transition: color .2s
  }

  .fls a:hover {
      color: #fff
  }

  .fbot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.6rem;
      flex-wrap: wrap;
      gap: .8rem
  }

  .fcp {
      font-size: .68rem;
      color: rgba(255, 255, 255, .15)
  }

  .flg {
      display: flex;
      gap: 1.8rem
  }

  .flg a {
      font-size: .68rem;
      color: rgba(255, 255, 255, .15);
      text-decoration: none;
      transition: color .2s
  }

  .flg a:hover {
      color: rgba(255, 255, 255, .5)
  }

  /* ANIMATE */
  .fi {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .7s ease, transform .7s ease
  }

  .fi.v {
      opacity: 1;
      transform: none
  }

  .d1 {
      transition-delay: .1s
  }

  .d2 {
      transition-delay: .2s
  }

  .d3 {
      transition-delay: .3s
  }

  /* RESPONSIVE */
  @media(max-width:1024px) {

      .ag,
      .di,
      .cstrip {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .tg,
      .sg,
      .pg {
          grid-template-columns: 1fr 1fr;
      }

      .ftp {
          grid-template-columns: 1fr 1fr;
          gap: 2rem;
      }

      .gg {
          grid-template-columns: 1fr 1fr;
          grid-auto-rows: 180px;
      }

      .gi {
          min-width: 0;
          /* 🔥 evita desbordes en grid */
      }

      .csb {
          flex-wrap: wrap;
      }
  }

  @media(max-width:768px) {

      .nav-links {
          display: none;
      }

      .brgr {
          display: flex;
      }

      .stats {
          grid-template-columns: 1fr 1fr;
      }

      .sg,
      .pg,
      .tg {
          grid-template-columns: 1fr;
      }

      .gg {
          grid-template-columns: 1fr;
          grid-auto-rows: auto;
      }

      .gi {
          grid-column: span 1 !important;
      }

      .cstrip {
          grid-template-columns: 1fr;
      }

      .csb {
          flex-direction: column;
          width: 100%;
      }

      .ftp {
          grid-template-columns: 1fr;
      }

      .sh {
          grid-template-columns: 1fr;
      }

      .fr {
          grid-template-columns: 1fr;
      }

      /* 🔥 FIX BOTONES QUE SE SALEN */
      .ab {
          width: 100%;
      }

      /* 🔥 FIX TEXTO LARGO */
      h1,
      h2,
      h3,
      p {
          word-wrap: break-word;
      }

  }