/* web/dash.css */
:root, [data-tema="claro"] {
  --bg: #f5f7fd;
  --bg2: #fff;
  --panel: #fff;
  --border: #0c0f171a;
  --border2: #0c0f172e;
  --text: #0c0f17;
  --mut: #474d5c;
  --faint: #8b91a1;
  --blue: #2f5bff;
  --blue2: #1b3fd6;
  --blue-deep: #1b3fd6;
  --blue-soft: #e7edff;
  --blue-tint: #f1f4ff;
  --blue-glow: #2f5bff47;
  --warn: #a8731b;
  --ok: #16a34a;
  --sbg: #fff;
  --inp: #fff;
  --hover: #2f5bff0d;
  --row: #0c0f1712;
  --cell: #fbfcff;
  --pop: #fff;
  --node: #fff;
  --aresta: #0c0f1724;
  --inset: #2f5bff09;
  --sombra: #1b2c5a24;
  --disp: "Bricolage Grotesque", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Geist", "Inter", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  --spring: cubic-bezier(.32, .72, 0, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  line-height: 1.55;
}

h1, h2, .tit {
  font-family: var(--disp);
  letter-spacing: -.03em;
  color: var(--text);
  text-wrap: balance;
  font-weight: 800;
}

h1 em, h2 em, .tit em, .serif {
  font-family: var(--serif);
  color: var(--blue);
  letter-spacing: -.01em;
  font-style: italic;
  font-weight: 500;
}

.sub, .caso-hist, .linha .d, .resp-head .d, .lead-resp-d, .aviso, .ficha-foot, .ent-pesa li {
  font-variant-numeric: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.mono {
  font-family: Geist Mono, monospace;
}

.ent-pesa {
  border-bottom: 1px solid var(--row);
  background: var(--inset);
  padding: 15px 22px 16px;
}

.ent-pesa-rot {
  letter-spacing: 1.6px;
  color: var(--faint);
  display: block;
  margin-bottom: 11px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.ent-pesa ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ent-pesa li {
  color: var(--text);
  position: relative;
  text-wrap: pretty;
  padding-left: 15px;
  font-size: 13px;
}

.ent-pesa li:before {
  content: "";
  position: absolute;
  background: var(--warn);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 8px;
  left: 0;
}

.ent-pesa li b {
  color: var(--text);
  font-weight: 600;
}

.ent-pesa-vazio {
  color: var(--faint);
  font-size: 12.5px;
}

.ob {
  animation: rise2 .3s cubic-bezier(.2, 0, 0, 1);
  max-width: 680px;
  margin: 0 auto;
  padding-top: clamp(28px, 6vh, 72px);
}

.ob-rot {
  letter-spacing: 2px;
  color: var(--blue2);
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.ob-h {
  letter-spacing: -.4px;
  text-wrap: balance;
  margin: 11px 0 12px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
}

.ob-sub {
  color: var(--mut);
  text-wrap: pretty;
  max-width: 580px;
  font-size: 14px;
  line-height: 1.6;
}

.ob-sub b {
  color: var(--text);
  font-weight: 500;
}

.ob-acao {
  display: flex;
  text-align: left;
  background: linear-gradient(#2f5bff1a, #2f5bff09);
  border: 1px solid #1b3fd673;
  border-radius: 12px;
  align-items:  center;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
  padding: 16px 18px;
  transition: border-color .15s, transform .15s, scale .12s;
}

.ob-acao:hover {
  border-color: var(--blue2);
  transform: translateY(-1px);
}

.ob-acao:active {
  scale: .98;
}

.ob-acao-txt {
  color: var(--text);
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}

.ob-ou {
  letter-spacing: 1.2px;
  color: var(--faint);
  margin: 22px 0 12px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.ob-casos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 760px) {
  .ob-casos {
    grid-template-columns: 1fr;
  }
}

.ob-caso {
  text-align: left;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 14px;
  transition: border-color .15s, transform .15s, scale .12s;
}

.ob-caso:hover {
  border-color: #1b3fd673;
  transform: translateY(-1px);
}

.ob-caso:active {
  scale: .97;
}

.ob-caso-rot {
  letter-spacing: 1.4px;
  color: var(--warn);
  font-family: Geist Mono, monospace;
  font-size: 8.5px;
}

.ob-caso-nome {
  color: var(--text);
  margin-top: 7px;
  font-size: 13px;
  font-weight: 600;
}

.ob-caso-fato {
  color: var(--mut);
  text-wrap: pretty;
  font-variant-numeric: normal;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
}

.ob-pe {
  display: flex;
  border-top: 1px solid var(--border);
  letter-spacing: .5px;
  color: var(--faint);
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  padding-top: 18px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.ob-passo.on {
  color: var(--blue2);
}

.dash {
  display: grid;
  grid-template-columns: 228px 1fr;
  min-height: 100vh;
}

.sb {
  border-right: 1px solid var(--border);
  background: var(--sbg);
  display: flex;
  position: sticky;
  flex-direction: column;
  height: 100vh;
  padding: 18px 12px;
  top: 0;
}

.sb-brand {
  display: flex;
  letter-spacing: -.2px;
  align-items:  center;
  gap: 9px;
  padding: 4px 10px 16px;
  font-size: 15.5px;
  font-weight: 600;
}

.sb-org {
  color: var(--faint);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
  padding: 0 10px 14px;
  font-size: 11.5px;
}

.sb-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.sb-nav a, .sb-nav span {
  display: flex;
  color: var(--mut);
  border-radius: 8px;
  align-items:  center;
  gap: 9px;
  padding: 8px 10px;
  transition: color .15s, background-color .15s;
  font-size: 13px;
}

.sb-nav a:hover {
  color: var(--text);
}

.sb-nav a.on {
  color: var(--text);
  background: #2f5bff21;
}

.sb-nav span {
  color: var(--faint);
  cursor: default;
}

.sb-nav span small {
  letter-spacing: 1px;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1px 6px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.sb-div {
  letter-spacing: 1.5px;
  color: var(--faint);
  margin: 12px 10px 6px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.sb-foot {
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
}

.sb-uso {
  color: var(--faint);
  display: flex;
  align-items:  center;
  gap: 7px;
  padding: 0 10px;
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.sb-uso .dot {
  background: var(--blue2);
  box-shadow: 0 0 8px var(--blue2);
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
}

.sb-user {
  display: flex;
  color: var(--mut);
  justify-content: space-between;
  align-items:  center;
  padding: 6px 10px;
  font-size: 12.5px;
}

.sb-user button {
  color: var(--faint);
  transition: color .15s;
  font-size: 12px;
}

.sb-user button:hover {
  color: var(--text);
}

.conteudo {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 44px;
}

.tit {
  font-family: var(--disp);
  letter-spacing: -.03em;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
}

.sub {
  color: var(--mut);
  margin-top: 5px;
  font-size: 13.5px;
}

.secao {
  margin-top: 28px;
}

.painel {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 1px 2px #1b2c5a0d, 0 12px 30px -18px #1b2c5a2e;
}

.inp {
  background: var(--inp);
  border: 1px solid var(--border2);
  font: inherit;
  color: var(--text);
  outline: none;
  border-radius: 10px;
  width: 100%;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
}

.inp:focus {
  border-color: #1b3fd68c;
  box-shadow: 0 0 0 3px #2f5bff26;
}

.inp::placeholder {
  color: var(--faint);
}

.bt {
  color: #fff;
  box-shadow: 0 1px 2px #1b2c5a29, 0 8px 20px -8px var(--blue-glow), inset 0 1px 0 #ffffff38;
  background: linear-gradient(#3b67ff, #1b3fd6);
  border-radius: 10px;
  padding: 10px 20px;
  transition: transform .15s, box-shadow .15s, scale .12s;
  font-size: 13.5px;
  font-weight: 600;
}

.bt:hover {
  box-shadow: 0 2px 4px #1b2c5a2e, 0 12px 26px -8px var(--blue-glow), inset 0 1px 0 #ffffff38;
  transform: translateY(-1px);
}

.bt:active {
  scale: .96;
}

.bt:disabled {
  background: var(--bg2);
  color: var(--faint);
  box-shadow: inset 0 0 0 1px var(--border);
  cursor: default;
  transform: none;
}

.bt2 {
  border: 1px solid var(--border2);
  background: var(--panel);
  color: var(--text);
  border-radius: 9px;
  padding: 9px 16px;
  transition: background-color .15s, scale .12s;
  font-size: 13px;
  font-weight: 500;
}

.bt2:hover {
  background: var(--hover);
}

.bt2:active {
  scale: .96;
}

.btmini {
  color: var(--faint);
  border-radius: 6px;
  padding: 4px 8px;
  transition: color .15s, background-color .15s;
  font-size: 12px;
}

.btmini:hover {
  color: var(--text);
  background: var(--hover);
}

.btmini.perigo:hover {
  color: #ff8080;
}

.tb {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}

.tb th {
  letter-spacing: 1.2px;
  color: var(--faint);
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.tb td {
  border-bottom: 1px solid var(--row);
  color: var(--mut);
  padding: 10px 12px;
}

.tb td.forte {
  color: var(--text);
  font-weight: 500;
}

.tb tr:last-child td {
  border-bottom: none;
}

.chip {
  letter-spacing: .8px;
  white-space: nowrap;
  border: 1px solid;
  border-radius: 100px;
  padding: 3px 9px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.chip.ca {
  color: var(--text);
  background: #ffffff12;
  border-color: #ffffff47;
}

.chip.nc {
  color: var(--faint);
  background: none;
  border-color: #ffffff17;
}

.chip.azul {
  color: var(--blue2);
  background: #2f5bff14;
  border-color: #2f5bff66;
}

.aviso {
  color: var(--mut);
  background: #2f5bff0f;
  border: 1px solid #2f5bff59;
  border-radius: 10px;
  margin-top: 14px;
  padding: 12px 16px;
  font-size: 12.5px;
}

.aviso.erro {
  background: #ff63630f;
  border-color: #ff636359;
}

.faint {
  color: var(--faint);
}

.mut {
  color: var(--mut);
}

.buscawrap {
  position: relative;
  margin-top: 24px;
}

.busca {
  display: flex;
  gap: 10px;
}

.busca .inp {
  padding: 13px 16px;
  font-family: Geist Mono, monospace;
  font-size: 14px;
}

.sug {
  position: absolute;
  z-index: 20;
  border: 1px solid var(--border2);
  background: var(--pop);
  box-shadow: 0 24px 60px var(--sombra);
  overflow: hidden;
  overflow-y: auto;
  border-radius: 12px;
  max-height: 380px;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
}

.cnae-op {
  transition: background-color .12s;
}

.cnae-op:hover {
  background: #7f7f8321;
}

.explorar {
  max-width: 1060px;
  margin: 0 auto;
  padding-top: clamp(18px, 4vh, 40px);
}

.explorar > * {
  animation: rise2 .34s cubic-bezier(.2, 0, 0, 1) backwards;
}

.explorar > :nth-child(2) {
  animation-delay: 40ms;
}

.explorar > :nth-child(3) {
  animation-delay: 80ms;
}

.explorar > :nth-child(4) {
  animation-delay: .12s;
}

.explorar > :nth-child(5) {
  animation-delay: .16s;
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items:  end;
  gap: 13px;
}

.exp-f {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.exp-f > label {
  letter-spacing: 1.3px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.exp-f .inp {
  height: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.exp-cnae {
  position: relative;
}

.exp-anos {
  display: flex;
  gap: 7px;
}

.exp-resumo {
  display: flex;
  color: var(--mut);
  align-items: baseline;
  gap: 8px;
  margin: 20px 2px 10px;
  font-size: 13px;
}

.exp-resumo b {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
}

.exp-pag {
  display: flex;
  font-variant-numeric: tabular-nums;
  color: var(--faint);
  justify-content: center;
  align-items:  center;
  gap: 10px;
  margin-top: 16px;
  font-size: 12px;
}

.exp-foot {
  color: var(--faint);
  text-wrap: pretty;
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}

.exp-foot b {
  color: var(--text);
}

.tab tbody tr.lk {
  cursor: pointer;
  transition: background-color .12s;
}

.tab tbody tr.lk:hover {
  background: var(--inp);
}

.tab td .cap {
  font-variant-numeric: tabular-nums;
}

.lead {
  max-width: 980px;
  margin: 0 auto;
  padding-top: clamp(14px, 3vh, 30px);
}

.lead > * {
  animation: rise2 .34s cubic-bezier(.2, 0, 0, 1) backwards;
}

.lead > :nth-child(2) {
  animation-delay: 50ms;
}

.lead > :nth-child(3) {
  animation-delay: .1s;
}

.lead > :nth-child(4) {
  animation-delay: .15s;
}

.lead-marca {
  letter-spacing: 1.8px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.lead-top {
  display: flex;
  justify-content: space-between;
  align-items:  flex-start;
  gap: 18px;
  margin-bottom: 16px;
}

.lead-sub {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: 9px;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
}

.lead-end {
  color: var(--text);
  text-wrap: pretty;
  margin-top: 11px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.lead-end-meta {
  color: var(--mut);
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
  font-family: Geist Mono, monospace;
  font-size: 12px;
}

.lead-faltando {
  display: flex;
  border-top: 1px solid var(--border);
  color: var(--faint);
  justify-content: space-between;
  align-items:  center;
  margin-top: 18px;
  padding-top: 13px;
  font-size: 12.5px;
}

.lead-kv {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.lead-kv-item {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 14px;
  font-size: 13px;
}

.lead-kv-item > span {
  color: var(--faint);
  letter-spacing: .6px;
  white-space: nowrap;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.lead-kv-item > b {
  color: var(--text);
  text-align: right;
  font-weight: 500;
}

.lead-socios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.lead-socio {
  color: var(--text);
  background: var(--inp);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 12.5px;
}

.lead-resp {
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.lead-resp:last-of-type {
  border-bottom: none;
}

.lead-resp-top {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 10px;
}

.lead-resp-top b {
  font-size: 13.5px;
  font-weight: 600;
}

.lead-resp-d {
  color: var(--mut);
  text-wrap: pretty;
  margin-top: 4px;
  font-size: 12.5px;
}

@media (max-width: 760px) {
  .lead-grid {
    grid-template-columns: 1fr;
  }
}

.bloqueio {
  text-align: center;
  animation: rise2 .34s cubic-bezier(.2, 0, 0, 1) backwards;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(36px, 11vh, 110px) 20px;
}

.bloqueio-ico {
  opacity: .9;
  margin-bottom: 12px;
  font-size: 34px;
}

.sb-nav a .trava {
  opacity: .65;
  margin-left: auto;
  font-size: 10px;
}

.sug .grupo {
  letter-spacing: 1.5px;
  color: var(--faint);
  text-transform: uppercase;
  padding: 10px 14px 4px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.sug button {
  display: flex;
  text-align: left;
  color: var(--text);
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 9px 14px;
  transition: background-color .12s;
  font-size: 13px;
}

.sug button:hover {
  background: #2f5bff1a;
}

.sug .meta {
  color: var(--faint);
  flex: none;
  font-family: Geist Mono, monospace;
  font-size: 11px;
}

.ficha {
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  border-radius: 14px;
  margin-top: 26px;
}

.ficha-head {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  center;
  padding: 18px 22px;
}

.ficha-head .nome {
  letter-spacing: -.2px;
  font-size: 16px;
  font-weight: 600;
}

.ficha-head .meta {
  color: var(--faint);
  margin-top: 3px;
  font-family: Geist Mono, monospace;
  font-size: 11px;
}

.linha {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--row);
  align-items:  start;
  gap: 14px;
  padding: 14px 22px;
}

.linha:last-child {
  border-bottom: none;
}

.linha .q {
  font-size: 13.5px;
  font-weight: 500;
}

.linha .d {
  color: var(--mut);
  max-width: 64ch;
  margin-top: 3px;
  font-size: 12.5px;
}

.linha .fontes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.linha .fontes a {
  color: var(--blue2);
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.ficha-foot {
  background: var(--inset);
  color: var(--faint);
  padding: 12px 22px;
  font-size: 11px;
  line-height: 1.6;
}

.auth {
  display: flex;
  position: relative;
  color: #f2f3f5;
  overflow: hidden;
  background: #0a0b0d;
  justify-content: center;
  align-items:  center;
  min-height: 100vh;
  padding: 24px;
}

.auth:before {
  content: "";
  position: absolute;
  -webkit-mask-image: radial-gradient(75% 62% at 50% 32%, #000, #0000 78%);
  mask-image: radial-gradient(75% 62% at 50% 32%, #000, #0000 78%);
  pointer-events: none;
  background-image: radial-gradient(#ffffff06 1px, #0000 1px);
  background-size: 22px 22px;
  inset: 0;
}

.auth .glow {
  position: absolute;
  pointer-events: none;
  filter: blur(100px);
  background: #2f5bff21;
  border-radius: 50%;
  width: 720px;
  height: 340px;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

.authbox {
  position: relative;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  background: linear-gradient(#ffffff0b, #ffffff03);
  border: 1px solid #ffffff17;
  border-radius: 18px;
  width: 100%;
  max-width: 380px;
  padding: 36px 32px;
  box-shadow: inset 0 1px #ffffff0d, 0 30px 80px #0000008c;
}

.authbox .brand {
  display: flex;
  letter-spacing: -.3px;
  color: #f2f3f5;
  justify-content: center;
  align-items:  center;
  gap: 9px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
}

.auth-tag {
  text-align: center;
  color: #9aa2ad;
  text-wrap: balance;
  margin: 2px 0 26px;
  font-size: 12.5px;
  line-height: 1.5;
}

.authbox h1 {
  text-align: center;
  letter-spacing: -.2px;
  color: #f2f3f5;
  font-size: 19px;
  font-weight: 600;
}

.authbox .sub {
  text-align: center;
  color: #9aa2ad;
  margin-bottom: 22px;
}

.campo {
  margin-top: 14px;
}

.campo label {
  display: block;
  color: #9aa2ad;
  margin-bottom: 7px;
  font-size: 12px;
}

.auth .inp {
  color: #f2f3f5;
  background: #ffffff0d;
  border: 1px solid #ffffff21;
  border-radius: 10px;
  padding: 12px 14px;
}

.auth .inp::placeholder {
  color: #6b727c;
}

.auth .inp:focus {
  border-color: #1b3fd699;
  box-shadow: 0 0 0 3px #2f5bff29;
}

.auth .bt {
  width: 100%;
  margin-top: 20px;
  padding: 13px;
  font-size: 14px;
}

.auth-troca {
  text-align: center;
  color: #6b727c;
  margin-top: 18px;
  font-size: 12.5px;
}

.auth-troca a {
  color: #8aa6ff;
  cursor: pointer;
}

.auth-foot {
  text-align: center;
  letter-spacing: 1.2px;
  color: #6b727c;
  border-top: 1px solid #ffffff14;
  margin-top: 22px;
  padding-top: 16px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.auth-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: stretch;
  padding: 0;
}

.auth-art {
  position: relative;
  display: flex;
  overflow: hidden;
  background: radial-gradient(100% 75% at 25% 12%, #2f5bff21, #0000 64%);
  border-right: 1px solid #ffffff12;
  flex-direction: column;
  padding: 46px 48px;
}

.auth-art .brand {
  display: flex;
  letter-spacing: -.2px;
  color: #f2f3f5;
  flex: none;
  align-items:  center;
  gap: 9px;
  font-size: 17px;
  font-weight: 600;
}

.auth-art-txt {
  flex: none;
}

.auth-art-h {
  letter-spacing: -.6px;
  color: #f2f3f5;
  text-wrap: balance;
  max-width: 13ch;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.14;
}

.auth-art-sub {
  color: #9aa2ad;
  text-wrap: pretty;
  max-width: 36ch;
  margin-top: 13px;
  font-size: 13.5px;
  line-height: 1.55;
}

.auth-art-stat {
  letter-spacing: 1.2px;
  color: #6b727c;
  margin-top: 20px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.auth-graph {
  position: relative;
  flex: 1;
  min-height: 200px;
  margin: 6px 0 30px;
}

.auth-edges {
  position: absolute;
  overflow: visible;
  width: 100%;
  height: 100%;
  inset: 0;
}

.auth-edges line {
  stroke: #1b3fd64d;
  stroke-width: 1;
  stroke-dasharray: 4 5;
  animation: edgeIn .7s ease-out backwards;
}

@keyframes edgeIn {
  from {
    opacity: 0;
  }
}

.auth-node {
  position: absolute;
  letter-spacing: .3px;
  color: #9aa2ad;
  white-space: nowrap;
  animation: nodeIn .5s cubic-bezier(.2, .8, .3, 1.1) backwards;
  background: #ffffff0b;
  border: 1px solid #ffffff1f;
  border-radius: 7px;
  padding: 5px 9px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
  transform: translate(-50%, -50%);
}

@keyframes nodeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%)scale(.82);
  }
}

.auth-node.central {
  color: #f2f3f5;
  background: #2f5bff29;
  border-color: #1b3fd6b3;
  font-weight: 600;
  box-shadow: 0 0 22px #2f5bff66;
}

.auth-node.pessoa {
  color: #7a818c;
  font-style: italic;
}

.auth-node-dot {
  display: inline-block;
  vertical-align: middle;
  background: #f0b429;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin-left: 6px;
  box-shadow: 0 0 7px #f0b429;
}

.auth-form {
  display: flex;
  justify-content: center;
  align-items:  center;
  padding: 24px 32px;
}

.auth-form .authbox {
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: none;
  border: none;
  max-width: 340px;
  padding: 8px;
}

@media (max-width: 860px) {
  .auth-split {
    grid-template-columns: 1fr;
  }

  .auth-art {
    display: none;
  }

  .auth-form .authbox {
    background: linear-gradient(#ffffff0b, #ffffff03);
    border: 1px solid #ffffff17;
    padding: 36px 32px;
    box-shadow: inset 0 1px #ffffff0d, 0 30px 80px #0000008c;
  }
}

.copiavel {
  display: flex;
  align-items:  center;
  gap: 8px;
  margin-top: 10px;
}

.copiavel code {
  background: var(--inset);
  border: 1px solid var(--border);
  overflow-x: auto;
  white-space: nowrap;
  border-radius: 8px;
  flex: 1;
  padding: 9px 12px;
  font-family: Geist Mono, monospace;
  font-size: 12px;
}

.formlinha {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.formlinha .inp {
  flex: 1;
}

.formlinha select {
  background: var(--inp);
  border: 1px solid var(--border2);
  color: var(--text);
  font: inherit;
  outline: none;
  border-radius: 10px;
  padding: 0 12px;
}

.formlinha select option {
  background: #15171b;
}

.vazio {
  text-align: center;
  color: var(--faint);
  padding: 40px;
  font-size: 13px;
}

:root {
  --warn: #d9a441;
}

.trilha {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: 22px;
}

.trilha-rotulo {
  letter-spacing: 1.5px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.trilha-item {
  display: inline-flex;
  align-items:  center;
  gap: 8px;
  font-size: 12.5px;
}

.trilha-seta {
  color: var(--faint);
}

.trilha-item button {
  color: var(--mut);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 3px 10px;
  transition: color .15s, border-color .15s;
}

.trilha-item button:hover {
  color: var(--text);
  border-color: var(--border2);
}

.trilha-atual {
  color: var(--text);
  background: #2f5bff14;
  border: 1px solid #2f5bff66;
  border-radius: 7px;
  padding: 3px 10px;
  font-weight: 500;
}

.consulta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items:  start;
  gap: 18px;
  margin-top: 18px;
  transition: opacity .2s;
}

@media (max-width: 1280px) {
  .consulta-grid {
    grid-template-columns: 1fr;
  }

  .grafo-painel {
    position: static !important;
  }
}

.entidade {
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  border-radius: 14px;
}

.ent-head {
  display: flex;
  justify-content: space-between;
  align-items:  flex-start;
  gap: 14px;
  padding: 20px 22px 16px;
}

.ent-nome {
  letter-spacing: -.2px;
  font-size: 17px;
  font-weight: 600;
}

.ent-meta {
  color: var(--faint);
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: 7px;
  font-family: Geist Mono, monospace;
  font-size: 11px;
}

.cadgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  gap: 1px;
}

.cadgrid > div {
  background: var(--cell);
  min-width: 0;
  padding: 11px 15px;
}

.cadgrid .k2 {
  letter-spacing: 1px;
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.cadgrid .v {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  font-size: 12.5px;
}

@media (max-width: 760px) {
  .cadgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.resp {
  border-bottom: 1px solid var(--row);
}

.resp:last-of-type {
  border-bottom: none;
}

.resp-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  text-align: left;
  align-items:  start;
  gap: 14px;
  width: 100%;
  padding: 15px 22px;
}

.resp-head .q {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 500;
}

.resp-head .d {
  color: var(--mut);
  text-wrap: pretty;
  max-width: 62ch;
  margin-top: 3px;
  font-size: 12.5px;
}

.resp-head .fontes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.resp-head .fontes a {
  color: var(--blue2);
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.chev {
  color: var(--faint);
  margin-top: 3px;
  transition: transform .2s;
  font-size: 11px;
}

.chev.aberto {
  transform: rotate(180deg);
}

.resp-body {
  padding: 2px 22px 16px;
}

.tabmini {
  border-collapse: collapse;
  background: var(--inset);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  font-size: 12px;
}

.tabmini th {
  letter-spacing: 1.2px;
  color: var(--faint);
  text-transform: uppercase;
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: 8px 12px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.tabmini td {
  color: var(--mut);
  border-bottom: 1px solid var(--row);
  vertical-align: top;
  padding: 8px 12px;
}

.tabmini tr:last-child td {
  border-bottom: none;
}

.cel-link {
  color: var(--blue2);
  font-size: inherit;
  padding: 0;
  transition: color .15s;
}

.cel-link:hover {
  color: #9fb4ff;
  text-decoration: underline;
}

.cel-forte {
  color: var(--text);
  font-weight: 500;
}

.grafo-painel {
  position: sticky;
  border: 1px solid var(--border);
  overflow: hidden;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, #2f5bff0f, transparent), var(--panel);
  border-radius: 14px;
  top: 24px;
}

.gp-head {
  display: flex;
  border-bottom: 1px solid var(--border);
  letter-spacing: 1.2px;
  color: var(--faint);
  justify-content: space-between;
  align-items:  center;
  padding: 11px 16px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.gp-dica {
  letter-spacing: .4px;
  text-transform: lowercase;
}

.grafo-svg {
  display: block;
  touch-action: none;
  width: 100%;
  height: 540px;
}

.gleg {
  display: flex;
  border-top: 1px solid var(--border);
  letter-spacing: .8px;
  color: var(--faint);
  align-items:  center;
  gap: 16px;
  padding: 10px 16px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.gleg span {
  display: inline-flex;
  align-items:  center;
  gap: 6px;
}

.gleg i {
  display: inline-block;
}

.lg-emp {
  border: 1px solid var(--faint);
  border-radius: 3px;
  width: 14px;
  height: 9px;
}

.lg-pes {
  border: 1px solid var(--faint);
  border-radius: 9px;
  width: 13px;
  height: 9px;
}

.lg-dot {
  background: var(--warn);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.grafo-svg .aresta {
  stroke: var(--aresta);
  stroke-width: 1;
  transition: stroke .15s;
}

.grafo-svg .aresta.on {
  stroke: #1b3fd68c;
}

.grafo-svg .no {
  cursor: pointer;
}

.grafo-svg .no rect {
  fill: var(--node);
  stroke: var(--border2);
  stroke-width: 1;
  transition: stroke .15s, opacity .2s, filter .2s;
}

.grafo-svg .no text {
  fill: var(--mut);
  letter-spacing: .3px;
  pointer-events: none;
  transition: opacity .2s;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.grafo-svg .no:hover rect {
  stroke: var(--blue2);
}

.grafo-svg .no.central rect {
  fill: #2f5bff24;
  stroke: #1b3fd6d9;
  filter: drop-shadow(0 0 9px #2f5bff73);
}

.grafo-svg .no.central text {
  fill: var(--text);
}

.grafo-svg .no.central, .grafo-svg .no.pessoa {
  cursor: default;
}

.grafo-svg .no.pessoa text {
  fill: var(--faint);
  font-style: italic;
}

.grafo-svg .no.pessoa:hover rect {
  stroke: var(--border2);
}

.grafo-svg .no.apagado rect, .grafo-svg .no.apagado text, .grafo-svg .no.apagado .dotc {
  opacity: .25;
}

.grafo-svg .dotc {
  fill: var(--warn);
  filter: drop-shadow(0 0 4px #d9a04199);
  transition: opacity .2s;
}

.splash {
  display: flex;
  justify-content: center;
  align-items:  center;
  min-height: 100vh;
}

.splash svg {
  animation: respira 1.6s ease-in-out infinite;
}

@keyframes respira {
  50% {
    opacity: .35;
    transform: scale(.94);
  }
}

.palco {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
  padding-top: clamp(44px, 11vh, 120px);
}

.palco-marca {
  letter-spacing: 2.2px;
  color: var(--faint);
  text-align: center;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.palco-h {
  letter-spacing: -.3px;
  text-align: center;
  margin: 12px 0 26px;
  font-size: 21px;
  font-weight: 600;
}

.palco .buscawrap {
  position: relative;
}

.palco .buscawrap:before {
  content: "";
  position: absolute;
  filter: blur(90px);
  pointer-events: none;
  background: #2f5bff12;
  border-radius: 50%;
  width: 560px;
  height: 220px;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}

.busca {
  position: relative;
}

.busca-lupa {
  position: absolute;
  color: var(--faint);
  pointer-events: none;
  z-index: 2;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.busca .inp {
  padding-left: 44px;
  font-family: Geist Mono, monospace;
  font-size: 14px;
}

.busca.grande .inp {
  height: 56px;
  padding-right: 64px;
  font-size: 15px;
}

.busca.grande .bt {
  white-space: nowrap;
  flex: none;
  height: 56px;
  padding: 0 24px;
}

.ghost {
  position: absolute;
  color: var(--faint);
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items:  center;
  font-family: Geist Mono, monospace;
  font-size: 15px;
  top: 50%;
  left: 44px;
  transform: translateY(-50%);
}

.ghost-cur {
  display: inline-block;
  background: var(--blue2);
  animation: pisca 1.1s steps(2) infinite;
  width: 1.5px;
  height: 18px;
  margin-left: 1px;
}

@keyframes pisca {
  50% {
    opacity: 0;
  }
}

.kbd {
  border: 1px solid var(--border2);
  background: var(--hover);
  color: var(--mut);
  border-radius: 5px;
  padding: 2px 7px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.kbd.no-input {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.parser {
  letter-spacing: .2px;
  display: flex;
  align-items:  center;
  height: 24px;
  margin-top: 9px;
  padding-left: 2px;
  font-family: Geist Mono, monospace;
  font-size: 11px;
}

.parser.azul {
  color: var(--blue2);
}

.parser.mut {
  color: var(--mut);
}

.parser.faint {
  color: var(--faint);
}

.casos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

@media (max-width: 980px) {
  .casos {
    grid-template-columns: 1fr;
  }
}

.caso {
  text-align: left;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 16px;
  transition: border-color .15s, transform .15s;
}

.caso:hover {
  border-color: #1b3fd673;
  transform: translateY(-1px);
}

.caso-rot {
  display: flex;
  letter-spacing: 1.5px;
  color: var(--faint);
  justify-content: space-between;
  align-items:  center;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.caso-nome {
  color: var(--text);
  margin-top: 9px;
  font-size: 13px;
  font-weight: 600;
}

.caso-hist {
  color: var(--mut);
  min-height: 56px;
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.55;
}

.caso-pe {
  margin-top: 10px;
}

.caso-pe .chip {
  font-size: 8.5px;
}

.palco-custo {
  text-align: center;
  letter-spacing: .6px;
  color: var(--faint);
  margin-top: 26px;
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.sug button.ativo {
  box-shadow: inset 2px 0 0 var(--blue);
  background: #2f5bff1a;
}

.sug-foot {
  display: flex;
  border-top: 1px solid var(--border);
  color: var(--faint);
  letter-spacing: .4px;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 14px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.varredura {
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  animation: surge .18s ease-out;
  border-radius: 12px;
  max-width: 560px;
  margin: 26px auto 0;
}

@keyframes surge {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}

.var-head {
  display: flex;
  border-bottom: 1px solid var(--border);
  letter-spacing: 1.2px;
  color: var(--faint);
  justify-content: space-between;
  padding: 11px 16px;
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.var-cron {
  font-variant-numeric: tabular-nums;
  color: var(--mut);
}

.var-viewport {
  overflow: hidden;
  position: relative;
  height: 216px;
  padding: 6px 16px;
}

.var-viewport:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, var(--pop) 0%, transparent 18%, transparent 82%, var(--pop) 100%);
  pointer-events: none;
  inset: 0;
}

.var-lista {
  transition: transform .12s linear;
}

.var-linha {
  display: flex;
  align-items: baseline;
  gap: 10px;
  height: 24px;
  font-family: Geist Mono, monospace;
  font-size: 11.5px;
}

.var-glifo {
  text-align: center;
  flex: none;
  width: 12px;
}

.var-linha.pend {
  color: var(--faint);
}

.var-linha.ativa {
  color: var(--blue2);
}

.var-linha.feita {
  color: var(--mut);
}

.var-hit {
  color: var(--warn);
  font-size: 10.5px;
}

.resp.estampa {
  animation: estampa .26s cubic-bezier(.2, 0, 0, 1) backwards;
}

@keyframes estampa {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

.carimbo {
  animation: carimba .3s cubic-bezier(.2, .8, .3, 1.2) backwards;
}

@keyframes carimba {
  from {
    opacity: 0;
    transform: scale(.85);
  }
}

.filmstrip {
  display: flex;
  align-items:  center;
  gap: 12px;
  margin-top: 20px;
}

.fs-rot {
  letter-spacing: 1.5px;
  color: var(--faint);
  flex: none;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.fs-frames {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, #000 0% 92%, #0000);
  flex: 1;
  align-items:  center;
  gap: 8px;
}

.fs-par {
  display: inline-flex;
  flex: none;
  align-items:  center;
  gap: 8px;
}

.fs-seta {
  color: var(--faint);
  font-size: 11px;
}

.fs-frame {
  display: flex;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 8px;
  flex-direction: column;
  gap: 1px;
  padding: 5px 11px;
  transition: border-color .15s;
}

.fs-frame:hover {
  border-color: var(--border2);
}

.fs-frame.on {
  cursor: default;
  border-color: #2f5bff80;
  box-shadow: 0 0 12px #2f5bff2e;
}

.fs-nome {
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 170px;
  font-size: 11.5px;
  font-weight: 500;
}

.fs-meta {
  letter-spacing: 1px;
  color: var(--faint);
  display: flex;
  align-items:  center;
  gap: 5px;
  font-family: Geist Mono, monospace;
  font-size: 8.5px;
}

.fs-dot {
  background: var(--warn);
  display: inline-block;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.fs-dica {
  letter-spacing: .6px;
  color: var(--faint);
  flex: none;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.gwrap {
  position: relative;
}

.gtip {
  position: absolute;
  background: var(--pop);
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 16px 40px var(--sombra);
  animation: surge .14s ease-out;
  border: 1px solid #ffffff1a;
  border-radius: 10px;
  width: 240px;
  padding: 12px 14px;
  transform: translate(-50%, calc(-100% - 18px));
}

.gtip-nome {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
}

.gtip-doc {
  color: var(--faint);
  margin-top: 2px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.gtip-fato {
  color: var(--mut);
  position: relative;
  margin-top: 6px;
  padding-left: 11px;
  font-size: 11px;
}

.gtip-fato:before {
  content: "";
  position: absolute;
  background: var(--faint);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 6px;
  left: 0;
}

.gtip-fato.quente:before {
  background: var(--warn);
}

.gtip-foot {
  border-top: 1px solid var(--border);
  letter-spacing: .6px;
  color: var(--faint);
  margin-top: 9px;
  padding-top: 8px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.chip.warn {
  color: #e8c27a;
  background: #d9a04114;
  border-color: #d9a04173;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

[data-tema="claro"] .chip.ca {
  color: var(--text);
  background: #0f131c0f;
  border-color: #0f131c59;
}

[data-tema="claro"] .chip.nc {
  color: var(--faint);
  border-color: #0f131c24;
}

[data-tema="claro"] .authbox {
  background: linear-gradient(#ffffff0b, #ffffff03);
}

[data-tema="claro"] .bt {
  box-shadow: 0 6px 18px #2f5bff4d, inset 0 1px #fff3;
}

[data-tema="claro"] .sb-uso .dot {
  box-shadow: 0 0 6px #2f5bff80;
}

[data-tema="claro"] .grafo-painel {
  background: radial-gradient(70% 50% at 50% 0%, #2f5bff0d, #0000), #fff;
}

[data-tema="claro"] .grafo-svg .no.central rect {
  fill: #2f5bff14;
  filter: drop-shadow(0 0 8px #2f5bff4d);
}

[data-tema="claro"] .palco .buscawrap:before {
  background: #2f5bff1a;
}

.sb-org2 {
  display: flex;
  border-bottom: 1px solid var(--border);
  align-items:  center;
  gap: 10px;
  margin-bottom: 10px;
  padding: 6px 10px 14px;
}

.sb-avatar {
  color: #fff;
  display: flex;
  background: linear-gradient(135deg, #2f5bff, #1437e8);
  border-radius: 8px;
  flex: none;
  justify-content: center;
  align-items:  center;
  width: 27px;
  height: 27px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 8px #2f5bff4d;
}

.sb-org-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.sb-org-info b {
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
}

.sb-org-info small {
  letter-spacing: 1px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 8.5px;
}

.sb-nav a svg, .sb-nav .off svg {
  color: var(--faint);
  flex: none;
  transition: color .15s;
}

.sb-nav a:hover svg {
  color: var(--mut);
}

.sb-nav a.on svg {
  color: var(--blue2);
}

.sb-nav .off {
  display: flex;
  color: var(--faint);
  cursor: default;
  border-radius: 8px;
  align-items:  center;
  gap: 9px;
  padding: 8px 10px;
  font-size: 13px;
}

.sb-nav .off small {
  letter-spacing: 1px;
  border: 1px solid var(--border);
  border-radius: 5px;
  margin-left: auto;
  padding: 1px 5px;
  font-family: Geist Mono, monospace;
  font-size: 8px;
}

.sb-uso2 {
  padding: 0 10px 12px;
}

.sb-uso-l {
  display: flex;
  letter-spacing: 1px;
  color: var(--faint);
  justify-content: space-between;
  margin-bottom: 7px;
  font-family: Geist Mono, monospace;
  font-size: 8.5px;
}

.sb-barra {
  background: var(--hover);
  overflow: hidden;
  border-radius: 4px;
  height: 4px;
}

.sb-barra i {
  display: block;
  background: linear-gradient(90deg, #2f5bff, #1b3fd6);
  border-radius: 4px;
  height: 100%;
  transition: width .4s cubic-bezier(.2,0,0,1);
}

.sb-user2 {
  display: flex;
  border-top: 1px solid var(--border);
  align-items:  center;
  gap: 8px;
  padding: 11px 10px 2px;
}

.sb-uavatar {
  background: var(--hover);
  border: 1px solid var(--border2);
  display: flex;
  color: var(--mut);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items:  center;
  width: 23px;
  height: 23px;
  font-size: 10.5px;
  font-weight: 600;
}

.sb-unome {
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 12.5px;
  font-weight: 500;
}

.sb-unome small {
  color: var(--faint);
  margin-left: 3px;
  font-size: 10px;
  font-weight: 400;
}

.sb-user2 button {
  color: var(--faint);
  display: flex;
  border-radius: 6px;
  padding: 4px;
  transition: color .15s, background-color .15s;
}

.sb-user2 button:hover {
  color: var(--text);
  background: var(--hover);
}

.corpo {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.topo {
  display: flex;
  border-bottom: 1px solid var(--border);
  position: sticky;
  z-index: 30;
  background: var(--bg);
  flex: none;
  justify-content: space-between;
  align-items:  center;
  height: 56px;
  padding: 0 24px;
  top: 0;
}

.topo-acoes {
  display: flex;
  align-items:  center;
  gap: 10px;
}

.topo-busca {
  display: flex;
  border: 1px solid var(--border2);
  background: var(--bg2);
  color: var(--faint);
  border-radius: 100px;
  align-items:  center;
  gap: 9px;
  min-width: 300px;
  height: 36px;
  padding: 0 12px;
  transition: border-color .15s, box-shadow .15s;
  font-size: 13px;
}

.topo-busca:hover {
  box-shadow: 0 0 0 3px var(--blue-tint);
  border-color: #1b3fd666;
}

.topo-busca span {
  text-align: left;
  flex: 1;
}

.topo-busca svg {
  color: var(--faint);
}

.topo-busca kbd {
  font-family: var(--mono);
  color: var(--mut);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 10px;
}

.sino {
  position: relative;
  display: grid;
  color: var(--mut);
  border: 1px solid var(--border);
  background: var(--bg2);
  border-radius: 10px;
  place-items:  center;
  width: 36px;
  height: 36px;
  transition: color .15s, background-color .15s, border-color .15s;
}

.sino:hover {
  color: var(--text);
  border-color: var(--border2);
  background: var(--hover);
}

.sino:active {
  scale: .94;
}

.sino-badge {
  position: absolute;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  display: grid;
  box-shadow: 0 0 0 2px var(--bg);
  font-variant-numeric: tabular-nums;
  border-radius: 100px;
  place-items:  center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  font-size: 9.5px;
  font-weight: 600;
  top: -5px;
  right: -5px;
}

.topo-bc {
  display: flex;
  color: var(--mut);
  align-items:  center;
  gap: 8px;
  font-size: 12.5px;
}

.topo-bc .bc-nome {
  color: var(--text);
  letter-spacing: -.2px;
  font-weight: 600;
}

.topo-bc .bc-sep {
  color: var(--faint);
}

.topo-bc .bc-pag {
  font-weight: 500;
}

.topo-uso {
  display: inline-flex;
  letter-spacing: .8px;
  color: var(--faint);
  align-items:  center;
  gap: 7px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.topo-uso .dot {
  background: var(--blue2);
  box-shadow: 0 0 6px var(--blue2);
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

[data-tema="claro"] .painel, [data-tema="claro"] .caso, [data-tema="claro"] .entidade, [data-tema="claro"] .grafo-painel, [data-tema="claro"] .varredura {
  box-shadow: 0 1px 2px #0f131c0a, 0 5px 16px #0f131c0d;
}

[data-tema="claro"] .inp {
  box-shadow: 0 1px 2px #0f131c0d;
}

[data-tema="claro"] .sb {
  background: #f0f1f4;
}

[data-tema="claro"] .topo {
  backdrop-filter: blur(8px);
  background: #f6f7f9d9;
}

[data-tema="escuro"] .topo, html:not([data-tema]) .topo {
  backdrop-filter: blur(8px);
  background: #0b0c0ed9;
}

.casos-rot {
  letter-spacing: 1.6px;
  color: var(--faint);
  margin-top: 36px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.h-cab {
  display: flex;
  justify-content: space-between;
  align-items:  flex-end;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .home-grid {
    grid-template-columns: 1fr;
  }
}

.h-card {
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  border-radius: 14px;
  flex-direction: column;
  min-width: 0;
  padding: 18px 20px;
}

.h-card.w2 {
  grid-column: span 2;
}

@media (max-width: 1080px) {
  .h-card.w2 {
    grid-column: span 1;
  }
}

.h-card.off {
  background: none;
  border-style: dashed;
}

[data-tema="claro"] .h-card {
  box-shadow: 0 1px 2px #0f131c0a, 0 5px 16px #0f131c0d;
}

[data-tema="claro"] .h-card.off {
  box-shadow: none;
}

.h-rot {
  letter-spacing: 1.5px;
  color: var(--faint);
  display: flex;
  align-items:  center;
  gap: 8px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.h-num {
  letter-spacing: -.5px;
  font-variant-numeric: tabular-nums;
  margin-top: 10px;
  font-size: 26px;
  font-weight: 600;
}

.h-num small {
  color: var(--mut);
  letter-spacing: 0;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 400;
}

.h-sub {
  color: var(--mut);
  margin-top: 6px;
  font-size: 12.5px;
}

.h-sub.mono {
  letter-spacing: .8px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.h-pe {
  display: flex;
  color: var(--faint);
  justify-content: space-between;
  align-items:  center;
  margin-top: auto;
  padding-top: 12px;
  font-size: 11.5px;
}

.h-pe a {
  color: var(--blue2);
  cursor: pointer;
  font-weight: 500;
}

.h-busca {
  cursor: pointer;
  text-align: left;
  flex-direction: row;
  align-items:  center;
  gap: 12px;
  transition: border-color .15s, transform .15s;
}

.h-busca:hover {
  border-color: #1b3fd673;
  transform: translateY(-1px);
}

.h-busca-ico {
  color: var(--faint);
  display: flex;
  flex: none;
}

.h-busca-txt {
  color: var(--faint);
  flex: 1;
  font-family: Geist Mono, monospace;
  font-size: 13px;
}

.h-linha {
  display: grid;
  grid-template-columns: 110px 1fr auto auto;
  border-bottom: 1px solid var(--row);
  align-items:  center;
  gap: 12px;
  padding: 7px 0;
  font-size: 12.5px;
}

.h-linha:last-of-type {
  border-bottom: none;
}

.h-quem {
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.h-doc {
  color: var(--mut);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
}

.h-quando {
  color: var(--faint);
  font-size: 10.5px;
}

.h-linha .chip {
  padding: 2px 7px;
  font-size: 8.5px;
}

.h-avatares {
  display: flex;
  margin-top: 12px;
}

.h-avatares .sb-uavatar {
  border: 2px solid var(--bg2);
  width: 26px;
  height: 26px;
  margin-right: -6px;
  font-size: 11.5px;
}

.h-vazio {
  color: var(--faint);
  padding: 18px 0;
  font-size: 12.5px;
}

::selection {
  color: var(--text);
  background: #2f5bff52;
}

[data-tema="claro"] ::selection {
  background: #2f5bff2e;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-thumb {
  background: var(--border2);
  border: 3px solid var(--bg);
  background-clip: padding-box;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--faint);
  border: 3px solid var(--bg);
  background-clip: padding-box;
}

::-webkit-scrollbar-track {
  background: none;
}

button:focus-visible {
  outline: 2px solid #1b3fd6b3;
  outline-offset: 2px;
  border-radius: 8px;
}

a:focus-visible {
  outline: 2px solid #1b3fd6b3;
  outline-offset: 2px;
  border-radius: 8px;
}

.fs-frame:focus-visible {
  outline: 2px solid #1b3fd6b3;
  outline-offset: 2px;
  border-radius: 8px;
}

.caso:focus-visible {
  outline: 2px solid #1b3fd6b3;
  outline-offset: 2px;
  border-radius: 8px;
}

.inp:focus-visible {
  outline: none;
}

html:not([data-tema="claro"]) .h-card:not(.off), html:not([data-tema="claro"]) .painel, html:not([data-tema="claro"]) .entidade, html:not([data-tema="claro"]) .grafo-painel, html:not([data-tema="claro"]) .caso, html:not([data-tema="claro"]) .varredura {
  box-shadow: inset 0 1px #ffffff0a;
}

.topo-uso, .sb-uso-l, .h-quando, .h-pe {
  font-variant-numeric: tabular-nums;
}

.tit, .palco-h {
  text-wrap: balance;
}

.h-sub, .caso-hist, .gtip-fato {
  text-wrap: pretty;
}

@keyframes vivo {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.topo-uso .dot {
  animation: vivo 2.8s ease-in-out infinite;
}

@keyframes rise2 {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
}

.conteudo {
  animation: rise2 .18s cubic-bezier(.2, 0, 0, 1);
}

.h-cab {
  animation: rise2 .3s cubic-bezier(.2, 0, 0, 1) backwards;
}

.home-grid .h-card {
  animation: rise2 .32s cubic-bezier(.2, 0, 0, 1) backwards;
}

.home-grid .h-card:first-child {
  animation-delay: 40ms;
}

.home-grid .h-card:nth-child(2) {
  animation-delay: 90ms;
}

.home-grid .h-card:nth-child(3) {
  animation-delay: .13s;
}

.home-grid .h-card:nth-child(4) {
  animation-delay: .17s;
}

.home-grid .h-card:nth-child(5) {
  animation-delay: .21s;
}

.home-grid .h-card:nth-child(6) {
  animation-delay: .25s;
}

.home-grid .h-card:nth-child(7) {
  animation-delay: .29s;
}

.palco > * {
  animation: rise2 .34s cubic-bezier(.2, 0, 0, 1) backwards;
}

.palco > :nth-child(2) {
  animation-delay: 50ms;
}

.palco > :nth-child(3) {
  animation-delay: .1s;
}

.palco > :nth-child(4) {
  animation-delay: .15s;
}

.palco > :nth-child(5) {
  animation-delay: .2s;
}

.palco > :nth-child(6) {
  animation-delay: .25s;
}

.palco > :nth-child(7) {
  animation-delay: .3s;
}

.caso {
  transition: border-color .15s, transform .15s, scale .12s;
}

.caso:active, .h-busca:active {
  scale: .97;
}

.fs-frame:not(.on):active {
  scale: .96;
}

.sug button:active {
  scale: .99;
}

.h-linha {
  transition: background-color .12s;
}

.h-linha:hover {
  background: var(--hover);
}

.tema-tg {
  position: relative;
  display: flex;
  color: var(--faint);
  border-radius: 6px;
  flex: none;
  width: 26px;
  height: 26px;
  transition: color .15s, background-color .15s;
}

.tema-tg:hover {
  color: var(--text);
  background: var(--hover);
}

.tg-ico {
  position: absolute;
  display: flex;
  opacity: 0;
  filter: blur(4px);
  justify-content: center;
  align-items:  center;
  transition: opacity .3s cubic-bezier(.2,0,0,1), transform .3s cubic-bezier(.2,0,0,1), filter .3s cubic-bezier(.2,0,0,1);
  inset: 0;
  transform: scale(.25);
}

.tg-ico.on {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

.mveu {
  position: fixed;
  z-index: 100;
  backdrop-filter: blur(4px);
  display: flex;
  animation: fadeM .15s ease-out;
  background: #08090b8c;
  justify-content: center;
  align-items:  center;
  padding: 24px;
  inset: 0;
}

@keyframes fadeM {
  from {
    opacity: 0;
  }
}

.modal {
  background: var(--pop);
  border: 1px solid var(--border2);
  box-shadow: 0 30px 80px var(--sombra);
  animation: surgeM .22s cubic-bezier(.2, .8, .25, 1.1);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  padding: 20px 22px;
}

@keyframes surgeM {
  from {
    opacity: 0;
    transform: translateY(10px)scale(.97);
  }
}

.modal-cab {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 1080px) {
  .planos-grid {
    grid-template-columns: 1fr;
  }
}

.plano-card {
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  border-radius: 14px;
  flex-direction: column;
  padding: 18px 20px;
}

.plano-card.atual {
  background: linear-gradient(180deg, #2f5bff12, transparent), var(--panel);
  border-color: #2f5bff73;
}

[data-tema="claro"] .plano-card {
  box-shadow: 0 1px 2px #0f131c0a, 0 5px 16px #0f131c0d;
}

.plano-preco {
  letter-spacing: -.4px;
  font-variant-numeric: tabular-nums;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 600;
}

.plano-preco small {
  color: var(--mut);
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 400;
}

.plano-lista {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
  margin: 12px 0 16px;
}

.plano-lista li {
  color: var(--mut);
  position: relative;
  padding-left: 14px;
  font-size: 12.5px;
}

.plano-lista li:before {
  content: "";
  position: absolute;
  border: 1.5px solid var(--blue2);
  opacity: .75;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 6px;
  left: 0;
}

.pag-linha {
  display: flex;
  border-bottom: 1px solid var(--row);
  align-items:  center;
  gap: 14px;
  padding: 10px 0;
  font-size: 12.5px;
}

.pag-linha:last-child {
  border-bottom: none;
}

.pag-linha .mut {
  color: var(--faint);
  flex: 1;
  font-size: 11.5px;
}

.pag-cartao {
  letter-spacing: 1px;
  color: var(--text);
  font-size: 12px;
}

.pix-wrap {
  display: flex;
  align-items:  flex-start;
  gap: 18px;
}

.qr {
  fill: #0b0c0e;
  background: #fff;
  border-radius: 10px;
  flex: none;
  width: 148px;
  height: 148px;
  padding: 10px;
}

.pix-dir {
  flex: 1;
  min-width: 0;
}

.qr-img {
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  flex: none;
  width: 160px;
  height: 160px;
  padding: 8px;
}

.qr-vazio {
  display: flex;
  color: var(--faint);
  text-align: center;
  justify-content: center;
  align-items:  center;
  padding: 14px;
  font-size: 11px;
}

.pix-aguardando {
  display: flex;
  color: var(--mut);
  align-items:  center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
}

.spin {
  border: 2px solid var(--border2);
  border-top-color: var(--blue2);
  animation: girar .7s linear infinite;
  border-radius: 50%;
  width: 13px;
  height: 13px;
}

@keyframes girar {
  to {
    transform: rotate(360deg);
  }
}

.pix-pago {
  text-align: center;
  padding: 18px 4px;
}

.pix-pago > b {
  display: block;
  color: var(--text);
  margin-top: 11px;
  font-size: 15px;
}

.pix-pago .bt {
  margin-top: 16px;
}

.pix-check {
  color: #3fbf7f;
  display: flex;
  background: #40b47829;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 46px;
  height: 46px;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 700;
}

.cfg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 18px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .cfg-grid {
    grid-template-columns: 1fr;
  }
}

.cfg-acoes {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.cfg-tema {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 10px;
  margin-top: 14px;
}

.cfg-tema-op {
  display: flex;
  border: 1px solid var(--border);
  color: var(--mut);
  border-radius: 10px;
  align-items:  center;
  gap: 9px;
  padding: 9px 16px;
  transition: border-color .15s, color .15s, scale .12s;
  font-size: 13px;
}

.cfg-tema-op:hover {
  border-color: var(--border2);
  color: var(--text);
}

.cfg-tema-op:active {
  scale: .97;
}

.cfg-tema-op.on {
  color: var(--text);
  background: #2f5bff12;
  border-color: #2f5bff80;
}

.cfg-swatch {
  border: 1px solid var(--border2);
  border-radius: 5px;
  width: 16px;
  height: 16px;
}

.cfg-swatch.escuro {
  background: #0b0c0e;
}

.cfg-swatch.claro {
  background: #f6f7f9;
}

.grid2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

@media (max-width: 1080px) {
  .grid2 {
    grid-template-columns: 1fr;
  }
}

.code2 {
  color: var(--mut);
  background: var(--inset);
  border: 1px solid var(--border);
  white-space: pre;
  overflow-x: auto;
  border-radius: 10px;
  margin-top: 12px;
  padding: 14px 16px;
  font-family: Geist Mono, monospace;
  font-size: 12px;
  line-height: 1.8;
}

.resumo-strip {
  display: flex;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  align-items:  center;
  gap: 28px;
  padding: 14px 20px;
}

[data-tema="claro"] .resumo-strip {
  box-shadow: 0 1px 2px #0f131c0a, 0 5px 16px #0f131c0d;
}

.resumo-strip > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.resumo-strip b {
  font-variant-numeric: tabular-nums;
  font-size: 20px;
  font-weight: 600;
}

.resumo-strip span {
  color: var(--faint);
  font-size: 11.5px;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: 14px;
}

.pol-sub {
  letter-spacing: .6px;
  white-space: nowrap;
  margin-top: 4px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.fchip {
  letter-spacing: .8px;
  border: 1px solid var(--border);
  color: var(--mut);
  border-radius: 100px;
  padding: 6px 13px;
  transition: border-color .15s, color .15s, background-color .15s, scale .12s;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.fchip:hover {
  border-color: var(--border2);
  color: var(--text);
}

.fchip:active {
  scale: .95;
}

.fchip.on {
  color: var(--text);
  background: #2f5bff1a;
  border-color: #2f5bff80;
}

.filtro-busca {
  max-width: 280px;
  margin-left: auto;
  padding: 8px 13px !important;
  font-size: 12.5px !important;
}

.memb {
  display: flex;
  align-items:  center;
  gap: 11px;
}

.voce {
  letter-spacing: 1px;
  color: var(--blue2);
  vertical-align: 2px;
  border: 1px solid #2f5bff66;
  border-radius: 5px;
  margin-left: 8px;
  padding: 1px 6px;
  font-family: Geist Mono, monospace;
  font-size: 8.5px;
}

.papel-sel {
  background: var(--inp);
  border: 1px solid var(--border2);
  color: var(--text);
  font: inherit;
  outline: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px 10px;
  transition: border-color .15s;
  font-size: 12.5px;
}

.papel-sel:hover {
  border-color: var(--faint);
}

.papel-sel.grande {
  padding: 11px 14px;
}

.papel-sel option {
  background: var(--pop);
}

.papeis-legenda {
  display: flex;
  color: var(--faint);
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  font-size: 11.5px;
}

.papeis-legenda b {
  color: var(--mut);
  margin-right: 5px;
  font-weight: 600;
}

.h-busca-linha {
  display: flex;
  text-align: left;
  border: 1px solid var(--border2);
  background: var(--inp);
  cursor: pointer;
  border-radius: 10px;
  align-items:  center;
  gap: 12px;
  width: 100%;
  padding: 13px 16px;
  transition: border-color .15s, scale .12s;
}

.h-busca-linha:hover {
  border-color: #1b3fd680;
}

.h-busca-linha:active {
  scale: .99;
}

.h-busca {
  cursor: default;
}

.h-busca:hover {
  border-color: var(--border);
  transform: none;
}

.h-chips {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
}

.h-chips-rot {
  letter-spacing: 1.2px;
  color: var(--faint);
  margin-right: 2px;
  font-family: Geist Mono, monospace;
  font-size: 8.5px;
}

.h-chip {
  letter-spacing: .6px;
  border: 1px solid var(--border);
  color: var(--mut);
  border-radius: 100px;
  padding: 5px 11px;
  transition: border-color .15s, color .15s, scale .12s;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.h-chip:hover {
  color: var(--text);
  border-color: #1b3fd673;
}

.h-chip:active {
  scale: .95;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.bt2.social {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 9px;
  padding: 11px;
}

.social-g {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.social-ms {
  display: grid;
  grid-template-columns: 6px 6px;
  gap: 1.5px;
}

.social-ms i {
  background: var(--mut);
  width: 6px;
  height: 6px;
}

.divisor-ou {
  display: flex;
  letter-spacing: 1.2px;
  color: var(--faint);
  align-items:  center;
  gap: 12px;
  margin: 18px 0 4px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.divisor-ou:before, .divisor-ou:after {
  content: "";
  background: var(--border);
  flex: 1;
  height: 1px;
}

.cfg-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 1080px) {
  .cfg-2col {
    grid-template-columns: 1fr;
  }
}

.cfg-org {
  display: flex;
  align-items:  flex-start;
  gap: 22px;
  margin-top: 14px;
}

.cfg-org-avatar {
  display: flex;
  flex-direction: column;
  flex: none;
  align-items:  center;
  gap: 8px;
  padding-top: 4px;
}

.sb-avatar.grande {
  border-radius: 14px;
  width: 52px;
  height: 52px;
  font-size: 22px;
}

.acesso-linha {
  display: flex;
  border-bottom: 1px solid var(--row);
  align-items:  center;
  gap: 12px;
  padding: 11px 0;
}

.acesso-linha:last-of-type {
  border-bottom: none;
}

.acesso-linha > div {
  flex: 1;
  min-width: 0;
}

.acesso-linha b {
  display: block;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 500;
}

.acesso-linha small {
  display: block;
  color: var(--faint);
  margin-top: 1px;
  font-size: 11px;
}

.acesso-link {
  text-align: center;
  color: var(--mut);
  flex: none;
  width: 24px;
  font-size: 13px;
}

.notif-linha {
  display: flex;
  border-bottom: 1px solid var(--row);
  align-items:  center;
  gap: 14px;
  padding: 11px 0;
}

.notif-linha:last-of-type {
  border-bottom: none;
}

.notif-linha > div {
  flex: 1;
}

.notif-linha b {
  display: block;
  color: var(--text);
  font-size: 12.5px;
  font-weight: 500;
}

.notif-linha small {
  display: block;
  color: var(--faint);
  margin-top: 1px;
  font-size: 11px;
}

.sw {
  position: relative;
  background: var(--hover);
  border: 1px solid var(--border2);
  border-radius: 20px;
  flex: none;
  width: 34px;
  height: 20px;
  transition: background-color .2s, border-color .2s;
}

.sw i {
  position: absolute;
  background: var(--faint);
  border-radius: 50%;
  width: 14px;
  height: 14px;
  transition: transform .2s cubic-bezier(.2,0,0,1), background-color .2s;
  top: 2px;
  left: 2px;
}

.sw.on {
  background: #2f5bff59;
  border-color: #2f5bff80;
}

.sw.on i {
  background: #fff;
  transform: translateX(14px);
}

.sw.travada {
  opacity: .4;
  cursor: default;
}

.zona-risco {
  border-color: #e08a8a40;
}

.perigo-bt {
  background: linear-gradient(#d9534f, #b73e3a);
  box-shadow: 0 0 18px #d9534f40, inset 0 1px #fff3;
}

.perigo-bt:disabled {
  opacity: .4;
}

.plano-atual {
  display: flex;
  justify-content: space-between;
  align-items:  flex-start;
  gap: 24px;
}

.pa-info {
  min-width: 0;
}

.pa-acoes {
  display: flex;
  flex-direction: column;
  flex: none;
  align-items: stretch;
  gap: 9px;
  min-width: 230px;
}

.escolher-planos {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.escolha {
  text-align: left;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 13px 16px;
  transition: border-color .15s, scale .12s;
}

.escolha:not(.atual):hover {
  border-color: #1b3fd680;
}

.escolha:not(.atual):active {
  scale: .98;
}

.escolha.atual {
  opacity: .55;
  cursor: default;
}

.escolha-cab {
  display: flex;
  justify-content: space-between;
  align-items:  center;
}

.escolha-cab b {
  font-size: 13.5px;
}

.escolha-desc {
  display: block;
  color: var(--faint);
  margin-top: 4px;
  font-size: 11.5px;
}

.rdr-head {
  display: flex;
  align-items:  center;
  gap: 10px;
}

.rdr-tag {
  display: inline-flex;
  letter-spacing: 1.4px;
  color: var(--mut);
  border: 1px solid var(--border2);
  border-radius: 100px;
  align-items:  center;
  gap: 6px;
  padding: 3px 9px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.rdr-tag i {
  background: #d8442e;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.rdr-note {
  color: var(--faint);
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.5;
}

.rdr-seg {
  display: inline-flex;
  background: var(--inset);
  border: 1px solid var(--border);
  border-radius: 11px;
  gap: 2px;
  margin-top: 18px;
  padding: 3px;
}

.rdr-seg button {
  color: var(--mut);
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 6px 17px;
  transition: color .15s, background .15s;
  font-size: 13px;
  font-weight: 500;
}

.rdr-seg button.on {
  color: var(--text);
  box-shadow: 0 1px 2px var(--sombra);
  background: #ffffff17;
}

[data-tema="claro"] .rdr-seg button.on {
  background: #fff;
}

.rdr-seg button:not(.on):hover {
  color: var(--text);
}

.rdr-in {
  animation: rdrIn .4s cubic-bezier(.2, 0, 0, 1) both;
}

@keyframes rdrIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rdr-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.rdr-stat {
  background: var(--cell);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
}

.rdr-stat .k {
  letter-spacing: 1.3px;
  color: var(--faint);
  text-transform: uppercase;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.rdr-stat .v {
  font-variant-numeric: tabular-nums;
  letter-spacing: -.6px;
  margin-top: 6px;
  font-size: 24px;
  font-weight: 600;
}

.rdr-filtros {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: 22px;
}

.rdr-busca {
  border: 1px solid var(--border);
  background: var(--inp);
  color: var(--text);
  border-radius: 10px;
  flex: 1;
  min-width: 180px;
  padding: 9px 14px;
  transition: border-color .15s;
  font-size: 13px;
}

.rdr-busca:focus {
  outline: 0;
  border-color: var(--border2);
}

.rdr-pill {
  letter-spacing: .4px;
  border: 1px solid var(--border);
  color: var(--mut);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-radius: 100px;
  padding: 6px 12px;
  transition: color .15s, border-color .15s, background .15s;
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.rdr-pill:hover {
  color: var(--text);
  border-color: var(--border2);
}

.rdr-pill.on {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.rdr-chips {
  display: flex;
  overflow-x: auto;
  gap: 6px;
  margin-top: 11px;
  padding-bottom: 5px;
}

.rdr-chips::-webkit-scrollbar {
  height: 5px;
}

.rdr-chips::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}

.rdr-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.rdr-card {
  background: var(--cell);
  border: 1px solid var(--border);
  position: relative;
  border-radius: 12px;
  padding: 14px 16px 13px 17px;
}

.rdr-card:before {
  content: "";
  position: absolute;
  background: var(--sev, var(--border2));
  border-radius: 0 3px 3px 0;
  width: 3px;
  top: 13px;
  bottom: 13px;
  left: 0;
}

.rdr-card.s-critico {
  --sev: #d8442e;
}

.rdr-card.s-alto {
  --sev: #c98a00;
}

.rdr-card.s-medio {
  --sev: var(--border2);
}

.rdr-card .top {
  display: flex;
  align-items:  center;
  gap: 8px;
}

.rdr-dot {
  background: var(--sev, var(--border2));
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
}

.rdr-det {
  letter-spacing: .8px;
  color: var(--faint);
  text-transform: uppercase;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.rdr-val {
  font-variant-numeric: tabular-nums;
  margin-left: auto;
  font-family: Geist Mono, monospace;
  font-size: 13px;
  font-weight: 500;
}

.rdr-card h4 {
  text-wrap: pretty;
  margin-top: 9px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.35;
}

.rdr-card .desc {
  color: var(--mut);
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.5;
}

.rdr-meta {
  display: flex;
  border-top: 1px solid var(--border);
  color: var(--faint);
  letter-spacing: .3px;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 9px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.rdr-meta .ent {
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rdr-vazio {
  color: var(--faint);
  margin-top: 16px;
  font-size: 13px;
}

.rdr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(345px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.rdr-rank {
  background: var(--cell);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  border-radius: 12px;
  flex-direction: column;
}

.rdr-rank-h {
  border-bottom: 1px solid var(--border);
  padding: 13px 16px;
}

.rdr-rank-h .t {
  font-size: 13.5px;
  font-weight: 600;
}

.rdr-rank-h .s {
  letter-spacing: .6px;
  color: var(--faint);
  text-transform: uppercase;
  margin-top: 3px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.rdr-rows {
  overflow-y: auto;
  max-height: 336px;
}

.rdr-rows::-webkit-scrollbar {
  width: 6px;
}

.rdr-rows::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 3px;
}

.rdr-row {
  display: flex;
  border-top: 1px solid var(--border);
  align-items: baseline;
  gap: 10px;
  padding: 9px 16px;
}

.rdr-row:first-child {
  border-top: 0;
}

.rdr-row .n {
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  min-width: 18px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.rdr-row .nm {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  font-size: 12.5px;
}

.rdr-row .nm small {
  color: var(--faint);
  margin-left: 7px;
  font-size: 10.5px;
}

.rdr-row .vv {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-family: Geist Mono, monospace;
  font-size: 12px;
  font-weight: 600;
}

.rdr-inv {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.rdr-inv.split {
  grid-template-columns: minmax(0, 360px) 1fr;
}

.rdr-search {
  display: flex;
  gap: 8px;
}

.rdr-search .rdr-busca {
  padding: 10px 15px;
  font-size: 14px;
}

.rdr-grupo {
  letter-spacing: 1.3px;
  color: var(--faint);
  text-transform: uppercase;
  margin: 16px 0 8px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.rdr-hit {
  display: flex;
  text-align: left;
  background: var(--cell);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text);
  border-radius: 10px;
  justify-content: space-between;
  align-items:  center;
  gap: 10px;
  width: 100%;
  margin-bottom: 5px;
  padding: 9px 13px;
  transition: border-color .15s, background .15s, scale .1s;
}

.rdr-hit:hover {
  border-color: var(--border2);
  background: var(--hover);
}

.rdr-hit:active {
  scale: .98;
}

.rdr-hit .nm {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.rdr-hit .mt {
  color: var(--faint);
  white-space: nowrap;
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.rdr-doss {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
}

.rdr-doss h3 {
  letter-spacing: -.3px;
  text-wrap: balance;
  font-size: 18px;
  font-weight: 600;
}

.rdr-md {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.65;
}

.rdr-md .h {
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--faint);
  margin: 20px 0 8px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
  font-weight: 600;
}

.rdr-md .li {
  padding: 2px 0;
}

.rdr-md .sub {
  color: var(--mut);
  margin-left: 18px;
}

.rdr-md .q {
  border-left: 2px solid var(--border);
  color: var(--faint);
  margin: 14px 0;
  padding-left: 12px;
  font-size: 12px;
}

.rdr-md code {
  background: var(--inset);
  border-radius: 5px;
  padding: 1px 5px;
  font-family: Geist Mono, monospace;
  font-size: 11px;
}

.rdr-md b {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 760px) {
  .rdr-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .rdr-inv.split, .rdr-grid {
    grid-template-columns: 1fr;
  }
}

.lau {
  max-width: 880px;
}

.lau-empty {
  text-align: center;
  padding: 64px 20px;
}

.lau-paper {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  padding: 26px 30px 30px;
}

.lau-top {
  display: flex;
  border-bottom: 1.5px solid var(--text);
  justify-content: space-between;
  align-items:  flex-start;
  gap: 16px;
  padding-bottom: 16px;
}

.lau-kicker {
  letter-spacing: 1.8px;
  color: var(--faint);
  text-transform: uppercase;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.lau-title {
  letter-spacing: -.4px;
  color: var(--text);
  text-wrap: balance;
  margin: 7px 0 0;
  font-family: Georgia, Times New Roman, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.12;
}

.lau-meta {
  color: var(--mut);
  font-variant-numeric: tabular-nums;
  margin-top: 8px;
  font-size: 12px;
}

.lau-pdf {
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  background: none;
  border-radius: 8px;
  flex: none;
  padding: 7px 13px;
  transition: background .15s;
  font-size: 12px;
  font-weight: 500;
}

.lau-pdf:hover {
  background: var(--inset);
}

.lau-pdf:active {
  transform: scale(.97);
}

.lau-verdict {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 22px;
  padding: 16px 0 17px;
}

.lau-v-left {
  flex: none;
  min-width: 150px;
}

.lau-v-lbl {
  letter-spacing: 1.8px;
  color: var(--faint);
  text-transform: uppercase;
  font-size: 9px;
}

.lau-v-nivel {
  letter-spacing: .5px;
  color: var(--text);
  margin-top: 4px;
  font-family: Georgia, Times New Roman, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.lau-v-rac {
  color: var(--mut);
  padding-top: 3px;
  font-size: 12.5px;
  line-height: 1.55;
}

.lau-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 8px;
  margin-top: 18px;
}

.lau-mc {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 15px;
}

.lau-mc:last-child {
  border-right: none;
}

.lau-mc-l {
  letter-spacing: 1.2px;
  color: var(--faint);
  text-transform: uppercase;
  font-size: 8.5px;
}

.lau-mc-v {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 700;
}

.lau-mc-v i {
  color: var(--faint);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
}

.lau-sec {
  margin-top: 24px;
}

.lau-sech {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 11px;
  padding-bottom: 8px;
}

.lau-sech > span:first-child {
  letter-spacing: 1.6px;
  color: var(--faint);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.lau-fonte {
  color: var(--faint);
  font-size: 9px;
}

.lau-tab {
  border-collapse: collapse;
  width: 100%;
  font-size: 12.5px;
}

.lau-tab th {
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--faint);
  text-align: left;
  padding: 0 0 7px;
  font-size: 8.5px;
  font-weight: 500;
}

.lau-tab td {
  border-top: 1px solid var(--row);
  vertical-align: top;
  color: var(--text);
  padding: 9px 0;
}

.lau-tab .mut {
  color: var(--mut);
}

.lau-socio {
  border-top: 1px solid var(--row);
}

.lau-socio:first-of-type {
  border-top: none;
}

.lau-socio-h {
  display: flex;
  text-align: left;
  color: var(--text);
  background: none;
  border: none;
  justify-content: space-between;
  align-items:  center;
  gap: 12px;
  width: 100%;
  padding: 11px 0;
  font-family: inherit;
  font-size: 13px;
}

.lau-socio-nome {
  font-weight: 600;
}

.lau-socio-q {
  color: var(--mut);
  margin-left: 6px;
  font-size: 12px;
  font-weight: 400;
}

.lau-socio-n {
  color: var(--mut);
  font-variant-numeric: tabular-nums;
  display: flex;
  white-space: nowrap;
  flex: none;
  align-items:  center;
  gap: 7px;
  font-size: 12px;
}

.lau-chev {
  color: var(--faint);
  transition: transform .2s;
  font-size: 9px;
  font-style: normal;
}

.lau-socio.on .lau-chev {
  transform: rotate(180deg);
}

.lau-socio-emps {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 2px 0 13px;
}

.lau-emp {
  background: var(--inset);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  border-radius: 7px;
  padding: 6px 11px;
  transition: background .15s, border-color .15s;
  font-family: inherit;
  font-size: 12px;
}

.lau-emp:hover {
  background: var(--cell);
  border-color: var(--faint);
}

.lau-emp-base {
  color: var(--faint);
  margin-left: 5px;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.lau-socio-dica {
  color: var(--faint);
  text-wrap: pretty;
  margin-top: 10px;
  font-size: 11px;
}

.lau-sig {
  color: var(--mut);
  position: relative;
  margin-bottom: 9px;
  padding-left: 15px;
  font-size: 12.5px;
  line-height: 1.55;
}

.lau-sig > span {
  position: absolute;
  color: var(--text);
  top: 0;
  left: 0;
}

.lau-grafo {
  border: 1px solid var(--border);
  background: var(--inset);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  height: 360px;
}

.lau-fontes {
  background: var(--inset);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-top: 26px;
  padding: 15px 18px;
}

.lau-fontes-l {
  letter-spacing: 1.6px;
  color: var(--mut);
  text-transform: uppercase;
  margin-bottom: 11px;
  font-size: 10px;
  font-weight: 600;
}

.lau-fontes-t {
  border-collapse: collapse;
  width: 100%;
  font-size: 11px;
  line-height: 1.6;
}

.lau-fontes-t td {
  color: var(--mut);
  padding: 3px 14px 3px 0;
}

.lau-fontes-t td b {
  color: var(--text);
  font-weight: 600;
}

.lau-fontes-t .lau-url {
  text-align: right;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.lau-disc {
  color: var(--faint);
  text-wrap: pretty;
  margin-top: 16px;
  font-size: 10px;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .lau-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .lau-verdict {
    flex-direction: column;
    gap: 10px;
  }

  .lau-v-left {
    min-width: 0;
  }
}

.lau-load {
  text-align: center;
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: 11px;
  margin: 16vh auto 0;
  font-size: 14px;
}

.lau-load small {
  color: var(--faint);
  font-size: 12px;
}

.lau-spin {
  border: 2.5px solid var(--border);
  border-top-color: var(--text);
  animation: lauspin .7s linear infinite;
  border-radius: 50%;
  width: 26px;
  height: 26px;
}

@keyframes lauspin {
  to {
    transform: rotate(360deg);
  }
}

.lau-entrada {
  text-align: center;
  max-width: 500px;
  margin: 11vh auto 0;
}

.lau-entrada-h {
  letter-spacing: -.3px;
  color: var(--text);
  font-family: Georgia, Times New Roman, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.1;
}

.lau-entrada-sub {
  color: var(--mut);
  text-wrap: pretty;
  max-width: 440px;
  margin: 13px auto 0;
  font-size: 13px;
  line-height: 1.6;
}

.lau-entrada-busca {
  text-align: left;
  margin-top: 24px;
}

.lau-entrada-busca .parser {
  text-align: left;
}

.lau-entrada-ex {
  display: flex;
  color: var(--faint);
  flex-wrap: wrap;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  margin-top: 22px;
  font-size: 12px;
}

.lau-ex {
  background: var(--inset);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  border-radius: 20px;
  padding: 5px 13px;
  transition: background .15s, border-color .15s;
  font-family: inherit;
  font-size: 12px;
}

.lau-ex:hover {
  background: var(--cell);
  border-color: var(--faint);
}

.lau-entrada-link {
  color: var(--faint);
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 24px;
  font-family: inherit;
  font-size: 12px;
}

.lau-entrada-link:hover {
  color: var(--mut);
}

.acharwrap {
  margin: 6px 0 10px;
}

.achar {
  position: relative;
  display: flex;
  background: var(--bg2);
  border: 1px solid var(--border2);
  box-shadow: 0 10px 30px var(--inset);
  border-radius: 14px;
  align-items:  center;
  gap: 10px;
  padding: 8px 8px 8px 16px;
}

.achar:focus-within {
  border-color: var(--blue);
}

.achar-ic {
  color: var(--faint);
  font-size: 17px;
}

.achar-inp {
  outline: 0;
  color: var(--text);
  background: none;
  border: 0;
  flex: 1;
  padding: 11px 0;
  font-size: 16px;
}

.achar-inp::placeholder {
  color: var(--faint);
}

.achar-bt {
  height: 42px;
  padding: 0 22px;
}

.achar-pop {
  position: absolute;
  z-index: 50;
  background: var(--pop);
  border: 1px solid var(--border2);
  box-shadow: 0 24px 60px var(--sombra);
  overflow: hidden;
  border-radius: 12px;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
}

.achar-op {
  display: block;
  text-align: left;
  border: 0;
  border-bottom: 1px solid var(--row);
  cursor: pointer;
  color: var(--text);
  background: none;
  width: 100%;
  padding: 11px 15px;
  font-size: 13.5px;
}

.achar-op:last-child {
  border-bottom: 0;
}

.achar-op:first-letter {
  text-transform: uppercase;
}

.achar-op:hover {
  background: var(--hover);
}

.achar-interp {
  color: var(--mut);
  margin-top: 13px;
  font-size: 13.5px;
}

.achar-interp b {
  color: var(--text);
  font-weight: 600;
}

.achar-ex {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: 14px;
}

.achar-ex .ex-l {
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 11px;
}

.ex-chip {
  color: var(--mut);
  background: var(--panel);
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 20px;
  padding: 6px 13px;
  transition: border-color .15s, color .15s;
  font-size: 12.5px;
}

.ex-chip:hover {
  border-color: var(--blue);
  color: var(--text);
}

.ex-chip.on {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 600;
}

.ex-chip.on:hover {
  color: #fff;
}

.bt2.on {
  border-color: var(--blue);
  color: var(--blue2);
  background: #2f5bff1a;
}

.achar-adv {
  color: var(--mut);
  cursor: pointer;
  background: none;
  border: 0;
  margin-top: 18px;
  font-family: Geist Mono, monospace;
  font-size: 12.5px;
}

.achar-adv:hover {
  color: var(--text);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .adv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .achar {
    flex-wrap: wrap;
  }

  .achar-bt {
    width: 100%;
  }
}

.crm-board {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 250px;
  overflow-x: auto;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 12px;
}

.crm-col {
  background: var(--panel);
  border: 1px solid var(--border);
  display: flex;
  border-radius: 14px;
  flex-direction: column;
  min-height: 220px;
}

.crm-col-h {
  display: flex;
  border-bottom: 1px solid var(--row);
  justify-content: space-between;
  align-items:  center;
  padding: 12px 14px;
}

.crm-col-h b {
  color: var(--text);
  font-size: 13px;
}

.crm-col-h span {
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 12px;
}

.crm-col-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 9px;
  padding: 10px;
}

.crm-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  cursor: grab;
  border-radius: 11px;
  padding: 12px;
}

.crm-card:active {
  cursor: grabbing;
}

.crm-card:hover {
  border-color: var(--blue);
}

.crm-card .cn {
  color: var(--text);
  margin-bottom: 3px;
  font-size: 13.5px;
  font-weight: 600;
}

.crm-card .cc {
  color: var(--mut);
  font-size: 12px;
}

.crm-card .cp {
  margin-top: 9px;
}

.crm-vazio {
  color: var(--faint);
  text-align: center;
  padding: 18px 0;
  font-size: 12px;
}

.ach-res {
  margin-top: 8px;
}

.ach-resumo {
  color: var(--mut);
  margin: 24px 0 14px;
  font-size: 14px;
}

.ach-resumo .ok {
  margin-right: 2px;
  font-size: 16px;
}

.ach-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ach-row {
  display: flex;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
  border-radius: 12px;
  justify-content: space-between;
  align-items:  center;
  gap: 16px;
  padding: 15px 18px;
  transition: border-color .15s, background .15s;
}

.ach-row:hover {
  border-color: var(--blue);
  background: var(--hover);
}

.ach-main {
  min-width: 0;
}

.ach-nome {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
}

.ach-meta {
  color: var(--faint);
  margin-top: 3px;
  font-size: 11.5px;
}

.ach-side {
  display: flex;
  flex: none;
  align-items:  center;
  gap: 8px;
}

.ach-pill {
  background: var(--hover);
  color: var(--faint);
  border: 1px solid var(--border);
  white-space: nowrap;
  border-radius: 6px;
  padding: 3px 8px;
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.ach-pill.on {
  color: var(--blue2);
  background: #2f5bff1a;
  border-color: #2f5bff52;
}

.ach-go {
  white-space: nowrap;
  color: var(--blue2);
  margin-left: 6px;
  font-size: 13px;
  font-weight: 500;
}

.ach-row:hover .ach-go {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .ach-row {
    flex-direction: column;
    align-items:  flex-start;
    gap: 11px;
  }

  .ach-side {
    flex-wrap: wrap;
  }
}

.conx-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.conx-card {
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  border-radius: 14px;
  flex-direction: column;
  padding: 18px 20px;
  transition: border-color .15s;
}

.conx-card.on {
  border-color: #2f5bff6b;
}

.conx-top {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 10px;
}

.conx-tag {
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: Geist Mono, monospace;
  font-size: 10px;
}

.conx-nome {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.conx-desc {
  color: var(--mut);
  margin-top: 2px;
  font-size: 13px;
}

.conx-det {
  color: var(--faint);
  flex: 1;
  margin: 8px 0 16px;
  font-size: 12.5px;
  line-height: 1.55;
}

.conx-card .bt, .conx-card .bt2 {
  align-self:  flex-start;
}

@media (max-width: 760px) {
  .conx-grid {
    grid-template-columns: 1fr;
  }
}

.crm-board {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  margin-top: 18px;
  padding-bottom: 10px;
}

.crm-col {
  background: var(--hover);
  border: 1px solid var(--border);
  display: flex;
  border-radius: 14px;
  flex-direction: column;
  flex: 0 0 268px;
  min-height: 440px;
  transition: border-color .15s, background .15s;
}

.crm-col.sobre {
  border-color: var(--blue);
  background: #2f5bff12;
}

.crm-col-h {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  center;
  padding: 13px 16px;
}

.crm-col-h b {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.crm-col-h span {
  color: var(--mut);
  background: var(--panel);
  border: 1px solid var(--border);
  display: inline-flex;
  border-radius: 20px;
  justify-content: center;
  align-items:  center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-family: Geist Mono, monospace;
  font-size: 11px;
}

.crm-col-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  padding: 12px;
}

.crm-card {
  background: var(--panel);
  border: 1px solid var(--border);
  cursor: grab;
  border-radius: 11px;
  padding: 12px 13px;
  transition: border-color .15s, box-shadow .15s, transform .1s;
  box-shadow: 0 1px 2px #0000000a;
}

.crm-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px #00000012;
}

.crm-card:active {
  cursor: grabbing;
  transform: scale(.985);
}

.crm-card .cn {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}

.crm-card .cc {
  color: var(--mut);
  margin-top: 3px;
  font-size: 12px;
}

.crm-card .cp {
  margin-top: 9px;
}

.crm-vazio {
  color: var(--faint);
  text-align: center;
  opacity: .45;
  padding: 16px 0;
  font-size: 12px;
}

.crm-vazio-tela {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: 6px;
  margin-top: 56px;
}

.crm-vazio-tela .crm-vazio-ico {
  background: var(--hover);
  border: 1px solid var(--border);
  display: flex;
  color: var(--mut);
  opacity: 1;
  border-radius: 14px;
  justify-content: center;
  align-items:  center;
  width: 56px;
  height: 56px;
  margin-bottom: 8px;
  font-size: 24px;
}

.crm-vazio-tela h2 {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.crm-vazio-tela p {
  color: var(--mut);
  max-width: 400px;
  font-size: 14px;
  line-height: 1.55;
}

.crm-vazio-tela .bt {
  margin-top: 14px;
}

.lead-maps-linha {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 10px;
  font-size: 14px;
}

.lead-link {
  color: var(--blue2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
}

.lead-link:hover {
  text-decoration: underline;
}

.dw-veu {
  position: fixed;
  z-index: 40;
  animation: dwfade .15s ease;
  background: #00000052;
  inset: 0;
}

.dw {
  position: fixed;
  background: var(--panel);
  border-left: 1px solid var(--border);
  z-index: 41;
  display: flex;
  animation: dwslide .18s ease;
  flex-direction: column;
  width: 430px;
  max-width: 92vw;
  height: 100vh;
  top: 0;
  right: 0;
  box-shadow: -12px 0 40px #00000024;
}

@keyframes dwfade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes dwslide {
  from {
    transform: translateX(24px);
    opacity: .5;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.dw-top {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  flex-start;
  gap: 12px;
  padding: 20px 22px;
}

.dw-nome {
  color: var(--text);
  margin: 6px 0 5px;
  font-size: 18px;
  font-weight: 600;
}

.dw-x {
  color: var(--mut);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 15px;
}

.dw-x:hover {
  background: var(--hover);
  color: var(--text);
}

.dw-corpo {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 16px 22px;
}

.dw-corpo .painel {
  margin: 0;
}

.dw-forte {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.dw-foot {
  display: flex;
  border-top: 1px solid var(--border);
  gap: 10px;
  padding: 16px 22px;
}

.dw-foot .bt {
  flex: 1;
}

@media (max-width: 520px) {
  .dw {
    width: 100vw;
  }
}

.osint-bloco {
  margin-bottom: 12px;
}

.osint-bloco:last-child {
  margin-bottom: 0;
}

.osint-k {
  display: block;
  color: var(--mut);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 5px;
  font-family: Geist Mono, monospace;
  font-size: 10.5px;
}

.osint-v {
  display: block;
  color: var(--text);
  word-break: break-all;
  margin-bottom: 2px;
  font-size: 13px;
}

a.osint-v {
  color: var(--blue2);
  text-decoration: none;
}

a.osint-v:hover {
  text-decoration: underline;
}

.osint-redes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}

.osint-redes a {
  text-decoration: none;
}

.lead-socios {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.lead-socio {
  background: var(--hover);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 12px;
}

.socio-li {
  display: inline-flex;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
  background: #0a66c2;
  border-radius: 4px;
  justify-content: center;
  align-items:  center;
  width: 18px;
  height: 18px;
  margin-left: 6px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
  font-weight: 700;
}

.socio-li:hover {
  opacity: .85;
}

.sb-badge {
  color: var(--blue2);
  font-variant-numeric: tabular-nums;
  background: #2f5bff14;
  border: 1px solid #2f5bff66;
  border-radius: 100px;
  margin-left: auto;
  padding: 1px 7px;
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.topo-funil {
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background-color .15s, color .15s;
}

.topo-funil:after {
  content: "";
  position: absolute;
  inset: -5px 0;
}

.topo-funil:hover {
  background: var(--hover);
  color: var(--mut);
}

.bt-wa {
  display: inline-flex;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(#22b95b, #169a49);
  border-radius: 9px;
  align-items:  center;
  gap: 7px;
  padding: 10px 20px;
  transition: transform .15s, box-shadow .15s, scale .12s;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 0 18px #22b95b38, inset 0 1px #fff3;
}

.bt-wa:hover {
  transform: translateY(-1px);
}

.bt-wa:active {
  scale: .96;
}

.wa-mini {
  display: inline-flex;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  background: linear-gradient(#22b95b, #169a49);
  border-radius: 8px;
  align-items:  center;
  padding: 7px 12px;
  transition: transform .15s, box-shadow .15s, scale .12s;
  font-size: 12px;
  font-weight: 600;
  box-shadow: inset 0 1px #ffffff2e;
}

.wa-mini:after {
  content: "";
  position: absolute;
  inset: -5px -3px;
}

.wa-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px #22b95b4d;
}

.wa-mini:active {
  scale: .96;
}

.add-mini {
  color: var(--mut);
  border: 1px solid var(--border2);
  white-space: nowrap;
  background: var(--panel);
  position: relative;
  border-radius: 8px;
  padding: 6px 11px;
  transition: color .15s, border-color .15s, background-color .15s, scale .12s;
  font-size: 12px;
  font-weight: 500;
}

.add-mini:after {
  content: "";
  position: absolute;
  inset: -5px -3px;
}

.add-mini:hover {
  color: var(--text);
  background: var(--hover);
}

.add-mini:active {
  scale: .96;
}

.add-mini.ok, .add-mini:disabled {
  color: var(--blue2);
  cursor: default;
  background: #2f5bff12;
  border-color: #2f5bff66;
  transform: none;
}

.tel-wa {
  color: inherit;
  text-decoration: none;
  transition: color .15s;
}

.tel-wa:hover {
  color: var(--blue2);
}

.ach-list > * {
  animation: rise2 .26s cubic-bezier(.2, 0, 0, 1) backwards;
}

.b2 {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) auto;
  align-items:  end;
  gap: 10px;
  margin-top: 18px;
}

.b2-campo {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.b2-campo > label {
  letter-spacing: 1.3px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.b2-inp {
  background: var(--bg2);
  border: 1px solid var(--border2);
  font: inherit;
  color: var(--text);
  outline: none;
  border-radius: 12px;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  transition: border-color .2s, box-shadow .2s;
  font-size: 15px;
}

.b2-inp:focus {
  border-color: #1b3fd68c;
  box-shadow: 0 0 0 3px #2f5bff26;
}

.b2-inp::placeholder {
  color: var(--faint);
}

.b2-bt {
  border-radius: 12px;
  height: 52px;
  padding: 0 26px;
}

.b2-sug {
  top: calc(100% + 6px);
}

.b2-sug button {
  align-items: baseline;
}

.b2-icp {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 7px;
  margin-top: 12px;
}

.b2-icp-rot {
  letter-spacing: 1.3px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.b2-cap {
  background: var(--inp);
  border: 1px solid var(--border2);
  font: inherit;
  color: var(--text);
  outline: none;
  font-variant-numeric: tabular-nums;
  border-radius: 20px;
  width: 120px;
  padding: 6px 13px;
  transition: border-color .15s, box-shadow .15s;
  font-size: 12.5px;
}

.b2-cap:focus {
  border-color: #1b3fd68c;
}

.b2-icp-cli {
  display: inline-flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 7px;
  margin-left: auto;
}

@media (max-width: 900px) {
  .b2 {
    grid-template-columns: 1fr;
  }

  .b2-bt {
    width: 100%;
  }

  .b2-icp-cli {
    margin-left: 0;
  }
}

.icp-bar {
  display: flex;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  flex-wrap: wrap;
  align-items:  center;
  gap: 12px;
  margin: 16px 0 4px;
  padding: 11px 14px;
}

.icp-bar-rot {
  letter-spacing: 1.6px;
  color: var(--faint);
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.icp-sel {
  position: relative;
  display: inline-flex;
  border: 1px solid var(--border2);
  background: var(--inp);
  cursor: pointer;
  border-radius: 9px;
  align-items:  center;
  gap: 8px;
  padding: 7px 12px;
  transition: border-color .15s;
}

.icp-sel:hover {
  border-color: var(--blue);
}

.icp-sel-emoji {
  font-size: 15px;
  line-height: 1;
}

.icp-sel-nome {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.icp-sel-ca {
  color: var(--faint);
  font-size: 10px;
}

.icp-bar-dica {
  color: var(--faint);
  font-variant-numeric: normal;
  font-size: 11.5px;
}

.icp-menu {
  position: absolute;
  z-index: 30;
  background: var(--pop);
  border: 1px solid var(--border2);
  box-shadow: 0 12px 34px var(--sombra);
  animation: rise2 .16s ease;
  border-radius: 12px;
  min-width: 252px;
  padding: 6px;
  top: calc(100% + 6px);
  left: 0;
}

.icp-menu-it {
  display: flex;
  cursor: pointer;
  border-radius: 8px;
  align-items:  center;
  gap: 9px;
  padding: 9px 10px;
  transition: background .12s;
}

.icp-menu-it:hover {
  background: var(--hover);
}

.icp-menu-it.on {
  background: #2f5bff14;
}

.icp-menu-emoji {
  font-size: 15px;
}

.icp-menu-nome {
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  font-size: 13px;
  font-weight: 500;
}

.icp-menu-ck {
  color: var(--blue2);
  font-weight: 700;
}

.icp-menu-x {
  color: var(--faint);
  opacity: 0;
  border-radius: 5px;
  padding: 2px 6px;
  transition: opacity .12s, color .12s, background .12s;
  font-size: 11px;
}

.icp-menu-it:hover .icp-menu-x {
  opacity: 1;
}

.icp-menu-x:hover {
  color: #e5484d;
  background: var(--hover);
}

.icp-menu-novo {
  text-align: left;
  border-top: 1px solid var(--border);
  color: var(--blue2);
  cursor: pointer;
  width: 100%;
  margin-top: 3px;
  padding: 9px 10px;
  font-size: 12.5px;
  font-weight: 600;
}

.icp-menu-novo:hover {
  background: var(--hover);
}

.icp-prompt {
  display: flex;
  border: 1px dashed var(--border2);
  text-align: left;
  cursor: pointer;
  background: linear-gradient(#2f5bff0f, #0000);
  border-radius: 12px;
  align-items:  center;
  gap: 13px;
  width: 100%;
  margin: 16px 0 4px;
  padding: 14px 16px;
  transition: border-color .15s, transform .15s;
}

.icp-prompt:hover {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.icp-prompt-emoji {
  flex: none;
  font-size: 22px;
}

.icp-prompt-txt {
  color: var(--mut);
  font-variant-numeric: normal;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
}

.icp-prompt-txt b {
  color: var(--text);
  font-weight: 600;
}

.icp-prompt-go {
  color: var(--blue2);
  flex: none;
  font-size: 13px;
  font-weight: 600;
}

.icp-back {
  position: fixed;
  z-index: 100;
  backdrop-filter: blur(3px);
  display: flex;
  animation: fadeM .18s ease;
  background: #0406089e;
  justify-content: center;
  align-items:  center;
  padding: 24px;
  inset: 0;
}

.icp-modal {
  position: relative;
  overflow: auto;
  background: var(--bg2);
  border: 1px solid var(--border2);
  box-shadow: 0 24px 70px var(--sombra);
  animation: rise2 .22s cubic-bezier(.2, 0, 0, 1);
  border-radius: 18px;
  width: 100%;
  max-width: 620px;
  max-height: 88vh;
  padding: 30px 30px 26px;
}

.icp-x {
  position: absolute;
  color: var(--faint);
  border-radius: 7px;
  padding: 6px;
  transition: color .12s, background .12s;
  font-size: 14px;
  top: 16px;
  right: 18px;
}

.icp-x:hover {
  color: var(--text);
  background: var(--hover);
}

.icp-modal-rot {
  letter-spacing: 2px;
  color: var(--blue2);
  font-family: Geist Mono, monospace;
  font-size: 9.5px;
}

.icp-modal-h {
  letter-spacing: -.4px;
  text-wrap: balance;
  margin: 9px 0;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.2;
}

.icp-modal-sub {
  color: var(--mut);
  font-variant-numeric: normal;
  max-width: 520px;
  font-size: 13.5px;
  line-height: 1.6;
}

.icp-modal-sub b {
  color: var(--text);
  font-weight: 600;
}

.icp-presets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 620px) {
  .icp-presets {
    grid-template-columns: 1fr;
  }
}

.icp-preset {
  display: flex;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--panel);
  cursor: pointer;
  border-radius: 14px;
  flex-direction: column;
  align-items:  flex-start;
  padding: 16px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}

.icp-preset:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 26px var(--sombra);
  transform: translateY(-2px);
}

.icp-preset-emoji {
  margin-bottom: 9px;
  font-size: 24px;
  line-height: 1;
}

.icp-preset-nome {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
}

.icp-preset-desc {
  color: var(--mut);
  font-variant-numeric: normal;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
}

.icp-preset-go {
  color: var(--blue2);
  opacity: 0;
  margin-top: 11px;
  transition: opacity .15s;
  font-size: 12px;
  font-weight: 600;
}

.icp-preset:hover .icp-preset-go {
  opacity: 1;
}

.icp-nome-inp {
  border: 1px solid var(--border2);
  background: var(--inp);
  color: var(--text);
  outline: none;
  border-radius: 11px;
  width: 100%;
  margin-top: 18px;
  padding: 13px 15px;
  transition: border-color .15s;
  font-size: 15px;
  font-weight: 500;
}

.icp-nome-inp:focus {
  border-color: var(--blue);
}

.icp-modal-pesos {
  margin-top: 18px;
}

.icp-modal-pesos-rot {
  letter-spacing: 1.4px;
  color: var(--faint);
  display: block;
  margin-bottom: 9px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.icp-redes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.icp-peso-pill {
  color: var(--blue2);
  font-variant-numeric: normal;
  background: #2f5bff17;
  border: 1px solid #2f5bff47;
  border-radius: 20px;
  padding: 5px 11px;
  font-size: 11.5px;
}

.icp-modal-acoes {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
}

.ach-row.ach-fit {
  gap: 14px;
}

.ach-fit .ach-main {
  flex: 1;
}

.fit {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items:  center;
  width: 52px;
  padding: 7px 0;
  line-height: 1;
}

.fit b {
  font-variant-numeric: tabular-nums;
  font-size: 17px;
  font-weight: 700;
}

.fit small {
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-top: 3px;
  font-family: Geist Mono, monospace;
  font-size: 8px;
}

.fit-quente {
  background: linear-gradient(#2f5bff29, #2f5bff0d);
  border-color: #2f5bff6b;
}

.fit-quente b, .fit-quente small {
  color: var(--blue2);
}

.fit-morno {
  background: #c68a2e1a;
  border-color: #c68a2e57;
}

.fit-morno b, .fit-morno small {
  color: #c68a2e;
}

.fit-frio {
  background: var(--hover);
}

.fit-frio b, .fit-frio small {
  color: var(--faint);
}

.fit-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.fit-badge {
  color: var(--blue2);
  font-variant-numeric: normal;
  white-space: nowrap;
  background: #2f5bff14;
  border: 1px solid #2f5bff38;
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 10.5px;
}

.apr {
  margin-top: 18px;
}

.apr-vazio {
  display: flex;
  border: 1px dashed var(--border2);
  background: var(--panel);
  border-radius: 14px;
  align-items:  flex-start;
  gap: 16px;
  max-width: 620px;
  margin-top: 22px;
  padding: 24px;
}

.apr-vazio-emoji {
  flex: none;
  font-size: 30px;
}

.apr-vazio-h {
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.apr-vazio p {
  color: var(--mut);
  font-variant-numeric: normal;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
}

.apr-vazio p b {
  color: var(--text);
  font-weight: 600;
}

.apr-topo {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.apr-stat {
  color: var(--mut);
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 9px;
  padding: 7px 13px;
  font-size: 12.5px;
}

.apr-stat b {
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin-right: 4px;
  font-size: 15px;
  font-weight: 700;
}

.apr-pos {
  border-color: #2f5bff52;
}

.apr-pos b {
  color: var(--blue2);
}

.apr-neg b {
  color: var(--faint);
}

.apr-caveat {
  margin-top: 0;
  margin-bottom: 14px;
}

.apr-rot {
  letter-spacing: 1.5px;
  color: var(--faint);
  margin: 6px 0 10px;
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.apr-tab {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--panel);
  border-radius: 12px;
}

.apr-head, .apr-linha {
  display: grid;
  grid-template-columns: 150px 1fr 1fr 62px;
  align-items:  center;
  gap: 12px;
  padding: 9px 15px;
}

.apr-head {
  letter-spacing: 1px;
  color: var(--faint);
  background: var(--inset);
  border-bottom: 1px solid var(--border);
  font-family: Geist Mono, monospace;
  font-size: 9px;
}

.apr-h-pos, .apr-h-neg, .apr-h-lift {
  text-align: right;
}

.apr-h-pos {
  color: var(--blue2);
}

.apr-linha {
  border-top: 1px solid var(--row);
  font-size: 13px;
}

.apr-linha:first-of-type {
  border-top: none;
}

.apr-sinal {
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

.apr-bar-cell {
  display: flex;
  align-items:  center;
  gap: 9px;
  height: 22px;
}

.apr-bar-track {
  background: var(--inset);
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  flex: 1;
  height: 8px;
}

.apr-bar {
  position: absolute;
  border-radius: 5px;
  min-width: 2px;
  height: 100%;
  top: 0;
  left: 0;
}

.apr-bar-pos {
  background: linear-gradient(90deg, #2f5bff80, var(--blue));
}

.apr-bar-neg {
  background: var(--border2);
}

.apr-bar-cell small {
  text-align: right;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  flex: none;
  width: 34px;
  font-size: 11px;
}

.apr-lift {
  text-align: right;
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  font-family: Geist Mono, monospace;
  font-size: 12px;
}

.apr-linha.forte {
  background: #2f5bff0d;
}

.apr-linha.forte .apr-sinal, .apr-linha.forte .apr-lift {
  color: var(--blue2);
  font-weight: 600;
}

.apr-linha.fraco {
  opacity: .55;
}

.apr-dica {
  color: var(--mut);
  font-variant-numeric: normal;
  max-width: 620px;
  margin-top: 14px;
  font-size: 12.5px;
  line-height: 1.6;
}

.apr-dica b.ok {
  color: var(--blue2);
}

.marca {
  display: inline-flex;
  font-family: var(--disp);
  letter-spacing: -.03em;
  color: var(--text);
  align-items:  center;
  gap: 8px;
  font-weight: 800;
  line-height: 1;
}

.marca-dot {
  background: var(--blue);
  box-shadow: 0 0 0 .18em var(--blue-soft);
  border-radius: 50%;
  width: .55em;
  height: .55em;
}

.sb-marca {
  padding: 6px 10px 18px;
}

.sb-user {
  display: flex;
  align-items:  center;
  gap: 9px;
  padding: 4px 6px;
}

.sb-avatar {
  background: var(--blue);
  color: #fff;
  display: grid;
  border-radius: 50%;
  flex: none;
  place-items:  center;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 700;
}

.sb-unome {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.15;
}

.sb-unome small {
  color: var(--faint);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  font-weight: 400;
}

.sb-user > button {
  color: var(--faint);
  border-radius: 7px;
  margin-left: auto;
  padding: 6px;
  transition: color .15s, background-color .15s;
}

.sb-user > button:hover {
  color: var(--text);
  background: var(--hover);
}

.topo-bc {
  display: flex;
  align-items:  center;
  gap: 9px;
  font-size: 13px;
}

.bc-sep {
  color: var(--faint);
}

.bc-pag {
  color: var(--text);
  font-weight: 600;
}

.medidor {
  display: block;
  text-align: left;
  border: 1px solid var(--border);
  background: var(--blue-tint);
  border-radius: 11px;
  width: 100%;
  padding: 10px 11px;
  transition: border-color .15s, scale .12s;
}

.medidor:hover {
  border-color: var(--blue);
}

.medidor:active {
  scale: .98;
}

.medidor.baixo {
  background: #fff4e8;
  border-color: #ebc08a;
}

.medidor-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 7px;
}

.medidor-rot {
  font-family: var(--mono);
  letter-spacing: 1.4px;
  color: var(--faint);
  font-size: 9px;
}

.medidor-n {
  font-family: var(--disp);
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 800;
}

.medidor-n small {
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
}

.medidor-barra {
  background: var(--blue-soft);
  overflow: hidden;
  border-radius: 100px;
  height: 5px;
}

.medidor-barra i {
  display: block;
  background: var(--blue);
  transition: width .5s var(--spring);
  border-radius: 100px;
  height: 100%;
}

.medidor.baixo .medidor-barra i {
  background: #d98a2b;
}

.entrar {
  display: grid;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% -10%, var(--blue-tint), var(--bg));
  place-items:  center;
  min-height: 100vh;
}

.entrar-rings {
  position: absolute;
  pointer-events: none;
  width: 900px;
  height: 900px;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.entrar-rings span {
  position: absolute;
  border: 1px solid var(--blue-soft);
  opacity: .6;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.entrar-rings span:first-child {
  width: 30%;
  height: 30%;
}

.entrar-rings span:nth-child(2) {
  width: 52%;
  height: 52%;
}

.entrar-rings span:nth-child(3) {
  border-color: var(--blue-tint);
  width: 76%;
  height: 76%;
}

.entrar-rings span:nth-child(4) {
  border-color: var(--blue-tint);
  width: 100%;
  height: 100%;
}

.entrar-box {
  position: relative;
  text-align: left;
  width: 100%;
  max-width: 430px;
  padding: 32px;
}

.entrar-h {
  font-family: var(--disp);
  letter-spacing: -.03em;
  text-wrap: balance;
  margin: 26px 0 12px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.02;
}

.entrar-sub {
  color: var(--mut);
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.6;
}

.entrar-campo {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.entrar-inp {
  border: 1px solid var(--border2);
  background: var(--bg2);
  color: var(--text);
  border-radius: 11px;
  flex: 1;
  height: 48px;
  padding: 0 15px;
  transition: border-color .15s, box-shadow .15s;
  font-size: 15px;
}

.entrar-inp:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

.entrar-bt {
  white-space: nowrap;
  height: 48px;
  padding: 0 22px;
}

.entrar-foot {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 22px;
  font-size: 10px;
}

.entrar-volta {
  color: var(--blue2);
  margin-top: 16px;
  font-size: 13px;
  font-weight: 500;
}

.buscar-head .tit {
  font-size: 30px;
}

.b2-bt {
  white-space: nowrap;
}

.ex {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-top: 16px;
}

.ex-l {
  font-family: var(--mono);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--faint);
  font-size: 10px;
}

.res {
  margin-top: 26px;
}

.manchete {
  margin-bottom: 14px;
}

.manchete-n {
  font-family: var(--disp);
  letter-spacing: -.02em;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.manchete-n b {
  font-size: 30px;
}

.manchete-wpp {
  color: var(--blue-deep);
}

.manchete-sub {
  color: var(--mut);
  margin-top: 3px;
  font-size: 13px;
}

.chips-f {
  display: flex;
  flex-wrap: wrap;
  align-items:  center;
  gap: 8px;
  margin-bottom: 14px;
}

.chip-f {
  color: var(--mut);
  background: var(--bg2);
  border: 1px solid var(--border);
  cursor: pointer;
  border-radius: 100px;
  min-height: 34px;
  padding: 7px 14px;
  transition: border-color .15s, color .15s, background-color .15s, scale .1s;
  font-size: 12.5px;
}

.chip-f:hover {
  border-color: var(--blue);
  color: var(--text);
}

.chip-f:active {
  scale: .96;
}

.chip-f.on {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 600;
}

.chip-f.on small {
  color: #fffc;
}

.chip-f small {
  color: var(--faint);
  font-variant-numeric: tabular-nums;
}

.chip-f.limpar {
  color: var(--faint);
}

.chips-sep {
  background: var(--border);
  width: 1px;
  height: 20px;
}

.res-selbar {
  display: flex;
  align-items:  center;
  gap: 14px;
  margin-bottom: 6px;
  padding: 8px 2px;
}

.check {
  display: inline-flex;
  color: var(--mut);
  cursor: pointer;
  align-items:  center;
  gap: 8px;
  font-size: 13px;
}

.check input, .row-check input {
  accent-color: var(--blue);
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.lista {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.row {
  display: flex;
  border: 1px solid var(--border);
  background: var(--bg2);
  animation: rise .3s var(--spring) both;
  border-radius: 12px;
  align-items:  center;
  gap: 12px;
  padding: 13px 15px;
  transition: border-color .15s, box-shadow .15s, transform .12s;
}

.row:hover {
  border-color: var(--blue-soft);
  box-shadow: 0 4px 16px -8px var(--sombra);
  transform: translateY(-1px);
}

.row.sel {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.row-check {
  display: flex;
  cursor: pointer;
  padding: 4px;
}

.row-main {
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.row-nome {
  color: var(--text);
  display: flex;
  align-items:  center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
}

.row-meta {
  color: var(--mut);
  margin-top: 2px;
  font-size: 12.5px;
}

.row-side {
  display: flex;
  flex: none;
  align-items:  center;
  gap: 8px;
}

.row-abrir {
  color: var(--blue2);
  white-space: nowrap;
  font-size: 12.5px;
  font-weight: 600;
}

.badge {
  color: var(--mut);
  background: var(--bg);
  border: 1px solid var(--border);
  white-space: nowrap;
  letter-spacing: .01em;
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 600;
}

.badge.wpp {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-color: #0000;
}

.badge.off {
  color: var(--faint);
}

.cta-bar {
  position: sticky;
  display: flex;
  background: var(--bg2);
  border: 1px solid var(--border2);
  box-shadow: 0 16px 40px -16px var(--sombra);
  border-radius: 14px;
  align-items:  center;
  gap: 14px;
  margin-top: 22px;
  padding: 14px 18px;
  bottom: 18px;
}

.cta-bt {
  white-space: nowrap;
}

.cta-hint {
  color: var(--faint);
  font-size: 12.5px;
}

.pag {
  display: flex;
  align-items:  center;
  gap: 14px;
  margin-top: 16px;
}

.pag .faint {
  font-variant-numeric: tabular-nums;
  font-size: 12.5px;
}

.regua {
  display: flex;
  position: relative;
  align-items:  center;
  gap: 0;
  margin: 18px 0;
  padding: 14px 4px;
}

.regua-p {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  flex: 1;
  align-items:  center;
  gap: 7px;
}

.regua-p:not(:last-child):after {
  content: "";
  position: absolute;
  background: var(--border);
  z-index: -1;
  width: 100%;
  height: 2px;
  top: 8px;
  left: 50%;
}

.regua-p.on:not(:last-child):after {
  background: var(--blue);
}

.regua-dot {
  background: var(--bg2);
  border: 2px solid var(--faint);
  transition: background-color .3s var(--spring), border-color .3s;
  border-radius: 50%;
  width: 16px;
  height: 16px;
}

.regua-p.on .regua-dot {
  background: var(--blue);
  border-color: var(--blue);
}

.regua-p.agora .regua-dot {
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.regua-l {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--faint);
  font-size: 9.5px;
}

.regua-p.on .regua-l {
  color: var(--blue-deep);
}

.voltar {
  color: var(--blue2);
  margin-bottom: 14px;
  padding: 4px 0;
  font-size: 13px;
  font-weight: 500;
}

.enr-cta {
  padding: 6px 0;
}

.enr-txt {
  color: var(--mut);
  text-wrap: pretty;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.6;
}

.resp-bloco {
  border: 1px solid var(--blue-soft);
  background: var(--blue-tint);
  border-radius: 12px;
  margin: 14px 0;
  padding: 16px 18px;
}

.resp-txt {
  color: var(--text);
  margin: 8px 0 10px;
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
}

.hoje-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  flex-end;
  gap: 16px;
  margin-bottom: 22px;
}

.acum {
  display: flex;
  gap: 22px;
}

.acum-i {
  display: flex;
  color: var(--mut);
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 2px;
}

.acum-i b {
  font-family: var(--disp);
  color: var(--text);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  font-size: 24px;
  font-weight: 800;
}

.acum-i.destaque b {
  color: var(--blue-deep);
}

.checklist {
  border: 1px solid var(--blue-soft);
  background: var(--blue-tint);
  border-radius: 14px;
  margin-bottom: 22px;
  padding: 16px 18px;
}

.checklist-rot {
  font-family: var(--mono);
  letter-spacing: 1.4px;
  color: var(--blue-deep);
  margin-bottom: 12px;
  font-size: 10px;
}

.checklist-itens {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ck {
  display: inline-flex;
  color: var(--mut);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  align-items:  center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  transition: border-color .15s, scale .1s;
  font-size: 13px;
}

.ck:hover {
  border-color: var(--blue);
}

.ck:active {
  scale: .96;
}

.ck i {
  border: 2px solid var(--faint);
  border-radius: 50%;
  flex: none;
  width: 14px;
  height: 14px;
}

.ck.on {
  color: var(--text);
}

.ck.on i {
  background: var(--blue);
  border-color: var(--blue);
  position: relative;
}

.ck.on i:after {
  content: "✓";
  position: absolute;
  color: #fff;
  display: grid;
  place-items:  center;
  font-size: 9px;
  font-weight: 800;
  inset: 0;
}

.fila {
  margin-bottom: 24px;
}

.fila-rot {
  display: flex;
  font-family: var(--mono);
  letter-spacing: 1.4px;
  color: var(--faint);
  align-items:  center;
  gap: 8px;
  margin-bottom: 11px;
  font-size: 10px;
}

.ponto {
  background: var(--blue);
  animation: blink 1.5s steps(1) infinite;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.resp-row, .camp-row {
  display: flex;
  border: 1px solid var(--border);
  background: var(--bg2);
  cursor: pointer;
  animation: rise .3s var(--spring) both;
  border-radius: 12px;
  align-items:  center;
  gap: 12px;
  margin-bottom: 8px;
  padding: 14px 16px;
  transition: border-color .15s, transform .12s;
}

.resp-row:hover, .camp-row:hover {
  border-color: var(--blue-soft);
  transform: translateY(-1px);
}

.resp-main, .camp-main {
  flex: 1;
  min-width: 0;
}

.resp-nome, .camp-nome {
  color: var(--text);
  display: flex;
  align-items:  center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
}

.resp-trecho {
  color: var(--mut);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 52ch;
  margin-top: 3px;
  font-size: 13px;
  font-style: italic;
}

.camp-prog {
  background: var(--blue-soft);
  overflow: hidden;
  border-radius: 100px;
  height: 6px;
  margin: 8px 0;
}

.camp-prog i {
  display: block;
  background: var(--blue);
  transition: width .6s var(--spring);
  border-radius: 100px;
  height: 100%;
}

.camp-meta {
  color: var(--mut);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}

.leads-head {
  margin-bottom: 18px;
}

.trow {
  display: flex;
  border-bottom: 1px solid var(--row);
  align-items:  center;
  gap: 12px;
  padding: 12px 14px;
  transition: background-color .12s;
}

.trow:hover {
  background: var(--hover);
}

.trow-main {
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.trow-nome {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.trow-meta {
  color: var(--mut);
  margin-top: 1px;
  font-size: 12px;
}

.est {
  white-space: nowrap;
  letter-spacing: .02em;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10.5px;
  font-weight: 600;
}

.est-novo {
  background: var(--bg);
  color: var(--faint);
  border: 1px solid var(--border);
}

.est-contatado {
  background: var(--blue-soft);
  color: var(--blue-deep);
}

.est-respondeu {
  color: #127a34;
  background: #e7f7ec;
}

.est-negociacao {
  color: #8a6414;
  background: #fff3d9;
}

.est-ganho {
  color: #127a34;
  background: #e7f7ec;
}

.est-perdido {
  color: #8a3a3a;
  background: #f3e9e9;
}

.vazio-tela {
  text-align: center;
  color: var(--mut);
  max-width: 520px;
  margin: 40px auto;
  font-size: 14.5px;
  line-height: 1.65;
}

.vazio-tela p {
  text-wrap: pretty;
  margin-bottom: 18px;
}

.disparos-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  center;
  gap: 16px;
  margin-bottom: 22px;
}

.abas {
  display: flex;
  background: var(--inset);
  border-radius: 100px;
  gap: 4px;
  padding: 3px;
}

.abas button {
  color: var(--mut);
  border-radius: 100px;
  padding: 7px 16px;
  transition: color .15s, background-color .15s;
  font-size: 13px;
  font-weight: 500;
}

.abas button.on {
  background: var(--bg2);
  color: var(--text);
  box-shadow: 0 1px 4px var(--sombra);
}

.camp-lista {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.camp-item {
  display: flex;
  border: 1px solid var(--border);
  background: var(--bg2);
  text-align: left;
  border-radius: 12px;
  align-items:  center;
  gap: 12px;
  padding: 14px 16px;
  transition: border-color .15s, transform .12s;
}

.camp-item:hover {
  border-color: var(--blue-soft);
  transform: translateY(-1px);
}

.camp-item-main {
  flex: 1;
  min-width: 0;
}

.camp-item-nome {
  color: var(--text);
  display: flex;
  align-items:  center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
}

.canais {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}

.canal-card {
  border: 1px solid var(--border);
  background: var(--bg2);
  border-radius: 14px;
  padding: 18px 20px;
}

.canal-top {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 12px;
  margin-bottom: 14px;
}

.canal-top b {
  font-size: 15px;
}

.canal-desc {
  color: var(--mut);
  margin-left: 6px;
  font-size: 12.5px;
}

.canal-info {
  color: var(--mut);
  font-size: 13px;
}

.qr-box {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items:  center;
  gap: 12px;
}

.qr-box img {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 8px;
}

.qr-box p {
  max-width: 34ch;
  font-size: 12.5px;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.det-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  flex-start;
  gap: 16px;
  margin-bottom: 14px;
}

.det-prog {
  height: 8px;
  margin: 6px 0 16px;
}

.det-stats {
  display: flex;
  gap: 24px;
}

.det-stats span {
  display: flex;
  color: var(--mut);
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-direction: column;
  gap: 2px;
}

.det-stats b {
  font-family: var(--disp);
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 800;
}

.det-stats .destaque b {
  color: var(--blue-deep);
}

.ov {
  position: fixed;
  backdrop-filter: blur(3px);
  display: grid;
  z-index: 50;
  animation: fade .18s ease;
  background: #0c0f176b;
  place-items:  center;
  padding: 20px;
  inset: 0;
}

.modal-rot {
  font-family: var(--mono);
  letter-spacing: 1.6px;
  color: var(--blue-deep);
  font-size: 10px;
}

.modal-h {
  font-family: var(--disp);
  letter-spacing: -.02em;
  text-wrap: balance;
  margin: 10px 0 8px;
  font-size: 22px;
  font-weight: 800;
}

.modal-h b {
  color: var(--blue-deep);
}

.modal-sub {
  color: var(--mut);
  text-wrap: pretty;
  font-size: 14px;
  line-height: 1.6;
}

.modal-bt {
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.modal-x {
  display: block;
  color: var(--faint);
  margin: 14px auto 0;
  font-size: 13px;
}

.wiz {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border2);
  box-shadow: 0 40px 90px -20px var(--sombra);
  animation: surge .24s var(--spring);
  border-radius: 18px;
  width: 100%;
  max-width: 500px;
  padding: 26px 26px 24px;
}

.wiz-x {
  position: absolute;
  color: var(--faint);
  width: 30px;
  height: 30px;
  margin: 0;
  font-size: 15px;
  top: 14px;
  right: 16px;
}

.wiz-passos {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.wiz-passo {
  display: grid;
  color: var(--faint);
  background: var(--inset);
  border: 1px solid var(--border);
  border-radius: 50%;
  place-items:  center;
  width: 26px;
  height: 26px;
  font-size: 12px;
  font-weight: 700;
}

.wiz-passo.on {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.wiz-passo.feito {
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-color: #0000;
}

.wiz-lbl {
  display: block;
  font-family: var(--mono);
  letter-spacing: 1.2px;
  color: var(--faint);
  text-transform: uppercase;
  margin: 16px 0 7px;
  font-size: 9.5px;
}

.wiz-ta {
  border: 1px solid var(--border2);
  font: inherit;
  color: var(--text);
  background: var(--bg2);
  resize: vertical;
  border-radius: 11px;
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.55;
}

.wiz-ta:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
}

.wiz .b2-inp {
  width: 100%;
  margin-top: 4px;
}

.bolha {
  display: flex;
  margin-top: 14px;
}

.bolha-txt {
  background: var(--blue-soft);
  color: var(--text);
  box-shadow: 0 2px 8px -4px var(--sombra);
  text-wrap: pretty;
  border-radius: 14px 14px 14px 4px;
  max-width: 88%;
  padding: 11px 15px;
  font-size: 13.5px;
  line-height: 1.5;
}

.canal-pick {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0;
}

.canal-op {
  display: flex;
  border: 1.5px solid var(--border);
  background: var(--bg2);
  text-align: left;
  position: relative;
  border-radius: 12px;
  flex-direction: column;
  align-items:  flex-start;
  gap: 3px;
  padding: 14px 16px;
  transition: border-color .15s, background-color .15s;
}

.canal-op b {
  font-size: 14.5px;
}

.canal-op span {
  color: var(--mut);
  font-size: 12.5px;
}

.canal-op.on {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.canal-warn {
  position: absolute;
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #b45309;
  background: #fff4e8;
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 9px;
  top: 12px;
  right: 14px;
}

.wiz-pronto {
  text-align: center;
  padding: 14px 0 6px;
}

.wiz-check {
  background: var(--blue);
  color: #fff;
  display: grid;
  animation: pop .5s var(--spring);
  box-shadow: 0 0 0 8px var(--blue-soft);
  border-radius: 50%;
  place-items:  center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  font-size: 26px;
  font-weight: 800;
}

.skel {
  background: linear-gradient(90deg, var(--inset), var(--hover), var(--inset));
  animation: shimmer 1.4s linear infinite;
  background-size: 200% 100%;
  border-radius: 14px;
  height: 120px;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes surge {
  from {
    opacity: 0;
    transform: translateY(10px)scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

@keyframes pop {
  0% {
    transform: scale(.6);
  }

  60% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes blink {
  50% {
    opacity: .25;
  }
}

.bt:active, .bt2:active, .row-abrir:active, .camp-item:active {
  scale: .97;
}

.buscar.hero {
  position: relative;
  text-align: center;
  animation: modIn .4s var(--spring) backwards;
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(40px, 8vh, 88px) 0 64px;
}

.buscar.hero .buscar-head {
  display: flex;
  flex-direction: column;
  align-items:  center;
  gap: 12px;
}

.hero-eyebrow {
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue2);
  background: var(--blue-tint);
  border: 1px solid var(--blue-soft);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 10.5px;
}

.buscar.hero .tit {
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.02;
}

.buscar.hero .sub {
  max-width: 52ch;
  margin: 2px auto 0;
  font-size: 15.5px;
}

.buscar.hero .b2 {
  text-align: left;
  width: 100%;
  max-width: 640px;
  margin: 26px auto 0;
}

.buscar.hero .ex {
  justify-content: center;
}

.hero-broad {
  color: var(--mut);
  font-variant-numeric: normal;
  max-width: 56ch;
  margin: 2px auto 0;
  font-size: 13px;
  line-height: 1.5;
}

.hero-broad b {
  color: var(--text);
  font-weight: 600;
}

.buscar.hero .ex {
  justify-content: center;
  max-width: 720px;
  margin: 22px auto 0;
}

.ob {
  position: relative;
  display: flex;
  text-align: center;
  animation: rise2 .32s var(--spring);
  flex-direction: column;
  justify-content: flex-start;
  align-items:  center;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(28px, 7vh, 76px) 0 48px;
}

.ob-radar {
  position: absolute;
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
  width: min(560px, 84vw);
  top: 34%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ob-radar span {
  position: absolute;
  border: 1px solid var(--blue-soft);
  border-radius: 50%;
  margin: auto;
  inset: 0;
}

.ob-radar span:first-child {
  width: 32%;
  height: 32%;
}

.ob-radar span:nth-child(2) {
  opacity: .55;
  width: 64%;
  height: 64%;
}

.ob-radar span:nth-child(3) {
  opacity: .28;
  width: 100%;
  height: 100%;
}

.ob > :not(.ob-radar) {
  position: relative;
  z-index: 1;
}

.ob-rot {
  font-family: var(--mono);
  letter-spacing: .18em;
  color: var(--blue2);
  font-size: 10px;
}

.ob-h {
  margin: 12px 0;
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.03;
}

.ob-sub {
  max-width: 46ch;
  margin: 0 auto;
  font-size: 15px;
}

.ob-acao {
  display: inline-flex;
  color: #fff;
  box-shadow: 0 1px 2px #1b2c5a29, 0 14px 30px -10px var(--blue-glow), inset 0 1px 0 #ffffff38;
  background: linear-gradient(#3b67ff, #1b3fd6);
  border: none;
  border-radius: 100px;
  align-items:  center;
  gap: 12px;
  width: auto;
  margin: 26px auto 0;
  padding: 15px 26px;
  transition: transform .15s, box-shadow .15s, scale .12s;
  font-size: 15.5px;
  font-weight: 700;
}

.ob-acao:hover {
  transform: translateY(-1px);
}

.ob-acao:active {
  scale: .96;
}

.ob-acao-txt {
  color: #fff;
  flex: none;
  font-size: 15.5px;
  font-weight: 700;
}

.ob-acao-seta {
  transition: transform .18s var(--spring);
}

.ob-acao:hover .ob-acao-seta {
  transform: translateX(3px);
}

.stepper {
  list-style: none;
  display: flex;
  align-items:  center;
  gap: 0;
  margin: 30px auto 0;
  padding: 0;
}

.stepper li {
  display: flex;
  color: var(--faint);
  font-family: var(--mono);
  align-items:  center;
  gap: 8px;
  font-size: 11px;
}

.stepper li:after {
  content: "";
  background: var(--border);
  width: 26px;
  height: 1px;
  margin: 0 12px;
}

.stepper li:last-child:after {
  display: none;
}

.stepper .st-n {
  display: grid;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 50%;
  place-items:  center;
  width: 22px;
  height: 22px;
  font-size: 11px;
  font-weight: 600;
}

.stepper li.on {
  color: var(--blue2);
}

.stepper li.on .st-n {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.ob-ghost {
  border: 1px solid var(--border);
  background: var(--panel);
  text-align: left;
  overflow: hidden;
  position: relative;
  opacity: .9;
  border-radius: 14px;
  max-width: 380px;
  margin: 34px auto 0;
  padding: 13px 15px 6px;
  box-shadow: 0 1px 2px #1b2c5a0d, 0 20px 40px -24px #1b2c5a38;
}

.vazio-tela {
  text-align: center;
  display: flex;
  color: var(--mut);
  flex-direction: column;
  align-items:  center;
  gap: 0;
  max-width: 560px;
  margin: clamp(40px, 10vh, 120px) auto 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.vazio-tela:before {
  content: "";
  background: radial-gradient(circle at 50% 45%, var(--blue) 0 22%, transparent 24%), radial-gradient(circle at 50% 45%, transparent 40%, var(--blue-soft) 42% 52%, transparent 54%);
  border: 1px solid var(--blue-soft);
  box-shadow: 0 0 0 6px var(--blue-tint);
  border-radius: 16px;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.vazio-tela p {
  text-wrap: pretty;
  max-width: 44ch;
  margin-bottom: 20px;
}

.vazio-tela .bt {
  align-self:  center;
}

@keyframes rise2 {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.painel-hoje {
  max-width: 1340px;
  margin: 0 auto;
}

.painel-hoje .hoje-topo {
  animation: modIn .4s var(--spring) backwards;
}

.painel-hoje .mod {
  animation: modIn .44s var(--spring) backwards;
}

.hoje-main > .mod:first-child {
  animation-delay: 60ms;
}

.hoje-main > .mod:nth-child(2) {
  animation-delay: .16s;
}

.hoje-rail > .mod:first-child {
  animation-delay: .1s;
}

.hoje-rail > .mod:nth-child(2) {
  animation-delay: .17s;
}

.hoje-rail > .mod:nth-child(3) {
  animation-delay: .24s;
}

@keyframes modIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hoje-topo {
  display: flex;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  flex-end;
  gap: 24px;
  padding-bottom: 18px;
}

.hoje-tit {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hoje-tit .tit {
  font-size: 30px;
}

.hoje-data {
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--faint);
  font-size: 10.5px;
}

.statbar {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.stat {
  display: flex;
  border-right: 1px solid var(--border);
  text-align: right;
  flex-direction: column;
  align-items:  flex-end;
  padding: 0 20px;
}

.stat:last-child {
  border-right: none;
  padding-right: 0;
}

.stat b {
  font-family: var(--disp);
  letter-spacing: -.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.stat span {
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 6px;
  font-size: 9px;
}

.stat.on b {
  color: var(--blue2);
}

.kpi-tile {
  display: flex;
  background: linear-gradient(180deg, var(--blue-tint), var(--panel));
  flex-direction: column;
  gap: 2px;
  padding: 16px 18px;
}

.kpi-num {
  font-family: var(--disp);
  letter-spacing: -.04em;
  color: var(--blue2);
  font-variant-numeric: tabular-nums;
  font-size: 40px;
  font-weight: 800;
  line-height: .95;
}

.kpi-rot {
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mut);
  margin-top: 6px;
  font-size: 10px;
}

.kpi-sub {
  color: var(--faint);
  font-size: 11.5px;
  line-height: 1.4;
}

.camps-rail {
  display: flex;
  flex-direction: column;
}

.camp-rail {
  display: block;
  text-align: left;
  border-top: 1px solid var(--row);
  padding: 12px 14px;
  transition: background-color .13s;
}

.camp-rail:first-child {
  border-top: none;
}

.camp-rail:hover {
  background: var(--hover);
}

.camp-rail-top {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 8px;
  margin-bottom: 8px;
}

.camp-rail-nome {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
}

.camp-rail-pct {
  font-family: var(--mono);
  color: var(--blue2);
  font-variant-numeric: tabular-nums;
  font-size: 11px;
  font-weight: 600;
}

.camp-rail .camp-barra {
  max-width: none;
  margin: 0 0 7px;
}

.hoje-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  align-items:  start;
  gap: 28px;
  margin-top: 26px;
}

.hoje-main {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.hoje-rail {
  display: flex;
  position: sticky;
  flex-direction: column;
  gap: 16px;
  top: 24px;
}

.mod {
  border: 1px solid var(--border);
  background: var(--panel);
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 1px 2px #1b2c5a0a;
}

.mod-h {
  display: flex;
  border-bottom: 1px solid var(--row);
  justify-content: space-between;
  align-items:  center;
  padding: 13px 16px;
}

.mod-t {
  display: flex;
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mut);
  align-items:  center;
  gap: 8px;
  font-size: 10.5px;
}

.mod-t .ponto {
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-soft);
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.mod-n {
  font-family: var(--mono);
  color: var(--blue2);
  background: var(--blue-soft);
  font-variant-numeric: tabular-nums;
  border-radius: 100px;
  padding: 1px 9px;
  font-size: 11px;
  font-weight: 600;
}

.mod-vazio {
  color: var(--faint);
  text-wrap: pretty;
  padding: 22px 16px;
  font-size: 13px;
  line-height: 1.6;
}

.linhas {
  display: flex;
  flex-direction: column;
}

.linha {
  display: flex;
  border-bottom: 1px solid var(--row);
  cursor: pointer;
  align-items:  center;
  gap: 14px;
  padding: 13px 16px;
  transition: background-color .13s;
}

.linha:last-child {
  border-bottom: none;
}

.linha:hover {
  background: var(--hover);
}

.linha-main {
  flex: 1;
  min-width: 0;
}

.linha-nome {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
}

.linha-trecho {
  color: var(--mut);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-variant-numeric: normal;
  margin-top: 3px;
  font-size: 12.5px;
  font-style: italic;
}

.linha-meta {
  font-family: var(--mono);
  color: var(--faint);
  font-variant-numeric: tabular-nums;
  margin-top: 5px;
  font-size: 10.5px;
}

.linha-acao {
  color: var(--blue2);
  border: 1px solid var(--blue-soft);
  background: var(--blue-tint);
  border-radius: 100px;
  flex: none;
  padding: 6px 13px;
  transition: background-color .13s, border-color .13s;
  font-size: 11.5px;
  font-weight: 600;
}

.linha-acao:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
}

.linha-seta {
  color: var(--faint);
  flex: none;
  font-size: 14px;
}

.linha.respondeu {
  position: relative;
}

.linha.respondeu:before {
  content: "";
  position: absolute;
  background: var(--blue);
  width: 2px;
  top: 0;
  bottom: 0;
  left: 0;
}

.camp-barra {
  background: var(--row);
  overflow: hidden;
  border-radius: 3px;
  max-width: 340px;
  height: 5px;
  margin: 8px 0 2px;
}

.camp-barra i {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  border-radius: 3px;
  height: 100%;
}

.tag.off {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--warn);
  background: #fff4e8;
  border-radius: 100px;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 9px;
}

.rail-mod .mod-h {
  padding: 11px 14px;
}

.checklist-v {
  display: flex;
  flex-direction: column;
  padding: 4px 0;
}

.ckv {
  display: flex;
  color: var(--mut);
  text-align: left;
  align-items:  center;
  gap: 10px;
  padding: 8px 14px;
  transition: color .13s, background-color .13s;
  font-size: 12.5px;
}

.ckv:hover {
  color: var(--text);
  background: var(--hover);
}

.ckv i {
  border: 1.5px solid var(--border2);
  position: relative;
  border-radius: 50%;
  flex: none;
  width: 16px;
  height: 16px;
  transition: border-color .15s, background-color .15s;
}

.ckv.on {
  color: var(--text);
}

.ckv.on i {
  background: var(--blue);
  border-color: var(--blue);
}

.ckv.on i:after {
  content: "✓";
  position: absolute;
  display: grid;
  color: #fff;
  place-items:  center;
  font-size: 9px;
  font-weight: 700;
  inset: 0;
}

.passos {
  display: flex;
  flex-direction: column;
}

.passo {
  display: flex;
  border-top: 1px solid var(--row);
  text-align: left;
  align-items:  center;
  gap: 12px;
  padding: 12px 14px;
  transition: background-color .13s;
}

.passo:first-child {
  border-top: none;
}

.passo:hover {
  background: var(--hover);
}

.passo-n {
  font-family: var(--disp);
  letter-spacing: -.03em;
  color: var(--blue2);
  font-variant-numeric: tabular-nums;
  text-align: center;
  flex: none;
  min-width: 34px;
  font-size: 20px;
  font-weight: 800;
}

.passo-t {
  color: var(--text);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1px;
  font-size: 12.5px;
  font-weight: 500;
}

.passo-t small {
  color: var(--faint);
  font-size: 11px;
  font-weight: 400;
}

.passo-seta {
  color: var(--faint);
  flex: none;
  font-size: 13px;
}

.funil-mod {
  margin-top: 0;
}

.funil-leg {
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--faint);
  text-transform: none;
  font-size: 10px;
}

.funil {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
}

.funil-linha {
  display: grid;
  grid-template-columns: 110px 1fr 48px 52px;
  align-items:  center;
  gap: 14px;
}

.funil-rot {
  color: var(--mut);
  font-size: 12.5px;
  font-weight: 500;
}

.funil-trilho {
  background: var(--cell);
  border: 1px solid var(--row);
  overflow: hidden;
  border-radius: 7px;
  height: 26px;
}

.funil-trilho i {
  display: block;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
  transform-origin: left;
  animation: barGrow .6s var(--spring) backwards;
  transition: width .4s var(--spring);
  border-radius: 6px;
  min-width: 3px;
  height: 100%;
}

@keyframes barGrow {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.funil-n {
  font-family: var(--disp);
  letter-spacing: -.02em;
  color: var(--text);
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 800;
}

.funil-tx {
  font-family: var(--mono);
  color: var(--blue2);
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-size: 11px;
}

@media (max-width: 940px) {
  .hoje-grid {
    grid-template-columns: 1fr;
  }

  .hoje-rail {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  .painel-hoje .hoje-topo, .painel-hoje .mod {
    animation: none;
  }

  .funil-trilho i {
    animation: none;
    transform: none;
  }

  .conteudo {
    animation: none;
  }
}

@media (max-width: 760px) {
  .dash {
    grid-template-columns: 1fr;
  }

  .sb {
    position: static;
    flex-flow: wrap;
    gap: 8px;
    height: auto;
  }

  .sb-nav {
    flex-direction: row;
  }

  .entrar-h {
    font-size: 30px;
  }

  .buscar.hero, .ob {
    justify-content: flex-start;
    min-height: auto;
    padding-top: 24px;
  }

  .stepper {
    flex-wrap: wrap;
    gap: 8px 0;
  }

  .hoje-topo {
    flex-direction: column;
    align-items:  flex-start;
    gap: 14px;
  }

  .statbar {
    justify-content: space-between;
    width: 100%;
  }

  .stat {
    padding: 0 14px 0 0;
  }
}

.leads-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  flex-end;
  gap: 16px;
  margin-bottom: 18px;
}

.vista-tog {
  display: inline-flex;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
}

.vista-tog button {
  color: var(--mut);
  border-radius: 100px;
  padding: 6px 16px;
  transition: color .15s, background-color .15s;
  font-size: 12.5px;
  font-weight: 600;
}

.vista-tog button:hover {
  color: var(--text);
}

.vista-tog button.on {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px #1b2c5a29;
}

.q-inv {
  display: flex;
  text-align: left;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--blue-tint), var(--panel));
  border-radius: 13px;
  align-items:  center;
  gap: 14px;
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 16px;
  transition: border-color .15s, transform .12s;
}

.q-inv:hover {
  border-color: #1b3fd666;
}

.q-inv:active {
  transform: scale(.99);
}

.q-inv-n {
  font-family: var(--disp);
  letter-spacing: -.03em;
  color: var(--blue2);
  font-variant-numeric: tabular-nums;
  flex: none;
  font-size: 24px;
  font-weight: 800;
}

.q-inv-t {
  display: flex;
  color: var(--text);
  flex-direction: column;
  flex: 1;
  gap: 1px;
  font-size: 13px;
  font-weight: 600;
}

.q-inv-t small {
  color: var(--faint);
  font-size: 11.5px;
  font-weight: 400;
}

.q-inv-seta {
  font-family: var(--mono);
  color: var(--blue2);
  flex: none;
  font-size: 11px;
}

.quadro {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  overflow-x: auto;
  align-items:  start;
  gap: 12px;
  padding-bottom: 6px;
}

.q-col {
  background: var(--soft, #f5f7fd);
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 120px;
  transition: background-color .15s, border-color .15s;
}

.q-col.sobre {
  border-color: var(--blue);
  background: var(--blue-tint);
  box-shadow: 0 0 0 3px var(--blue-tint);
}

.q-col-head {
  display: flex;
  border-bottom: 1px solid var(--row);
  border-radius: 14px 14px 0 0;
  justify-content: space-between;
  align-items:  center;
  padding: 10px 12px;
  font-size: 11.5px;
  font-weight: 700;
}

.q-col-n {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  background: #fff9;
  border-radius: 100px;
  padding: 1px 8px;
  font-size: 10.5px;
  font-weight: 600;
}

.q-col-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
}

.q-card {
  background: var(--panel);
  border: 1px solid var(--border);
  cursor: grab;
  border-radius: 11px;
  padding: 10px 12px;
  transition: box-shadow .15s, transform .12s, opacity .12s;
  box-shadow: 0 1px 2px #1b2c5a0d;
}

.q-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px #1b2c5a14, 0 10px 22px -14px #1b2c5a4d;
}

.q-card:active {
  cursor: grabbing;
}

.q-card.arrastando {
  opacity: .4;
}

.q-card-nome {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.25;
}

.q-card-meta {
  color: var(--faint);
  font-variant-numeric: normal;
  margin-top: 3px;
  font-size: 11px;
}

.q-card-wpp {
  display: inline-block;
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--blue2);
  background: var(--blue-soft);
  border-radius: 100px;
  margin-top: 8px;
  padding: 2px 8px;
  font-size: 8.5px;
}

.q-col-vazio {
  color: var(--faint);
  text-align: center;
  opacity: .5;
  padding: 14px 0;
  font-size: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .q-card, .q-inv, .vista-tog button {
    transition: none;
  }
}

.sb-grupo {
  font-family: var(--mono);
  letter-spacing: .18em;
  color: var(--faint);
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding: 16px 12px 6px;
  font-size: 8.5px;
}

.canais-pg {
  animation: modIn .3s var(--spring);
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}

.canais-head {
  margin-bottom: 6px;
}

.canais-status {
  display: inline-flex;
  font-family: var(--mono);
  color: var(--mut);
  align-items:  center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
}

.cs-dot {
  background: var(--faint);
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
}

.cs-dot.on {
  background: var(--ok);
  box-shadow: 0 0 0 3px #e7f7ec;
}

.canal-card.destaque {
  display: flex;
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 16px;
  gap: 15px;
  padding: 18px 20px;
  box-shadow: 0 1px 2px #1b2c5a0d, 0 14px 30px -22px #1b2c5a33;
}

.cc-ico {
  display: grid;
  border-radius: 12px;
  flex: none;
  place-items:  center;
  width: 42px;
  height: 42px;
}

.cc-ico svg {
  width: 20px;
  height: 20px;
}

.cc-ico.wa {
  color: #127a34;
  background: #e7f7ec;
}

.cc-ico.email {
  background: var(--blue-soft);
  color: var(--blue2);
}

.cc-corpo {
  flex: 1;
  min-width: 0;
}

.cc-linha {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 12px;
}

.cc-tit {
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
}

.cc-tipo {
  font-family: var(--mono);
  letter-spacing: .03em;
  color: var(--faint);
  font-size: 9.5px;
  font-weight: 400;
}

.cc-desc {
  color: var(--mut);
  max-width: 58ch;
  margin: 6px 0 12px;
  font-size: 12.5px;
  line-height: 1.5;
}

.cc-info {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 12px;
  font-size: 12.5px;
}

.cc-ok {
  color: #127a34;
  font-weight: 500;
}

.ef-acoes {
  display: flex;
  align-items:  center;
  gap: 8px;
}

.canais-grupo {
  font-family: var(--mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 14px 2px 2px;
  font-size: 8.5px;
}

.soon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .soon-grid {
    grid-template-columns: 1fr;
  }
}

.soon-tile {
  border: 1px solid var(--border);
  background: var(--soft, #f5f7fd);
  opacity: .85;
  border-radius: 13px;
  padding: 13px 14px;
}

.soon-top {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 9px;
}

.soon-ico {
  display: grid;
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--mut);
  border-radius: 9px;
  place-items:  center;
  width: 28px;
  height: 28px;
}

.soon-ico svg {
  width: 15px;
  height: 15px;
}

.soon-nome {
  color: var(--ink2);
  font-size: 12.5px;
  font-weight: 600;
}

.soon-dica {
  color: var(--faint);
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.4;
}

.est-soon {
  color: var(--faint);
  border: 1px dashed var(--border2);
  background: none;
  padding: 2px 8px;
  font-size: 9px;
}

.bill-sec {
  margin-top: 18px;
}

.bill-rot {
  font-family: var(--mono);
  letter-spacing: 1.4px;
  color: var(--faint);
  margin-bottom: 9px;
  font-size: 10px;
}

.bill-op {
  display: flex;
  border: 1px solid var(--border);
  background: var(--bg2);
  text-align: left;
  border-radius: 11px;
  justify-content: space-between;
  align-items:  center;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
  padding: 12px 14px;
  transition: border-color .15s, scale .12s;
}

.bill-op:hover {
  border-color: var(--blue);
}

.bill-op:active {
  scale: .98;
}

.bill-op:disabled {
  opacity: .5;
  cursor: default;
  scale: 1;
}

.bill-op.feat {
  border-color: var(--blue);
  background: var(--blue-tint);
}

.bill-op-l {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bill-op-n {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.bill-op-d {
  color: var(--mut);
  font-size: 12px;
}

.bill-op-p {
  font-family: var(--disp);
  color: var(--blue-deep);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 800;
}

.bill-op-p small {
  color: var(--faint);
  font-size: 11px;
  font-weight: 600;
}

.bill-erro {
  color: #c0392b;
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
}

.bill-nota {
  color: var(--faint);
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  line-height: 1.5;
}

.bill-falar {
  display: block;
  color: var(--mut);
  text-decoration: underline;
  text-align: center;
  margin: 12px auto 0;
  font-size: 13px;
}
