/* ================================
   HIDROFONT — Nav CSS
   Estilo Outfit moderno
================================ */

/* TOPBAR */
.topbar {
  background: #1e3a5f;
  padding: .5rem var(--space-md);
  text-align: center;
}
.topbar p {
  color: #8aa5bc;
  font-size: 12.5px;
  line-height: 1.5;
}
.topbar p strong { color: #fff; }
.topbar p a {
  color: #60a5fa;
  margin-left: 6px;
  text-decoration: underline;
  cursor: pointer;
}

/* NAV */
.nav {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow .2s;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* LOGO */
.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-links a {
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover { color: #1e3a5f; }
.nav-links a.active {
  color: #1e3a5f;
  font-weight: 600;
}

/* DERECHA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-tel {
  color: #1e3a5f;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}
.nav-cta {
  background: #1e3a5f;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: opacity .15s;
  text-decoration: none;
}
.nav-cta:hover { opacity: .88; }

/* HAMBURGUESA */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1e3a5f;
  border-radius: 2px;
  transition: all .3s;
}

/* MENÚ MÓVIL */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding: 1rem var(--space-md);
  gap: 0;
}
.nav-mobile a {
  color: #475569;
  font-size: 15px;
  font-weight: 500;
  padding: .85rem 0;
  border-bottom: 1px solid #f1f5f9;
  display: block;
  text-decoration: none;
  transition: color .15s;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: #1e3a5f; }
.nav-mobile .nav-cta {
  margin-top: 1rem;
  text-align: center;
  display: block;
  padding: 12px;
}

/* ACTIVO */
.nav-links a.active { color: #1e3a5f; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links, .nav-tel { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }
}