nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  position: fixed;
  z-index: 500;
  width: 100%;
  border-bottom: 1px solid #fff;
  user-select: none;
}

.logo-nav{
  width: 170px;
  margin-left: 30px;
}

nav ul{
  list-style-type: none;
  display: flex;
  gap: 30px;
  margin-right: 50px;
}

nav a{
  text-decoration: none;
  color: #fff;
  transition: .5s;
}
nav a:hover{
  font-size: 23px;
}

.navbar{
  width: 40px;
  display: none;
  cursor: pointer;
  margin-right: 20px;
}

.menu-responsive{
  position: fixed;
  z-index: 600;
  background-color: rgb(0, 0, 0, 0.9);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px;
  user-select: none;
  transform: translateX(100%);
  animation: xxxx 1s forwards;
}
@keyframes abrirMenuResponsive {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes cerrarMenuResponsive {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

.menu-responsive ul{
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.menu-responsive a{
  text-decoration: none;
  color: #fff;
  transition: .5s;
}

.menu-responsive span{
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}



@media only screen and (max-width: 1030px) {
  .navbar{
    display: block;
  }

  nav ul{
    display: none;
  }

}

nav a.active {
  background-color: rgb(255, 255, 255, 0.3);
  padding: 7px;
  border-radius: 10px;
}

.menu-responsive a.active{
  background-color: rgb(255, 255, 255, 0.3);
  padding: 7px;
  border-radius: 10px;
}