@media (min-width: 1441px) {
  :root {
    --scale-spacing: 1.25;
  }

  .hero-title {
    height: 100%;
    min-height: 35rem;
    max-height: none;
  }

  .card-list .card { -webkit-box-flex: 0; -ms-flex: 0 0 30rem; flex: 0 0 30rem; }
  .section-title { font-size: calc(var(--font-m) * 1.25); }
  .text-m-lg { font-size: var(--font-m); }

  .dot {
    height: 1.5rem;
    max-height: 1.5rem;
    max-width: 1.5rem;
    width: 1.5rem;
  }
}

/* Sticky categoría debajo del header principal */
.registro-category-sticky{
  position:fixed;
  top:72px;
  left:0;
  right:0;
  z-index:95;
  opacity:0;
  transform:translateY(-10px);
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.registro-category-sticky.is-visible{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.registro-category-sticky-inner{
  max-width:1100px;
  margin:0 auto;
  padding:.65rem 1rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:1rem;
  backdrop-filter:blur(14px);
  background:rgba(4,58,153,.82);
  border:1px solid rgba(255,255,255,.12);
  border-radius:0 0 16px 16px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
.registro-category-pill{
  color:#fff;
  font-weight:900;
}
.registro-category-link{
  background:none;
  border:0;
  color:#8aea1b;
  font-weight:800;
  cursor:pointer;
}


/* Ajuste final sticky categoría */
.registro-category-sticky{
  top:70px !important;
}

.registro-category-sticky-inner{
  max-width:50% !important;
  margin:0 0 0 auto !important;
  justify-content:right !important;
}

/* En mobile el header principal ocupa más alto.
   Bajamos esta barra para que no se encime y la hacemos full width. */
@media (max-width: 768px){
  .registro-category-sticky{
    top:92px !important;
  }

  .registro-category-sticky-inner{
    max-width:100% !important;
    margin:0 !important;
    justify-content:space-between !important;
    border-radius:0 0 14px 14px;
  }
}

@media (max-width: 480px){
  .registro-category-sticky{
    top:104px !important;
  }

  .registro-category-sticky-inner{
    padding:.55rem .75rem !important;
    gap:.65rem;
  }

  .registro-category-pill{
    font-size:.82rem;
  }

  .registro-category-link{
    font-size:.78rem;
    white-space:nowrap;
  }
}
