code[class*="language-"], pre[class*="language-"] {
  white-space: pre-wrap;
}
#g-hero {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.jl-section {
  padding-top: 0 !important;
}

ol > li > ol, ol > li > ul, ul > li > ol, ul > li > ul {
    margin-left: 20px;
}

.item-link-text {
  color: #00c9a7;
  display: block;
  margin-top: 10px;
}

.g-contentcubes .cube-items-wrapper {
	 background: linear-gradient(45deg, #f6f6f6, #ffffff);
	 color: #fff;
}
 .g-contentcubes .cube-items-wrapper .cube-row.g-grid.image-position-right {
	 flex-flow: row-reverse wrap;
}
 .g-contentcubes .cube-items-wrapper .cube-image-wrapper {
	 position: relative;
	 z-index: 1;
	 overflow: hidden;
}
 .g-contentcubes .cube-items-wrapper .cube-image-wrapper img {
	 display: block;
	 height: auto;
	 transform: scale3d(1.8, 1.8, 1);
	 transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}
 .g-contentcubes .cube-items-wrapper .cube-image-wrapper:hover img {
	 transform: scale3d(1, 1, 1);
}
 .g-contentcubes .cube-items-wrapper .cube-image-wrapper:after {
	 position: absolute;
	 top: 0;
	 right: 0;
	 z-index: 1;
	 width: 100%;
	 height: 100%;
	 content: "";
	 background-color: rgba(255, 255, 255, 0.75);
	 opacity: 0.2;
	 transition: opacity 0.3s;
}
 .g-contentcubes .cube-items-wrapper .cube-image-wrapper:hover:after {
	 opacity: 0;
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper {
	 max-width: 22.5rem;
	 padding: 6.5rem 0;
	 margin: 0 auto;
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-label {
	 display: inline-block;
	 background: #00c9a7;
	 padding: 0.35em 0.85em;
	 margin-bottom: 0.5rem;
	 font-size: 19.8125px;
	 line-height: 1.1538;
	 font-weight: bold;
	 border-radius: 2.5rem;
	 text-align: center;
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-title {
	 font-size: 20px;
	 font-weight: bold;
	 line-height: 20px;
	 margin-bottom: 1rem;
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-title a.item-link {
	 display: block;
	 color: #191919;
}
g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-title a.item-link .item-link-text {
  display: block;
  margin-left: 0.25rem;
  transition: transform 0.3s;
  color: #00c9a7;
  margin-top: 20px;
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-title a.item-link:hover .item-link-text {
	 transform: translate3d(15px, 0, 0);
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-tags .tag {
	 margin-right: 0.5rem;
	 margin-bottom: 0.5rem;
	 padding: 0.35rem 0;
	 color: rgba(255, 255, 255, 0.6);
	 text-transform: uppercase;
	 font-size: 20px;
	 font-weight: bold;
	 line-height: 20px;
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-tags .tag .fa {
	 margin-right: 0.15rem;
	 font-size: 20px;
	 vertical-align: text-top;
}
 .g-contentcubes .cube-items-wrapper .cube-content-wrapper .item-tags .tag a:hover {
	 color: inherit;
}

  body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #020617;
    color: #e5e7eb;
  }

  /* HEADER */

  .gw-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(2,6,23,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148,163,184,.25);
  }

  .gw-header-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: .65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .gw-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 800;
    color: #f9fafb;
    text-decoration: none;
  }

  .gw-logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: radial-gradient(circle at 30% 10%, #a7fff3, #00c9a7);
    box-shadow: 0 0 18px rgba(0,201,167,.7);
  }

  .gw-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .9rem;
  }

  .gw-nav a {
    color: #e5e7eb;
    text-decoration: none;
    padding: .35rem .55rem;
    border-radius: .5rem;
    transition: background .18s ease-out, color .18s ease-out;
  }

  .gw-nav a:hover,
  .gw-nav a.is-active {
    background: rgba(15,23,42,.9);
    color: #a7fff3;
  }

  .gw-nav-cta {
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,.4);
    padding: .35rem .9rem;
  }

  .gw-nav-cta span {
    color: #00c9a7;
    font-weight: 600;
  }

  /* HERO */

  .gw-hero {
    padding: 3.5rem 1.5rem 3rem;
    background: linear-gradient(300deg,rgb(0, 201, 167) 20%, rgb(227, 250, 247) 60%);
    color: #f9fafb;
  }

  .gw-hero-inner {
    max-width: 1080px;
    margin: 0 auto;
  }

  .gw-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .2rem .8rem;
    border-radius: 999px;
    background: rgba(15,23,42,.85);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.5rem;
  }

  .gw-pill span {
    width: .55rem;
    height: .55rem;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34,197,94,.9);
  }

  .gw-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    font-weight: 800;
    margin-bottom: 1rem;
  }

  .gw-title span {
    color: #a7fff3;
  }

  .gw-subtitle {
    max-width: 640px;
    color: #535353;
    font-size: .95rem;
    margin-bottom: 2rem;
  }

  .gw-subtitle strong {
    color: #535353;
  }

  .gw-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 2.5rem;
  }

  .gw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .7rem 1.4rem;
    border-radius: .6rem;
    border: 1px solid transparent;
    font-size: .9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all .18s ease-out;
  }

  .gw-btn-primary {
    background: #00c9a7;
    color: #020617;
    box-shadow: 0 18px 40px rgba(0,201,167,.35);
  }

  .gw-btn-primary:hover {
    background: #00b497;
    transform: translateY(-1px);
    box-shadow: 0 24px 60px rgba(0,201,167,.5);
    color: #111;
  }

  .gw-btn-ghost {
    background: transparent;
    border-color: rgba(148,163,184,.5);
  }

  .gw-btn-ghost:hover {
    background: rgba(15,23,42,.9);
    border-color: #e5e7eb;
  }

  .gw-meta-hero {
    font-size: .78rem;
    color: #626C7D;
  }

  .gw-meta-hero strong {
    color: #a7fff3;
  }

  /* BLOQUES PRINCIPALES */

  .gw-main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 3.5rem;
  }

  .gw-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .35rem;
  }

  .gw-section-subtitle {
    font-size: .9rem;
    color: #cbd5f5;;
    margin-bottom: 1.5rem;
  }

  .gw-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 1rem;
  }

  .gw-card {
    background: rgba(15,23,42,.75);
    border-radius: .9rem;
    padding: 1.25rem 1rem;
    border: 1px solid rgba(148,163,184,.3);
  }

  .gw-card-tag {
    display: inline-block;
    padding: .12rem .55rem;
    border-radius: 999px;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    background: rgba(2,6,23,1);
    color: #a7fff3;
    margin-bottom: .5rem;
  }

  .gw-card-title {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .3rem;
  }

  .gw-card-desc {
    font-size: .86rem;
    color: #cbd5f5;
    margin-bottom: .7rem;
  }

  .gw-card-link {
    font-size: .8rem;
    color: #00c9a7;
    text-decoration: none;
  }

  .gw-card-link:hover {
    text-decoration: underline;
  }

  /* HERRAMIENTAS PROPIAS */

  .gw-tools {
    margin-top: 3rem;
    padding: 1.75rem 1.4rem;
    border-radius: 1rem;
    background: rgba(15,23,42,.75);
    border: 1px solid rgba(45,212,191,.35);
  }

  .gw-tools-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .gw-tools-title {
    font-size: 1.05rem;
    font-weight: 700;
  }

  .gw-tools-badge {
    font-size: .78rem;
    color: #a7fff3;
  }

  .gw-tools-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 1rem;
  }

  .gw-tool {
    background: rgba(15,23,42,.50);
    border-radius: .8rem;
    padding: 1rem .9rem;
    border: 1px solid rgba(148,163,184,.45);
  }

  .gw-tool h3 {
    margin: 0 0 .35rem;
    font-size: .9rem;
  }

  .gw-tool p {
    margin: 0 0 .7rem;
    font-size: .83rem;
    color: #cbd5f5;
  }

  .gw-tool a {
    font-size: .8rem;
    color: #00c9a7;
    text-decoration: none;
    font-weight: 600;
  }

  .gw-tool a:hover {
    text-decoration: underline;
  }

  .gw-tools-footnote {
    margin-top: 1rem;
    font-size: .78rem;
    color: #9ca3af;
  }

  /* FOOTER */

  .gw-footer {
    border-top: 1px solid rgba(31,41,55,1);
    padding: 1.5rem;
    font-size: .78rem;
    color: #9ca3af;
    text-align: center;
    background: #020617;
  }

  @media (max-width: 768px) {
    .gw-header-inner {
      padding-inline: 1rem;
    }

    .gw-nav {
      display: none;
    }

    .gw-hero {
      padding-inline: 1.2rem;
      padding-top: 2.75rem;
    }

    .gw-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .gw-main {
      padding-inline: 1.2rem;
    }

    .gw-grid-3 {
      grid-template-columns: 1fr;
    }

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