body {
  overflow-x: hidden;
}

.conteudo-menu{
  box-sizing: border-box;
  margin: 0 0px 0 69px;
  position: relative;
}

/* Funcionamento do menu */
[role=navigation]{
  display: block; /* O DISPLAY DEVE FICAR NONE NO DESKTOP E TABLER E SÓ ALTERAR PARA BLOCK NO CELULAR */

	/*display: block;  SÓ ESTÁ BLOCK AGORA PRA DEMONSTRAÇÃO */
}

#menuToggle{
  display: block;
  float: right;
  margin-left: 11.05%;
  margin-top: 16px;
  position: relative;
  user-select: none;
  z-index: 9999;
  -webkit-user-select: none;
}

/*
.topo-menu{
  background: #FFFFFF;
  box-shadow: 0px 0px 49px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  height: 143px;
  width: 100%;
}

.topo-menu img{
  margin-top: 29px;
}
*/

#menuToggle input{
  cursor: pointer;
  display: block;
  height: 32px;
  left: -5px;
  opacity: 0; /* hide this */
  position: absolute;
  top: -7px;
  width: 40px;
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin-bottom: 7px;
    position: relative;
    background: #A6CE39;
    transform-origin: 4px 0px;
    transition: 
      transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
      background 0.5s cubic-bezier(0.77,0.2,0.05,1.0), 
      opacity 0.55s ease;
    z-index: 1;
}

#menuToggle span:first-child { transform-origin: 0% 0%; }

#menuToggle span:nth-last-child(2) { transform-origin: 0% 100%; }

/*
 * Make this absolute positioned
 * at the top left of the screen
 */

#menu-cel {
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(0deg, #A6CE39, #A6CE39), #DADADA;
    box-sizing: border-box;
    display: none;
    padding-top: 42px;
    position: fixed;
    right: 0;
    top: 103px;
    transform-origin: 0% 0%;
    transform: translate(100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    overflow-y: scroll;
    width: 100%;
}

#menu-cel li {
    box-sizing: border-box;
    list-style: none;
    font-style: normal;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 0.08em;
    padding: 0px 120px;
    font-size: 20px;
    line-height: 30px;
    color: #FFFFFF;
}

#menu-cel li:hover,
#menu-cel li.active { 
    font-weight: bold; 
}

#menu-cel a:hover { text-decoration: none; }

#menu-cel li i {
    color: #A9A9A9;
    float: right;
    font-size: 20px;
    line-height: 70px;
}

#menu-cel #socials-icons {
    margin-top: 200px;
    padding: 20px 100px 40px;
}

#menu-cel #socials-icons a {
    color: #fff;
    font-size: 20px;    
    margin-right: 20px;
}

#menu-cel #addresses { padding: 40px 100px; }

#menu-cel #addresses a {
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    line-height: 45px;
}

#menu-cel #addresses a:hover { text-decoration: none; }

#menu-cel #addresses a i {
    color: #4E4E4E;
    margin-right: 10px;
}