/* Ocultar en escritorio */
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

/* Mostrar solo en pantallas pequeñas */
@media screen and (max-width: 736px) {
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    background: #1e1e1e;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
  }

  .mobile-menu {
    display: none; /* Oculto por defecto */
    flex-direction: column;
    position: fixed;
    top: 3.5rem;
    right: 1rem;
    background: #333;
    z-index: 1000;
    border-radius: 5px;
    width: 70%;
    max-width: 250px;
  }

  .mobile-menu.show {
    display: flex;
  }

  .mobile-menu a {
    color: white;
    padding: 1rem;
    text-decoration: none;
    border-bottom: 1px solid #444;
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }
}
