/*.touchMenu {
  position: absolute;
  right: -100px;
  top: -100px;
  z-index: 100;
  width: 200px;
  height: 200px;
  background: #FFF;
  border-radius: 50% 50% 50% 50%;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
  cursor: pointer;
}*/
.touchMenu {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 100;
  width: 100px;
  height: 100px;
  background: #FFF;
  border-bottom-left-radius: 100%;
  transition: .5s ease-in-out;
  box-shadow: 0 0 0 0 #FFF, 0 0 0 0 #FFF;
  cursor: pointer;
}
.hamburger {
  position: absolute;
  /*top: 135px;*/
  top: 40px;
  left: 50px;
  width: 30px;
  height: 2px;
  background: #e58526;
  display: block;
  transform-origin: center;
  transition: .5s ease-in-out;
}

.hamburger:after, .hamburger:before {
  background: #e58526;
  content: "";
  display: block;
  position: absolute;
  transition: .5s ease-in-out;
  height: 100%;
  width: 100%;
}

.hamburger:before { top: -10px; }
.hamburger:after { bottom: -10px; }

.btnMenu { display: none; }

label .btnMenu:checked + .touchMenu {
  box-shadow: 0 0 0 100vw #FFF, 0 0 0 100vh #FFF; /*Tela cheia*/
  border-radius: 0;
}

label .btnMenu:checked + .touchMenu .hamburger {
  transform: rotate(45deg);
}

label .btnMenu:checked + .touchMenu .hamburger:after {
  transform: rotate(90deg);
  bottom: 0;
}

label .btnMenu:checked + .touchMenu .hamburger:before {
  transform: rotate(90deg);
  top: 0;
}

label .btnMenu:checked + .touchMenu + .list-menu {
	opacity: 1;
	z-index: 100;
	}

.list-menu {
  z-index: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: .25s 0s ease-in-out;
}

/*Itens do menu*/
.touchMenu_item {
  color: #111;
  display: block;
  font-family: "Raleway", "Arial", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.touchMenu_item:hover,
.touchMenu_item:focus{
	color: #e58526;
	text-decoration: none;
}
.list-iconSocial{
	margin-top: 70px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.touchMenu_itemSocial{
	color: #e58526;
}
.touchMenu_itemSocial:hover,
.touchMenu_itemSocial:focus{
	color: #111;
}