.bg-img {
  position: fixed;
  inset: 0;
  background: url('../images/fundo.png') center/cover no-repeat;
  filter: brightness(100%);
  z-index: 0;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.top-bar img {
  height: 60px;
  width: auto;
  display: block;
}

.page-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding-top: calc(88px + 36px);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 60px;
  min-height: calc(100vh - 88px);
}

@media (max-width:720px) {
  .top-bar {
    height: 72px;
  }

  .top-bar img {
    height: 48px;
  }

  .page-wrapper {
    padding-top: calc(72px + 20px);
  }
}