/* components.css — bloques reutilizables de contenido */

/* ---- Texto ---------------------------------------------------------------- */
.lead { font-size: 26px; line-height: 1.32; color: var(--fg); font-weight: 500; letter-spacing: -0.01em; }
.paragraph { font-size: 21px; line-height: 1.38; color: var(--fg-2); }
.paragraph.small { font-size: 17px; color: var(--fg-3); }
.subhead { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-2); }
.tag {
  display: inline-block; align-self: flex-start;
  font-size: 14px; font-weight: 500; color: var(--fg-2);
  padding: 7px 16px; border: 1px solid var(--stroke-2); border-radius: 999px;
  background: var(--card);
}
.source { font-size: 13.5px; color: var(--fg-faint); letter-spacing: 0.03em; }

/* ---- Número protagonista (hero) ------------------------------------------- */
.hero-num { display: flex; flex-direction: column; gap: 10px; align-items: inherit; }
.hero-value {
  font-size: 104px; font-weight: 800; letter-spacing: -0.04em; line-height: 0.95;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff, #c4c4d0);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* En columnas (split/stack) el ancho es menor: reducir para que no corte */
.layout-split .hero-value,
.layout-stack .hero-value { font-size: 74px; }
.hero-num.accent-blue  .hero-value { background: linear-gradient(180deg, #6fb8ff, var(--blue)); -webkit-background-clip: text; background-clip: text; }
.hero-num.accent-green .hero-value { background: linear-gradient(180deg, #74e69a, var(--green)); -webkit-background-clip: text; background-clip: text; }
.hero-num.accent-amber .hero-value { background: linear-gradient(180deg, #ffce7a, var(--amber)); -webkit-background-clip: text; background-clip: text; }
.hero-num.accent-red   .hero-value { background: linear-gradient(180deg, #ff8b83, var(--red)); -webkit-background-clip: text; background-clip: text; }
.hero-label { font-size: 19px; color: var(--fg-2); font-weight: 500; }
.hero-sub { font-size: 16px; color: var(--fg-3); }

/* ---- Grilla de stats ------------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 10px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 12px 18px 12px 20px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--fg-faint); opacity: 0.85;
}
.stat-card.accent-green { background: var(--green-soft); border-color: rgba(48,209,88,.28); }
.stat-card.accent-red   { background: var(--red-soft);   border-color: rgba(255,69,58,.28); }
.stat-card.accent-blue  { background: var(--blue-soft);  border-color: rgba(10,132,255,.28); }
.stat-card.accent-amber { background: var(--amber-soft); border-color: rgba(255,159,10,.28); }
.stat-card.accent-green::before { background: var(--green); }
.stat-card.accent-red::before   { background: var(--red); }
.stat-card.accent-blue::before  { background: var(--blue); }
.stat-card.accent-amber::before { background: var(--amber); }
.stat-value { font-size: 38px; font-weight: 700; letter-spacing: -0.02em; line-height: 1; color: var(--fg); }
.stat-card.accent-green .stat-value { color: var(--green); }
.stat-card.accent-red   .stat-value { color: var(--red); }
.stat-card.accent-blue  .stat-value { color: var(--blue-2); }
.stat-card.accent-amber .stat-value { color: var(--amber); }
.stat-card.accent-green .stat-value::after { content: ' ▲'; font-size: 0.46em; vertical-align: middle; }
.stat-card.accent-red   .stat-value::after { content: ' ▼'; font-size: 0.46em; vertical-align: middle; }
.stat-label { font-size: 16.5px; line-height: 1.32; color: var(--fg-2); }
.stat-desc { font-size: 14px; color: var(--fg-faint); }

/* ---- Cards (marco conceptual / objetivos) --------------------------------- */
.cards { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 12px; width: 100%; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--grad-accent);
  opacity: 1;
}
.card-title { font-size: 21px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; display: flex; align-items: center; gap: 0.5em; }
.card-title::before { content: '◆'; font-size: 0.6em; color: var(--blue-2); }
.card-sub { font-size: 15px; color: var(--blue-2); font-weight: 500; }
.card-text { font-size: 18px; line-height: 1.36; color: var(--fg-2); }

/* ---- Columnas (eyebrow + items) ------------------------------------------- */
.columns { display: grid; grid-template-columns: repeat(var(--cols, 2), 1fr); gap: 18px; width: 100%; }
.column { display: flex; flex-direction: column; gap: 9px; }
.col-eyebrow {
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-2); padding-bottom: 8px; border-bottom: 2px solid currentColor;
}
.column.tone-green .col-eyebrow { color: var(--green); }
.column.tone-amber .col-eyebrow { color: var(--amber); }
.column.tone-blue  .col-eyebrow { color: var(--blue-2); }
.col-title { font-size: 24px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.col-list { display: flex; flex-direction: column; gap: 6px; }
.col-list .li { font-size: 17px; line-height: 1.34; color: var(--fg-2); padding-left: 18px; position: relative; }
.col-list .li::before { content: ''; position: absolute; left: 0; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-2); }
.column.tone-green .col-list .li::before { background: var(--green); }
.column.tone-amber .col-list .li::before { background: var(--amber); }
.column.tone-blue  .col-list .li::before { background: var(--blue-2); }
.columns.dense .col-list .li { font-size: 16px; }

/* ---- Bullets con etiqueta ------------------------------------------------- */
.bullets { display: flex; flex-direction: column; gap: 12px; }
.bullet { display: flex; flex-direction: column; gap: 2px; }
.bullet .b-label { font-size: 17px; font-weight: 700; color: var(--fg); }
.bullet .b-text { font-size: 18px; line-height: 1.36; color: var(--fg-2); }
.bullets.ranked { counter-reset: rank; }
.bullets.ranked .bullet { padding-left: 46px; position: relative; }
.bullets.ranked .bullet::before {
  counter-increment: rank; content: counter(rank);
  position: absolute; left: 0; top: 0;
  width: 33px; height: 33px; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--grad-accent); color: #fff;
  font-weight: 800; font-size: 16px; border: 1px solid rgba(10,132,255,.4);
  box-shadow: 0 4px 14px rgba(10,132,255,.35);
}

/* ---- Callout / note ------------------------------------------------------- */
.note {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-left: 4px solid var(--fg-faint);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.note.accent-blue  { border-left-color: var(--blue);  background: var(--blue-soft); }
.note.accent-green { border-left-color: var(--green); background: var(--green-soft); }
.note.accent-amber { border-left-color: var(--amber); background: var(--amber-soft); }
.note.accent-red   { border-left-color: var(--red);   background: var(--red-soft); }
.note-title { font-size: 18px; font-weight: 700; color: var(--fg); display: flex; align-items: center; gap: 0.5em; }
.note.accent-blue  .note-title::before { content: '💡'; }
.note.accent-green .note-title::before { content: '✅'; }
.note.accent-amber .note-title::before { content: '⚠️'; }
.note.accent-red   .note-title::before { content: '⛔'; }
.note-text { font-size: 17px; line-height: 1.38; color: var(--fg-2); }
.layout-center .note { text-align: left; }

/* ---- Fórmula -------------------------------------------------------------- */
.formula {
  font-size: 26px; font-weight: 500; color: var(--fg);
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: var(--radius-sm); padding: 18px 26px;
  letter-spacing: 0.01em; text-align: center;
  font-variant-numeric: tabular-nums;
}
.formula sub, .formula sup { font-size: 0.62em; }

/* ---- Tabla ---------------------------------------------------------------- */
.data-table { width: 100%; border-collapse: collapse; font-size: 17px; }
.data-table th, .data-table td { text-align: left; padding: 8px 13px; }
.data-table thead th {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--fg-3); font-weight: 600; border-bottom: 1px solid var(--stroke-2);
}
.data-table tbody td { color: var(--fg-2); border-bottom: 1px solid var(--stroke); }
.data-table tbody td:first-child { color: var(--fg); font-weight: 500; }
.data-table tbody tr.is-highlight td {
  background: var(--blue-soft);
  color: var(--fg);
}
.data-table tbody tr.is-highlight td:first-child { font-weight: 700; }
.data-table td.num, .data-table th.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ---- Veredicto ------------------------------------------------------------ */
.verdict { display: flex; align-items: center; gap: 24px; }
.verdict-big {
  font-size: 56px; font-weight: 800; letter-spacing: 0.02em;
  color: var(--red);
  padding: 12px 30px; border-radius: 16px;
  background: var(--red-soft); border: 1px solid rgba(255,69,58,.35);
  text-shadow: 0 0 30px rgba(255,69,58,.3);
}
.verdict-text { font-size: 23px; font-weight: 500; color: var(--fg-2); }

/* ---- Gráfico / canvas ----------------------------------------------------- */
.chart-wrap {
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: var(--radius); padding: 12px 16px 10px;
  display: flex; flex-direction: column; gap: 8px;
  height: 100%; min-height: 0; overflow: hidden;
}
.chart-canvas-box { position: relative; flex: 1 1 auto; min-height: 0; width: 100%; }
.chart-caption { font-size: 13.5px; color: var(--fg-faint); text-align: center; letter-spacing: 0.02em; }

/* ---- Heatmap (CSS grid) --------------------------------------------------- */
.heatmap-wrap {
  background: var(--card); border: 1px solid var(--stroke);
  border-radius: var(--radius); padding: 12px 16px 10px;
  display: flex; flex-direction: column; gap: 9px; height: 100%; overflow: hidden;
}
.heatmap {
  display: grid; gap: 4px; flex: 1 1 auto;
  font-variant-numeric: tabular-nums;
}
.hm-cell {
  display: grid; place-items: center;
  border-radius: 7px; font-size: 14px; font-weight: 600;
  color: #0b0b0f;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.is-active .hm-cell { opacity: 1; transform: none; }
.hm-corner { background: transparent; color: var(--fg-3); font-weight: 600; font-size: 12px; opacity: 1; transform: none; }
.hm-head, .hm-rowhead {
  background: transparent; color: var(--fg-2); font-weight: 600; font-size: 12.5px;
  opacity: 1; transform: none;
}
.hm-cell.is-base { box-shadow: 0 0 0 3px var(--fg), 0 0 0 4px rgba(0,0,0,.4); z-index: 2; }
.heatmap-axis { font-size: 12px; color: var(--fg-3); text-align: center; letter-spacing: 0.04em; }

/* ---- Énfasis puntual: columna izq. del Valor terminal (g=3%) -------------- */
.tv-emphasis .col-left .subhead { font-size: 17px; }
.tv-emphasis .col-left .data-table { font-size: 19px; }
.tv-emphasis .col-left .data-table th,
.tv-emphasis .col-left .data-table td { padding: 10px 14px; }
.tv-emphasis .col-left .data-table thead th { font-size: 14px; }
.tv-emphasis .col-left .paragraph.small { font-size: 18px; }

/* ---- Simulador DCF inverso (reverseSim) ----------------------------------- */
/* Título a una sola línea (achicado para que entre el texto largo) */
.rsim-slide .slide-title { font-size: 38px; white-space: nowrap; }
.rsim { display: flex; flex-direction: column; gap: 10px; width: 100%; }

/* Selector de modo (un solo experimento a la vez) */
.rsim-modes { display: inline-flex; align-self: center; gap: 4px; padding: 4px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--stroke); border-radius: 999px; }
.rsim-mode { font: inherit; font-size: 15px; font-weight: 600; color: var(--fg-3); cursor: pointer;
  border: none; background: transparent; padding: 9px 22px; border-radius: 999px; transition: all .15s ease; }
.rsim-mode:hover { color: var(--fg-2); }
.rsim-mode.is-active { color: #fff; background: var(--grad-accent); box-shadow: 0 2px 12px rgba(10,132,255,.35); }

/* Control: slider de precio */
.rsim-control {
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  border: 1px solid var(--stroke); border-radius: var(--radius);
  padding: 12px 22px 8px;
}
.rsim-control-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.rsim-control-label { font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); }
.rsim-price { font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--fg);
  background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.rsim-slider {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet)); outline: none; cursor: pointer; margin: 4px 0 2px;
}
.rsim-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--blue); box-shadow: 0 2px 10px rgba(10,132,255,.5); cursor: pointer;
}
.rsim-slider::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 3px solid var(--blue);
  box-shadow: 0 2px 10px rgba(10,132,255,.5); cursor: pointer;
}
/* Marcas fijas del precio (Nuestra valuación 208 / Mercado hoy 312) */
.rsim-pmarks { position: relative; height: 42px; margin-top: 2px; }
.rsim-pmark { position: absolute; top: 0; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; }
.rsim-pmark-dot { width: 9px; height: 9px; border-radius: 50%; }
.rsim-pmark-ours .rsim-pmark-dot { background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.rsim-pmark-mkt .rsim-pmark-dot { background: var(--fg-3); box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.rsim-pmark-lbl { margin-top: 5px; font-size: 10.5px; line-height: 1.25; text-align: center; color: var(--fg-faint);
  text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.rsim-pmark-lbl b { display: block; font-size: 12px; letter-spacing: 0; text-transform: none; }
.rsim-pmark-ours .rsim-pmark-lbl, .rsim-pmark-ours .rsim-pmark-lbl b { color: var(--green); }
.rsim-pmark-mkt .rsim-pmark-lbl b { color: var(--fg-2); }

/* Cards de resultado: se muestra solo la del modo activo */
.rsim-card { display: none; position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--stroke); padding: 14px 22px 38px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)); }
.rsim-card.is-active { display: block; }
.rsim-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.rsim-card-wacc::before { background: var(--grad-blue); }
.rsim-card-g::before { background: var(--grad-amber); }
.rsim-card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.rsim-card-title { font-size: 17px; font-weight: 700; color: var(--fg); letter-spacing: -0.01em; }
.rsim-card-wacc .rsim-card-title::before { content: '◆ '; color: var(--blue-2); font-size: 0.7em; }
.rsim-card-g .rsim-card-title::before { content: '◆ '; color: var(--amber); font-size: 0.7em; }
/* Chip de variable fija (en gris, con candado) */
.rsim-fixed { font-size: 13px; font-weight: 600; color: var(--fg-faint); padding: 5px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px dashed var(--stroke-2); white-space: nowrap; }
.rsim-lock { opacity: .8; }

/* Ancla (nuestro supuesto, fijo) → implícito (grande, se mueve en vivo) */
.rsim-compare { display: flex; align-items: flex-end; gap: 16px; }
.rsim-mine, .rsim-impl { display: flex; flex-direction: column; gap: 4px; }
.rsim-mtag, .rsim-itag { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.rsim-mtag { color: var(--fg-faint); }
.rsim-itag { color: var(--fg-3); }
.rsim-mval { font-size: 26px; font-weight: 600; color: var(--fg-3); line-height: 1; letter-spacing: -0.02em; }
.rsim-ival { font-size: 52px; font-weight: 800; line-height: .92; letter-spacing: -0.03em; transition: color .15s ease; }
.rsim-card-wacc .rsim-ival { color: var(--blue-2); }
.rsim-card-g .rsim-ival { color: var(--amber); }
.rsim-ival.is-danger { color: var(--red); }
.rsim-arrow { font-size: 26px; color: var(--fg-faint); padding-bottom: 8px; }

.rsim-gap { display: inline-block; align-self: flex-start; margin-top: 12px; font-size: 13px; font-weight: 700;
  padding: 4px 12px; border-radius: 999px; }
.rsim-gap.is-bad { color: var(--red); background: var(--red-soft); border: 1px solid rgba(255,69,58,.3); }
.rsim-gap.is-warn { color: var(--amber); background: var(--amber-soft); border: 1px solid rgba(255,159,10,.3); }
.rsim-gap.is-good { color: var(--green); background: var(--green-soft); border: 1px solid rgba(48,209,88,.3); }

/* Barra de referencia con marcas */
.rsim-bar { position: relative; height: 8px; border-radius: 999px; background: rgba(255,255,255,0.08); margin-top: 20px; }
.rsim-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 999px; transition: width .15s ease; }
.rsim-bar-fill-wacc { background: linear-gradient(90deg, rgba(10,132,255,.25), var(--blue)); }
.rsim-bar-fill-g { background: linear-gradient(90deg, rgba(255,159,10,.25), var(--amber)); }
.rsim-mark { position: absolute; top: 50%; transform: translate(-50%, -50%); transition: left .15s ease; }
.rsim-mark-impl .rsim-mark-dot { display: block; width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 4px solid var(--blue); box-shadow: 0 0 0 3px rgba(0,0,0,.3); transition: border-color .15s ease; }
.rsim-card-g .rsim-mark-impl .rsim-mark-dot { border-color: var(--amber); }
.rsim-mark-impl.is-danger .rsim-mark-dot { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,69,58,.25); }
.rsim-mark-line { display: block; width: 2px; height: 18px; background: var(--fg-3); margin: 0 auto; }
.rsim-mark-lbl { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-size: 13px; font-weight: 600; color: var(--fg-3); }
.rsim-mark-danger .rsim-mark-line { background: var(--red); }
.rsim-mark-danger .rsim-mark-lbl { color: var(--red); }
.rsim-mark-ref2 .rsim-mark-line { background: var(--blue-2); }
.rsim-mark-ref2 .rsim-mark-lbl { color: var(--blue-2); }

/* Texto interpretativo — alto reservado para que el aviso rojo no mueva nada */
.rsim-read { display: flex; flex-direction: column; gap: 4px; min-height: 88px; }
.rsim-read p { font-size: 17px; line-height: 1.4; color: var(--fg-2); }
.rsim-read b { color: var(--fg); }
.rsim-read .t-blue { color: var(--blue-2); }
.rsim-read .t-amber { color: var(--amber); }
.rsim-read .is-danger-txt { color: var(--red); font-weight: 600; }

/* ===== Simulador interactivo: Monte Carlo ================================== */
.mcsim-slide .slide-title { font-size: 33px; }
.mcsim { display: flex; flex-direction: column; gap: 12px; width: 100%; }

/* Escenario: el canvas del histograma + overlay del botón / contador */
.mcsim-stage { position: relative; width: 100%; height: 300px; }
.mcsim-canvas { display: block; width: 100%; height: 100%; }

.mcsim-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: opacity .4s var(--ease), transform .4s var(--ease); }
.mcsim-overlay.is-hidden { opacity: 0; transform: scale(.92); pointer-events: none; }
.mcsim-run { font: inherit; font-size: 22px; font-weight: 700; color: #fff; cursor: pointer;
  padding: 18px 40px; border: none; border-radius: 999px; background: var(--grad-accent);
  box-shadow: 0 8px 30px rgba(10,132,255,.40); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.mcsim-run:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 12px 42px rgba(10,132,255,.58); }

/* Contador: píldora centrada arriba, legible sobre el gráfico y separada de las etiquetas */
.mcsim-counter { position: absolute; left: 50%; top: 8px; transform: translateX(-50%) translateY(-4px) scale(.96);
  font-size: 27px; font-weight: 800; letter-spacing: -.02em; color: var(--fg); white-space: nowrap;
  font-variant-numeric: tabular-nums; padding: 7px 20px; border-radius: 999px;
  background: rgba(8,10,16,.58); border: 1px solid var(--stroke);
  box-shadow: 0 10px 30px rgba(0,0,0,.45); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
  opacity: 0; transition: opacity .3s ease, transform .3s var(--ease); pointer-events: none; }
.mcsim-counter::after { content: ' escenarios'; font-size: 15px; font-weight: 600; color: var(--fg-3); }
.mcsim-counter.is-on { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }

.mcsim-skip { position: absolute; right: 2px; bottom: 0; font: inherit; font-size: 13px; color: var(--fg-3);
  background: none; border: none; cursor: pointer; text-decoration: underline; opacity: 0;
  transition: opacity .3s ease; pointer-events: none; }
.mcsim-skip.is-on { opacity: 1; pointer-events: auto; }
.mcsim-skip:hover { color: var(--fg-2); }

/* Resultado (reveal al terminar la animación) */
.mcsim-result { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px;
  opacity: 0; transform: translateY(10px) scale(.985); transition: opacity .6s var(--ease), transform .6s var(--ease);
  pointer-events: none; }
.mcsim-result.is-on { opacity: 1; transform: none; pointer-events: auto; }
.mcsim-pct { font-size: 88px; font-weight: 800; line-height: 1; letter-spacing: -.035em;
  background: linear-gradient(100deg, #22d3ee 0%, #6366f1 40%, #b14cf0 70%, #ff5d9e 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 6px 30px rgba(124,92,246,.5)) drop-shadow(0 0 10px rgba(34,211,238,.25)); }
.mcsim-lead { font-size: 19px; line-height: 1.35; color: var(--fg); max-width: 760px; font-weight: 500; }
.mcsim-foot { font-size: 14px; color: var(--fg-3); margin-top: 2px; }
.mcsim-foot b { color: var(--fg-2); font-weight: 700; }
.mcsim-rerun { margin-top: 10px; font: inherit; font-size: 14px; font-weight: 600; color: var(--fg-2);
  cursor: pointer; padding: 8px 18px; border: 1px solid var(--stroke-2); border-radius: 999px;
  background: var(--card); transition: background .2s ease, color .2s ease; }
.mcsim-rerun:hover { background: var(--card-2); color: var(--fg); }

/* ===== Slide Escenarios (tarjetas + número-línea) ========================= */
.scn { display: flex; flex-direction: column; gap: 26px; width: 100%; }

/* Tarjetas — una por escenario, acento de color a la izquierda */
.scn-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.scn-card { position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--stroke); padding: 20px 22px 16px;
  display: flex; flex-direction: column; gap: 10px; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.scn-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.scn-card.tone-red::before { background: var(--grad-red); }
.scn-card.tone-blue::before { background: var(--grad-blue); }
.scn-card.tone-green::before { background: var(--grad-green); }
.scn-card.is-base { background: var(--card-2); border-color: rgba(90,200,250,.35);
  box-shadow: 0 18px 46px rgba(10,132,255,.20); }

.scn-card-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 24px; }
.scn-name { font-size: 16px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.scn-card.tone-red .scn-name { color: #ff8079; }
.scn-card.tone-blue .scn-name { color: var(--blue-2); }
.scn-card.tone-green .scn-name { color: #5cf08a; }
.scn-badge { font-size: 10.5px; font-weight: 700; color: var(--blue-2); background: var(--blue-soft);
  border: 1px solid rgba(90,200,250,.32); padding: 3px 9px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .05em; }

.scn-price { font-size: 42px; font-weight: 800; letter-spacing: -.02em; color: var(--fg); line-height: 1; }
.scn-ret { display: inline-flex; align-items: baseline; gap: 6px; align-self: flex-start;
  font-size: 17px; font-weight: 800; padding: 5px 12px; border-radius: 999px; font-variant-numeric: tabular-nums; }
.scn-arrow { font-size: 13px; }
.scn-cap { font-size: 10.5px; font-weight: 600; color: var(--fg-3); text-transform: uppercase; letter-spacing: .05em; }
.scn-ret.is-neg { color: #ff8079; background: var(--red-soft); }
.scn-ret.is-pos { color: #5cf08a; background: var(--green-soft); }

.scn-params { display: flex; flex-direction: column; gap: 7px; margin-top: auto;
  border-top: 1px solid var(--stroke); padding-top: 12px; }
.scn-params li { display: flex; align-items: center; justify-content: space-between; }
.scn-params span { color: var(--fg-3); text-transform: uppercase; letter-spacing: .05em; font-size: 12px; font-weight: 700; }
.scn-params b { color: var(--fg-2); font-weight: 700; font-size: 15px; font-variant-numeric: tabular-nums; }

/* Número-línea de precios con marcador de mercado */
.scn-range { position: relative; padding: 32px 52px 0; }
.scn-track { position: relative; height: 8px; border-radius: 999px;
  background: linear-gradient(90deg, rgba(90,200,250,.45), rgba(10,132,255,.5) 38%, rgba(150,92,246,.45) 68%, rgba(255,159,10,.55)); }
.scn-dot { position: absolute; top: 50%; transform: translate(-50%, -50%); }
.scn-dot i { display: block; width: 16px; height: 16px; border-radius: 50%; border: 3px solid var(--bg-1); }
.scn-dot.tone-red i { background: var(--red); box-shadow: 0 0 0 3px rgba(255,69,58,.28); }
.scn-dot.tone-blue i { background: var(--blue); box-shadow: 0 0 0 4px rgba(10,132,255,.32); }
.scn-dot.tone-green i { background: var(--green); box-shadow: 0 0 0 3px rgba(48,209,88,.28); }
.scn-dot em { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-style: normal; font-size: 15px; font-weight: 700; color: var(--fg-2); font-variant-numeric: tabular-nums; }
.scn-mkt { position: absolute; top: -16px; bottom: -16px; width: 0; }
.scn-mkt i { position: absolute; top: 0; bottom: 0; left: 0; width: 3px; transform: translateX(-50%);
  background: var(--red); border-radius: 2px; box-shadow: 0 0 14px rgba(255,69,58,.65); }
.scn-mkt em { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); margin-bottom: 7px;
  white-space: nowrap; font-style: normal; font-size: 14px; font-weight: 800; color: #ff8079;
  text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.scn-axis { position: relative; height: 18px; margin-top: 36px; }
.scn-tick { position: absolute; transform: translateX(-50%); font-size: 12px; color: var(--fg-faint);
  font-variant-numeric: tabular-nums; }

.scn-note { font-size: 13px; color: var(--fg-faint); text-align: right; margin-top: 2px; }

/* ===== Barra apilada de proporción (qué pagás dentro del múltiplo) ========= */
.splitbar { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.sb-title { font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-3); }
.sb-bar { display: flex; flex-direction: column; height: clamp(220px, 30vh, 300px); width: 100%;
  border-radius: 14px; overflow: hidden; border: 1px solid var(--stroke); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.sb-seg { display: flex; flex-direction: column; justify-content: center; padding: 0 22px; position: relative;
  transform: scaleY(1); transform-origin: bottom; }
.sb-seg.tone-amber { background: linear-gradient(135deg, rgba(255,159,10,.24), rgba(255,159,10,.06)); color: #ffce7a; }
.sb-seg.tone-amber::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(255,159,10,.07) 9px, rgba(255,159,10,.07) 11px); }
.sb-seg.tone-green { background: linear-gradient(135deg, rgba(48,209,88,.22), rgba(48,209,88,.06)); color: #7be0a0;
  border-top: 1px solid var(--stroke); }
.sb-seg.tone-blue { background: linear-gradient(135deg, rgba(10,132,255,.22), rgba(10,132,255,.06)); color: var(--blue-2);
  border-top: 1px solid var(--stroke); }
.sb-lab { position: relative; z-index: 1; font-size: 16px; line-height: 1.3; font-weight: 700; }
.sb-sub { position: relative; z-index: 1; margin-top: 4px; font-size: 12.5px; color: var(--fg-2); opacity: .8; }

/* ===== Slide P/E: barra-escala como columna vertebral ===================== */
.pe-slide .slide-title { font-size: 34px; }
.pe-slide {
  background:
    radial-gradient(60% 46% at 50% 4%, rgba(255,159,10,.07), transparent 70%),
    radial-gradient(46% 52% at 9% 100%, rgba(48,209,88,.05), transparent 72%);
}
.pe-wrap { position: relative; display: flex; flex-direction: column; gap: 12px; height: 100%; width: 100%; }
/* atmósfera: grilla tenue que se desvanece hacia los bordes */
.pe-wrap::before {
  content: ''; position: absolute; inset: -16px; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask: radial-gradient(circle at 50% 46%, #000, transparent 78%);
          mask: radial-gradient(circle at 50% 46%, #000, transparent 78%);
}
.pe {
  position: relative; flex: 1; min-height: 0;
  display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: 1fr;
  column-gap: clamp(18px, 2.6vw, 44px); align-items: stretch;
}

/* columna vertebral */
.pe-spine { display: flex; flex-direction: column; align-items: center; gap: 12px; height: 100%; min-height: 0; }
.pe-hero { text-align: center; flex: 0 0 auto; }
.pe-hero-num {
  font-size: clamp(60px, 8vw, 100px); font-weight: 800; line-height: .9; letter-spacing: -.03em;
  background: linear-gradient(180deg, #ffffff 4%, var(--amber) 128%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 8px 28px rgba(255,159,10,.34)); font-variant-numeric: tabular-nums;
}
.pe-hero-lab { margin-top: 4px; font-size: 13px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--fg-3); }

/* escala numérica + barra comparten alto */
.pe-gauge { flex: 1 1 auto; min-height: 0; display: flex; align-items: stretch; gap: 12px; }
.pe-ticks { position: relative; width: 44px; }
.pe-tick { position: absolute; right: 0; transform: translateY(50%); font-size: 15px; font-weight: 600;
  color: var(--fg-3); font-variant-numeric: tabular-nums; }
.pe-tick-0 { transform: translateY(0); }

.pe-bar {
  position: relative; width: clamp(165px, 17vw, 215px); height: 100%;
  display: flex; flex-direction: column; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--stroke-2);
  box-shadow: 0 34px 70px -28px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,255,255,.06);
}
.pe-seg { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 0 18px; text-align: center; transform: scaleY(1); transform-origin: bottom; }
.pe-prima { background: linear-gradient(160deg, rgba(255,159,10,.32), rgba(255,159,10,.10)); color: #ffce7a; }
.pe-prima::after { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(45deg, transparent, transparent 9px, rgba(255,159,10,.10) 9px, rgba(255,159,10,.10) 11px); }
.pe-base { background: linear-gradient(160deg, rgba(48,209,88,.26), rgba(48,209,88,.08)); color: #7be0a0;
  border-top: 1px solid var(--stroke-2); }
.pe-seg-tag { position: relative; z-index: 1; font-size: 16px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.pe-seg-txt { position: relative; z-index: 1; margin-top: 8px; font-size: 18px; line-height: 1.34; font-weight: 600; color: var(--fg); opacity: .96; }

/* línea de referencia (20x) */
.pe-ref { position: absolute; left: -7px; right: -7px; height: 0; border-top: 2px dashed rgba(245,245,247,.55); z-index: 3; }
.pe-ref-lab { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: normal; text-align: center;
  max-width: 210px; background: rgba(8,10,14,.88); border: 1px solid var(--stroke-2); border-radius: 12px;
  padding: 6px 12px; font-size: 12.5px; line-height: 1.25; font-weight: 600; color: var(--fg);
  box-shadow: 0 8px 22px rgba(0,0,0,.55); }

/* flancos: interpretación y riesgo */
.pe-side { display: flex; height: 100%; align-items: center; }
.pe-side-l { justify-content: flex-end; }
.pe-side-r { justify-content: flex-start; }
.pe-interp { max-width: 32ch; font-size: 24px; line-height: 1.5; color: var(--fg-2); text-align: right; }
.pe-risk { max-width: 34ch; display: flex; gap: 13px; padding: 16px 18px; border-radius: 14px;
  background: rgba(224,121,95,.08); border: 1px solid rgba(255,69,58,.28); }
.pe-risk-dot { flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--red);
  margin-top: 8px; box-shadow: 0 0 0 4px rgba(255,69,58,.15); }
.pe-risk p { font-size: 21px; line-height: 1.46; color: var(--fg-2); }
.pe-risk-h { color: var(--red); font-weight: 700; }

/* pie */
.pe-foot { flex: 0 0 auto; text-align: center; font-size: 16px; color: var(--fg-2);
  padding-top: 6px; border-top: 1px solid var(--stroke); }

/* ===== Slide Objetivos del proyecto (diseño dedicado) ==================== */
.obj-slide { padding: 0; overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(10,132,255,.18), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(191,90,242,.13), transparent 31%),
    radial-gradient(circle at 70% 88%, rgba(90,200,250,.08), transparent 30%),
    linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 100%);
}
.obj-slide .slide-head, .obj-slide .slide-foot { display: none; }
.obj-slide .slide-body { position: relative; height: 100%; width: 100%; padding: 0; display: block; }
.obj-wrap { position: relative; height: 100%; width: 100%; }
.obj-wrap::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .62;
  background-image:
    linear-gradient(rgba(180,180,190,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180,180,190,.045) 1px, transparent 1px);
  background-size: 54px 54px; }
.obj-wrap::after { content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(10,132,255,.09), transparent 35%),
    linear-gradient(90deg, rgba(6,6,8,.64) 0%, transparent 18%, transparent 82%, rgba(6,6,8,.55) 100%); }
.obj-art { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.obj-content { position: relative; z-index: 3; height: 100%; padding: 40px 56px 34px;
  display: grid; grid-template-rows: auto 1fr auto; gap: 22px; }

.obj-kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--fg-2);
  font-size: 15px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.obj-kicker::before { content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 0 18px rgba(10,132,255,.48); }
.obj-h1 { margin: 8px 0 0; font-size: 62px; line-height: .96; letter-spacing: -.05em; font-weight: 800; }
.obj-h1 span { background: linear-gradient(135deg, var(--fg) 0%, var(--blue-2) 44%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }

.obj-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 1fr); gap: 16px; min-height: 0; }
.obj-card { position: relative; min-height: 0; padding: 18px 20px 16px; border-radius: 22px; overflow: hidden;
  background: linear-gradient(180deg, rgba(20,20,32,.98), rgba(20,20,32,.82));
  border: 1px solid rgba(180,180,190,.14);
  box-shadow: inset 0 1px 0 rgba(245,245,247,.06), 0 22px 42px rgba(0,0,0,.22); }
.obj-card::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2), var(--violet)); opacity: .88; }
.obj-card::after { content: ''; position: absolute; right: -72px; bottom: -72px; width: 188px; height: 188px;
  border-radius: 50%; background: radial-gradient(circle, rgba(10,132,255,.12), transparent 68%); pointer-events: none; }
.obj-card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.obj-num { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px;
  background: linear-gradient(135deg, var(--fg), var(--blue)); color: var(--bg-0);
  font-size: 17px; font-weight: 800; box-shadow: 0 12px 28px rgba(10,132,255,.25); }
.obj-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px;
  background: rgba(245,245,247,.045); border: 1px solid rgba(180,180,190,.12); }
.obj-icon svg { width: 25px; height: 25px; fill: none; stroke: var(--blue-2); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.obj-card-h { margin: 0 0 8px; color: var(--fg); font-size: 22px; line-height: 1.06; letter-spacing: -.025em; font-weight: 700; }
.obj-card-p { margin: 0; color: var(--fg-2); font-size: 15.5px; line-height: 1.42; }
.obj-card-p strong { color: var(--fg); font-weight: 700; }

.obj-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--fg-3);
  font-size: 14px; letter-spacing: .02em; padding-top: 8px; border-top: 1px solid rgba(180,180,190,.14); }
.obj-footer strong { color: var(--fg-2); font-weight: 700; }
.obj-pill { display: inline-flex; align-items: center; gap: 10px; padding: 9px 14px; border-radius: 999px;
  background: rgba(20,20,32,.72); border: 1px solid rgba(180,180,190,.13); color: var(--fg-2); white-space: nowrap; }
.obj-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px rgba(10,132,255,.5); }

/* ===== Slide Interpretación de la brecha (reusa el contenedor .obj-slide) = */
.gap-slide {
  background:
    radial-gradient(circle at 16% 12%, rgba(10,132,255,.16), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(191,90,242,.14), transparent 29%),
    radial-gradient(circle at 74% 90%, rgba(255,159,10,.075), transparent 28%),
    linear-gradient(135deg, var(--bg-0), var(--bg-1));
}
.gap-content { position: relative; z-index: 3; height: 100%; padding: 38px 52px 34px;
  display: grid; grid-template-rows: auto 1fr; gap: 22px; }
.gap-header { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; }
.gap-kicker { display: inline-flex; align-items: center; gap: 12px; color: var(--fg-2);
  font-size: 15px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.gap-kicker::before { content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-2)); box-shadow: 0 0 18px rgba(10,132,255,.48); }
.gap-h1 { margin: 8px 0 0; max-width: 880px; font-size: 54px; line-height: .98; letter-spacing: -.05em; font-weight: 800; }
.gap-h1 span { background: linear-gradient(135deg, var(--fg) 0%, var(--blue-2) 42%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }

.gap-thesis { width: 330px; padding: 16px 18px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,20,32,.98), rgba(20,20,32,.78));
  border: 1px solid rgba(180,180,190,.14); box-shadow: inset 0 1px 0 rgba(245,245,247,.06); }
.gap-thesis-label { margin-bottom: 10px; color: var(--fg-3); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gap-thesis-main { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.gap-side { min-width: 104px; }
.gap-side .name { color: var(--fg-2); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.gap-side .val { margin-top: 4px; color: var(--fg); font-size: 25px; font-weight: 800; letter-spacing: -.035em; }
.gap-arrow { flex: 1; height: 2px; position: relative; background: linear-gradient(90deg, var(--blue), var(--amber)); opacity: .9; }
.gap-arrow::after { content: ''; position: absolute; right: -1px; top: 50%; width: 10px; height: 10px;
  border-top: 2px solid var(--amber); border-right: 2px solid var(--amber); transform: translateY(-50%) rotate(45deg); }

.gap-blocks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; min-height: 0; }
.gap-card { position: relative; overflow: hidden; padding: 22px 22px 20px; border-radius: 24px;
  display: grid; grid-template-rows: auto auto 1fr; gap: 14px;
  background: linear-gradient(180deg, rgba(20,20,32,.99), rgba(20,20,32,.82));
  border: 1px solid rgba(180,180,190,.14); box-shadow: inset 0 1px 0 rgba(245,245,247,.06), 0 22px 44px rgba(0,0,0,.23); }
.gap-card::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; opacity: .95; }
.gap-card.rate::before { background: linear-gradient(90deg, var(--blue), var(--blue-2)); }
.gap-card.option::before { background: linear-gradient(90deg, var(--violet), var(--amber)); }
.gap-card.demand::before { background: linear-gradient(90deg, var(--blue), var(--green)); }
.gap-card::after { content: ''; position: absolute; right: -86px; bottom: -86px; width: 224px; height: 224px; border-radius: 50%; pointer-events: none; }
.gap-card.rate::after { background: radial-gradient(circle, rgba(10,132,255,.13), transparent 68%); }
.gap-card.option::after { background: radial-gradient(circle, rgba(191,90,242,.12), transparent 68%); }
.gap-card.demand::after { background: radial-gradient(circle, rgba(48,209,88,.09), transparent 68%); }
.gap-card-head { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.gap-num { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; color: var(--bg-0);
  font-size: 23px; font-weight: 800; box-shadow: 0 12px 28px rgba(10,132,255,.24); }
.gap-card.rate .gap-num { background: linear-gradient(135deg, var(--fg), var(--blue)); }
.gap-card.option .gap-num { background: linear-gradient(135deg, var(--fg), var(--violet)); }
.gap-card.demand .gap-num { background: linear-gradient(135deg, var(--fg), var(--green)); }
.gap-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px;
  background: rgba(245,245,247,.045); border: 1px solid rgba(180,180,190,.12); }
.gap-icon svg { width: 32px; height: 32px; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.gap-card.rate .gap-icon svg { stroke: var(--blue-2); }
.gap-card.option .gap-icon svg { stroke: var(--violet); }
.gap-card.demand .gap-icon svg { stroke: var(--green); }
.gap-card-title { position: relative; z-index: 2; }
.gap-eyebrow { margin-bottom: 8px; color: var(--fg-3); font-size: 13.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gap-card h2 { margin: 0; color: var(--fg); font-size: 25px; line-height: 1.02; letter-spacing: -.035em; font-weight: 800; }
.gap-body { position: relative; z-index: 2; display: grid; align-content: start; gap: 16px; }
.gap-rate-box { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gap-metric { padding: 15px 16px; border-radius: 16px; background: rgba(6,6,8,.36); border: 1px solid rgba(180,180,190,.12); }
.gap-metric .label { color: var(--fg-3); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.gap-metric .val { margin-top: 7px; color: var(--fg); font-size: 34px; line-height: 1; font-weight: 800; letter-spacing: -.045em; }
.gap-metric.market .val { color: var(--green); }
.gap-metric.model .val { color: var(--amber); }
.gap-copy { margin: 0; color: var(--fg-2); font-size: 19px; line-height: 1.5; }
.gap-copy strong { color: var(--fg); font-weight: 700; }
.gap-quote { padding: 16px 17px; border-left: 3px solid var(--amber); border-radius: 14px;
  background: rgba(255,159,10,.07); color: var(--fg-2); font-size: 18px; line-height: 1.46; }
.gap-two-forces { display: grid; gap: 13px; }
.gap-force { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 15px 16px; border-radius: 16px;
  background: rgba(6,6,8,.34); border: 1px solid rgba(180,180,190,.11); }
.gap-force-dot { width: 14px; height: 14px; margin-top: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px rgba(10,132,255,.45); }
.gap-force:nth-child(2) .gap-force-dot { background: var(--green); box-shadow: 0 0 14px rgba(48,209,88,.32); }
.gap-force h3 { margin: 0 0 5px; color: var(--fg); font-size: 19px; line-height: 1.12; font-weight: 800; letter-spacing: -.015em; }
.gap-force p { margin: 0; color: var(--fg-2); font-size: 18px; line-height: 1.44; }

/* ===== Slide Conclusión (Precio ≠ Valor) — full-bleed 1280x720 =========== */
.conc-slide { padding: 0; overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(10,132,255,.25), transparent 34%),
    radial-gradient(circle at 16% 82%, rgba(10,132,255,.14), transparent 30%),
    linear-gradient(135deg, #0d0d12 0%, #101018 46%, #08080c 100%);
}
.conc-slide .slide-head, .conc-slide .slide-foot { display: none; }
.conc-slide .slide-body { position: relative; height: 100%; width: 100%; padding: 0; display: block; }

.conc-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .45;
  background-image:
    linear-gradient(rgba(245,245,247,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,247,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at center, #000 35%, transparent 82%);
          mask-image: radial-gradient(circle at center, #000 35%, transparent 82%); }
.conc-orb { position: absolute; z-index: 0; width: 520px; height: 520px; right: -170px; top: -130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(10,132,255,.34), rgba(10,132,255,.05) 55%, transparent 70%); filter: blur(2px); }
.conc-halo { position: absolute; z-index: 0; width: 460px; height: 460px; left: -140px; bottom: -190px; border-radius: 50%;
  border: 1px solid rgba(10,132,255,.18); box-shadow: 0 0 80px rgba(10,132,255,.10), inset 0 0 90px rgba(10,132,255,.06); }
.conc-corner { position: absolute; z-index: 2; top: 30px; right: 38px; font-size: 12px; color: rgba(245,245,247,.36);
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.conc-content { position: relative; z-index: 2; height: 100%; padding: 56px 68px 48px;
  display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 34px; align-items: center; }

.conc-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 10px;
  color: rgba(245,245,247,.72); font-size: 14px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.conc-eyebrow::before { content: ''; width: 44px; height: 2px; background: var(--blue); box-shadow: 0 0 18px rgba(10,132,255,.8); }
.conc-h1 { font-size: 56px; line-height: .95; letter-spacing: -.06em; font-weight: 800; margin-bottom: 24px; }
.conc-highlight { color: var(--blue); text-shadow: 0 0 28px rgba(10,132,255,.28); }
.conc-thesis { max-width: 560px; font-size: 24px; line-height: 1.22; letter-spacing: -.03em; color: rgba(245,245,247,.88); margin-bottom: 28px; }
.conc-thesis strong { color: var(--fg); font-weight: 700; }
.conc-decision-card { width: 100%; max-width: 585px; padding: 24px 26px; border-radius: 26px;
  background: linear-gradient(135deg, rgba(245,245,247,.11), rgba(245,245,247,.035));
  border: 1px solid rgba(245,245,247,.13); box-shadow: 0 24px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08); }
.conc-decision-label { color: rgba(245,245,247,.56); font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 10px; }
.conc-decision-text { font-size: 27px; line-height: 1.16; letter-spacing: -.04em; font-weight: 700; }
.conc-decision-text strong { font-weight: 800; }

.conc-right { display: grid; align-items: center; }
.conc-panel { position: relative; width: 100%; padding: 28px; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, rgba(245,245,247,.11), rgba(245,245,247,.03));
  border: 1px solid rgba(245,245,247,.11); box-shadow: 0 24px 80px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.08); }
.conc-panel::before { content: ''; position: absolute; inset: -1px; pointer-events: none;
  background: radial-gradient(circle at 74% 22%, rgba(10,132,255,.24), transparent 34%),
    linear-gradient(135deg, transparent 0%, rgba(10,132,255,.07) 100%); }
.conc-mini-title { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; gap: 12px; font-size: 13px; color: rgba(245,245,247,.64); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.conc-badge { padding: 7px 11px; border-radius: 999px; color: var(--blue); background: rgba(10,132,255,.11);
  border: 1px solid rgba(10,132,255,.24); letter-spacing: .04em; white-space: nowrap; }
.conc-price-row { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: stretch; margin-bottom: 18px; }
.conc-price-box { padding: 18px 18px 16px; border-radius: 22px; background: rgba(13,13,18,.72); border: 1px solid rgba(245,245,247,.09); min-width: 0; }
.conc-price-box.conc-market { border-color: rgba(10,132,255,.42); box-shadow: 0 0 34px rgba(10,132,255,.10); }
.conc-price-label { font-size: 12px; color: rgba(245,245,247,.56); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.conc-price { font-size: 44px; line-height: .95; letter-spacing: -.07em; font-weight: 800; font-variant-numeric: tabular-nums; }
.conc-price-box.conc-market .conc-price { color: var(--blue); text-shadow: 0 0 24px rgba(10,132,255,.30); }
.conc-arrow { width: 44px; height: 44px; align-self: center; display: grid; place-items: center; border-radius: 50%;
  color: var(--blue); background: rgba(10,132,255,.11); border: 1px solid rgba(10,132,255,.28); box-shadow: 0 0 26px rgba(10,132,255,.14); }
.conc-gapcard { position: relative; z-index: 1; padding: 18px 18px 16px; border-radius: 22px;
  background: rgba(245,245,247,.05); border: 1px solid rgba(245,245,247,.08); }
.conc-gapcard-title { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
  font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.conc-gapcard-title span:last-child { color: var(--blue); font-weight: 800; font-variant-numeric: tabular-nums; }
.conc-gap-labels { display: flex; justify-content: space-between; margin-bottom: 9px; font-size: 11px;
  color: rgba(245,245,247,.50); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.conc-bar { position: relative; height: 14px; border-radius: 999px; background: rgba(245,245,247,.1);
  border: 1px solid rgba(245,245,247,.06); overflow: hidden; margin-bottom: 12px; }
.conc-barfill { position: absolute; inset: 0; width: 67%; border-radius: inherit; transform-origin: left;
  background: linear-gradient(90deg, rgba(245,245,247,.36), var(--blue)); box-shadow: 0 0 28px rgba(10,132,255,.34); }
.conc-gapcopy { font-size: 15px; line-height: 1.28; letter-spacing: -.02em; color: rgba(245,245,247,.74); }
.conc-footer-line { position: absolute; left: 68px; right: 68px; bottom: 30px; height: 1px; z-index: 2; opacity: .65;
  background: linear-gradient(90deg, transparent, rgba(10,132,255,.65), transparent); }

/* ===== Slide cierre: cita de Graham (balanza) — full-bleed 1280x720 ====== */
.conc2-slide { padding: 0; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(10,132,255,.24), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(10,132,255,.18), transparent 26%),
    radial-gradient(circle at 84% 78%, rgba(10,132,255,.12), transparent 28%),
    linear-gradient(135deg, #0d0d12 0%, #09090d 52%, #101018 100%);
}
.conc2-slide .slide-head, .conc2-slide .slide-foot { display: none; }
.conc2-slide .slide-body { position: relative; height: 100%; width: 100%; padding: 0; display: block; }
.conc2-slide::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(rgba(245,245,247,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,247,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 74%);
          mask-image: radial-gradient(circle at center, #000 0%, transparent 74%); }
.conc2-slide::after { content: ''; position: absolute; inset: 26px; border: 1px solid rgba(245,245,247,.10); border-radius: 30px; pointer-events: none; z-index: 10; }

.conc2-orbit { position: absolute; width: 820px; height: 820px; left: 50%; top: 50%; transform: translate(-50%,-50%);
  border: 1px solid rgba(10,132,255,.18); border-radius: 50%; filter: drop-shadow(0 0 60px rgba(10,132,255,.16)); opacity: .85; z-index: 0; }
.conc2-orbit::before, .conc2-orbit::after { content: ''; position: absolute; border-radius: 50%; inset: 90px; border: 1px solid rgba(245,245,247,.055); }
.conc2-orbit::after { inset: 178px; border-color: rgba(10,132,255,.16); }
.conc2-ticker { position: absolute; left: -3%; right: -3%; top: 64%; height: 170px; opacity: .42; z-index: 0; }
.conc2-dot { position: absolute; width: 9px; height: 9px; border-radius: 999px; background: var(--blue); box-shadow: 0 0 28px rgba(10,132,255,.95); z-index: 1; }
.conc2-dot-1 { left: 13%; top: 23%; } .conc2-dot-2 { right: 18%; bottom: 19%; opacity: .8; } .conc2-dot-3 { left: 71%; top: 50%; width: 5px; height: 5px; opacity: .65; }

.conc2-content { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; padding: 6% 9%; text-align: center; }
.conc2-quotebox { position: relative; max-width: 1120px; padding: 48px 60px 40px; }
.conc2-quotebox::before { content: ''; position: absolute; inset: 0; border-radius: 34px; z-index: -1;
  background: linear-gradient(180deg, rgba(245,245,247,.07), rgba(245,245,247,.025)), radial-gradient(circle at 50% 0%, rgba(10,132,255,.18), transparent 58%);
  border: 1px solid rgba(245,245,247,.10); box-shadow: 0 28px 90px rgba(0,0,0,.38), inset 0 1px 0 rgba(245,245,247,.08); backdrop-filter: blur(10px); }
.conc2-quotebox::after { content: ''; position: absolute; left: 50%; top: 0; width: 58%; height: 2px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--blue), transparent); box-shadow: 0 0 24px rgba(10,132,255,.85); opacity: .9; }
.conc2-scale { position: absolute; right: 28px; top: 22px; width: 74px; height: 74px; opacity: .48; filter: drop-shadow(0 0 14px rgba(10,132,255,.16)); z-index: 1; pointer-events: none; }
.conc2-scale path, .conc2-scale line, .conc2-scale circle { fill: none; stroke: rgba(245,245,247,.46); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.conc2-scale .blue { stroke: var(--blue); opacity: .95; }

.conc2-quote { position: relative; z-index: 2; font-family: Georgia, "Times New Roman", serif; font-size: 60px;
  line-height: 1.12; font-weight: 500; font-style: italic; letter-spacing: -.04em; color: var(--fg); text-wrap: balance; text-shadow: 0 8px 34px rgba(0,0,0,.42); }
.conc2-hl { color: var(--blue); text-shadow: 0 0 32px rgba(10,132,255,.36); }
.conc2-author { position: relative; z-index: 2; margin-top: 30px; font-size: 25px; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(245,245,247,.62); font-weight: 500; }

/* máquina de escribir: cada carácter aparece en secuencia */
.tw-c { opacity: 0; }
.conc2-author { opacity: 0; }

/* ===== Slide Perspectiva 2026 (catalizadores vs riesgos) — full-bleed ==== */
/* Calmado: usa el fondo global del deck (sin navy/aurora/órbita/grilla propia) */
.p26-slide { padding: 0; overflow: hidden; }
.p26-slide .slide-head, .p26-slide .slide-foot { display: none; }
.p26-slide .slide-body { position: relative; height: 100%; width: 100%; padding: 0; display: block; }

.p26-content { position: relative; z-index: 2; height: 100%; padding: 38px 56px 32px;
  display: grid; grid-template-rows: auto 1fr auto; gap: 18px; }
.p26-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.p26-eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1px solid rgba(10,132,255,.34);
  border-radius: 999px; background: rgba(10,132,255,.10); color: rgba(245,245,247,.86); font-size: 15px;
  letter-spacing: .12em; text-transform: uppercase; font-weight: 700; }
.p26-eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 22px var(--blue); }
.p26-h1 { margin: 12px 0 0; font-size: 72px; line-height: .88; letter-spacing: -.075em; font-weight: 800; }
.p26-title-gradient { display: inline-block; padding-right: .14em; background: linear-gradient(90deg, var(--fg) 0%, #b7d9ff 45%, var(--blue) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.p26-year-pill { flex: 0 0 auto; display: grid; place-items: center; width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(245,245,247,.18);
  background: radial-gradient(circle at 35% 26%, rgba(255,255,255,.22), transparent 28%), linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 0 56px rgba(10,132,255,.20), 0 20px 70px rgba(0,0,0,.35); backdrop-filter: blur(12px); }
.p26-year-pill svg { width: 64%; height: 64%; overflow: visible; }

.p26-main { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; min-height: 0; }
.p26-panel { position: relative; overflow: hidden; border: 1px solid var(--stroke); border-radius: 22px;
  background: var(--card-2); box-shadow: 0 18px 40px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05); }
.p26-panel.p26-catalysts { border-color: rgba(10,132,255,.28); }
.p26-panel.p26-risks { border-color: rgba(255,204,102,.24); }
.p26-panel::before { content: none; }
.p26-catalysts::before { background: radial-gradient(circle at top left, rgba(10,132,255,.24), transparent 44%); }
.p26-risks::before { background: radial-gradient(circle at top right, rgba(255,204,102,.18), transparent 44%); }
.p26-panel-inner { position: relative; height: 100%; padding: 22px 26px; display: grid; grid-template-rows: auto 1fr; gap: 16px; }
.p26-panel-title { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(245,245,247,.12); }
.p26-panel-title h2 { margin: 0; display: flex; align-items: center; gap: 14px; font-size: 30px; line-height: 1; letter-spacing: -.045em; font-weight: 800; }
.p26-emoji { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; font-size: 26px; background: rgba(255,255,255,.08); box-shadow: inset 0 1px 0 rgba(255,255,255,.12); }
.p26-catalysts .p26-emoji { box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 36px rgba(10,132,255,.22); }
.p26-risks .p26-emoji { box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 36px rgba(255,204,102,.17); }
.p26-spark { width: 132px; opacity: .9; }
.p26-items { display: grid; gap: 14px; align-content: center; }
.p26-item { position: relative; display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start;
  padding: 14px 16px; border: 1px solid rgba(245,245,247,.10); border-radius: 20px; background: rgba(255,255,255,.052); }
.p26-item::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(90deg, rgba(255,255,255,.09), transparent 35%); opacity: .45; pointer-events: none; }
.p26-catalysts .p26-item { box-shadow: -10px 0 0 -8px var(--blue); }
.p26-risks .p26-item { box-shadow: -10px 0 0 -8px #ffcc66; }
.p26-icon { position: relative; z-index: 1; width: 46px; height: 46px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.11); }
.p26-icon svg { width: 26px; height: 26px; }
.p26-catalysts .p26-icon { background: rgba(10,132,255,.18); border-color: rgba(10,132,255,.30); }
.p26-risks .p26-icon { background: rgba(255,204,102,.15); border-color: rgba(255,204,102,.26); }
.p26-item-text { position: relative; z-index: 1; }
.p26-lead { margin: 0 0 5px; font-size: 21px; line-height: 1.05; letter-spacing: -.035em; font-weight: 800; }
.p26-detail { margin: 0; color: rgba(245,245,247,.68); font-size: 15.5px; line-height: 1.26; font-weight: 500; letter-spacing: -.01em; }
.p26-hl-blue { color: #9ccdff; }
.p26-hl-risk { color: #ffe0a3; }

/* Catalizadores tiene 2 ítems y sobra espacio → fuente/aire más grandes */
.p26-catalysts .p26-items { gap: 22px; }
.p26-catalysts .p26-item { padding: 22px 22px; grid-template-columns: 54px 1fr; }
.p26-catalysts .p26-icon { width: 54px; height: 54px; border-radius: 17px; }
.p26-catalysts .p26-icon svg { width: 30px; height: 30px; }
.p26-catalysts .p26-lead { font-size: 28px; margin-bottom: 8px; }
.p26-catalysts .p26-detail { font-size: 19.5px; line-height: 1.32; }
.p26-footer { display: flex; align-items: center; justify-content: center; }
.p26-thesis-line { position: relative; width: min(880px, 76%); height: 1px; background: linear-gradient(90deg, transparent, rgba(245,245,247,.22), transparent); }
.p26-thesis-line::before { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 34px 12px rgba(10,132,255,.20); }

/* ===== Slide "La empresa" (diseño dedicado) — full-bleed 1280x720 ======== */
.emp-slide { padding: 0; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(circle at 78% 24%, rgba(10,132,255,.42) 0%, rgba(10,132,255,.16) 24%, transparent 46%),
    radial-gradient(circle at 18% 84%, rgba(10,132,255,.24) 0%, transparent 38%),
    linear-gradient(135deg, #0d0d12 0%, #101018 42%, #07070b 100%);
}
.emp-slide .slide-head, .emp-slide .slide-foot { display: none; }
.emp-slide .slide-body { position: relative; height: 100%; width: 100%; padding: 0; display: block; }
.emp-slide::before { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .72;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 73%);
          mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 73%); }
.emp-slide::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13,13,18,.86) 0%, rgba(13,13,18,.56) 48%, rgba(13,13,18,.18) 100%),
    radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,.52) 100%); }
.emp-orb { position: absolute; width: 600px; height: 600px; right: -110px; top: -70px; border-radius: 50%; z-index: 1; opacity: .82; filter: blur(1px);
  background: radial-gradient(circle at 36% 30%, rgba(255,255,255,.72) 0%, rgba(255,255,255,.10) 16%, transparent 28%), radial-gradient(circle at 50% 50%, rgba(10,132,255,.54) 0%, rgba(10,132,255,.18) 42%, transparent 70%); }
.emp-orb::before { content: ''; position: absolute; inset: 64px; border-radius: inherit; border: 1px solid rgba(245,245,247,.18); box-shadow: inset 0 0 80px rgba(255,255,255,.08), 0 0 120px rgba(10,132,255,.24); }
.emp-rings { position: absolute; width: 600px; height: 600px; top: -6px; right: -34px; z-index: 1; opacity: .74; pointer-events: none; }

.emp-content { position: relative; z-index: 2; height: 100%; padding: 46px 60px 40px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; }
.emp-left { display: flex; flex-direction: column; justify-content: flex-start; gap: 26px; min-width: 0; position: relative; z-index: 2; }
.emp-tag { display: inline-flex; align-items: center; gap: 10px; width: fit-content; padding: 9px 14px; border: 1px solid rgba(10,132,255,.34); border-radius: 999px; background: rgba(10,132,255,.11); color: rgba(245,245,247,.88); font-size: 14px; letter-spacing: .04em; font-weight: 650; backdrop-filter: blur(18px); box-shadow: 0 0 32px rgba(10,132,255,.12); }
.emp-tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.emp-h1 { margin: 22px 0 0; font-size: 96px; line-height: .86; letter-spacing: -.075em; font-weight: 800; }
.emp-subtitle { margin: 16px 0 0; font-size: 25px; line-height: 1.14; color: rgba(245,245,247,.72); font-weight: 500; letter-spacing: -.025em; }
.emp-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.emp-kpi { position: relative; min-height: 0; padding: 16px 15px 14px; border-radius: 20px; border: 1px solid var(--stroke); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.052)); box-shadow: 0 22px 40px rgba(0,0,0,.23), inset 0 1px 0 rgba(255,255,255,.13); backdrop-filter: blur(20px); }
.emp-kpi::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 22% 0%, rgba(10,132,255,.20), transparent 45%); opacity: .7; pointer-events: none; }
.emp-kpi-value { position: relative; z-index: 1; font-size: 23px; line-height: .96; letter-spacing: -.055em; font-weight: 800; color: var(--fg); white-space: nowrap; }
.emp-kpi-label { position: relative; z-index: 1; margin-top: 10px; font-size: 12px; line-height: 1.2; color: rgba(245,245,247,.62); font-weight: 650; text-transform: uppercase; letter-spacing: .1em; }

.emp-feature { position: relative; width: 100%; padding: 22px 26px; border-radius: 28px; border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.065)), rgba(11,12,18,.62);
  box-shadow: 0 30px 80px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.18); backdrop-filter: blur(24px); }
.emp-feature-kicker { display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.emp-feature-kicker::before { content: ''; width: 38px; height: 2px; border-radius: 999px; background: var(--blue); box-shadow: 0 0 18px var(--blue); }
.emp-feature-title { margin-top: 10px; font-size: 34px; line-height: .98; letter-spacing: -.055em; font-weight: 800; }
.emp-feature-text { margin-top: 12px; color: rgba(245,245,247,.73); font-size: 17px; line-height: 1.35; letter-spacing: -.022em; font-weight: 500; }
.emp-feature-text strong { color: var(--fg); font-weight: 800; }

.emp-right { position: relative; }
.emp-stage { position: relative; width: 100%; height: 100%; }
.emp-apple { position: absolute; width: 330px; height: 330px; top: 6px; right: 4px; opacity: .76; z-index: 1; filter: drop-shadow(0 34px 96px rgba(10,132,255,.34)); }
.emp-phone { position: absolute; width: 222px; height: 440px; right: 40px; top: 84px; border-radius: 42px; z-index: 2; transform: rotate(-8deg);
  background: linear-gradient(145deg, rgba(255,255,255,.22), rgba(255,255,255,.03) 36%, rgba(10,132,255,.10)), #101016;
  border: 1px solid rgba(255,255,255,.26); box-shadow: 0 34px 90px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.35), inset 0 -16px 40px rgba(0,0,0,.32); }
.emp-phone::before { content: ''; position: absolute; inset: 10px; border-radius: 34px; border: 1px solid rgba(255,255,255,.08);
  background: radial-gradient(circle at 58% 18%, rgba(10,132,255,.58), transparent 30%), radial-gradient(circle at 26% 72%, rgba(10,132,255,.30), transparent 36%), linear-gradient(160deg, #15151c, #08080d 76%); }
.emp-phone::after { content: ''; position: absolute; top: 18px; left: 50%; width: 70px; height: 21px; border-radius: 999px; transform: translateX(-50%); background: #030305; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.emp-connector { position: absolute; width: 230px; height: 116px; left: 36px; top: 300px; opacity: .84; z-index: 1; }
.emp-pill { position: absolute; display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.075); color: rgba(245,245,247,.82); font-size: 12px; font-weight: 700; letter-spacing: .02em; backdrop-filter: blur(14px); box-shadow: 0 16px 40px rgba(0,0,0,.26); z-index: 4; white-space: nowrap; }
.emp-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 14px var(--blue); }
.emp-pill-1 { right: 130px; top: 70px; } .emp-pill-2 { right: 8px; top: 470px; } .emp-pill-3 { left: 24px; top: 184px; }
.emp-footer-line { position: absolute; left: 60px; right: 60px; bottom: 30px; height: 1px; z-index: 2; opacity: .58;
  background: linear-gradient(90deg, rgba(10,132,255,0), rgba(10,132,255,.70), rgba(245,245,247,0)); }

/* ===== Slide CAPM · Beta (13): columna izquierda más grande y con vida ==== */
.beta-slide .col-left { justify-content: center; gap: 30px; }
.beta-slide .stats { gap: 18px; }
.beta-slide .stat-card { padding: 32px 28px; border-radius: 22px; }
.beta-slide .stat-value { font-size: 54px; line-height: 1; letter-spacing: -.02em; }
.beta-slide .stat-card.accent-blue .stat-value { color: var(--blue-2); text-shadow: 0 0 30px rgba(90,200,250,.30); }
.beta-slide .stat-card.accent-green .stat-value { color: #5cf08a; text-shadow: 0 0 30px rgba(48,209,88,.28); }
.beta-slide .stat-label { font-size: 16.5px; line-height: 1.42; margin-top: 14px; }
.beta-slide .note { padding: 24px 26px; border-radius: 20px; }
.beta-slide .note-title { font-size: 15px; }
.beta-slide .note-text { font-size: 23px; line-height: 1.45; }

/* ===== Slide Blume (14): más grande y con color, llena el espacio ======== */
.blume-slide .slide-body { gap: 26px; }
.blume-slide .stats { gap: 20px; max-width: 920px; align-self: center; width: 100%; margin-inline: auto; }
.blume-slide .formula, .blume-slide .paragraph { align-self: center; margin-inline: auto; }
.blume-slide .stat-card.accent-amber .stat-value { color: var(--amber); text-shadow: 0 0 30px rgba(255,159,10,.30); }
.blume-slide .stat-card { padding: 34px 30px; border-radius: 22px; }
.blume-slide .stat-value { font-size: 58px; line-height: 1; letter-spacing: -.02em; }
.blume-slide .stat-card.accent-blue .stat-value { color: var(--blue-2); text-shadow: 0 0 30px rgba(90,200,250,.30); }
.blume-slide .stat-card.accent-green .stat-value { color: #5cf08a; text-shadow: 0 0 30px rgba(48,209,88,.28); }
.blume-slide .stat-label { font-size: 17px; line-height: 1.42; margin-top: 14px; }
.blume-slide .formula { font-size: 30px; padding: 18px 26px; }
.blume-slide .paragraph { font-size: 22px; line-height: 1.5; max-width: 920px; }

/* ===== Slide "Los flujos a descontar" (21): columna izquierda más grande = */
.flows-slide .col-left { justify-content: center; gap: 26px; }
.flows-slide .stat-value { font-size: 56px; line-height: 1; letter-spacing: -.02em; }
.flows-slide .stat-card.accent-green .stat-value { color: #5cf08a; text-shadow: 0 0 30px rgba(48,209,88,.28); }
.flows-slide .stat-label { font-size: 18px; line-height: 1.4; margin-top: 12px; }
.flows-slide .stat-desc { font-size: 15.5px; margin-top: 6px; }
.flows-slide .note { padding: 24px 26px; border-radius: 20px; }
.flows-slide .note-title { font-size: 17px; }
.flows-slide .note-text { font-size: 21px; line-height: 1.5; }

/* ===== Slide "Una sola fuente de verdad" (11): más grande y con color ==== */
.src-slide .slide-body { gap: 30px; justify-content: center; }
.src-slide .stats { gap: 22px; }
.src-slide .stat-card { padding: 36px 28px; border-radius: 22px; }
.src-slide .stat-value { font-size: 60px; line-height: 1; letter-spacing: -.02em; }
.src-slide .stat-card.accent-blue .stat-value { color: var(--blue-2); text-shadow: 0 0 30px rgba(90,200,250,.30); }
.src-slide .stat-card.accent-green .stat-value { color: #5cf08a; text-shadow: 0 0 30px rgba(48,209,88,.28); }
.src-slide .stat-card.accent-amber .stat-value { color: var(--amber); text-shadow: 0 0 30px rgba(255,159,10,.28); }
.src-slide .stat-label { font-size: 17px; line-height: 1.4; margin-top: 14px; }
.src-slide .note { padding: 26px 30px; border-radius: 20px; max-width: 1080px; align-self: center; margin-inline: auto; }
.src-slide .note-title { font-size: 18px; }
.src-slide .note-text { font-size: 21px; line-height: 1.5; }

/* ===== Slide "El dato que manda" (6): texto más grande + stats de margen = */
.dato-slide .col-left { justify-content: center; gap: 22px; }
.dato-slide .lead { font-size: 30px; line-height: 1.24; }
.dato-slide .paragraph { font-size: 21px; line-height: 1.45; }
.dato-slide .stats { gap: 16px; }
.dato-slide .stat-card { padding: 24px 24px; border-radius: 20px; }
.dato-slide .stat-value { font-size: 50px; line-height: 1; letter-spacing: -.02em; }
.dato-slide .stat-card.accent-green .stat-value { color: #5cf08a; text-shadow: 0 0 30px rgba(48,209,88,.28); }
.dato-slide .stat-card.accent-blue .stat-value { color: var(--blue-2); text-shadow: 0 0 30px rgba(90,200,250,.30); }
.dato-slide .stat-label { font-size: 15px; line-height: 1.35; margin-top: 10px; }

/* ===== Slide "Sensibilidad WACC × g" (27): bullets más grandes =========== */
.sensg-slide .col-left { justify-content: center; gap: 26px; }
.sensg-slide .b-label { font-size: 17px; }
.sensg-slide .b-text { font-size: 22px; line-height: 1.46; }

/* ===== Slide "La intuición del FFD" (20): cuerpo más grande (no el título) = */
.ffd-slide .col-eyebrow { font-size: 15px; }
.ffd-slide .col-title { font-size: 30px; }
.ffd-slide .col-list .li, .ffd-slide .col-list .b-text, .ffd-slide .columns .li { font-size: 20px; line-height: 1.45; }
.ffd-slide .columns { gap: 30px; }
.ffd-slide .formula { font-size: 26px; line-height: 1.5; padding: 22px 28px; }

/* ===== Slide EV → precio (25): bloques más grandes para llenar el espacio = */
.ev-slide .slide-body { gap: 30px; }
.ev-slide .note { padding: 26px 30px; border-radius: 20px; max-width: 1000px; }
.ev-slide .note-title { font-size: 17px; }
.ev-slide .note-text { font-size: 23px; line-height: 1.5; }
.ev-slide .stats { gap: 22px; max-width: 1060px; }
.ev-slide .stat-card { padding: 34px 28px; border-radius: 22px; display: flex; flex-direction: column; justify-content: center; }
.ev-slide .stat-value { font-size: 56px; line-height: 1; letter-spacing: -.02em; }
.ev-slide .stat-card.accent-green .stat-value { color: #5cf08a; text-shadow: 0 0 30px rgba(48,209,88,.28); }
.ev-slide .stat-card.accent-amber .stat-value { color: var(--amber); text-shadow: 0 0 30px rgba(255,159,10,.28); }
.ev-slide .stat-label { font-size: 16.5px; line-height: 1.4; margin-top: 14px; }
