
    .shs{
      height:auto;
      background:#000;
      padding:80px 0 110px;
      color:#fff;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      position:relative;
    }

    .shs__sticky{
      padding: 0 40px;
      display:grid;
      place-items:center;
      grid-template-rows:auto 18px auto auto;
    }

    .trabajo-shape-left{
      left:0;
      bottom:0;
      width:7vw;
      position:absolute;
      pointer-events:none;
    }

    .shs__title{
      margin-bottom:2%;
      font-size:2.4rem;
      font-weight:700;
      letter-spacing:-0.03em;
      line-height:1;
    }

    .shs__title b{
      font-weight:400;
    }

    .shs__gap{ height:18px; }

    /* GRID mosaico */
    .shs__grid{
      width:75%;
      display:grid;
      gap:14px;
      grid-template-columns: repeat(4, 1fr);
      align-items:stretch;
      justify-items:stretch;
    }

    /* ===== IMPORTANTE: adaptamos tu template al mosaico ===== */
    .shs__grid .item{
      width:100%;
      max-width:none;
      text-align:left;
    }

    .shs__grid .item > a{
      display:block;
      width:100%;
      height:100%;
    }

    /* el thumb manda el tamaño, aquí lo hacemos responsive */
    .shs__grid .thumb{
      width:100%;
      height:100%;
      aspect-ratio: 4 / 3;
      background:#000;
      overflow:hidden;
      border: 1px solid rgba(255,255,255,.08);
      position:relative;
    }

    /* random corners (IGUAL que en trabajos) */
    .shs__grid .thumb.corner-tl{ border-top-left-radius:48px; }
    .shs__grid .thumb.corner-tr{ border-top-right-radius:48px; }
    .shs__grid .thumb.corner-br{ border-bottom-right-radius:48px; }
    .shs__grid .thumb.corner-bl{ border-bottom-left-radius:48px; }
    .shs__grid .thumb.no-radius{ border-radius: 0; }

    .shs__grid .thumb img{
      width:100%;
      height:100%;
      object-fit:cover;
      transform: scale(1);
      transition: transform .25s ease;
      display:block;
    }
    .shs__grid .item:hover .thumb img{
      transform: scale(1.03);
    }

    /* en HOME ocultamos caption debajo */
    .shs__grid .caption{ display:none; }

    /* overlay (copiado de trabajos, adaptado color) */
    .shs__grid .captionOverlay{
      font-family:Inter, system-ui, sans-serif;
      position:absolute;
      inset: 0;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      text-align:center;
      padding:14px;

      background: rgba(255, 214, 0, 0.65);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);

      border: 1px solid rgba(255,255,255,.08);
      box-sizing: border-box;

      opacity: 0;
      transform: translateY(6px);
      transition: opacity .18s ease, transform .18s ease;
      pointer-events:none;
      color:#111;
    }

    .shs__grid .captionOverlay .brandName{
      font-size: 0.938rem;
      font-weight: 800;
      letter-spacing: .02em;
      text-transform: uppercase;
      color:#111;
      line-height: 1.1;
    }
    .shs__grid .captionOverlay .sub{
      font-size: 0.813rem;
      font-weight: 600;
      color:#111;
      opacity:.9;
      line-height: 1.25;
      margin-top: 6px;
    }

    @media (hover:hover) and (pointer:fine){
      .shs__grid .item:hover .captionOverlay{
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* en móvil: sin hover */
    @media (hover:none), (max-width:980px){
      .shs__grid .captionOverlay{
        opacity: 0;
        transform: none;
      }
    }

    /* CTA */
    .shs__cta{
      margin-top:40px;
      display:flex;
      justify-content:center;
    }

    .shs__btn{
      display:inline-block;
      padding:14px 34px;
      border:1px solid #fff;
      border-radius:999px;
      color:#fff;
      text-decoration:none;
      font-weight:600;
      letter-spacing:.04em;
      transition: background .25s ease, color .25s ease;
    }
    .shs__btn:hover{
      background:var(--amarillo);
      color:black;
      border:none;
    }

    /* responsive grid */
    @media (max-width:1100px){
      .shs__grid{ grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width:900px){
      .shs__grid{ grid-template-columns: repeat(2, 1fr); }
      .shs__sticky{ padding: 0 24px; }
    }
    @media (max-width:560px){
      .shs__grid{
        grid-template-columns: repeat(2, 1fr);
        width: 96%;
      }
    }

    @media (max-width:690px){
      .servicio-shape.trabajo-shape-left{
        width: 16vw !important;
      }
    }

    /* =========================
       POPUP (HOME) - integrado
       ========================= */
    .pmodal{
      position: fixed;
      inset: 0;
      display:none;
      align-items:center;
      justify-content:center;
      background: rgba(0,0,0,.35);
      backdrop-filter: blur(8px);
      z-index: 999999;
      padding: 24px;
    }
    .pmodal.is-open{ display:flex; }

    .pmodal-panel{
      position: relative;
      width: 70vw;
      height: 85vh;
      background: #fff;
      border-radius: 80px 0 0 0;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.25);
    }

    @media (max-width: 900px){
      .pmodal{ padding: 14px; }
      .pmodal-panel{
        width: 94vw;
        height: 90vh;
        border-radius: 80px 0 0 0;
      }
    }

    .pmodal-frame{
      width:100%;
      height:100%;
      border:0;
      display:block;
      background:#fff;
    }

    .pmodal-close{
      position:absolute;
      top:14px;
      right:14px;
      width:44px;
      height:44px;
      border-radius:50%;
      border:0;
      background:#000;
      color:#fff;
      font-size:1.75rem;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      z-index: 2000001;
    }


@media (min-width: 901px) {
  body.no-custom-cursor .shs__grid {
    width: min(1400px, 96vw);
  }
}
