/* ============================================================
   VIMEDENT — Navbar
   ============================================================ */

nav#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #dceaf4;
  transition: box-shadow .3s;
}
nav#navbar.scrolled {
  box-shadow: 0 4px 24px rgba(15,42,82,.08);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: auto;
  border-radius: 10px;
  padding: 4px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: #0f2a52;
  letter-spacing: .04em;
}
.nav-logo-text span {
  font-size: .68rem;
  font-weight: 300;
  color: #6b7f99;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Links */
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 400;
  color: #1a2535;
  letter-spacing: .03em;
  transition: color .2s;
}
.nav-links a:hover {
  color: #1e5fa8;
}

/* CTA */
.nav-cta {
  background: #1e5fa8;
  color: #ffffff;
  border: none;
  padding: .55rem 1.4rem;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover {
  background: #0f2a52;
  transform: translateY(-1px);
}

/* Burger (móvil) */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0f2a52;
  border-radius: 2px;
  transition: .3s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #ffffff;
    padding: 1.5rem 5vw 2rem;
    border-bottom: 1px solid #dceaf4;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    gap: 1.2rem;
    z-index: 99;
  }
  .burger {
    display: flex !important;
    flex-direction: column;
  }
  .nav-cta {
    display: none !important;
  }
}