:root {
  --ink: #e8f4f2;
  --muted: #9bb8b4;
  --bg: #07141c;
  --panel: #0c1d27;
  --line: rgba(184, 214, 208, 0.14);
  --teal: #2ec4b6;
  --sand: #e2c48e;
  --deal: #7dffb3;
  --good: #b7e36d;
  --market: #7eb6d6;
  --high: #ff8b6b;
  --warn: #f0c36a;
}
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body {
  font-family: Outfit, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
}
h1, h2, .brand h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
}
.shell {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(260px, 320px) 1fr minmax(300px, 380px);
  height: 100%;
  min-height: 0;
}
.panel {
  border-right: 1px solid var(--line);
  background:
    radial-gradient(900px 280px at 0 -10%, rgba(46, 196, 182, 0.16), transparent 55%),
    var(--panel);
  overflow: auto;
  padding: 22px 18px 90px;
  min-height: 0;
}
.list-rail {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(8, 22, 30, 0.35), transparent 80px),
    #0a1a23;
  padding: 16px 12px 16px;
}
.list-rail .block-head {
  flex: 0 0 auto;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 10px;
}
.list-rail .block-head h2 { margin: 0; }
.list-rail #listCount {
  color: var(--muted);
  font-size: 12px;
}
.list-rail .list {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding-right: 2px;
}
.list-loading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 2px 4px;
}
.list-loading-title {
  font-family: Fraunces, Georgia, serif;
  font-size: 18px;
  margin: 4px 0 0;
}
.list-loading-copy {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 8px;
  line-height: 1.4;
}
.list-loading-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.55);
  animation: load-pulse 1.4s ease-out infinite;
}
.list-banner {
  margin: 0 0 4px;
  padding: 8px 10px;
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: 12px;
  background: rgba(46, 196, 182, 0.08);
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
}
.card-skel {
  height: 90px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 0%, rgba(46, 196, 182, 0.08) 45%, rgba(255,255,255,0.03) 100%),
    rgba(7, 16, 24, 0.55);
  background-size: 180% 100%;
  animation: load-shimmer 1.6s ease-in-out infinite;
}
.map-loading {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: min(420px, calc(100% - 88px));
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 22, 30, 0.9);
  color: var(--ink);
  font-size: 13px;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.map-loading[hidden] { display: none; }
.map-loading p { margin: 0; }
@keyframes load-pulse {
  0% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(46, 196, 182, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}
@keyframes load-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -80% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .list-loading-pulse, .card-skel { animation: none; }
}
.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--sand);
  margin: 0 0 6px;
}
.brand h1 { margin: 0; font-size: 34px; line-height: 1; }
.lede { color: var(--muted); margin: 10px 0 18px; }
.market-pulse {
  margin: 0 0 16px;
  padding: 12px 12px 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(46, 196, 182, 0.08), transparent 42%),
    rgba(8, 22, 30, 0.55);
}
.market-pulse.collapsed .market-chart,
.market-pulse.collapsed .market-types,
.market-pulse.collapsed .market-split,
.market-pulse.collapsed .market-readout,
.market-pulse.collapsed .market-bars,
.market-pulse.collapsed .market-mix,
.market-pulse.collapsed .market-kicker { display: none; }
.market-readout {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px;
}
.market-readout b {
  font-family: Fraunces, serif;
  font-size: 20px;
}
.market-stat {
  flex: 1;
  min-width: 90px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 7px 8px;
}
.market-stat span { display: block; color: var(--muted); font-size: 11px; }
.market-stat.is-up b { color: var(--high); }
.market-stat.is-down b { color: var(--deal); }
.market-bars { display: grid; gap: 5px; margin: 0 0 10px; }
.mbar { display: grid; grid-template-columns: 58px 1fr auto; gap: 6px; align-items: center; font-size: 11px; }
.mbar i {
  display: block;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2ec4b6, #7dffb3);
}
.mbar b { color: var(--muted); font-weight: 500; }
.market-mix { display: flex; height: 8px; border-radius: 99px; overflow: hidden; margin: 0 0 10px; background: rgba(255,255,255,0.04); }
.market-mix i { display: block; height: 100%; }
.market-mix .oportunidad { background: #7dffb3; }
.market-mix .bueno { background: #b7e36d; }
.market-mix .mercado { background: #7eb6d6; }
.market-mix .caro { background: #ff8b6b; }
.market-row .fresh {
  display: inline-block;
  margin-left: 6px;
  color: var(--deal);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.market-kicker {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}
.market-chart {
  height: 84px;
  margin: 0 0 10px;
}
.market-chart svg { width: 100%; height: 84px; display: block; }
.market-chart .axis {
  fill: var(--muted);
  font-size: 10px;
}
.market-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 10px;
}
.market-type {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 11px;
}
.market-type.is-up { color: var(--high); }
.market-type.is-down { color: var(--deal); }
.market-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.market-split h3 {
  margin: 0 0 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.market-list { display: grid; gap: 6px; }
.market-row {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: inherit;
  border-radius: 10px;
  padding: 7px 8px;
}
.market-row b { display: block; font-size: 12px; }
.market-row span { display: block; color: var(--muted); font-size: 11px; }
.market-row.is-strong { border-color: rgba(125, 255, 179, 0.35); }
.price-track { margin: 12px 0; }
.price-track ol { margin: 8px 0 0; padding-left: 16px; color: var(--muted); font-size: 12px; }
.kpis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
}
.kpi b { display: block; font-size: 22px; font-family: Fraunces, serif; }
.kpi span { color: var(--muted); font-size: 12px; }
.actions { margin-bottom: 14px; }
button, select, input, textarea {
  font: inherit;
  color: var(--ink);
}
button {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.08);
}
.primary {
  background: linear-gradient(180deg, #3fe0d0, #1aa394);
  color: #042226;
  font-weight: 600;
  width: 100%;
}
button:disabled { opacity: 0.55; cursor: wait; }
.status { color: var(--muted); font-size: 13px; min-height: 36px; }
.filters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.place-wrap { position: relative; grid-column: 1 / -1; }
.place-suggest {
  position: absolute;
  z-index: 30;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  background: #102632;
  border: 1px solid var(--line);
  border-radius: 10px;
  max-height: 240px;
  overflow: auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.place-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 9px 12px;
}
.place-suggest button:hover,
.place-suggest button.is-active { background: rgba(46, 196, 182, 0.12); }
.place-suggest small { color: var(--muted); display: block; font-size: 11px; font-weight: 400; }
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.fav-btn {
  background: transparent;
  color: var(--sand);
  font-size: 20px;
  line-height: 1;
  padding: 0 4px;
  min-width: 28px;
}
.card.is-fav { border-color: rgba(226, 196, 142, 0.45); }
.card.is-selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px rgba(46, 196, 182, 0.65);
  background: rgba(46, 196, 182, 0.08);
}
.card.is-contacted .kind { outline: 1px solid rgba(226, 196, 142, 0.5); }
.note-box {
  width: 100%;
  margin-top: 6px;
  min-height: 42px;
  resize: vertical;
  font-size: 12px;
}
.prop-pin {
  background: transparent;
  border: 0;
}
.prop-pin span {
  display: block;
  width: 14px;
  height: 14px;
  box-shadow: 0 0 0 2px rgba(7, 20, 28, 0.9);
}
.prop-pin.round span { border-radius: 50%; }
.prop-pin.fav span { box-shadow: 0 0 0 2px #e2c48e; }
.zone-pin { background: transparent; border: 0; }
.zone-pin span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px dashed currentColor;
  background: rgba(8, 22, 30, 0.82);
  box-shadow: 0 0 0 8px rgba(126, 182, 214, 0.16);
  font-size: 13px;
  font-weight: 700;
}
.zone-pin.is-selected span {
  box-shadow: 0 0 0 8px rgba(46, 196, 182, 0.35);
  background: rgba(46, 196, 182, 0.18);
}
.leaflet-div-icon.zone-pin { background: transparent; border: none; }
.stack-pin span {
  width: 32px;
  height: 32px;
  border-style: solid;
  box-shadow: 0 0 0 4px rgba(126, 182, 214, 0.22);
  font-size: 12px;
}
.stack-pin.is-selected span {
  box-shadow: 0 0 0 5px rgba(46, 196, 182, 0.4);
}
.zone-popup p { margin: 4px 0 8px; color: #9bb8b4; font-size: 12px; }
.zone-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  text-align: left;
  border-radius: 10px;
  padding: 7px 8px;
  margin: 0 0 6px;
  background: rgba(255,255,255,0.05);
}
.zone-item.is-selected { outline: 1px solid #2ec4b6; }
.card.is-approx { opacity: 0.92; }
.card.is-approx img { filter: grayscale(0.15); }
.barrio-label {
  background: transparent;
  border: 0;
  pointer-events: none;
}
.barrio-label div {
  background: rgba(8, 22, 30, 0.82);
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: 8px;
  padding: 3px 8px;
  text-align: center;
  color: #e8f4f2;
  line-height: 1.15;
}
.barrio-label strong { display: block; font-size: 11px; }
.barrio-label span { display: block; font-size: 10px; color: #9bb8b4; }
.barrio-tip {
  background: #10232d;
  color: #e8f4f2;
  border: 1px solid rgba(184, 214, 208, 0.14);
}
.map-hint {
  position: absolute;
  left: 14px;
  bottom: 16px;
  top: auto;
  z-index: 1000;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 22, 30, 0.82);
  color: var(--muted);
  font-size: 12px;
  pointer-events: none;
}
.stats-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.ghost {
  background: transparent;
  color: var(--muted);
  padding: 4px 8px;
}
.stats-card.collapsed .table-wrap,
.stats-card.collapsed .legend { display: none; }
.stats-card.collapsed { max-height: none; width: auto; }
.pin-legend {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: #7eb6d6;
  margin-right: 4px;
  vertical-align: middle;
}
.pin-legend.round { border-radius: 50%; }
.pin-legend.zone {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: transparent;
  border: 2px dashed #7eb6d6;
  box-sizing: border-box;
}
.filters label, dialog label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
}
input, select, textarea {
  background: #071018;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
}
.check {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
  margin-top: 10px;
}
.block { margin-top: 8px; }
.leaflet-div-icon.prop-pin,
.leaflet-div-icon.barrio-label {
  background: transparent;
  border: none;
}
.block-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.block-head h2, .stats-card h2 { font-size: 18px; margin: 0 0 8px; }
.list { display: flex; flex-direction: column; gap: 8px; }
.card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  background: rgba(7, 16, 24, 0.55);
}
.card img {
  width: 86px;
  height: 74px;
  object-fit: cover;
  border-radius: 10px;
  background: #123;
}
.card .meta { color: var(--muted); font-size: 12px; }
.card .price { color: var(--sand); font-weight: 600; }
.tag {
  display: inline-block;
  font-size: 11px;
  padding: 2px 7px;
  border-radius: 999px;
  margin-top: 4px;
}
.tag.oportunidad { background: rgba(125, 255, 179, 0.15); color: var(--deal); }
.tag.bueno { background: rgba(183, 227, 109, 0.12); color: var(--good); }
.tag.caro { background: rgba(255, 139, 107, 0.14); color: var(--high); }
.tag.revisar, .tag.sin { background: rgba(240, 195, 106, 0.12); color: var(--warn); }
.tag.loteo-fuera-de-mediana { background: rgba(196, 181, 160, 0.16); color: #e6d3bc; }
.map-wrap { position: relative; height: 100%; min-height: 0; }
#map { height: 100%; background: #08151c; }
.stats-card {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(520px, calc(100% - 32px));
  max-height: 38vh;
  overflow: auto;
  background: rgba(8, 22, 30, 0.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(10px);
}
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { padding: 6px 4px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-weight: 500; }
.legend { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; color: var(--muted); font-size: 12px; }
.dot {
  width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 4px;
}
.dot.deal { background: var(--deal); }
.dot.good { background: var(--good); }
.dot.market { background: var(--market); }
.dot.high { background: var(--high); }
.fab {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 500;
  background: #e2c48e;
  color: #1a1408;
  font-weight: 600;
}
dialog {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #10232d;
  color: var(--ink);
  width: min(520px, 92vw);
}
dialog::backdrop { background: rgba(0,0,0,0.55); }
.row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 8px; margin-top: 12px; }
.facebook-links a { color: var(--teal); }
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: #10232d;
  color: var(--ink);
}
.leaflet-popup-content { margin: 10px 12px; }
.popup img { width: 100%; height: 110px; object-fit: cover; border-radius: 8px; }
.popup a { color: var(--teal); }
.popup-blurb {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.search-row { display: flex; gap: 8px; }
.search-row .primary { flex: 1; }
.search-row button { width: auto; }
.kind {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.18);
  color: var(--teal);
}
.kind.depto, .kind.departamento { background: rgba(126, 182, 214, 0.2); color: #9fd2ef; }
.kind.ph { background: rgba(226, 196, 142, 0.2); color: var(--sand); }
.kind.casa { background: rgba(125, 255, 179, 0.12); color: var(--deal); }
.headline { font-size: 13px; margin: 2px 0 4px; }
.chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.chip {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--muted);
}
.tag.quality { background: rgba(46, 196, 182, 0.12); color: var(--teal); }
.detail {
  margin-top: 0;
  height: 100%;
  overflow: auto;
  padding: 18px 16px 48px;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background:
    radial-gradient(700px 240px at 100% -10%, rgba(46, 196, 182, 0.12), transparent 55%),
    var(--panel);
  font-size: 13px;
}
.detail.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.detail-close {
  float: right;
  margin: -6px -6px 8px 8px;
}
.edit-form {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}
.edit-form.is-locked .edit-fields { display: none; }
.edit-hint { margin: 0; font-size: 12px; }
.detail h3 { margin: 8px 0 4px; font-size: 16px; }
.detail .desc { color: var(--muted); max-height: 42vh; overflow: auto; white-space: pre-wrap; }
.detail-head { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.detail-link {
  display: block;
  word-break: break-all;
  color: var(--teal);
  font-size: 12px;
  margin: 6px 0 12px;
}
.detail-hero {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
  background: #123;
}
.detail h4 { margin: 14px 0 6px; font-size: 13px; color: var(--muted); font-weight: 600; }
.muted { color: var(--muted); }
@media (max-width: 1320px) {
  .shell { grid-template-columns: minmax(260px, 320px) minmax(240px, 300px) 1fr; }
  .detail {
    position: fixed;
    right: 0;
    top: 0;
    width: min(400px, 100vw);
    height: 100%;
    z-index: 800;
    box-shadow: -12px 0 40px rgba(0,0,0,0.35);
  }
  .detail.is-empty { display: none; }
  .stats-card { display: none; }
}
@media (max-width: 980px) {
  .shell {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 48vh 52vh;
  }
  .panel { height: auto; }
  .list-rail { height: auto; }
  .map-wrap { height: auto; grid-column: 1 / -1; }
  .market-split { grid-template-columns: 1fr; }
}

.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 10px 0;
}
.fact {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
}
.fact span { display: block; color: var(--muted); font-size: 11px; }
.fact b { font-size: 13px; }
.detail h3 { margin: 8px 0 4px; font-size: 16px; }
.detail .desc { color: var(--muted); max-height: 42vh; overflow: auto; white-space: pre-wrap; }
.card .kind { font-size: 12px; }
.headline { font-weight: 500; }
.kind.terreno { background: rgba(196, 154, 108, 0.22); color: #e2c48e; }
.dot.warn { background: var(--warn); }
.dot.loteo { background: #c4b5a0; }
.crawl-check { margin: 8px 0 0; }
.map-legend {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1100;
  width: min(300px, calc(100% - 24px));
  max-height: min(70%, 420px);
  overflow: auto;
  background: rgba(8, 22, 30, 0.94);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px 8px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ink);
  pointer-events: auto;
}
.map-legend-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.map-legend h3 {
  margin: 0;
  font-size: 13px;
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 600;
}
.map-legend ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.map-legend li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 0 0 7px;
}
.map-legend .dot, .map-legend .pin-legend { margin-top: 3px; flex: 0 0 auto; }
.map-legend.collapsed ul { display: none; }
.pin-legend.barrio {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(46, 196, 182, 0.28);
  border: 1px solid rgba(46, 196, 182, 0.75);
  box-sizing: border-box;
}
.deal-panel {
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(240, 195, 106, 0.45);
  background: linear-gradient(180deg, rgba(240, 195, 106, 0.14), rgba(7, 16, 24, 0.35));
}
.deal-panel .disclaimer {
  margin: 0 0 10px;
  color: #f3e2b0;
  font-size: 12px;
  line-height: 1.4;
}
.deal-slider {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.deal-slider input[type="range"] {
  width: 100%;
  accent-color: #7dffb3;
}
.deal-track {
  height: 8px;
  border-radius: 999px;
  margin-top: 8px;
  background: linear-gradient(90deg, #8aa 0%, #7eb6d6 28%, #b7e36d 55%, #7dffb3 82%, #f0c36a 100%);
}
.tag.revisar-outlier, .tag.revisar-se-ales, .tag.revisar-se-ales {
  background: rgba(240, 195, 106, 0.14);
  color: var(--warn);
}
