.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ACTIVO */
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* PANEL */
.menu-panel {
  position: relative;
  width: 260px;
  height: 100vh;
  background: rgb(222, 1, 122);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* PANEL ACTIVO */
.mobile-menu.active .menu-panel {
  transform: translateX(0);
}

/* BOTÓN CERRAR */
.close-btn {
  align-self: flex-end;
  margin: 15px;
  font-size: 28px;
  color: #C8EF23;
  background: none;
  border: none;
  cursor: pointer;
}

/* LINKS */
.menu-links {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  background: rgb(222, 1, 122);
}

.menu-links a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
}

.menu-links a:hover {
  background: rgba(255,255,255,0.1);
}

