/* ═══════════════════════════════════════════════════════════
   WP-NAVBAR — Components
   Links, separadores, dropdown. Variables resueltas a valores
   reales para no depender del :root del sitio estático.
   --cyan: #00d3f3 | --nav-sep: #9e9e9e | --font-mono: Roboto Mono
═══════════════════════════════════════════════════════════ */

.nl {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 6px;
  line-height: 106px;
  display: inline-block;
}
.nl:hover { color: #00d3f3; }

.nl-sep {
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  color: #9e9e9e;
  line-height: 106px;
  display: inline-block;
  padding: 0 2px;
}

/* ── Dropdown ─────────────────────────────────────────── */
.nl-dropdown {
  position: relative;
  display: inline-flex;
  align-self: stretch;
  align-items: center;
}

.nl-caret {
  display: inline-block;
  font-size: 8px;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 1;
  color: rgba(255, 255, 255, 0.50);
  transition: transform 0.25s ease, color 0.25s ease;
}
.nl-dropdown:hover .nl-caret {
  transform: rotate(180deg);
  color: #00d3f3;
}

.nl-dropdown__trigger {
  height: 100%;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nl-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 240px;
  background: rgba(4, 8, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.5px solid rgba(0, 211, 243, 0.20);
  border-top: 2px solid rgba(0, 211, 243, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 10000;
}

.nl-dropdown:hover .nl-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nl-dropdown__item {
  display: block;
  font-family: 'Roboto Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  padding: 14px 22px;
  white-space: nowrap;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.07);
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}
.nl-dropdown__item:last-child { border-bottom: none; }
.nl-dropdown__item:hover {
  color: #00d3f3;
  background: rgba(0, 211, 243, 0.07);
  padding-left: 30px;
}
