*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
}

body {
  min-height: 100dvh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.main-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu_hamb {
  display: none;
}

@media (min-width: 709px) and (max-width: 1087px) {
  .cabecalho {
    padding: 34px 64px;
  }

  .cabecalho .menu {
    display: none;
  }

  .cabecalho .menu_hamb {
    display: flex;
    width: 30px;
    height: 30px;
  }

  .cabecalho .logo h1 {
    display: none;
  }
  .cabecalho .logo img {
    width: 40px;
    height: 40px;
  }

  footer {
    display: flex;
    justify-content: center;
    padding: 0px 30px 0px 30px;
  }
}

@media (max-width: 709px) {
  .cabecalho {
    padding: 34px 64px;
  }

  .cabecalho .menu {
    display: none;
  }

  .cabecalho .menu_hamb {
    display: flex;
    width: 30px;
    height: 30px;
  }

  .cabecalho .logo h1 {
    display: none;
  }
  .cabecalho .logo img {
    width: 40px;
    height: 40px;
  }

  footer {
    display: flex;
    justify-content: center;
    padding: 0px 30px 0px 30px;
  }
}