/* ============================================
           NAVBAR EMPRESARIAL
        ============================================ */
/* .navbar-wiar {
  background: rgba(11, 17, 32, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-wiar.scrolled {
  background: rgba(5, 8, 18, 0.98);
  box-shadow: 0 10px 40px rgba(7, 71, 166, 0.2);
} */

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--wiar-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--wiar-cyan);
  border-radius: 3px;
}

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(11, 17, 32, 0.6);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(6, 182, 212, 0.12);
  transition: all 0.3s;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11, 17, 32, 0.95);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand img {
  height: 42px;
  object-fit: contain;
}

/* Fallback SVG logo if image fails */
.logo-svg-fallback {
  display: none;
}
.navbar-brand .logo-svg-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--wiar-cyan);
  transition: all 0.3s;
}
.nav-link:hover {
  color: #fff !important;
}
.nav-link:hover::after {
  left: 0;
  right: 0;
}

.btn-portal {
  border: 1.5px solid var(--wiar-cyan);
  color: var(--wiar-cyan);
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-portal:hover {
  background: var(--wiar-cyan);
  color: #000;
  box-shadow: var(--glow-cyan);
}

.lang-toggle {
  display: flex;
  gap: 4px;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  padding: 4px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--wiar-cyan);
  color: #000;
}
