/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jan 18 2026 | 08:43:28 */
/* ===============================
   MENÚ HAMBURGUESA – NEÓN REAL
   Compatible con Blocksy
================================ */

button.ct-header-trigger.ct-toggle {
  position: relative !important;
  background: transparent !important;
  border-radius: 8px !important;
  padding: 8px !important;
  overflow: visible !important;
}

/* Capa de neón */
button.ct-header-trigger.ct-toggle::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 8px;
  pointer-events: none;
  z-index: -1;

  box-shadow:
    8px 8px 6px rgba(255, 0, 75, 0.7),
    0 0 8px rgba(255, 0, 75, 0.6);

  animation: neonMenuPulse 1.1s linear infinite;
}

/* Animación */
@keyframes neonMenuPulse {
  0% {
    box-shadow:
      0px 0px 0px rgba(255, 0, 75, 0.5),
      0 0 6px rgba(255, 0, 75, 0.4);
    opacity: 0.75;
  }

  50% {
    box-shadow:
      8px 8px 6px rgba(255, 0, 75, 1),
      0 0 18px rgba(255, 0, 75, 1);
    opacity: 1;
  }

  100% {
    box-shadow:
      0px 0px 0px rgba(255, 0, 75, 0.5),
      0 0 6px rgba(255, 0, 75, 0.4);
    opacity: 0.75;
  }
}


