/* ─────────────────────────────────────────────────────────────────────────
 * Eligentia v8 · components.css
 * Wizard, formularios, botones, info-boxes, métricas, score-bars,
 * lang-switcher, persist-bar, verdict box, tags, cards.
 * ───────────────────────────────────────────────────────────────────────── */

/* ── Wizard ─────────────────────────────────────────────────────────────── */
.wizard {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.step-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--gray-100);
}
.step-btn {
  position: relative;
  padding: 14px 10px;
  background: none;
  border: none;
  border-right: 1px solid var(--gray-100);
  cursor: pointer;
  text-align: center;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.step-btn:last-child { border-right: none; }
.step-btn:hover { background: var(--gray-50); }
.step-btn.active { background: var(--accent-soft); }
.step-btn.active::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
}
.step-btn.demo-pulse {
  transform: scale(1.03);
  box-shadow: 0 0 0 4px rgba(255, 243, 176, 0.65), 0 10px 24px rgba(83,74,183,.18);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 10px; font-weight: 700;
  background: var(--gray-100);
  color: var(--gray-400);
  margin-bottom: 4px;
  transition: all var(--t-fast);
}
.step-btn.active .step-num { background: var(--accent); color: var(--accent-fg); }
.step-label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--gray-400);
}
.step-btn.active .step-label { color: var(--accent-strong); }

.panel {
  display: none;
  padding: 28px;
  animation: panelFadeUp .22s var(--ease);
}
.panel.active { display: block; }
@keyframes panelFadeUp {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
.p-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.p-title {
  font-family: var(--ff-display);
  font-size: var(--fs-h2);
  letter-spacing: -.01em;
  margin-bottom: 4px;
  color: var(--accent-strong);
}
.p-desc {
  font-size: 13px;
  color: var(--gray-700);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* ── Formularios ────────────────────────────────────────────────────────── */
.fl { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.fl label {
  font-size: var(--fs-xsmall);
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.fl .hint {
  font-size: var(--fs-xsmall);
  color: var(--gray-400);
  margin-top: 2px;
}

input[type=text], input[type=number], input[type=email], select, textarea {
  width: 100%;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 9px 12px;
  font-size: 13px;
  font-family: var(--ff-body);
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { resize: vertical; min-height: 70px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── Botones ────────────────────────────────────────────────────────────── */
.btn-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--gray-100);
}
.btn {
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-size: 13px; font-weight: 700;
  cursor: pointer; font-family: var(--ff-body);
  border: 1.5px solid var(--gray-200);
  background: var(--white); color: var(--gray-800);
  transition: all var(--t-fast);
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.btn.primary {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(83,74,183,.25);
}
.btn.primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  color: var(--accent-fg);
  transform: translateY(-1px);
}
.btn.ghost { background: transparent; }
.btn.danger  { background: var(--red-400); color: var(--white); border-color: var(--red-400); }
.btn.success { background: var(--teal-400); color: var(--white); border-color: var(--teal-400); }

/* ── Info-boxes ─────────────────────────────────────────────────────────── */
.ibox {
  border-left: 3px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--accent-strong);
  line-height: 1.5;
  margin-bottom: 16px;
}
.ibox.amb  { border-color: var(--amb-400); background: var(--amb-50); color: var(--amb-600); }
.ibox.red  { border-color: var(--red-400); background: var(--red-50); color: var(--red-600); }
.ibox.teal { border-color: var(--teal-400); background: var(--teal-50); color: var(--teal-800); }
.ibox.blue { border-color: var(--blue-400); background: var(--blue-50); color: var(--blue-800); }

/* ── Tags ───────────────────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: var(--fs-xsmall);
  font-weight: 700;
  margin-right: 6px;
  margin-bottom: 4px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.tag.teal { background: var(--teal-50); color: var(--teal-600); }
.tag.amb  { background: var(--amb-50); color: var(--amb-600); }
.tag.red  { background: var(--red-50); color: var(--red-600); }
.tag.blue { background: var(--blue-50); color: var(--blue-600); }

/* ── Bullets ────────────────────────────────────────────────────────────── */
.bullet-item {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--gray-700);
}
.bullet-item::before {
  content: '▸';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.bullet-item strong { color: var(--gray-900); }

/* ── Métricas (mboxes) ──────────────────────────────────────────────────── */
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mbox {
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
  background: var(--accent-soft);
}
.mbox-val {
  font-family: var(--ff-display);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--accent-strong);
}
.mbox-lbl {
  font-size: var(--fs-xsmall);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
}
.mbox-sub { font-size: var(--fs-xsmall); color: var(--gray-400); margin-top: 2px; }

/* ── Score-bar (componente reutilizable, también render manual) ─────────── */
.score-bar-list { display: flex; flex-direction: column; gap: 14px; }
.sb-row { /* fila individual */ }
.sb-row-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  font-size: 13px;
}
.sb-row-label { font-weight: 600; color: var(--gray-800); }
.sb-row-value { font-weight: 700; }
.sb-row-track {
  height: 10px;
  background: var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.sb-row-fill {
  height: 100%;
  border-radius: 6px;
  transition: width 1s var(--ease);
  background: var(--accent);
}
.sb-row-target {
  position: absolute;
  top: -2px; bottom: -2px;
  width: 2px;
  background: var(--gray-900);
}
/* SVG nuevo (reemplaza .sb-row-track + .sb-row-fill). Imprime fielmente
 * en todos los browsers porque el atributo fill de SVG no está sujeto a
 * la opción "Background graphics" que algunos browsers desactivan. */
.sb-row-svg {
  display: block;
  width: 100%;
  height: 12px;
  border-radius: 4px;
  overflow: visible;
}
.sb-row-hint {
  font-size: var(--fs-xsmall);
  color: var(--gray-400);
  margin-top: 2px;
}
.sb-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.sb-total strong { font-size: 14px; color: var(--gray-800); }
.sb-total-value { font-size: 18px; }

/* ── Verdict / decision box ────────────────────────────────────────────── */
.verdict-box {
  padding: 18px;
  border-radius: var(--r-lg);
  margin-top: 14px;
  border: 2px solid var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.verdict-box.go        { border-color: var(--teal-400); background: var(--teal-50); color: var(--teal-800); }
.verdict-box.caution   { border-color: var(--amb-400); background: var(--amb-50); color: var(--amb-600); }
.verdict-box.review    { border-color: var(--blue-400); background: var(--blue-50); color: var(--blue-600); }
.verdict-box.stop      { border-color: var(--red-400); background: var(--red-50); color: var(--red-600); }
.verdict-box h3 {
  font-family: var(--ff-display);
  font-size: 18px;
  margin-bottom: 8px;
}

/* ── Lang switcher 🇪🇸 ES / 🇬🇧 EN ──────────────────────────────────────── */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-body);
}
.lang-label {
  font-size: var(--fs-xsmall);
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--gray-700);
  font-size: var(--fs-xsmall);
  font-weight: 700;
  font-family: var(--ff-body);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-strong);
}
.lang-flag {
  display: inline-block;
  width: 20px; height: 14px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 2px;
  vertical-align: middle;
  flex-shrink: 0;
}
.lang-name { letter-spacing: .04em; }

/* ── Persist-bar ────────────────────────────────────────────────────────── */
/* Barra fija inferior de persistencia (Guardar/Cargar/Exports). Diseño
   2026-05 (sesión 10): se incrementó tamaño y contraste para que sea
   inequívocamente visible al usuario y no se confunda con el borde del
   viewport. Color base navy con borde superior morado para destacar. */
#persist-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: linear-gradient(180deg, #2a2350 0%, #1a1a2e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  flex-wrap: wrap;
  font: 13px/1.4 'DM Sans', system-ui, -apple-system, sans-serif;
  box-shadow: 0 -4px 16px rgba(0,0,0,.35);
  border-top: 2px solid var(--purple-400, #7E6FE0);
}
#persist-bar button {
  border: none;
  border-radius: 999px;
  padding: 7px 16px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
#persist-bar button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,.35);
}
.pb-save  { background: var(--purple-600); }
.pb-load  { background: var(--teal-600); }
.pb-json  { background: var(--purple-400); }
.pb-csv   { background: var(--amb-400); }
.pb-pdf   { background: #712B13; }
.pb-url   { background: #444; }
#persist-msg {
  opacity: .9;
  font-size: 11.5px;
  margin-left: 10px;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pb-sep { opacity: .4; margin: 0 6px; }
.pb-icon {
  opacity: .95;
  margin-right: 6px;
  font-size: 15px;
}
.pb-label {
  opacity: .8;
  margin-right: 6px;
  font-size: 11.5px;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── RO bloque: DynamicList ─────────────────────────────────────────────── */
.dl-list {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}
.dl-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}
.dl-item-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.dl-item-num {
  font-size: var(--fs-xsmall); font-weight: 700;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: .04em;
}
.dl-item-fields {
  display: grid; gap: 10px;
}
.dl-field { display: flex; flex-direction: column; gap: 4px; }
.dl-field label {
  font-size: var(--fs-xsmall); font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase; letter-spacing: .3px;
}
.dl-range-wrap { display: flex; align-items: center; gap: 12px; }
.dl-range-wrap input[type=range] { flex: 1; }
.dl-range-value {
  min-width: 28px;
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--accent);
  text-align: center;
}
.dl-add-btn {
  margin-bottom: 16px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-color: var(--accent-soft);
  font-weight: 700;
}
.dl-add-btn:hover { background: var(--accent); color: var(--accent-fg); border-color: var(--accent); }
.dl-remove {
  background: var(--red-50);
  color: var(--red-600);
  border-color: var(--red-50);
  font-size: 11px;
  padding: 4px 10px;
}
.dl-remove:hover { background: var(--red-400); color: var(--white); border-color: var(--red-400); }

/* ── RO bloque: RiskPlotter ─────────────────────────────────────────────── */
.ro-plot-wrap {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.ro-plot {
  width: 100%; height: auto; display: block;
  font-family: var(--ff-body);
}
.ro-grid-line {
  stroke: var(--gray-100);
  stroke-width: 1;
}
.ro-axis-line {
  stroke: var(--gray-300, var(--gray-200));
  stroke-width: 1.5;
}
.ro-axis-label {
  font-size: 11px; font-weight: 700;
  fill: var(--gray-700);
  letter-spacing: .04em;
}
.ro-tick-label {
  font-size: 10px;
  fill: var(--gray-400);
}
.ro-item { cursor: pointer; }
.ro-item:hover circle { transform: scale(1.15); transform-origin: center; }
.ro-item-label {
  font-size: 10px;
  fill: var(--gray-700);
  font-weight: 600;
}
.ro-plot-tooltip {
  position: absolute;
  background: rgba(26,25,23,.95);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .15s;
  z-index: 10;
  white-space: nowrap;
  max-width: 320px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ro-plot-tooltip.show { opacity: 1; }

/* ── RO84 — Composite display + niveles + bars ──────────────────────────── */
.ro-composite {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: flex; gap: 8px; align-items: center;
}
.ro-composite.low      { background: #d4edda; color: #155724; }
.ro-composite.medium   { background: #fff3cd; color: #856404; }
.ro-composite.high     { background: #ffe0b2; color: #7c4d0e; }
.ro-composite.critical { background: #f8d7da; color: #721c24; }
.ro-comp-score {
  font-family: var(--ff-display);
  font-size: 18px;
}

.ro-scales-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}
.ro-scale-col {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 14px 16px;
}
.ro-scale-col h4 {
  font-family: var(--ff-display);
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--accent-strong);
}
.ro-scale-list {
  list-style: none; padding-left: 0;
  font-size: 12px; color: var(--gray-700);
}
.ro-scale-list li { padding: 3px 0; }

.ro-levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.ro-level-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--gray-300);
  border-radius: var(--r-md);
  padding: 12px;
  text-align: center;
}
.ro-level-card.low      { border-top-color: #1D9E75; }
.ro-level-card.medium   { border-top-color: #d69e2e; }
.ro-level-card.high     { border-top-color: #f57c00; }
.ro-level-card.critical { border-top-color: #E24B4A; }
.ro-level-num { font-family: var(--ff-display); font-size: 22px; color: var(--gray-900); }
.ro-level-name { font-weight: 700; font-size: 13px; margin-top: 2px; }
.ro-level-desc { font-size: 11px; color: var(--gray-700); margin-top: 4px; line-height: 1.4; }

/* CRI section */
.ro-cri-section {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 16px; margin-bottom: 24px;
}
.ro-cri-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.ro-cri-num { font-family: var(--ff-display); font-size: 48px; color: var(--accent); line-height: 1; }
.ro-cri-label {
  font-size: var(--fs-xsmall); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-400); margin-top: 6px;
}
.ro-cri-meta { font-size: 11px; color: var(--gray-400); font-style: italic; margin-top: 2px; }

.ro-cri-profile {
  background: var(--gray-50);
  border-radius: var(--r-md);
  padding: 18px 20px;
  border-left: 4px solid var(--gray-300);
}
.ro-cri-profile.low      { border-left-color: #1D9E75; background: #f0faf6; }
.ro-cri-profile.medium   { border-left-color: #d69e2e; background: #fdf9eb; }
.ro-cri-profile.high     { border-left-color: #f57c00; background: #fff4e6; }
.ro-cri-profile.critical { border-left-color: #E24B4A; background: #fdf2f2; }
.ro-cri-profile h4 {
  font-family: var(--ff-body);
  font-size: 16px; font-weight: 700; margin-bottom: 6px;
  color: var(--gray-900);
}

.ro-distribution {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 24px;
}
.ro-dist-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--gray-300);
  border-radius: var(--r-md);
  padding: 12px; text-align: center;
}
.ro-dist-card.low      { border-top-color: #1D9E75; }
.ro-dist-card.medium   { border-top-color: #d69e2e; }
.ro-dist-card.high     { border-top-color: #f57c00; }
.ro-dist-card.critical { border-top-color: #E24B4A; }
.ro-dist-num { font-family: var(--ff-display); font-size: 28px; line-height: 1; color: var(--gray-900); }
.ro-dist-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--gray-400);
}

.ro-bars { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.ro-bar-row {
  display: grid; grid-template-columns: minmax(120px, 220px) 1fr 70px;
  gap: 12px; align-items: center;
  font-size: 13px;
}
.ro-bar-label {
  color: var(--gray-700); font-weight: 500;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.ro-bar-track {
  background: var(--gray-100);
  height: 18px; border-radius: 4px; overflow: hidden;
}
.ro-bar-fill {
  height: 100%; border-radius: 4px;
  transition: width .35s var(--ease);
}
.ro-bar-fill.low      { background: #1D9E75; }
.ro-bar-fill.medium   { background: #d69e2e; }
.ro-bar-fill.high     { background: #f57c00; }
.ro-bar-fill.critical { background: #E24B4A; }
.ro-bar-value {
  font-family: var(--ff-display); font-size: 16px;
  text-align: right; color: var(--gray-900);
  font-variant-numeric: tabular-nums;
}

/* Legend para heatmap */
.ro-legend {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: var(--fs-small); color: var(--gray-700);
  margin-bottom: 12px;
}
.ro-legend-cell {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 4px;
  border: 1px solid rgba(0,0,0,.06);
}
.ro-legend-cell.low      { background: #d4edda; }
.ro-legend-cell.medium   { background: #fff3cd; }
.ro-legend-cell.high     { background: #ffe0b2; }
.ro-legend-cell.critical { background: #f8d7da; }

@media (max-width: 720px) {
  .ro-scales-grid, .ro-cri-section { grid-template-columns: 1fr; }
  .ro-levels-grid, .ro-distribution { grid-template-columns: 1fr 1fr; }
  .ro-bar-row { grid-template-columns: 1fr 70px; }
  .ro-bar-row .ro-bar-label { grid-column: 1 / -1; font-weight: 700; margin-bottom: -4px; }
}

/* ── Excel Bridge (sistema híbrido cualitativo + cuantitativo) ─────────── */
.excel-bridge {
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--white) 100%);
  border: 1px solid var(--accent);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.eb-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.eb-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.eb-title {
  font-family: var(--ff-display);
  font-size: 17px;
  color: var(--accent-strong);
  margin-bottom: 4px;
}
.eb-sub {
  font-size: 13px;
  color: var(--gray-700);
  line-height: 1.5;
}
.eb-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.eb-actions .btn { font-weight: 700; }
.eb-msg {
  margin-top: 10px;
  font-size: 12px;
  min-height: 18px;
  font-weight: 600;
}
.eb-msg[data-kind="ok"]   { color: var(--teal-600); }
.eb-msg[data-kind="err"]  { color: var(--red-600); }
.eb-msg[data-kind="info"] { color: var(--gray-700); }

/* Separador "O continúa con la evaluación cualitativa" */
.eb-or {
  display: flex; align-items: center; gap: 12px;
  margin: 16px 0 18px;
  font-size: 11px; font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eb-or::before, .eb-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
