.navbar {
  display: flex;
  align-items: center;
  gap: 1%;
  justify-content: space-between;
  padding: 30px 0px;
  max-width: 1000px;
  margin: auto;
  width: 96%;
}

.navbar-logo img {
  width: 90%;
  min-width: 135px;
  max-width: 150px;
  margin: 0;
}

.navbar-buttons {
  width: 100%;
  max-width: 400px;
  display: flex;
  justify-content: end;
  gap: 10px;
}

.navbar-buttons button:first-child {
  background-color: var(--Roxo-profundo);
  border: 1.5px solid white;
}

.navbar-buttons button:first-child:hover {
  background-color: white;
  color: var(--Roxo-profundo);
  transition: all 0.3s ease;
}

.navbar-buttons button:last-child {
  background-color: var(--Laranja-vip);
  display: flex;
  gap: 5px;
  align-items: center;
}

.navbar-buttons button:last-child:hover {
  background-color: var(--Laranja-escuro);
  transition: all 0.3s ease;
}

.navbar-buttons button:last-child img{
    width: 17px;
    height: 17px;
}

.menu {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  list-style: none;
}

.menu li:hover{
    color: var(--Laranja-vip);
    transition: all 0.3s ease;
}

a{
    font-size: var( --fsize-p);
}

@media (max-width: 768px) { 
  .menu {
    display: none;
  }
  .navbar-buttons button:first-child {
    display: none;
  }
}