/* Ajuste isolado da barra inferior: menor, mais baixa e com transição suave. */
.bottom{
  bottom:0!important;
  min-height:66px!important;
  height:auto!important;
  padding-top:3px!important;
  padding-bottom:max(3px,env(safe-area-inset-bottom))!important;
  transition:transform .42s cubic-bezier(.22,1,.36,1), opacity .34s ease!important;
  will-change:transform,opacity;
}

.bottom button{
  min-height:52px!important;
  padding-top:3px!important;
  padding-bottom:3px!important;
}

.bottom button span{
  transform:scale(.92);
  transform-origin:center;
}

.bottom button small{
  font-size:11px!important;
}

.bottom.bottom-auto-hidden{
  transform:translateY(calc(100% + 12px + env(safe-area-inset-bottom)))!important;
  opacity:0!important;
  pointer-events:none!important;
}

@media(max-width:430px){
  body.home-modern .bottom{
    bottom:0!important;
    min-height:64px!important;
  }

  body.home-modern .bottom button{
    min-height:50px!important;
  }
}

@media (prefers-reduced-motion: reduce){
  .bottom{transition:none!important}
}