/* ######################################################## */
/* BUTTON MENU MOVILES */
ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0px 0px 0px 0px;
  align-items: center;
}


.banner_ul_toggle {
  gap: 15px;
}


/* Estilos base */
.toggle-button {
  display: none;
  background-color: #8d09a8;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 10px;
}

#menuList {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}


/* Ocultar menú cuando está colapsado */
#menuList.collapse {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  align-items: center;
  justify-content: center;
  margin: 40px;
}

/* SOLO en móviles: mostrar botón y colapsar menú */
@media (max-width: 1090px) {
  .toggle-button {
    display: block;
  }

  #menuList.collapsed {
    display: flex;
    flex-direction: column;
  }

  #menuList.expanded {
    display: none;
  }

  ul {
    gap: 0;
  }

  .banner_ul_toggle {
    gap: 15px;
  }

}

/* EN pantallas grandes, siempre mostrar el menú */
@media (min-width: 1090px) {
  #menuList {
    display: none;
    flex-direction: column;
  }
}



/* ######################################################## */