/* KriaZen - paginacao 5 em 5 das listas grandes */
.kzpag{
  display:flex; align-items:center; justify-content:center;
  gap:6px; flex-wrap:wrap; margin:14px 0 6px;
  font:600 12px/1 ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
}
.kzpag button{
  min-width:34px; height:34px; padding:0 10px;
  border-radius:10px; cursor:pointer; font:inherit; color:inherit;
  border:1px solid rgba(128,150,190,.38);
  background:rgba(128,150,200,.10);
  transition:background .18s ease,border-color .18s ease,transform .12s ease;
}
.kzpag button:hover:not(:disabled){ background:rgba(128,160,220,.22); }
.kzpag button:active:not(:disabled){ transform:scale(.95); }
.kzpag button:disabled{ opacity:.32; cursor:default; }
.kzpag button.on{
  background:rgba(58,140,255,.24);
  border-color:rgba(90,170,255,.62);
  font-weight:800;
}
.kzpag .kzpag-info{ opacity:.62; font-weight:500; margin-left:8px; letter-spacing:.02em; }
@media (max-width:560px){
  .kzpag{ gap:4px; margin:10px 0 4px; }
  .kzpag button{ min-width:30px; height:30px; padding:0 7px; font-size:11px; border-radius:9px; }
  .kzpag .kzpag-info{ width:100%; text-align:center; margin:6px 0 0; font-size:11px; }
}
