/* Whatsapp Fixo */
.whatsapp-fixo {
	position: fixed;
	bottom:20px;
	right:20px;
	z-index: 999;
	animation: shake 1s infinite;
}
/* Menu sem borda */
.menu.superior .nivel-um li{
	border-right: none;
}
.menu.lateral *{
	transition: 200ms background-color;   
}


@media only screen and (min-width: 767px){
    .menu.superior .nivel-um{
		width: fit-content;
    	margin: auto;
    }
}
@keyframes shake{
	0%{
    	margin-right: 0px;
    }
    
    50%{
        margin-right: 20px;
    }
    100%{
        margin-right: 0px;
    }
}