nav {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Centraliza os itens do nav verticalmente */
    width: 100%;
    background: #190403;
}

.nav-links {
    display: flex;
    justify-content: space-around; /* Distribui os links horizontalmente */
    align-items: center;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    display: block;
    padding: 30px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 10px;
    transition: all 0.5s;
}

nav ul li a:hover {
  color: #a79e9e;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  .menu-toggle {
      display: block;
      cursor: pointer;
  }
}


