ul {
  margin: 0px;
  padding: 0px;
}

a {
 	color: black;
 	text-decoration: none;
	font-family: sans-serif;
 	font-weight:bold;
	text-shadow: 0px 0px 10px #FFFFFF;
}

a:hover {
  		background:url("../imagens/Degrade Menu.png")

}

#header {
    box-sizing: border-box;
    height: 40px;
    padding-top: 1px;
    display: flex;
    float: right;
	margin-right: 6%;

	
}

#nav{

}

.nav:after {
	align-content: right; 
	text-align: right;
	content: "";
    display: table;
    clear: both;
}


#menu {
  	display: flex;
  	list-style: none;
 	gap: 0.5rem;

}

#menu a {
 	display: block;
  	padding: 0.5rem;
	text-align: center;
}

#btn-mobile {
  display: none;

}



@media (max-width : 800px ){
  #menu {
    display: block;
    position: absolute;
    width: 100%;
    top: 70px;
    right: 0px;	
    transition: 0.6s;
    z-index: 1000;
    height: 0px;
    visibility: hidden;
    overflow-y: hidden;
  }
	
  #nav.active #menu {
    height: calc(100vh - 70px);
    visibility: visible;
    overflow-y: auto;
	font-size: 30px;
  }
  #menu a {
    padding: 1rem 0;
    margin: 0 1rem;
    border-bottom: 3px solid rgba(0, 0, 0, 0.10);
	background: url("../imagens/Degrade Menu_Sub.png")
			
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
  }
  #hamburger {
    border-top: 2px solid;
    width: 20px;
  }
  #hamburger::after,
  #hamburger::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
}
