.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  padding: 1.2rem;
  position: relative;
  /* font-family: "Open Sans", Arial, sans-serif; */
  /* font-weight: 400; */

  position: fixed; 
  top: 0; 
  width: 100%; 
  z-index: 1000; 
}

.navbar .logo {
  text-decoration: none;
  display: flex;
}

.navbar-logo-img {
  width: 70%;
  border-radius: 4px;
}

.navbar .menu-icon {
  color: #fff;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar .menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #d6d6d6;
  flex-direction: column;
  align-items: center;
  border-radius: 0 0 2rem 2rem;
  border-top: 1px solid #a5abb3;
  padding: 0 2rem;
  z-index: 10;
}

.navbar .menu a {
  width: 100%;
  text-align: start;
  align-items: center;
  padding: 1.5rem;
  font-size: 0.7rem;
  color: #576269;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid #a5abb3;
}

.navbar .menu a.active {
  color: #d39916;
  border-bottom: 2px solid #d39916;
}

.navbar .menu .social-network {
  padding: 0;
}

.menu button {
  margin: 1rem 0 0.3rem 0;
  align-items: center;
  background: linear-gradient(79deg, #262626, #000 50%, #070707);
  border: none;
  border-radius: 6rem;
  display: flex;
  height: 3rem;
  justify-content: center;
  width: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
}

.menu button:last-child {
  margin-bottom: 1rem;
}

.menu svg {
  width: 2rem;
}

.navbar .menu a:hover {
  /* background-color: #d39916; */
  border-radius: 4px;
  color: #d39916;
}

.navbar .menu.open {
  display: flex;
}

@media (min-width: 935px) {
  .navbar .menu {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 0.5rem;
    background-color: transparent;
    border: none;
    padding: 0;
  }

  .navbar-logo-img {
    width: 20vw;
    border-radius: 4px;
  }

  .navbar .menu a {
    width: auto;
    padding: 0.5rem 0.5rem;
    font-size: 0.8rem;
    border: none;
    text-wrap: nowrap;
    color: #999;
  }

  .navbar .menu button {
    height: 2rem;
    width: 2rem;
    margin: 0rem;
    cursor: pointer;
  }

  .divisor {
    display: block;
    margin-left: 10vw;
    background-color: #000;
    color: #000;
  }

  .menu svg {
    width: 1.5rem;
  }

  hr {
    display: none;
  }

  .navbar .menu-icon {
    display: none;
  }
}

@media (min-width: 1100px) {
  .divisor {
    margin-left: 20vw;
  }

  .navbar-logo-img {
    width: 20vw;
  }
}
