@charset "utf-8";
/* CSS Document */

.menu_hamburguesa {
  display: none; /* Oculto en desktop */
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Lista del menú */
ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
}

ul.menu li {
  color: white;
  cursor: pointer;
}

/* SOLO en móvil */
@media (max-width: 1024px) {
  .menu_hamburguesa {
    display: flex;        /* <--- aquí se muestra en móvil */
    width: 100%;	
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }

  .con_menu_haburguesa {
    width: auto;
  }

  .menu-toggle {
    display: block;
  }

  ul.menu {
    display: none;
    flex-direction: column;
    background: #2980b9;
    margin-top: 10px;
    border-radius: 8px;
    padding: 10px;
  }

  ul.menu li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  ul.menu li:last-child {
    border-bottom: none;
  }
	.ligas_hamburguesa{
	font-family: gobold;
		font-size: 0.8em;
		color: #fff;
		text-decoration: none;
}
}
