/* =========================================================================
   Talent Hub CDV — Design System
   Protótipo de ATS (Applicant Tracking System) — Clube do Valor
   ========================================================================= */

:root {
  /* Paleta */
  --brand:        #1b3a6b;   /* azul institucional */
  --brand-600:    #214a86;
  --brand-500:    #2c5fa8;
  --brand-300:    #6f93c9;
  --brand-050:    #eef3fb;

  --accent:       #16a34a;   /* verde "valor" */
  --accent-050:   #e9f8ef;

  --ink:          #0f1b2d;
  --text:         #283447;
  --muted:        #64748b;
  --line:         #e3e8ef;
  --line-2:       #eef1f5;
  --bg:           #f5f7fa;
  --surface:      #ffffff;

  --warn:         #d97706;
  --warn-050:     #fef3e2;
  --danger:       #dc2626;
  --danger-050:   #fdecec;
  --info:         #2563eb;
  --info-050:     #e8f0fe;

  --radius:       12px;
  --radius-sm:    8px;
  --shadow-sm:    0 1px 2px rgba(16,27,45,.06), 0 1px 3px rgba(16,27,45,.04);
  --shadow-md:    0 4px 16px rgba(16,27,45,.08);
  --shadow-lg:    0 12px 32px rgba(16,27,45,.14);

  --sidebar-w:    248px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-500); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { color: var(--ink); margin: 0; font-weight: 650; }

/* ============================ Layout app =============================== */
.app { display: flex; min-height: 100vh; }

.sidebar {
  width: var(--sidebar-w);
  background: var(--brand);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
}

.sidebar .brand {
  display: flex; align-items: center; gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.sidebar .brand .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #0e7a37);
  display: grid; place-items: center;
  font-weight: 800; color: #fff; font-size: 15px;
  box-shadow: var(--shadow-sm);
}
.sidebar .brand b { font-size: 15px; color: #fff; line-height: 1.1; }
.sidebar .brand small { display: block; color: rgba(255,255,255,.6); font-weight: 500; font-size: 11px; }

.nav { padding: 12px 12px 24px; overflow-y: auto; flex: 1; }
.nav .group { color: rgba(255,255,255,.45); font-size: 10.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 16px 12px 6px; }
.nav a {
  display: flex; align-items: center; gap: 11px;
  padding: 9px 12px; border-radius: 9px;
  color: rgba(255,255,255,.82); font-weight: 500; font-size: 13.5px;
  margin-bottom: 2px;
}
.nav a:hover { background: rgba(255,255,255,.08); color: #fff; text-decoration: none; }
.nav a.active { background: rgba(255,255,255,.16); color: #fff; }
.nav a .ic { width: 18px; height: 18px; flex: none; opacity: .9; }
.nav a .badge { margin-left: auto; }

/* Barra de rolagem da coluna lateral: some por padrão (aquela barra feia) e reaparece
   fininha/arredondada só ao passar o mouse. Rolagem por trackpad/scroll não muda. */
.sidebar .nav { scrollbar-width: thin; scrollbar-color: transparent transparent; }
.sidebar .nav:hover { scrollbar-color: rgba(255,255,255,.24) transparent; }
.sidebar .nav::-webkit-scrollbar { width: 10px; }
.sidebar .nav::-webkit-scrollbar-track { background: transparent; }
.sidebar .nav::-webkit-scrollbar-thumb {
  background: transparent; border-radius: 8px;
  border: 3px solid transparent; background-clip: content-box;
}
.sidebar .nav:hover::-webkit-scrollbar-thumb { background: rgba(255,255,255,.22); background-clip: content-box; }
.sidebar .nav::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.38); background-clip: content-box; }

.sidebar .me {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; border-top: 1px solid rgba(255,255,255,.10);
}
.sidebar .me .avatar { background: var(--brand-300); }
/* Nome em cima, perfil de acesso embaixo (antes ficavam lado a lado por serem inline). */
.sidebar .me .info { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.sidebar .me .info b { color: #fff; font-size: 13px; }
.sidebar .me .info small { color: rgba(255,255,255,.6); font-size: 11px; }

.main { margin-left: var(--sidebar-w); flex: 1; min-width: 0; display: flex; flex-direction: column; }

/* Recolher a barra lateral. Botão de recolher fica DENTRO da sidebar (.brand); o de expandir
   fica na topbar e só aparece quando recolhida. Alterna .nav-collapsed no .app. */
.sidebar { transition: transform .2s ease; }
.main { transition: margin-left .2s ease; }
.app.nav-collapsed .sidebar { transform: translateX(-100%); }
.app.nav-collapsed .main { margin-left: 0; }

/* Botão de recolher dentro da sidebar (aberta) */
.sidebar-toggle {
  margin-left: auto; flex: none;
  display: grid; place-items: center;
  width: 30px; height: 30px; padding: 0;
  border: none; border-radius: 7px; cursor: pointer;
  background: transparent; color: rgba(255,255,255,.7);
}
.sidebar-toggle:hover { background: rgba(255,255,255,.12); color: #fff; }
.sidebar-toggle .ic { width: 18px; height: 18px; }

/* Botão de expandir na topbar — só quando recolhida */
.app:not(.nav-collapsed) .topbar-expand { display: none; }

.topbar {
  height: 62px; background: var(--surface); border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 16px; padding: 0 26px;
  position: sticky; top: 0; z-index: 20;
}
.topbar .search {
  flex: 1; max-width: 440px; display: flex; align-items: center; gap: 9px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 9px;
  padding: 8px 12px; color: var(--muted);
}
.topbar .search input { border: 0; background: transparent; outline: none; width: 100%; font-size: 13.5px; color: var(--text); }
.topbar .spacer { flex: 1; }
.topbar .icon-btn {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 9px; color: var(--muted); cursor: pointer; position: relative;
}
.topbar .icon-btn:hover { background: var(--bg); color: var(--text); }
.topbar .icon-btn .dot { position: absolute; top: 8px; right: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--danger); border: 2px solid #fff; }

.content { padding: 26px; flex: 1; }

/* Page header */
.page-head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head .titles { flex: 1; min-width: 240px; }
.page-head h1 { font-size: 22px; }
.page-head p { color: var(--muted); margin: 4px 0 0; font-size: 13.5px; }
.page-head .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.breadcrumb { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; display: flex; gap: 6px; align-items: center; }
.breadcrumb a { color: var(--muted); }

/* ============================ Components ============================== */
svg.ic { width: 18px; height: 18px; flex: none; }

.avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--brand-050); color: var(--brand);
  display: grid; place-items: center; font-weight: 700; font-size: 12.5px;
  flex: none; overflow: hidden;
}
.avatar.sm { width: 26px; height: 26px; font-size: 10.5px; }
.avatar.lg { width: 56px; height: 56px; font-size: 19px; }
.avatar.has-photo { background-size: cover; background-position: center; color: transparent; }

/* editor de foto de perfil */
.avatar-edit { position: relative; display: inline-block; cursor: pointer; }
.avatar-edit-badge { position: absolute; right: 2px; bottom: 2px; width: 28px; height: 28px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; border: 2px solid #fff; }
.avatar-edit-badge svg { width: 14px; height: 14px; }
.avatar-edit:hover .avatar-edit-badge { background: var(--brand-600); }

.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 9px 15px; border-radius: 9px; font-weight: 600; font-size: 13.5px;
  border: 1px solid transparent; cursor: pointer; background: var(--surface);
  color: var(--text); white-space: nowrap; transition: .12s; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn .ic { width: 16px; height: 16px; }
.btn.primary { background: var(--brand); color: #fff; }
.btn.primary:hover { background: var(--brand-600); }
.btn.accent { background: var(--accent); color: #fff; }
.btn.accent:hover { background: #0e7a37; }
.btn.ghost { border-color: var(--line); color: var(--text); }
.btn.ghost:hover { background: var(--bg); }
.btn.subtle { background: var(--brand-050); color: var(--brand); }
.btn.subtle:hover { background: #e2ebf8; }
.btn.sm { padding: 6px 11px; font-size: 12.5px; border-radius: 8px; }
.btn.danger { background: var(--danger); color: #fff; }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.card .card-head {
  padding: 16px 18px; border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 12px;
}
.card .card-head h3 { font-size: 15px; flex: 1; }
.card .card-body { padding: 18px; }

.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 2px 9px; border-radius: 999px; font-size: 11.5px; font-weight: 600;
  background: var(--bg); color: var(--muted); border: 1px solid var(--line);
}
.badge .pip { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge.green  { background: var(--accent-050); color: #0e7a37; border-color: #c6ecd5; }
.badge.blue   { background: var(--info-050);  color: #1d4ed8; border-color: #cfe0fd; }
.badge.amber  { background: var(--warn-050);  color: #b45309; border-color: #f6dcae; }
.badge.red    { background: var(--danger-050);color: #b91c1c; border-color: #f6c9c9; }
.badge.gray   { background: #f1f3f7; color: #475569; }
.badge.purple { background: #f1ecfd; color: #7c3aed; border-color: #ddd1fa; }

.tag { font-size: 11px; padding: 2px 8px; border-radius: 6px; background: var(--brand-050); color: var(--brand-600); font-weight: 600; }

/* Stats / KPI */
.grid { display: grid; gap: 16px; }
.kpi-row { grid-template-columns: repeat(4, 1fr); }
.kpi {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.kpi .label { color: var(--muted); font-size: 12.5px; font-weight: 600; display:flex; align-items:center; gap:7px; }
.kpi .value { font-size: 28px; font-weight: 750; color: var(--ink); margin: 8px 0 2px; letter-spacing: -.5px; }
.kpi .delta { font-size: 12px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.kpi .delta.up { color: var(--accent); }
.kpi .delta.down { color: var(--danger); }
.kpi .ic-box { width:34px;height:34px;border-radius:9px;display:grid;place-items:center; }

/* Table */
.tbl-scroll { overflow-x: auto; }
.tbl-scroll table.tbl { min-width: 720px; }
table.tbl { width: 100%; border-collapse: collapse; }
table.tbl th {
  text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); font-weight: 700; padding: 11px 16px; border-bottom: 1px solid var(--line);
  background: var(--bg);
}
table.tbl td { padding: 13px 16px; border-bottom: 1px solid var(--line-2); font-size: 13.5px; vertical-align: middle; }
table.tbl tr:last-child td { border-bottom: 0; }
table.tbl tbody tr:hover { background: #fafbfd; }
.cell-user { display: flex; align-items: center; gap: 10px; }
.cell-user b { color: var(--ink); font-weight: 600; }
.cell-user small { color: var(--muted); display: block; font-size: 11.5px; }

/* progress bar */
.bar { height: 7px; background: var(--line-2); border-radius: 99px; overflow: hidden; }
.bar > span { display: block; height: 100%; background: var(--brand-500); border-radius: 99px; }
.bar.green > span { background: var(--accent); }

/* Kanban */
.kanban { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px; }
.kanban .col {
  width: 290px; flex: none; background: var(--bg);
  border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column;
}
.kanban .col-head { padding: 12px 14px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
.kanban .col-head .dotc { width: 9px; height: 9px; border-radius: 50%; }
.kanban .col-head b { font-size: 13px; color: var(--ink); }
.kanban .col-head .count { margin-left: auto; background: var(--surface); border: 1px solid var(--line);
  border-radius: 99px; font-size: 11px; font-weight: 700; color: var(--muted); padding: 1px 8px; }
.kanban .col-body { padding: 10px; display: flex; flex-direction: column; gap: 9px; min-height: 60px; overflow-y: auto; }
.cand-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px;
  box-shadow: var(--shadow-sm); cursor: grab; transition: .12s;
}
.cand-card:hover { box-shadow: var(--shadow-md); border-color: var(--brand-300); transform: translateY(-1px); }
.cand-card.dragging { opacity: .5; }
.cand-card .top { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.cand-card .top b { font-size: 13px; color: var(--ink); flex: 1; }
.cand-card .meta { color: var(--muted); font-size: 11.5px; margin-bottom: 9px; }
.cand-card .foot { display: flex; align-items: center; gap: 8px; }
.cand-card .stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.col-body.drop-hover { outline: 2px dashed var(--brand-300); outline-offset: -4px; border-radius: 8px; }
.move-ctrl { display: flex; gap: 6px; margin-top: 10px; padding-top: 9px; border-top: 1px solid var(--line-2); }
.move-ctrl .stage-select { flex: 1; min-width: 0; font-size: 11.5px; font-weight: 600; padding: 5px 7px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--text); font-family: var(--font); cursor: pointer; outline: none; }
.move-ctrl .stage-select:focus { border-color: var(--brand-300); }
.move-ctrl .btn.sm { padding: 5px 10px; font-size: 11.5px; }
.status-ctrl { margin-top: 9px; }
.cand-status { width: 100%; font-size: 11.5px; font-weight: 600; padding: 5px 7px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--text); cursor: pointer; font-family: var(--font); outline: none; }
.cand-status.s-blue  { background: var(--info-050);  color: #1d4ed8; border-color: #cfe0fd; }
.cand-status.s-green { background: var(--accent-050);color: #0e7a37; border-color: #c6ecd5; }
.cand-status.s-amber { background: var(--warn-050);  color: #b45309; border-color: #f6dcae; }
.cand-status.s-red   { background: var(--danger-050);color: #b91c1c; border-color: #f6c9c9; }
.kanban .col.col-add { background: transparent; border: 1px dashed var(--line); }

/* Tabs */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 20px; flex-wrap: wrap; }
.tabs button {
  border: 0; background: transparent; padding: 11px 14px; font-size: 13.5px; font-weight: 600;
  color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.tabs button:hover { color: var(--text); }
.tabs button.active { color: var(--brand); border-bottom-color: var(--brand); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Forms */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 12.5px; color: var(--ink); margin-bottom: 6px; }
.field label .req { color: var(--danger); }
.input, .select, textarea.input {
  width: 100%; padding: 9px 12px; border: 1px solid var(--line); border-radius: 9px;
  font-size: 13.5px; font-family: var(--font); color: var(--text); background: var(--surface); outline: none;
}
.input:focus, .select:focus, textarea.input:focus { border-color: var(--brand-300); box-shadow: 0 0 0 3px var(--brand-050); }
.hint { color: var(--muted); font-size: 12px; margin-top: 5px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }

/* charts (puro CSS) */
.barchart { display: flex; align-items: flex-end; gap: 12px; height: 200px; padding-top: 10px; }
.barchart .b { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.barchart .b .bar-v { width: 70%; max-width: 46px; border-radius: 7px 7px 0 0; background: linear-gradient(var(--brand-500), var(--brand-300)); position: relative; }
.barchart .b .bar-v.alt { background: linear-gradient(var(--accent), #5fd089); }
.barchart .b .lbl { font-size: 11.5px; color: var(--muted); font-weight: 600; }
.barchart .b .val { font-size: 11px; color: var(--ink); font-weight: 700; }

/* funnel */
.funnel { display: flex; flex-direction: column; gap: 8px; }
.funnel .stage { display: flex; align-items: center; gap: 12px; }
.funnel .stage .name { width: 150px; font-size: 12.5px; font-weight: 600; color: var(--text); flex: none; }
.funnel .stage .track { flex: 1; background: var(--line-2); border-radius: 8px; overflow: hidden; height: 30px; }
.funnel .stage .fill { height: 100%; background: linear-gradient(90deg, var(--brand), var(--brand-500));
  border-radius: 8px; display: flex; align-items: center; padding: 0 10px; color: #fff; font-weight: 700; font-size: 12px; }
.funnel .stage .pct { width: 56px; text-align: right; font-size: 12px; color: var(--muted); font-weight: 600; flex: none; }

/* donut (conic-gradient) */
.donut { width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; }
.donut::after { content: ""; width: 96px; height: 96px; background: var(--surface); border-radius: 50%; }
.legend { display: flex; flex-direction: column; gap: 9px; }
.legend .it { display: flex; align-items: center; gap: 9px; font-size: 12.5px; }
.legend .it .sw { width: 11px; height: 11px; border-radius: 3px; }
.legend .it .v { margin-left: auto; font-weight: 700; color: var(--ink); }

/* misc */
.divider { height: 1px; background: var(--line-2); margin: 18px 0; }
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; }
.muted { color: var(--muted); }
.mb-0 { margin-bottom: 0; } .mt-0 { margin-top: 0; }
.text-sm { font-size: 12.5px; }
.empty { text-align: center; color: var(--muted); padding: 30px; font-size: 13px; }

.toolbar { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.toolbar .seg { display: flex; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; background: var(--surface); }
.toolbar .seg button { border: 0; background: transparent; padding: 8px 13px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; }
.toolbar .seg button.active { background: var(--brand); color: #fff; }
.chip { padding: 6px 11px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); font-size: 12.5px; font-weight: 600; color: var(--text); cursor: pointer; display:inline-flex; align-items:center; gap:6px;}
.chip:hover { background: var(--bg); }

/* Seletor com aparência de chip (filtros de toolbar) */
select.fchip {
  padding: 6px 11px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  font-size: 12.5px; font-weight: 600; color: var(--text); cursor: pointer; font-family: var(--font); outline: none;
}
select.fchip:focus { border-color: var(--brand-300); box-shadow: 0 0 0 3px var(--brand-050); }

/* Busca em barras de ferramentas: mesmo formato dos chips */
.search { display: inline-flex; align-items: center; gap: 8px; padding: 6px 11px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--muted); }
.search input { border: 0; background: transparent; outline: none; width: 100%; font-size: 13px; color: var(--text); }
.search svg.ic { width: 16px; height: 16px; }

/* Kanban de indicações */
.ind-board { display: flex; gap: 14px; overflow-x: auto; padding-bottom: 12px; }
.ind-col { width: 250px; flex: none; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); display: flex; flex-direction: column; }
.ind-head { padding: 12px 14px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); }
.ind-head b { font-size: 13px; color: var(--ink); }
.ind-head .count { margin-left: auto; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-size: 11px; font-weight: 700; color: var(--muted); padding: 1px 8px; }
.ind-body { padding: 10px; display: flex; flex-direction: column; gap: 9px; min-height: 60px; }
.ind-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; box-shadow: var(--shadow-sm); }
.ind-card .ind-move { width: 100%; margin-top: 8px; }

/* integrações (cards) */
.int-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.int { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.int .ico { width: 46px; height: 46px; border-radius: 11px; display: grid; place-items: center; font-size: 20px; margin-bottom: 12px; font-weight: 700; }

/* settings: layout com sub-navegação à esquerda */
.settings-layout { display: grid; grid-template-columns: 248px 1fr; gap: 24px; align-items: start; }
.subnav { display: flex; flex-direction: column; gap: 1px; border: 0; margin: 0; }
.subnav .grp { font-size: 10.5px; text-transform: uppercase; color: var(--muted); font-weight: 700; letter-spacing: .05em; padding: 16px 12px 5px; }
.subnav button { text-align: left; border: 0; background: transparent; padding: 8px 12px; border-radius: 8px; font-size: 13px; font-weight: 500; color: var(--text); cursor: pointer; margin: 0; display: flex; align-items: center; gap: 9px; }
.subnav button:hover { background: var(--bg); }
.subnav button.active { background: var(--brand-050); color: var(--brand); font-weight: 600; }
.settings-main { min-width: 0; }
@media (max-width: 900px) { .settings-layout { grid-template-columns: 1fr; } }

/* botões de ação em linha (editar/excluir) */
.row-actions { display: flex; gap: 4px; }.icon-act { border: 0; background: transparent; padding: 6px; border-radius: 7px; color: var(--muted); cursor: pointer; display: inline-grid; place-items: center; }
.icon-act:hover { background: var(--bg); color: var(--text); }
.icon-act.danger:hover { background: var(--danger-050); color: var(--danger); }
.icon-act svg { width: 16px; height: 16px; }

/* seletor de status (pílula) */
select.status-select {
  appearance: none; -webkit-appearance: none; border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 26px 3px 12px; font-size: 12px; font-weight: 600; cursor: pointer; font-family: var(--font); outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 9px center;
}
select.status-select.green { background-color: var(--accent-050); color: #0e7a37; border-color: #c6ecd5; }
select.status-select.amber { background-color: var(--warn-050);  color: #b45309; border-color: #f6dcae; }
select.status-select.gray  { background-color: #f1f3f7;          color: #475569; border-color: var(--line); }
select.status-select.red   { background-color: var(--danger-050);color: #b91c1c; border-color: #f6c9c9; }

/* drawer de filtros */
.drawer-overlay { position: fixed; inset: 0; background: rgba(15,27,45,.45); z-index: 200; display: flex; justify-content: flex-end; }
.drawer { width: 430px; max-width: 92vw; height: 100%; background: #fff; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer-head { padding: 16px 20px; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; }
.drawer-head h3 { font-size: 17px; }
.drawer-head .x { cursor: pointer; color: var(--muted); border: 0; background: transparent; font-size: 22px; line-height: 1; }
.drawer-body { padding: 16px 20px; overflow: auto; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.drawer-foot { padding: 14px 20px; border-top: 1px solid var(--line-2); display: flex; align-items: center; gap: 10px; }
.filter-group { border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.filter-group h4 { font-size: 13px; margin-bottom: 8px; }
.filter-opt { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: 13px; cursor: pointer; color: var(--text); }

/* construtor de teste */
.q-card { border: 1px solid var(--line); border-radius: 10px; padding: 12px; background: var(--bg); display: flex; flex-direction: column; gap: 8px; }
.q-card .q-text { flex: 1; font-weight: 600; }
.q-card .q-sub { font-size: 12.5px; }
.q-card .q-ans { font-size: 12.5px; border-left: 3px solid var(--accent); background: #fff; }
.qa { border: 1px solid var(--line-2); border-radius: 9px; padding: 11px 13px; margin-bottom: 9px; }
.qa .q { font-weight: 600; font-size: 13px; color: var(--ink); }
.qa .a { font-size: 13px; margin-top: 3px; }

/* modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(15,27,45,.45); display: grid; place-items: center; z-index: 200; padding: 20px; }
.modal { background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; max-height: 92vh; overflow: auto; }
.modal-head { padding: 16px 20px; border-bottom: 1px solid var(--line-2); display: flex; align-items: center; justify-content: space-between; }
.modal-head h3 { font-size: 16px; }
.modal-head .x { cursor: pointer; color: var(--muted); border: 0; background: transparent; font-size: 22px; line-height: 1; }
.modal-body { padding: 20px; }
.modal-foot { padding: 14px 20px; border-top: 1px solid var(--line-2); display: flex; gap: 8px; justify-content: flex-end; }

/* matriz de permissões */
.perm-tbl td .yes { color: var(--accent); font-weight: 700; }
.perm-tbl td .no { color: var(--line); }

/* timeline */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content:""; position:absolute; left: 8px; top: 4px; bottom: 4px; width: 2px; background: var(--line); }
.timeline .ev { position: relative; padding-bottom: 18px; }
.timeline .ev::before { content:""; position:absolute; left: -22px; top: 3px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--brand-300); }
.timeline .ev.done::before { background: var(--accent); border-color: var(--accent); }
.timeline .ev b { font-size: 13px; color: var(--ink); }
.timeline .ev .t { color: var(--muted); font-size: 11.5px; }

/* scorecard */
.score-row { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.score-row .nm { flex: 1; font-weight: 600; font-size: 13px; }
.rating { display: flex; gap: 4px; }
.rating .s { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--line); display: grid; place-items: center; cursor: pointer; color: var(--line); font-size:13px;}
.rating .s.on { background: #fff7e6; border-color: #f5c451; color: #f59e0b; }

/* banner */
.banner { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: var(--radius); margin-bottom: 18px; }
.banner.info  { background: var(--info-050); border: 1px solid #cfe0fd; }
.banner.amber { background: var(--warn-050); border: 1px solid #f6dcae; }
.banner.green { background: var(--accent-050); border: 1px solid #c6ecd5; }
.banner .ic { width: 20px; height: 20px; flex: none; margin-top: 1px; }
.banner b { color: var(--ink); }

/* responsive */
@media (max-width: 1100px) { .kpi-row { grid-template-columns: repeat(2,1fr); } .form-grid { grid-template-columns: 1fr; } }
@media (max-width: 860px) {
  .sidebar { transform: translateX(-100%); transition: .2s; }
  .sidebar.open { transform: none; }
  .main { margin-left: 0; }
  .kpi-row { grid-template-columns: 1fr 1fr; }
}

/* =================== Portal público (layout separado) ================= */
.portal { background: #fff; }
.portal-nav {
  height: 70px; display: flex; align-items: center; gap: 18px; padding: 0 6vw;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #fff; z-index: 20;
}
.portal-nav .brand { display: flex; align-items: center; gap: 11px; }
.portal-nav .brand .logo { width: 38px; height: 38px; border-radius: 10px; background: var(--brand);
  display: grid; place-items: center; color: #fff; font-weight: 800; }
.portal-nav .brand b { font-size: 16px; color: var(--ink); }
.portal-nav .links { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.portal-nav .links a { color: var(--text); font-weight: 600; font-size: 14px; }

/* Portal público — cores da marca (Canva): azul marinho #1c498c + azul claro #3da0f9 */
.portal-nav { background: #1c498c; border-bottom-color: rgba(255,255,255,.10); }
.portal-nav .brand b { color: #fff; }
.portal-nav .brand .muted { color: rgba(255,255,255,.65); }
.portal-nav .links a { color: rgba(255,255,255,.85); }
.portal-nav .links a:hover { color: #fff; }
/* Bloco do formulário: cabeçalho no azul claro da marca + corpo em tom claro (legível) */
.portal .vaga-form-col .card { background: #eaf4fe; border-color: #bcdcfb; overflow: hidden;
  box-shadow: 0 10px 30px rgba(28,73,140,.12); }
.portal .vaga-form-col .card .card-head { background: #3da0f9; border-bottom: none; padding: 15px 20px; }
.portal .vaga-form-col .card .card-head h3 { color: #fff; }
.portal-hero {
  background: linear-gradient(135deg, var(--brand), #11264a); color: #fff; padding: 72px 6vw 96px;
}
.portal-hero h1 { color: #fff; font-size: 40px; line-height: 1.1; max-width: 720px; letter-spacing: -1px; }
.portal-hero p { color: rgba(255,255,255,.82); font-size: 17px; max-width: 560px; margin-top: 16px; }
.portal-section { padding: 0 6vw; max-width: 1180px; margin: 0 auto; }
.search-bar-portal {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: 14px;
  display: flex; gap: 10px; margin: -52px auto 40px; max-width: 920px; position: relative; flex-wrap: wrap;
}
.search-bar-portal .input { flex: 1; min-width: 180px; }
.job-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 18px; }
.job-card-pub {
  border: 1px solid var(--line); border-radius: 14px; padding: 22px; transition: .15s; background: #fff;
}
.job-card-pub:hover { box-shadow: var(--shadow-md); border-color: var(--brand-300); transform: translateY(-2px); }
.job-card-pub h3 { font-size: 17px; margin-bottom: 6px; }
.job-card-pub .meta { color: var(--muted); font-size: 13px; display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0 16px; }
.portal-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 48px 6vw; margin-top: 64px; font-size: 13.5px; }
.portal-footer a { color: rgba(255,255,255,.85); }

/* seções institucionais do portal */
.portal-band { padding: 72px 6vw; }
.portal-band.dark { background: var(--ink); color: #fff; }
.portal-band .inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.portal-photo { width: 100%; min-height: 320px; border-radius: 16px; background: #1f3a63 center/cover no-repeat; }
.portal-band h2 { font-size: 30px; color: inherit; }
.portal-band.dark h2 { color: #fff; }
.portal-band p { color: rgba(255,255,255,.78); font-size: 15px; margin-top: 14px; }
.portal-band.light { background: var(--bg); color: var(--ink); }
.portal-band.light p { color: var(--muted); }
.values-word { text-align: center; font-size: 110px; font-weight: 800; color: rgba(15,27,45,.06); letter-spacing: 8px; margin: -10px 0 -20px; }
.values-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; box-shadow: var(--shadow-sm); }
.value-card .vc-ic { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; margin-bottom: 12px; }
.value-card p { font-size: 13px; color: var(--text); margin: 0; }
.impact-row { display: grid; grid-template-columns: auto repeat(3, 1fr); gap: 24px; align-items: center; max-width: 1100px; margin: 48px auto 0; }
.impact-row h3 { font-size: 26px; color: var(--ink); }
.stat-circle { aspect-ratio: 1; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 18px; }
.stat-circle .n { font-size: 30px; font-weight: 750; color: var(--ink); }
.stat-circle .l { font-size: 12.5px; color: var(--muted); margin-top: 4px; }
@media (max-width: 860px) {
  .portal-band .inner { grid-template-columns: 1fr; gap: 24px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .impact-row { grid-template-columns: 1fr; }
  .values-word { font-size: 64px; }
}

/* =================== Interatividade (protótipo vivo) ================= */
#toast-host { position: fixed; right: 22px; bottom: 22px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--ink); color: #fff; padding: 12px 16px; border-radius: 10px;
  box-shadow: var(--shadow-lg); font-size: 13.5px; font-weight: 500; max-width: 340px;
  opacity: 0; transform: translateY(10px); transition: .25s; pointer-events: none;
}
.toast.show { opacity: 1; transform: none; }
.toast.ok   { border-left: 4px solid var(--accent); }
.toast.warn { border-left: 4px solid var(--warn); }
.toast.info { border-left: 4px solid var(--info); }

.chip.sel { background: var(--brand); color: #fff; border-color: var(--brand); }
.field .input.err, .field .select.err { border-color: var(--danger); box-shadow: 0 0 0 3px var(--danger-050); }
[data-toggle] { cursor: pointer; user-select: none; }
.collapsible { display: none; }
.collapsible.open { display: block; }
.cmt { display: flex; gap: 10px; margin-bottom: 12px; }
.cmt .bd { background: var(--bg); border-radius: 9px; padding: 8px 11px; flex: 1; }
.cmt .bd b { font-size: 12.5px; color: var(--ink); }
.cmt .bd p { margin: 3px 0 0; font-size: 13px; }

/* =================== Portal Vaga — layout 2 colunas ================= */
.portal-vaga-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding: 40px 6vw 80px; max-width: 1180px; margin: 0 auto; }
/* Formulário rola junto com a descrição (antes ficava "preso" com position: sticky). */
.portal-vaga-grid .vaga-form-col { position: static; }
@media (max-width: 820px) { .portal-vaga-grid { grid-template-columns: 1fr; gap: 28px; padding: 24px 4vw 60px; } .portal-vaga-grid .vaga-form-col { position: static; } }

/* =================== Indicar — layout público 2 colunas ============= */
.indicar-grid { padding-top: 48px; display: grid; grid-template-columns: 1fr 520px; gap: 48px; align-items: center; min-height: 70vh; }
@media (max-width: 820px) { .indicar-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; min-height: unset; } }

/* =================== Estados desabilitados de botões/ícones ========= */
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn.ghost:disabled:hover { background: var(--surface); }
.icon-act:disabled { opacity: .45; cursor: not-allowed; }
.icon-act:disabled:hover { background: transparent; color: var(--muted); }

/* =================== Toggle (switch) genérico ======================== */
.switch { position: relative; display: inline-flex; align-items: center; width: 34px; height: 20px; flex: none; }
.switch input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; z-index: 1; }
.switch input:disabled { cursor: not-allowed; }
.switch .track { position: absolute; inset: 0; background: var(--line); border-radius: 999px; transition: .15s; pointer-events: none; }
.switch .thumb { position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); transition: .15s; pointer-events: none; }
.switch input:checked ~ .track { background: var(--brand); }
.switch input:checked ~ .thumb { transform: translateX(14px); }
.switch input:disabled ~ .track { background: var(--line-2); }
.switch input:disabled ~ .thumb { background: #f4f4f5; }
.switch.disabled { opacity: .7; }

/* alça de arrastar genérica (perguntas, opções) */
.drag-handle { cursor: grab; color: var(--muted); user-select: none; display: inline-flex; align-items: center; flex: none; }

/* =================== Construtor de Formulário Personalizado (rico) ==== */
.qbuilder-topbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 6px; flex-wrap: wrap; }
.qbuilder-topbar-actions { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.qbuilder-msg { display: flex; gap: 14px; align-items: center; font-size: 12.5px; margin-bottom: 14px; flex-wrap: wrap; }

.qbuilder-toggle-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; cursor: pointer; color: var(--text); white-space: nowrap; }
.qbuilder-toggle-label.disabled { color: var(--muted); cursor: not-allowed; }

.qbuilder-layout { display: flex; gap: 20px; align-items: flex-start; }

.qbuilder-sidebar {
  width: 260px; flex: none; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; max-height: calc(100vh - 180px); position: sticky; top: 12px;
}
.qbuilder-sidebar-list { flex: 1; overflow-y: auto; padding: 8px; display: flex; flex-direction: column; gap: 2px; }
.qbuilder-sidebar-item { display: flex; align-items: center; gap: 8px; padding: 8px 9px; border-radius: 8px; cursor: pointer; font-size: 12.5px; color: var(--text); }
.qbuilder-sidebar-item:hover { background: var(--bg); }
.qbuilder-sidebar-item.active { background: var(--brand-050); color: var(--brand); font-weight: 600; }
.qbuilder-sidebar-item-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.qbuilder-sidebar-footer { border-top: 1px solid var(--line-2); padding: 10px; display: flex; flex-direction: column; gap: 6px; position: relative; }

.qbuilder-templates-panel {
  position: absolute; bottom: calc(100% + 8px); left: 10px; right: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 12px; z-index: 5; display: flex; flex-direction: column; gap: 8px;
}

.qbuilder-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; }

.qbuilder-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 16px 18px; scroll-margin-top: 90px; }
.qbuilder-card-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.qbuilder-card-head .num { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .03em; }
.qbuilder-card-row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; }
.qbuilder-card-row .qi { flex: 1; }
.qbuilder-tipo-field { flex: none; width: 190px; display: flex; flex-direction: column; gap: 4px; }
.qbuilder-tipo-field label { font-size: 11px; font-weight: 600; color: var(--muted); }

.qbuilder-opcoes { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.qbuilder-opcao-row { display: flex; align-items: center; gap: 8px; }

.qbuilder-gabarito { background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 12px; }
.qbuilder-gabarito-title { font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.qbuilder-gabarito-opcoes { display: flex; flex-wrap: wrap; gap: 12px; }

.qbuilder-card-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--line-2); }
.qbuilder-card-actions { margin-left: auto; display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .qbuilder-layout { flex-direction: column; }
  .qbuilder-sidebar { width: 100%; position: static; max-height: none; }
}

/* =================== Editor de texto rico (descrição da vaga) ========= */
.rte { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--surface); }
.rte-toolbar { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; padding: 6px; border-bottom: 1px solid var(--line-2); background: var(--bg); }
.rte-btn { border: 1px solid transparent; background: transparent; color: var(--text); font-size: 12.5px; font-weight: 600; padding: 6px 10px; border-radius: 6px; cursor: pointer; }
.rte-btn:hover { background: var(--surface); border-color: var(--line); }
.rte-btn.active { background: var(--brand-050); color: var(--brand); border-color: var(--brand-300); }
.rte-sep { width: 1px; height: 20px; background: var(--line); margin: 0 4px; flex: none; }
.rte-select { border: 1px solid var(--line); border-radius: 6px; padding: 5px 8px; font-size: 12.5px; font-family: var(--font); color: var(--text); background: var(--surface); cursor: pointer; outline: none; }
.rte-select:focus { border-color: var(--brand-300); }
.rte-content { padding: 12px 14px; min-height: 220px; font-size: 13.5px; line-height: 1.65; color: var(--text); outline: none; }
.rte-content p { margin: 0 0 10px; }
.rte-content p:last-child { margin-bottom: 0; }
.rte-content ul, .rte-content ol { margin: 0 0 10px; padding-left: 22px; }
.rte-content li { margin-bottom: 3px; }
.rte-content h2 { font-size: 19px; font-weight: 700; color: var(--ink); margin: 14px 0 8px; }
.rte-content h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin: 12px 0 6px; }
.rte-content h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin: 10px 0 6px; }
.rte-content h2:first-child, .rte-content h3:first-child, .rte-content h4:first-child, .rte-content p:first-child { margin-top: 0; }
.rte-content p.is-editor-empty:first-child::before {
  content: attr(data-placeholder); float: left; color: var(--muted); pointer-events: none; height: 0;
}

/* Renderização da descrição rica no portal público — CSS isolado, não vaza pro resto da página */
.descricao-rica { font-size: 15px; line-height: 1.75; color: var(--text); }
.descricao-rica p { margin: 0 0 14px; }
.descricao-rica p:last-child { margin-bottom: 0; }
.descricao-rica ul, .descricao-rica ol { margin: 0 0 14px; padding-left: 22px; }
.descricao-rica li { margin-bottom: 4px; }
.descricao-rica h2 { font-size: 22px; font-weight: 700; color: var(--ink); margin: 20px 0 10px; }
.descricao-rica h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 18px 0 8px; }
.descricao-rica h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin: 16px 0 6px; }
.descricao-rica h2:first-child, .descricao-rica h3:first-child, .descricao-rica h4:first-child, .descricao-rica p:first-child { margin-top: 0; }

/* =================== Aba Divulgação =================================== */
.divulg-linkrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2); flex-wrap: wrap; }
.divulg-linkrow .link-txt { font-size: 12.5px; color: var(--muted); word-break: break-all; margin-top: 4px; max-width: 420px; }
.divulg-plataformas { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.divulg-plataforma-chip { display: flex; align-items: center; justify-content: space-between; opacity: .7; cursor: not-allowed; }

/* =================== Menu de ações (DropdownMenu) ====================== */
.acoes-trigger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  cursor: pointer; padding: 0;
}
.acoes-trigger:hover { background: var(--bg); }
.acoes-trigger[data-state="open"] { background: var(--bg); border-color: var(--brand); }
.acoes-trigger .ic { width: 16px; height: 16px; }

.dropdown-menu-content {
  width: 200px; padding: 6px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  z-index: 1100;
}
.dropdown-menu-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 6px;
  font-size: 13.5px; color: var(--text); cursor: pointer;
  outline: none; user-select: none;
  white-space: nowrap; /* nunca quebra linha, largura já é suficiente pro texto mais longo */
  text-align: left;
}
.dropdown-menu-item[data-highlighted] { background: var(--bg); }
.dropdown-menu-item[data-disabled] { color: var(--muted); opacity: .5; cursor: default; }
/* reforça "sem hover" no item desabilitado mesmo que o Radix marque data-highlighted no hover */
.dropdown-menu-item[data-disabled][data-highlighted] { background: transparent; }
.dropdown-menu-item.danger { color: var(--danger); }
.dropdown-menu-item.danger[data-highlighted] { background: #fef2f2; }
.dropdown-menu-separator { height: 1px; margin: 6px 4px; background: var(--line); }
