#menu-button {
  font-family: "PlayfairDisplay", Sans-serif;
  background-color: transparent;
  color: white;
  padding: 0px 10px;
  font-size: 20px;
  border: solid 2px #DCAD2C;
  cursor: pointer;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border-radius: 0px;
  margin-bottom: 20px;
}

#menu-button:hover {
    background-color: transparent;
}

#menu-arrow {
    font-size: 14px;
    transition: transform 0.3s, color 0.3s;
    color: white; /* Color inicial de la flecha */
}

#menu-dropdown {
  display: none;
  position: absolute;
  font-family: "PlayfairDisplay", Sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  top: 50px;
  left: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  width: 280px;
  border-radius: 5px;
  line-height: 30px;
}

#menu-dropdown li {
    padding: 0px 20px;
}

#menu-dropdown li:hover {
    background-color: #f2f2f2;
}

#menu-dropdown a {
    text-decoration: none;
    color: #333;
    display: block;
}

#menu-arrow.open {
    transform: rotate(180deg); /* Rotar la flecha hacia arriba */
    color: yellow; /* Cambiar el color a amarillo */
}

@media(max-width:767px){
    #menu-button {
      width: 100%;
      justify-content: center !important;
    }
        
    #menu-dropdown {
      left: 50%;
      transform: translate(-50%)
    }
}