/* ============================================
   nav.css — Barra de navegación
   Afecta: index.html (nav superior)
   ============================================ */

nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  background: rgba(255,251,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
}

.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 900; font-size: 22px;
  color: var(--texto); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--naranja);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-logo em { color: var(--naranja); font-style: normal; }

.nav-links {
  display: flex; align-items: center;
  gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 15px; font-weight: 600;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--naranja); }

.btn-nav {
  background: var(--naranja);
  color: white !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  box-shadow: var(--shadow-naranja);
  transition: all 0.2s !important;
}
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,53,0.4) !important;
}

@media (max-width: 600px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
}
