.menu{
  width: 100%;
  font-weight: var(--pesoFonte-titulo);
  
}


  .menu__lista{
    display: flex;
    justify-content: flex-end;
  }

    
      .menu__link{
        font-size: 1rem;
        text-transform: uppercase;
        font-size: 0.8rem;
        white-space:nowrap;

        transition: 0.2s ease-in-out;
      }

        .menu__link:hover{
          color: var(--preto);
        }


      .menu #botaoContato{
        background-color: var(--amarelo);
      }

      .menu__icone{
        margin: auto;
        height: 50%;
        width: 10%;
      }
/* MOBILE */
@media screen and (min-width:0){
  .menu__icone{
    display: block;
    margin: 0;
  }

  .menu{
    position: absolute;
    top: var(--altura-header);
    left: 0;
    background-color: var(--preto-claro);
    height: 0;
    overflow: hidden;
  }

  
  .menu-ativo{
    height:auto;
    
  }

  .menu__lista{
    flex-direction: column;
  }

  .menu__item{
    padding: 1rem 1rem;
  }

  .menu__link{
    color:var(--branco);
  }

  .menu__item:last-child .menu__link{ 
    color:var(--preto-claro);
  }
}/* MOBILE - FIM */


/* TABLET */
@media screen and (min-width: 768px){
  
}/* TABLET - FIM */


/* 1024 */
@media screen and (min-width: 1024px){
  .menu__icone{
    display: none;
  }

  .menu{
    position: relative;
    top: 0;
    left: 0;
    background-color: unset;
    height: auto;
    overflow: visible;
  }

  .menu__lista{
    flex-direction: row;
  }

  .menu__item{
    padding: 0.5rem 2rem;
  }

  .menu__link{
    color:var(--preto-claro);
  }
}/* 1024 - FIM */


/* 1200 */
@media screen and (min-width: 1200px){
  
}/* 1200 - FIM */