.navbar {/*  */  position: fixed;  top: 0px;  right: 60px;  overflow-x: visible; /* Hide horizontal scrollbar */  overflow-y: visible; /* mostra tudo */  background-color: #0b0909;  z-index: 2;}.navbar a {  float: left;  font-size: 16px;  font-weight: bold;  min-width: 80px;  color: white;  text-align: center;  padding: 14px 16px;  text-decoration: none;}.dropdown {  float: left;  overflow: hidden;}.dropdown .dropbtn {  font-size: 16px;    border: none;  font-weight: bold;  outline: none;  color: white;  padding: 14px 16px;  background-color: inherit;  font-family: 'Arial', sans-serif;  margin: 0;}.navbar a:hover, .dropdown:hover .dropbtn {  background-color: #0b0909;  min-width: 180px;}.dropdown-content {  display: none;  position: absolute;  background-color: #0b0909;  min-width: 180px;  box-shadow: 10px 10px 20px 10px rgba(0,0,0,0.4);  z-index: 1;}.dropdown-content a {  float: none;  color: white;  padding: 12px 16px;  text-decoration: none;  display: block;  text-align: left;}.dropdown-content a:hover {  background-color: #0b0909;  text-decoration: underline;  color:white;}.dropdown:hover .dropdown-content {  display: block;}