:root {
  --corNavBar: #183c8f;
  /* --corNavBar: #373aff; */
}

header {
  position: relative;
  flex-direction: column;
  display: flex;
  height: 100%;
  width: 100%;
}

nav {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--corNavBar);
  position: relative;
}

header ul#navPadrao{
  height: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  padding-right: 4em;
  gap: 2em;
}

header #navPadrao li {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

header li a {
  text-decoration: none;
  color: white;
}

header li a:hover {
  transform: scale(1.05);
  transition: .3s;
}

#logo {
  position: absolute;
  left: 2em;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
  background-image: url("../img/logo.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
}



#menuHamburguer{
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  background: none;
  font-size: 2rem;
  border: none;
  color: white;
  cursor: pointer;
}

#menuHamburguer:focus{
  -webkit-tap-highlight-color: transparent;
}

#menuHamburguer:hover{
  transform: translateY(-50%) scale(1.05);
  transition: .3s;
}

#menu{
  display: none;

  background-color: #3295ff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 100svh;
  align-content: center;
  flex-direction: column;
}

#containerClose{
  width: 100%;
  height: 6em;
}

#close{
  position: absolute;
  top: 1em;
  right: 25px;
  cursor: pointer;
  background: none;
  border: none;
  color: black;
  font-size: 2rem;
  font-weight: bold;
  transform: translate(-50%, -50%);
}

#close:hover{
  transform: translate(-50%, -50%) scale(1.05);
  transition: .3s;
}

#navMenu{
  padding: 1em;
  list-style: none;
}

#navMenu li{
  border: 2px solid white;
  background-color: #007bff;
  padding: 2em 1em;
  
}

#navMenu a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 1.3rem;
}


@media screen and (width < 600px) {

  /* body{
    grid-template-rows: 80px 1fr max-content max-content !important;
  } */

  nav ul#navPadrao{
    display: none;
  }

  #menuHamburguer{
    display: block;
  }

  #logo {
    left: 1em;
  }

}