/* Barra de navegação global (não usa tag <header> para evitar conflito com CSS das páginas) */
#mgp-global-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #FF5800;
  box-shadow: 0 2px 20px rgba(1, 63, 127, 0.10);
  border-bottom: 2px solid rgba(17, 131, 212, 0.10);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}
#mgp-global-header .mgp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
#mgp-global-header .mgp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}
#mgp-global-header .mgp-brand img {
  height: 36px;
  width: auto;
  display: block;
}
#mgp-global-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: flex-end;
}
#mgp-global-header nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.95;
  padding: 6px 8px;
  border-radius: 8px;
}
#mgp-global-header nav a:hover {
  background: rgba(255,255,255,0.18);
}
#mgp-global-header .mgp-actions a {
  color: #013F7F;
  background: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  #mgp-global-header nav { display: none; }
}
