/* ── Shared Latinweb Navigation ── */
nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #0E2035;
  border-bottom: 0.5px solid rgba(132,193,250,0.15);
  font-family: 'Instrument Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
}
.nav-logo {
  font-size: 15px;
  font-weight: 600;
  color: #DEEEFF;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  color: #84C1FA;
  text-decoration: none;
  letter-spacing: 0.03em;
  opacity: 0.7;
  transition: opacity 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #0070C0;
  transition: width 0.25s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #DEEEFF;
  background: #0070C0;
  padding: 8px 20px;
  border-radius: 4px;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: #84C1FA; border-radius: 2px; }

@media (max-width: 900px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
  .nav-cta { font-size: 13px; padding: 7px 16px; }
}

@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open + .nav-cta { display: block; margin: 0 20px 16px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 52px;
    left: 0;
    right: 0;
    background: #0E2035;
    padding: 20px;
    gap: 20px;
    border-bottom: 0.5px solid rgba(132,193,250,0.15);
    z-index: 99;
  }
  .nav-links.open a { font-size: 16px; }
}
