.menu-mobile{
    display: none;
}

.menu {
    /*background: rgb(255, 255, 255);*/
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: fixed;
    padding-top: 30px;
    padding-left: 10px;
}
  
.hamburguer {
    position: relative;
    display: block;
    background: #000;
    width: 30px;
    height: 2px;
    transition: 0.5s ease-in-out;
}
  
.hamburguer:before,
.hamburguer:after {
    background: #000;
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.5s ease-in-out;
}
  
.hamburguer:before {
    top: 10px;
}
  
.hamburguer:after {
    bottom: 10px;
}
  
.menu-mobile input {
    display: none;
}
  
.menu-mobile  input:checked ~ label .hamburguer {
    transform: rotate(45deg);    
}
  
.menu-mobile  input:checked ~ label .hamburguer:before {
    transform: rotate(90deg);
    top: 0;    
}
  
.menu-mobile input:checked ~ label .hamburguer:after {
    transform: rotate(90deg);
    bottom: 0;    
}

.menu-mobile input:checked ~ ul {
    opacity: 1;
    visibility: visible;
}

.menu-mobile ul {
    position: absolute;
    transform: translate(25%, 25%);
    list-style: none;
    opacity: 0;
    transition: .25s .1s cubic-bezier(0, 1.07, 0, 1.02);
    visibility: hidden;
    z-index: 2;
    margin-top: 20px;
}

.menu-mobile ul li{
    margin-top: 10px;
	
}

.menu-mobile ul li a {
	text-decoration: none;
    color: var(--preto);    
}

.menu-mobile ul li a:hover {
	color: var(--azul);
}

@media screen and (max-width:525px){
    .menu-mobile{
        display: flex;
    } 
}