:root {
  --primari-color: #003f71;
  --cinze-color: #e7e7e7;
  --amareloEsc-color: #d2ac47;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

:target {
  scroll-margin-top: -1px;
}

body {
  grid-template-areas: "content";
  background-color: #e7e7e7;
  place-content: center;
}

header {
  padding-left: 8vw;
  padding-right: 8vw;
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #003f71;
}

#icon-half-menu {
  display: none;
}

main {
  flex-direction: column;
  align-items: center;
}

section {
  height: 100vh;
}

footer {
  place-self: end center;
  height: 10vh;
  width: 100%;
  display: grid;
  place-content: center;
  color: aliceblue;
  background-color: #003f71;
  font-size: 2rem;
}

.voltar {
  margin-top: 4vh;
  width: 100%;
  cursor: default;
  position: fixed;
  top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4vh;
  transition: all 0.2s, color 0.2s ease-in;
  color: #00000000;
}

#bolinha {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 6vh;
  height: 6vh;
  transition: background-color 0.2s ease, color 0.2s ease;
}
