/* IMPAKT — Navbar component (fuente única, file://) */

#site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: block;
  width: 100%;
}

#navbar {
  width: 100%;
  background-color: rgba(253, 252, 245, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #E7E5DC;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.nav-link {
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: #0F172A;
  transition: width 0.2s ease-out;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--active {
  color: #0F172A !important;
  font-weight: 600;
}

.nav-link--active::after {
  width: 100%;
}

.nav-mobile-link--active {
  color: #0F172A !important;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.04);
}
