.menu-mobile {
  display: none;
}
#topShadow{
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0000006b;
  opacity: 0;
  transition: 0.3s ease;
  display: none;
}
#topShadow.shadowActive{
  opacity: 1;
  display: flex;
}
/* Estilos para o menu mobile */

.hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #feae34;
  margin: 3px 0;
  transition: 0.4s;
}

.menu-list {
  transition: 0.35s ease-out;
  position: fixed;
  top: 0;
  display: flex;
  background-color: #d7d7d7;
  width: 60vw;
  height: 100%;
  z-index: 5;
  right: -100vw;
}

.menu-list ul {
  list-style: none;
  padding: 0;
}

.menu-list li {
  margin: 10px 0;
}

.menu-list a {
  text-decoration: none;
  color: #fff;
}

/* Estilos para mostrar o menu quando clicar no hamburger */
.menu-opened {
  right: 0;
}

div#conteudo__menuMobile {
  background-color: black;
  width: 90%;
}

span#closeMobi {
  font-size: 1.5rem;
  padding: 1.7rem 0.9rem;
  font-family: 'Bebas Neue';
}

#lista__menuMobile {
  padding: 25px;
  font-family: 'Bebas Neue';
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.itens__navegacao {
  font-size: 1.2rem;
}

@media (max-width: 980px){

    .menu-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        /* color: #feae34; */
    }


}
@media (max-width: 555px){

  .itens__navegacao {
    font-size: 1rem;
  }


}