/* Cabeçalho da página */
.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.page-head__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-head__icon {
  font-size: 28px;
  color: var(--brand-500, #1e3c72);
}
.page-head__title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 700;
}
.page-head__subtitle {
  margin: 0;
  font-size: .9375rem;
  color: #6b7280;
}
.btn-help {
  border-radius: 50px;
  padding: .4rem .75rem;
}

/* Balão (coachmark) acima do formulário */
.hint-bubble {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft, #d5e4ff);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm, 0 2px 6px rgba(0, 0, 0, .05));
}
.hint-bubble__icon {
  font-size: 18px;
  color: var(--brand-primary, #4a6fdc);
}
.hint-bubble__close {
  border-radius: 50px;
  padding: 4px 10px;
}
.hint-bubble__arrow {
  position: absolute;
  top: -8px;
  left: 24px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-left: 1px solid var(--line-soft, #d5e4ff);
  border-top: 1px solid var(--line-soft, #d5e4ff);
  transform: rotate(45deg);
}
