/* ================================================
   NAVBAR STICKY — 3º Ofício de Registro PVH/RO
   ================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 0.5px solid rgba(10, 22, 40, 0.08);
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 12px rgba(10, 22, 40, 0.06);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 18px rgba(10, 22, 40, 0.1);
}

.navbar__container {
  display: flex;
  align-items: center;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: 0;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
  line-height: 1;
}

.navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__brand-name {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #0a1628;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
}

.navbar__brand-sub {
  font-size: 10px;
  font-weight: 500;
  color: #0a1628;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.navbar__links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.navbar__link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #0a1628;
  padding: 8px 13px;
  border-radius: 7px;
  text-decoration: none;
  transition: color 0.2s, font-weight 0.2s;
  white-space: nowrap;
}

.navbar__link:hover {
  color: #185FA5;
  background: transparent;
  font-weight: 700;
}

.navbar__link--active {
  color: #185FA5;
  font-weight: 700;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 18px;
  background: #185FA5;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.navbar__cta:hover { background: #1a6bb8; }

.navbar__toggle {
  display: none;
  background: transparent;
  border: 0.5px solid rgba(10, 22, 40, 0.2);
  border-radius: 7px;
  color: rgba(10, 22, 40, 0.8);
  font-size: 20px;
  padding: 6px 8px;
  cursor: pointer;
  margin-left: 12px;
  line-height: 1;
}

.navbar__mobile {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 0.5px solid rgba(10, 22, 40, 0.08);
  padding: 12px 1.5rem 1.5rem;
}

.navbar__mobile.open {
  display: block;
}

.navbar__mobile-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar__mobile-links a {
  display: block;
  font-size: 14px;
  color: rgba(10, 22, 40, 0.72);
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.navbar__mobile-links a:hover {
  color: #0a1628;
  background: rgba(10, 22, 40, 0.06);
}

.navbar__mobile-cta {
  display: block;
  margin-top: 8px;
  background: #185FA5 !important;
  color: #fff !important;
  text-align: center;
  font-weight: 500;
  border-radius: 8px;
}

body.preview-body {
  padding-top: 64px;
  margin: 0;
}

@media (max-width: 900px) {
  .navbar__nav  { display: none; }
  .navbar__cta  { display: none; }
  .navbar__toggle { display: block; }
}
