/* ═══════════════════════════════════════════════
   NAV.CSS — Navegación
   ReaperTech © 2026
═══════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,10,10,.7);
  transition: background .3s, border-color .3s;
}

nav.scrolled {
  background: rgba(10,10,10,.94);
  border-color: rgba(255,255,255,.08);
}

/* ── LOGO ── */
.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.1);
  transition: opacity .2s;
}

.nav-logo:hover .nav-logo-img { opacity: .85; }

.footer-logo-img {
  height: 36px;
}

.logo-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── NAV DERECHA ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ── DÓLAR BADGE (en nav) ── */
.nav-dolar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 7px 14px;
  transition: color .2s, border-color .2s;
}

.nav-dolar:hover { color: var(--cream); border-color: rgba(255,255,255,.16); }

.nav-dolar .dolar-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulseGlow 2.5s ease-in-out infinite;
  flex-shrink: 0;
}

.nav-dolar #nav-dolar-valor {
  color: var(--accent);
}

/* ── LINK ADMIN ── */
.nav-admin-link {
  font-family: 'Unbounded', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
  opacity: .4;
}
.nav-admin-link:hover { color: var(--muted); opacity: .7; }

/* ── LARGE SCREENS ── */
@media (min-width: 1400px) {
  nav { padding: 22px 64px; }
}

/* ── RESPONSIVE TABLET ── */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-dolar { display: none; }
  .nav-admin-link { display: none; }
  .nav-logo { font-size: 12px; }
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 480px) {
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 11px; gap: 8px; }
  .logo-dot { width: 6px; height: 6px; }
}
