/* seta de voltar na página de clientes/empresas */
.page-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;     /* aumento do círculo */
  height: 40px;    /* aumento do círculo */
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1.5px solid rgba(148, 163, 184, 0.7); /* borda mais forte */
  color: #e5e7eb;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.7);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease,
    background 0.12s ease;
}

.back-icon {
  font-size: 1.25rem; /* seta maior */
  line-height: 1;
}

