/* ══════════════════════════════════════════════════════════════════
   FuiNomeado — shared layout (navbar + footer)
   Source of truth for the persistent top and bottom bars.
   Hardcoded colors so the partials render identically on every page,
   regardless of per-page CSS variable definitions.
   ══════════════════════════════════════════════════════════════════ */

/* ─── NAVBAR ─────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #c9e8f3;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  height: 72px;
  width: auto;
  transition: transform .2s ease;
}
.nav-logo:hover { transform: scale(1.08); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: #219ebc; }
.nav-cta {
  background: #219ebc;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: #023047; transform: translateY(-1px); }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #023047;
  border-radius: 2px;
  transition: all .3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid #c9e8f3;
  padding: 16px 24px 24px;
  gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid #c9e8f3;
}
.nav-mobile a:last-child { border-bottom: none; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid #c9e8f3;
  background: #ffffff;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo { height: 28px; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .82rem;
  color: #64748B;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: #219ebc; }
.footer-legal {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px 24px;
  border-top: 1px solid #c9e8f3;
  padding-top: 20px;
  font-size: .78rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}
