#nav-normal {
  width: 100%;
  padding: 10px 100px;
  height: 100px;
  background-color: #ffffff;
  /* caso eu queira deixar a nav transparente */
  backdrop-filter: blur(4px);
  font-family: "Raleway", serif;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 2px 2px 2px #00000044;
  position: fixed;
  z-index: 100;
}

#nav-normal img {
  height: 100%;
  opacity: 0.8;
}

#nav-normal div {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

#nav-normal a {
  background-color: #00000000;
  color: #000000ee;
  font-size: 1.093rem;
  border: 0px solid rgb(9, 9, 9);
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

#nav-normal a:hover {
  cursor: pointer;
  color: #2f15c1ee;
  transform: translateY(-2px);
}

/* -------------------hamburger------------------- */
/* #nav-normal{
    display: flex;
}
#nav-menu{
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    width: 100%;
    height: 60px;
    background-color: aquamarine;
}
#menu-toggle{
    width: 100px;
    height: 60px;
    background-color: transparent;
    border: 0px solid #000000;
    opacity: 0.4;
    cursor: pointer;
}
#menu-toggle img{
    width: 80px;
    height: 50px;
}
#menu-hamburguer{
    display: none;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    opacity: 0.8;
    font-family: "Raleway", serif;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: fixed;
    z-index: 1000;
}
#hamburguer a{
    background-color: #00000000;
    color: #000000ee;
    font-size: 1.093rem;
    border: 0px solid rgb(9, 9, 9);
    font-weight: 500;
    transition: 0.3s;
    text-decoration: none;
}
.logo-menu{
    width: 100px;
    height: auto;
}
.show{
    display: flex;
} */
/* ============================ Media ============================ */

@media (min-width: 280px) and (max-width: 320px) {
  #nav-normal {
    padding: 5px 5px;
    height: 60px;
  }

  #nav-normal img {
    height: 40%;
  }

  #nav-normal div {
    gap: 5px;
  }

  #nav-normal a {
    font-size: 0.6rem;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (min-width: 321px) and (max-width: 360px) {
  #nav-normal {
    padding: 5px 10px;
    height: 70px;
  }

  #nav-normal img {
    height: 40%;
    opacity: 0.8;
  }

  #nav-normal div {
    gap: 20px;
  }

  #nav-normal a {
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (min-width: 361px) and (max-width: 390px) {
  #nav-normal {
    padding: 5px 10px;
    height: 70px;
  }

  #nav-normal img {
    height: 60%;
    opacity: 0.8;
  }

  #nav-normal div {
    gap: 10px;
  }

  #nav-normal a {
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (min-width: 391px) and (max-width: 420px) {
  #nav-normal {
    padding: 5px 10px;
    height: 70px;
  }

  #nav-normal img {
    height: 60%;
    opacity: 0.8;
  }

  #nav-normal div {
    gap: 10px;
  }

  #nav-normal a {
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (min-width: 421px) and (max-width: 480px) {
  #nav-normal {
    padding: 5px 10px;
    height: 70px;
  }

  #nav-normal img {
    height: 60%;
    opacity: 0.8;
  }

  #nav-normal div {
    gap: 10px;
  }

  #nav-normal a {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  #nav-normal {
    padding: 5px 10px;
    height: 70px;
  }

  #nav-normal img {
    height: 60%;
    opacity: 0.8;
  }

  #nav-normal div {
    gap: 20px;
  }

  #nav-normal a {
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (min-width: 601px) and (max-width: 768px) {
  #nav-normal {
    padding: 10px 50px;
    height: 70px;
  }

  #nav-normal img {
    height: 80%;
    opacity: 0.8;
  }

  #nav-normal div {
    gap: 20px;
  }

  #nav-normal a {
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
}

@media (min-width: 1200px) and (max-width: 1400px) {
  #nav-normal img {
    height: 80%;
  }
}
