/* Blog do Capita 3.1.2 — cabeçalho inteligente sem salto de layout. */
.gf-smart-header{
  position:sticky!important;
  top:0;
  z-index:99990!important;
  transform:translate3d(0,0,0);
  transition:transform .24s ease,box-shadow .24s ease;
  will-change:transform;
  background:#fff;
}
.admin-bar .gf-smart-header{top:32px}
.gf-smart-header.gf-smart-header-hidden{
  transform:translate3d(0,calc(-100% - 8px),0)!important;
  box-shadow:none!important;
}
.gf-smart-header.gf-smart-header-visible{
  transform:translate3d(0,0,0)!important;
}
.gf-smart-header:focus-within,
.gf-smart-header:hover{
  transform:translate3d(0,0,0)!important;
}
@media(max-width:782px){
  .admin-bar .gf-smart-header{top:46px}
}
@media(prefers-reduced-motion:reduce){
  .gf-smart-header{transition:none!important}
}
