body {
    margin: 0;
    display: table;
    width: 100%;
    height: 100vh;
    padding: 100px 0;
    background: url('/sistema/res/img/uniao_sede_pa_final.jpg') no-repeat bottom center scroll;
    background-position: 30% 45%;
    background-size: cover;
    background-attachment: fixed; /* Adicionado para tornar o fundo fixo */
  }
  
  /* Ajustes para telas menores */
  @media (max-width: 576px) {
    body {
      padding: 50px 0; /* Reduz o espaçamento superior para dispositivos móveis */
      background-position: center center; /* Centraliza a imagem no background */
    }
  }
  