/* GUIA PREMIUM V9.8 — ajuste de espaço inferior da Home no mobile. */

/*
 * A Home acumulava três áreas de segurança no fim da página:
 * margem das redes sociais + padding do <main> + padding do <body>.
 * Mantemos somente uma área equivalente à navegação inferior fixa.
 */
@media (max-width:700px){
  body.site-v87.page-home{
    padding-bottom:0!important;
  }

  body.site-v87.page-home main.container{
    padding-bottom:calc(80px + env(safe-area-inset-bottom,0px))!important;
  }

  body.site-v87.page-home .socials{
    margin:18px auto 0!important;
    padding:4px 8px 0!important;
  }

  body.site-v87.page-home .site-footer{
    display:none!important;
    margin:0!important;
    padding:0!important;
  }
}

@media (max-width:420px){
  body.site-v87.page-home main.container{
    padding-bottom:calc(78px + env(safe-area-inset-bottom,0px))!important;
  }
  body.site-v87.page-home .socials{
    margin-top:14px!important;
  }
}
