 /* ─── Reset & Base ─────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:           #f8f6f1;
      --surface:      #ffffff;
      --ink:          #111111;
      --ink-muted:    #555555;
      --ink-faint:    #999999;
      --border:       #e0ddd5;
      --accent:       #c0392b;
      --accent-dark:  #922b21;
      --rule:         #111111;
      --font-serif:   "ivypresto-headline", 'Georgia', serif;
      --font-sans:    'Roboto', 'Helvetica Neue', Arial, sans-serif;
      --label-w:      148px;
      --track-h:      10px;
      --row-gap:      28px;
      --player-h:     72px;
    }

    body {
      background: #fff;
      color: var(--ink);
      font-family: var(--font-sans);
      font-size: 14px;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }
    body.player-sticky { padding-bottom: var(--player-h); }

    /* ─── Sección principal ────────────────────────────── */
    .timeline-section {
      background-color: #fff;
          margin-top: 50px;
        border-top: 1px solid var(--border);
    }
    .ctn-timeline{
      max-width: 960px;
      margin: 0 auto;
      padding: 60px 24px 40px;
    }

    /* ─── Header ───────────────────────────────────────── */
    .section-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(24px, 4vw, 38px);
      font-weight: 400;
      line-height: 1.15;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .section-sub {
      font-size: 13px;
      color: var(--ink-muted);
      margin-bottom: 32px;
    }
    .divider {
      border: none;
      border-top: 2px solid var(--rule);
      margin-bottom: 32px;
    }


    /* ─── Leyenda ───────────────────────────────────────── */
    .legend {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 28px;
      margin-bottom: 36px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--border);
    }
    .legend-group-label {
      width: 100%;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-faint);
      margin-bottom: -6px;
    }
    .legend-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 12px; color: var(--ink-muted); cursor: default;
    }
    .legend-swatch { width: 22px; height: 8px; border-radius: 2px; flex-shrink: 0; }
    .legend-dot-item {
      display: flex; align-items: center; gap: 7px;
      font-size: 12px; color: var(--ink-muted);
    }
    .legend-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

    /* ─── Barras de porcentaje ───────────────────────────── */
    .bars-section { margin-bottom: 40px; }
    .bars-section-label {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--ink-faint); margin-bottom: 14px;
    }
    .bar-row {
      display: grid;
      grid-template-columns: var(--label-w) 1fr 38px;
      align-items: center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .bar-label {
      font-size: 12px; font-weight: 500; color: var(--ink);
      text-align: right; white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
    }
    .bar-track {
      height: 7px; background: var(--border);
      border-radius: 2px; overflow: hidden;
    }
    .bar-fill {
      height: 100%; border-radius: 2px;
      transition: width 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      width: 0;
    }
    .bar-pct { font-size: 11px; color: var(--ink-muted); font-variant-numeric: tabular-nums; }

    /* ─── Filtros ────────────────────────────────────────── */
    .filter-section { margin: 0 0 0; padding: 15px; border-bottom: 1px solid var(--border);  background-color: #fff; }
    .filter-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
    .filter-row:last-child { margin-bottom: 0; }
    .filter-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink-faint); white-space: nowrap; flex-shrink: 0; min-width: 100px; }
    .filter-chips { display: flex; flex-wrap: wrap; gap: 6px; }
    .chip-tema { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px 4px 8px;
      border-radius: 2px; border: 1.5px solid var(--border); background: var(--surface);
      font-size: 11px; font-weight: 500; color: var(--ink-muted); cursor: pointer;
      transition: all 0.15s ease; user-select: none; }
    .chip-tema:hover { border-color: var(--ink-faint); color: var(--ink); }
    .chip-tema.active { color: white; border-color: transparent; }
    .chip-tema .chip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.chip-reset { padding: 4px 10px; border-radius: 2px; border: 1.5px solid var(--border);
      background: transparent; font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--ink-faint); cursor: pointer;
      transition: all 0.15s; display: none; }
    .chip-reset:hover { color: var(--accent); border-color: var(--accent); }
    .chip-reset.visible { display: inline-block; }
    .tema-row { transition: opacity 0.3s ease, filter 0.3s ease; }
    .tema-row.dimmed { opacity: 0.08; pointer-events: none; }
    .bar-row { transition: opacity 0.3s ease; }
    .bar-row.dimmed { opacity: 0.12; }
    .event-marker { transition: opacity 0.2s ease, transform 0.15s ease; }
    .event-marker.ev-hidden { opacity: 0 !important; pointer-events: none; transform: scaleY(0); }

    /* ─── Timeline Gantt ────────────────────────────────── */
    .timeline-wrap { position: relative; background-color: #fff; }

    .time-axis {
      display: flex; justify-content: space-between;
      margin-bottom: 10px;
      padding-left: var(--label-w);
      cursor: crosshair;
    }
    .time-axis-track {
      position: relative;
      flex: 1;
      display: flex;
      justify-content: space-between;
    }
    .time-tick {
      font-size: 10px; color: var(--ink-faint);
      font-variant-numeric: tabular-nums;
      user-select: none;
    }
    .time-axis-hint {
          background-color: #fff;
      font-size: 10px;
      color: var(--ink-faint);
      font-style: italic;
      padding-left: var(--label-w);
      margin-bottom: 12px;
      opacity: 0;
      transition: opacity 0.3s;
      margin-bottom: 0;
    padding: 20px 0 20px 50px;
    }
    .time-axis-hint.visible { opacity: 1; }

    /* Hint sobre el player: clic en bloque → audio */
    .tl-click-hint {
          display: block;
      align-items: center;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
      margin: 0 auto;
      text-align: center;
    }
    .tl-click-hint-icon {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
      color: var(--ink);
    }
    @media (max-width: 640px) {
      .tl-click-hint { font-size: 13px; gap: 8px; }
      .tl-click-hint-icon { width: 22px; height: 22px; }
    }

    .timeline-rows { position: relative; }

    /* Líneas guía verticales */
    .timeline-rows::before {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      left: var(--label-w); right: 0;
      background: repeating-linear-gradient(
        90deg,
        var(--border) 0px, var(--border) 1px,
        transparent 1px, transparent calc(100% / 6)
      );
      pointer-events: none;
      z-index: 0;
    }

    /* ── Cabezal de reproducción ───────────────────────── */
    #playhead {
      display: none;
      position: absolute;
      top: 0; bottom: 0;
      width: 2px;
      background: var(--accent);
      pointer-events: none;
      z-index: 50;
      left: var(--label-w);
      transition: left 0.25s linear;
    }
    #playhead::before {
      content: '';
      position: absolute;
      top: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 0; height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 6px solid var(--accent);
    }
    #playhead-time {
      position: absolute;
      top: -22px;
      left: 4px;
      font-size: 9px;
      font-weight: 700;
      color: var(--accent);
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      background: var(--bg);
      padding: 1px 3px;
      border-radius: 2px;
    }

    .tema-row {
      display: grid;
      grid-template-columns: var(--label-w) 1fr;
      align-items: center;
      margin-bottom: var(--row-gap);
      position: relative;
      z-index: 1;
    }
    .tema-name {
      font-size: 12px; font-weight: 500; color: var(--ink);
      text-align: right; padding-right: 14px; line-height: 1.2;
    }
    .tema-track { position: relative; height: 26px; }

    /* Cápsula de agrupación (puntos cercanos) */
    .tema-cluster {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      height: 15px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: rgba(0,0,0,0.02);
      z-index: 1;
      pointer-events: none;
    }

    /* Punto de bloque (antes barra) */
    .tema-block {
      position: absolute;
      top: 50%; left: 0;
      transform: translate(-50%, -50%);
      width: 8px; height: 8px;
      border-radius: 50%;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      z-index: 4;
    }
    .tema-block:hover { transform: translate(-50%, -50%) scale(1.55); z-index: 30; }

    /* Estado: bloque activo (panel abierto) */
    .tema-block.selected {
      box-shadow: 0 0 0 2px var(--bg), 0 0 0 3.5px currentColor;
      z-index: 30;
    }

    /* Estado: reproduciendo dentro de este bloque */
    .tema-block.playing {
      box-shadow: 0 0 0 2px var(--bg), 0 0 0 3.5px var(--accent);
      z-index: 35;
      animation: pulse-block 1.8s ease-in-out infinite;
    }
    @keyframes pulse-block {
      0%, 100% { box-shadow: 0 0 0 2px var(--bg), 0 0 0 3.5px var(--accent); }
      50%       { box-shadow: 0 0 0 2px var(--bg), 0 0 0 5px var(--accent); }
    }

    /* Puntos de eventos */
    .event-marker {
      position: absolute; top: 50%; left: 0;
      transform: translate(-50%, -50%);
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--accent);
      border: 1px solid var(--bg);
      cursor: pointer;
      z-index: 20;
      transition: transform 0.15s ease;
    }
    .event-marker:hover { transform: translate(-50%, -50%) scale(1.6); z-index: 30; }

    /* ─── Panel de detalle ──────────────────────────────── */
    .detail-panel {
      background: var(--surface);
      border: 1px solid var(--border);
      border-left: 3px solid var(--accent);
      padding: 20px 24px;
      margin-top: 28px;
      display: none;
      animation: fadeIn 0.2s ease;
    }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
    .detail-panel.visible { display: block; }

    .detail-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 12px;
    }
    .detail-tema {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 4px;
    }
    .detail-time-row {
      display: flex; align-items: center; gap: 10px;
    }
    .detail-time {
      font-size: 13px; font-weight: 600; color: var(--ink);
    }
    /* Botón de reproducción en el panel */
    .btn-play-block {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 4px 10px;
      border: 1.5px solid var(--accent);
      border-radius: 2px;
      cursor: pointer;
      background: transparent;
      color: var(--accent);
      transition: background 0.15s, color 0.15s;
    }
    .btn-play-block:hover { background: var(--accent); color: white; }
    .btn-play-block.is-playing { background: var(--accent); color: white; }
    .btn-play-block.no-audio { opacity: 0.35; cursor: not-allowed; }

    /* Indicador de carga del audio en el panel */
    .detail-loading {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.07em;
      text-transform: uppercase; color: var(--ink-faint);
    }
    .detail-loading[hidden] { display: none; }
    .dl-spinner {
      width: 11px; height: 11px; border-radius: 50%;
      border: 2px solid var(--border); border-top-color: var(--accent);
      animation: dl-spin 0.7s linear infinite;
    }
    @keyframes dl-spin { to { transform: rotate(360deg); } }

    .detail-close {
      background: none; border: none;
      font-size: 18px; color: var(--ink-faint);
      cursor: pointer; line-height: 1; padding: 0 4px;
    }
    .detail-close:hover { color: var(--ink); }

    .detail-extracto {
      font-family: var(--font-serif);
      font-size: 15px; line-height: 1.65; color: var(--ink);
      margin-bottom: 14px;
    }

    /* ─── Player (inline → sticky) ──────────────────────── */
    #audio-player {
      display: flex;
      align-items: center;
      gap: 16px;
      height: var(--player-h);
      background: var(--ink);
      color: white;
      padding: 0 24px;
      border-radius: 3px;
      margin-bottom: 32px;
      max-width: 635px;
      margin: 45px auto 35px;
    }
    #audio-player.sticky {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      border-radius: 0;
      margin-bottom: 0;
      z-index: 1000;
    }

    /* Tema actual en el player */
    .player-tema {
      display: flex; flex-direction: column; gap: 2px;
      min-width: 130px; max-width: 160px;
      flex-shrink: 0;
    }
    .player-tema-label {
      font-size: 9px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .player-tema-name {
      font-size: 11px; font-weight: 600;
      color: white; white-space: nowrap;
      overflow: hidden; text-overflow: ellipsis;
    }

    /* Controles */
    .player-controls { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

    .btn-icon {
      background: none; border: none;
      color: white; cursor: pointer;
      padding: 6px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s;
      flex-shrink: 0;
    }
    .btn-icon:hover { background: rgba(255,255,255,0.12); }
    .btn-icon svg { width: 22px; height: 22px; fill: currentColor; }

    .player-time {
      font-size: 11px;
      font-variant-numeric: tabular-nums;
      color: rgba(255,255,255,0.6);
      white-space: nowrap;
      flex-shrink: 0;
    }

    /* Scrubber */
    .player-scrubber-wrap { flex: 1; min-width: 60px; cursor: pointer; padding: 12px 0; }
    .player-scrubber-track {
      height: 3px; background: rgba(255,255,255,0.2);
      border-radius: 2px; position: relative; overflow: visible;
    }
    .player-scrubber-fill {
      height: 100%; background: var(--accent);
      border-radius: 2px; width: 0%;
      position: relative; pointer-events: none;
    }
    .player-scrubber-fill::after {
      content: '';
      position: absolute;
      right: -5px; top: 50%;
      transform: translateY(-50%);
      width: 10px; height: 10px;
      background: white;
      border-radius: 50%;
      opacity: 0;
      transition: opacity 0.15s;
    }
    .player-scrubber-wrap:hover .player-scrubber-fill::after { opacity: 1; }

    /* Velocidad */
    .player-speed {
      font-size: 11px; font-weight: 600;
      color: rgba(255,255,255,0.6);
      background: none; border: 1px solid rgba(255,255,255,0.2);
      border-radius: 2px; padding: 3px 7px;
      cursor: pointer; flex-shrink: 0;
    }
    .player-speed:hover { color: white; border-color: rgba(255,255,255,0.5); }

    /* Volumen */
    .player-vol-wrap { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
    .player-vol-wrap svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.5); flex-shrink: 0; }
    input[type=range].player-vol {
      -webkit-appearance: none; appearance: none;
      width: 64px; height: 3px;
      background: rgba(255,255,255,0.25);
      border-radius: 2px; outline: none; cursor: pointer;
    }
    input[type=range].player-vol::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 11px; height: 11px;
      background: white; border-radius: 50%;
    }

    /* ─── Responsive ─────────────────────────────────────── */
    @media (max-width: 640px) {
      :root { --label-w: 90px; --row-gap: 22px; }
      .bar-row { grid-template-columns: 90px 1fr 32px; }
      .player-tema, .player-vol-wrap, .player-speed { display: none; }
      .section-title { font-size: 22px; }

      /* Scroll horizontal del timeline para evitar descuadres en móvil */
      .timeline-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
      }
      .timeline-wrap .time-axis,
      .timeline-wrap .timeline-rows {
        min-width: 640px;
      }
      .metodo-inner .metodo-title{
            font-size: clamp(21px, 3.4vw, 26px);
      }
      .modF-filter-desc{
        max-width: inherit !important;
      }
      .rz-quote-feature .rz-quote-card{
        margin: 0 auto;
      }
      #cita-destacada-2.rz-quote-feature--rev .rz-quote-card{
        left: inherit;
        right: inherit;
        transform: none;
      }
        #cita-destacada-2.rz-quote-feature--rev.rz-quote-card.rz-quote-feature--rev.rz-quote-card-inner{
          clip-path: none !important;
        }
    }

    /* ─── Explorador del Discurso ───────────────────────── */
    .explorer-section {
      background: #fff;
      border-bottom: 1px solid #CBCBCB;
      border-top: 1px solid #CBCBCB;
      margin-top: 60px;
    }
    .explorer-inner {
        max-width: 700px;
      margin: 0 auto;
      padding: 60px 24px 80px;
     }

    /* Cuerpo con regla vertical izquierda */
    .exp-body {
      /*border-left: 1px solid var(--border);*/
      padding-left: 28px;
    }

    /* Filtros explorador */
    .exp-filters {
      background: transparent;
      border: none;
      border-radius: 0;
      padding: 4px 0 0;
      margin-bottom: 20px;
    }
    .exp-search-row {
      margin-bottom: 18px;
    }
    .exp-search-input {
      width: 100%;
      padding: 9px 14px;
      border: 1.5px solid var(--border);
      border-radius: 2px;
      font-family: var(--font-sans);
      font-size: 13px;
      color: var(--ink);
      background: var(--bg);
      outline: none;
      transition: border-color 0.15s;
    }
    .exp-search-input:focus { border-color: var(--ink-muted); }
    .exp-search-input::placeholder { color: var(--ink-faint); }

    .exp-filter-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
    }
    .exp-filter-row:last-child { margin-bottom: 0; }
    .exp-filter-label {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-faint);
      white-space: nowrap;
      min-width: 56px;
      padding-top: 5px;
    }
    .exp-chips { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }

    .exp-chip {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 4px 10px 4px 8px;
      border-radius: 2px;
      border: 1.5px solid var(--border);
      background: var(--surface);
      font-size: 11px; font-weight: 500;
      color: var(--ink-muted);
      cursor: pointer;
      transition: all 0.15s ease;
      user-select: none;
      white-space: nowrap;
    }
    .exp-chip:hover { border-color: var(--ink-faint); color: var(--ink); }
    .exp-chip.active { color: #fff; border-color: transparent; }
    .exp-chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

    .exp-meta-row {
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 8px;
      margin-top: 16px;
      padding-top: 14px;
      border-top: 1px solid var(--border);
    }
    .exp-count {
      font-size: 11px;
      color: var(--ink-faint);
      font-variant-numeric: tabular-nums;
    }
    .exp-count strong { color: var(--ink); font-weight: 600; }
    .exp-reset {
      padding: 4px 10px;
      border-radius: 2px;
      border: 1.5px solid var(--border);
      background: transparent;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--ink-faint);
      cursor: pointer;
      transition: all 0.15s;
    }
    .exp-reset:hover { color: var(--accent); border-color: var(--accent); }
    .exp-reset.hidden { visibility: hidden; pointer-events: none; }

    /* Resultados */
    .exp-results { }

    .exp-empty {
      text-align: center;
      padding: 48px 24px;
      color: var(--ink-faint);
      font-size: 13px;
    }

    .exp-card {
      border-top: 1px solid var(--border);
      padding: 18px 0;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px 20px;
      align-items: start;
      cursor: pointer;
      transition: background 0.1s;
    }
    .exp-card:last-child { border-bottom: 1px solid var(--border); }
    .exp-card:hover { background: var(--surface); margin: 0 -16px; padding: 18px 16px; }

    .exp-card-left { min-width: 0; }
    .exp-card-right { flex-shrink: 0; text-align: right; }

    .exp-card-badges {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 6px; flex-wrap: wrap;
    }
    .exp-badge {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
    }
    .exp-badge-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .exp-badge-sep {
      font-size: 10px; color: var(--ink-faint);
    }
    .exp-badge-tema {
      font-size: 10px; font-weight: 500;
      color: var(--ink-muted);
    }
    .exp-badge-region {
      font-size: 10px; color: var(--ink-faint);
      font-style: italic;
    }

    .exp-card-extracto {
      font-size: 13px;
      color: var(--ink);
      line-height: 1.6;
      margin-bottom: 8px;
      /* clamp to 3 lines */
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .exp-card-extracto mark {
      background: #fff3cd;
      color: inherit;
      border-radius: 1px;
    }
    .exp-card-time {
      font-size: 11px;
      color: var(--ink-faint);
      font-variant-numeric: tabular-nums;
      margin-bottom: 8px;
    }
    .exp-card-play {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--accent);
      border: none; background: none;
      cursor: pointer; padding: 0;
      transition: opacity 0.15s;
    }
    .exp-card-play:hover { opacity: 0.7; }
    .exp-card-play svg { width: 10px; height: 10px; fill: currentColor; }
    .exp-card-play .exp-play-ico-pause { display: none; }
    .exp-card-play.is-playing .exp-play-ico-play { display: none; }
    .exp-card-play.is-playing .exp-play-ico-pause { display: inline-block; }

    .exp-load-more {
      display: block;
      width: 100%;
      margin-top: 24px;
      padding: 10px;
      border: 1.5px solid var(--border);
      border-radius: 2px;
      background: transparent;
      font-family: var(--font-sans);
      font-size: 11px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--ink-muted);
      cursor: pointer;
      transition: all 0.15s;
    }
    .exp-load-more:hover { border-color: var(--ink-muted); color: var(--ink); }

    @media (max-width: 600px) {
      .exp-filter-label { min-width: 44px; font-size: 9px; }
      .exp-card { grid-template-columns: 1fr; }
      .exp-card-right { text-align: left; }
    }

    /* ══════════════════════════════════════════════════════════ */
    /*  NUEVOS ESTILOS — SHOWCASE MODULES                        */
    /* ══════════════════════════════════════════════════════════ */

    /* ─── Nav principal ─────────────────────────────────────── */
    .main-nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--bg);
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 66px;
      gap: 24px;
    }
    .nav-brand {
      font-family: var(--font-serif);
      font-size: 22px;
      font-weight: 700;
      letter-spacing: -0.01em;
      color: var(--ink);
      text-decoration: none;
      white-space: nowrap;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    /* divisor vertical antes de los enlaces */
    .nav-right::before {
      content: "";
      align-self: stretch;
      width: 1px;
      margin: 18px 20px 18px 0;
      background: var(--border);
    }
    .nav-links {
      display: flex;
      align-items: center;
    }
    /* Botón "Descargar discurso" */
    .nav-download {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-left: 16px;
      padding: 10px 18px;
      background: var(--ink);
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 6px;
      white-space: nowrap;
      transition: background 0.15s, transform 0.1s;
    }
    .nav-download svg { flex: 0 0 auto; }
    .nav-download:hover { background: #333; }
    .nav-download:active { transform: scale(0.98); }
    .nav-link {
      position: relative;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink);
      text-decoration: none;
      padding: 6px 20px;
      transition: color 0.15s;
    }
    /* separador de punto entre items */
    .nav-link + .nav-link::before {
      content: "·";
      position: absolute;
      left: -2px;
      color: #b9a86a;
      font-weight: 400;
    }
    .nav-link:hover {
      color: var(--accent);
    }
    .nav-link.active {
      color: var(--accent);
    }
    @media (max-width: 860px) {
      .main-nav { padding: 0 20px; }
      .nav-link { padding: 6px 12px; font-size: 10px; letter-spacing: 0.08em; }
    }
    /* Sub-nav móvil (enlaces bajo el hero): oculta salvo en móvil */
    .mobile-subnav { display: none; }

    @media (max-width: 600px) {
      .nav-links { display: none; }
      .nav-right::before { display: none; }
      .nav-download { margin-left: 0; padding: 9px 7px; font-size: 10px; letter-spacing: 0.06em; }
      .nav-brand { font-size: 18px; }

      /* Barra de secciones: sticky bajo la barra superior + scroll horizontal */
      .mobile-subnav {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        position: sticky;
        top: 66px;                 /* debajo de la .main-nav (height:66px) */
        z-index: 190;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 8px 16px;
        scrollbar-width: none;      /* Firefox */
      }
      .mobile-subnav::-webkit-scrollbar { display: none; } /* WebKit */
      .mobile-subnav .nav-link { flex: 0 0 auto; }
      .modA-section{
          padding: 72px 24px;
      }
      .rz-cell{
            padding: 36px 0 !important;
      }
      .data-block-head{
            padding: 0 20px;
      }
      .data-section .data-block-head,
      .exp-body{
        padding: 0;
      }
      .modF-ausente-col .modF-ausente-fig{
         height: 100px;
      }
        .modF-ausente-col .modF-ausente-fig img{             
              max-width: 30%;
        }
      .rz-quote-card .rz-quote-card-inner{
        clip-path: none !important;
      }
    }

    /* ─── Hero collage ──────────────────────────────────────── */
    .hero-collage {
      background: #f2ece1;              /* papel */
      /*border-bottom: 1px solid var(--border);*/
      padding: 20px 24px 4px;
    }
    .hero-collage-inner {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
    }
    .hero-collage-bg {
      display: block;
      width: 100%;
      height: auto;
      mix-blend-mode: multiply;        /* funde el blanco del JPG sobre el papel */
    }
    .hero-collage-text {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translate(-50%, -5%);
      width: min(46%, 520px);
      text-align: center;
    }
    .hero-collage-title {
      font-family: var(--font-serif);
      font-weight: 700;
      color: #16130f;
      line-height: 0.92;
      letter-spacing: -0.015em;
      font-size: clamp(28px, 4.4vw, 58px);
      margin-bottom: 12px;
    }
    .hero-collage-sub {
      font-family: var(--font-serif);
      font-weight: 400;
      color: #16130f;
      line-height: 1.2;
      font-size: clamp(15px, 2.1vw, 24px);
      margin-bottom: 16px;
    }
    .hero-collage-sub em {     font-weight: bold;
    font-style: normal; }
    .hero-collage-desc {
      font-family: var(--font-sans);
      color: #000;
      line-height: 1.6;
      font-size: clamp(11px, 1.15vw, 16px);
      max-width: 42ch;
      margin: 0 auto;
    }
    p.update{
      color: #a3a19a;
      font-size: 12px;
      margin: 5px auto;
    }
    /* Móvil: la imagen es vertical (bg-home-movil.jpg) con el collage arriba y
       papel en blanco abajo; el texto se sube para caer sobre esa zona. */
    @media (max-width: 640px) {
      .hero-collage { padding: 12px 16px 20px; }
      .hero-collage-text {
        position: relative;
        z-index: 2;
        transform: none;
        width: 100%;
        margin-top: -68%;   /* sube el texto sobre la zona de papel del collage vertical */
        text-align: center;
        left: 0;
      }
      .hero-collage-title { font-size: 40px; }
      .hero-collage-sub { font-size: 20px; }
      .hero-collage-desc { font-size: 13px; }
    }

    /* ─── Stories · Qué dicen nuestros editores ──────────────── */
    .stories-section {
      background: #fffdfa;
      border-bottom: 1px solid var(--border);
      padding: 52px 24px 56px;
    }
    .stories-inner {
      max-width: 960px;
      margin: 0 auto;
      text-align: center;
    }
    .stories-title {
      font-family: var(--font-serif);
      font-weight: 600;
      font-size: clamp(24px, 3.4vw, 34px);
      color: var(--ink);
      line-height: 1.1;
      margin-bottom: 8px;
    }
    .stories-sub {
      font-size: 13px;
      color: var(--ink-muted);
      margin-bottom: 36px;
    }
    .stories-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: clamp(20px, 5vw, 64px);
    }
    .story-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      width: 140px;
      background: none;
      border: 0;
      padding: 0;
      cursor: pointer;
      font: inherit;
      color: inherit;
    }
    .story-ring {
      width: 112px;
      height: 112px;
      border-radius: 50%;
      padding: 4px;
      background: conic-gradient(from 200deg,
        #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5, #feda75);
      display: grid;
      place-items: center;
      transition: transform .18s ease;
    }
    .story-item:hover .story-ring,
    .story-item:focus-visible .story-ring { transform: scale(1.05); }
    .story-item:focus-visible { outline: none; }
    .story-avatar {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #f0eee9 center/cover no-repeat;
      border: 3px solid #fff;
      display: grid;
      place-items: center;
      overflow: hidden;
    }
    .story-avatar img {
      width: 100%; height: 100%;
      object-fit: cover; border-radius: 50%;
      display: block;
    }
    .story-avatar-fallback {
      font-family: var(--font-serif);
      font-size: 30px;
      font-weight: 700;
      color: #b7b2a8;
    }
    .story-caption {
      font-size: 13px;
      line-height: 1.35;
      color: var(--ink);
    }
    .story-caption .story-handle { color: var(--ink-muted); }
    .story-caption .story-cat { font-weight: 700; display: block;}

    /* Visor de historias (overlay) */
    .stviewer {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(15,13,11,.94);
      display: none;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity .2s ease;
    }
    .stviewer.open { display: flex; opacity: 1; }
    .stviewer-stage {
      position: relative;
      width: min(420px, 92vw);
      height: min(86vh, calc((420px) * 16 / 9));
      max-height: 92vh;
      background: #000;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.5);
    }
    .stviewer-video {
      width: 100%; height: 100%;
      object-fit: cover;
      background: #111;
      display: block;
    }
    .stviewer-spinner {
      position: absolute;
      top: 50%; left: 50%;
      width: 34px; height: 34px;
      margin: -17px 0 0 -17px;
      border: 3px solid rgba(255,255,255,.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: st-spin .8s linear infinite;
      display: none;
    }
    .stviewer.loading .stviewer-spinner { display: block; }
    @keyframes st-spin { to { transform: rotate(360deg); } }

    /* Barras de progreso */
    .stviewer-bars {
      position: absolute;
      top: 10px; left: 10px; right: 10px;
      display: flex;
      gap: 4px;
      z-index: 3;
    }
    .stviewer-bar {
      flex: 1;
      height: 3px;
      border-radius: 3px;
      background: rgba(255,255,255,.35);
      overflow: hidden;
    }
    .stviewer-bar > span {
      display: block;
      height: 100%;
      width: 0;
      background: #fff;
      border-radius: 3px;
    }

    /* Cabecera dentro del visor */
    .stviewer-head {
      position: absolute;
      top: 24px; left: 14px; right: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 3;
      text-shadow: 0 1px 3px rgba(0,0,0,.5);
    }
    .stviewer-head-av {
      width: 34px; height: 34px;
      border-radius: 50%;
      background: #ccc center/cover no-repeat;
      flex-shrink: 0;
      overflow: hidden;
    }
    .stviewer-head-av img { width:100%; height:100%; object-fit:cover; display:block; }
    .stviewer-head-txt { color: #fff; font-size: 13px; line-height: 1.2; }
    .stviewer-head-txt b { font-weight: 700; }
    .stviewer-head-txt span { opacity: .8; }
    .stviewer-close {
      position: absolute;
      top: 18px; right: 12px;
      z-index: 4;
      width: 34px; height: 34px;
      border: 0;
      background: none;
      color: #fff;
      font-size: 26px;
      line-height: 1;
      cursor: pointer;
      opacity: .9;
    }
    .stviewer-mute {
      position: absolute;
      top: 21px; right: 50px;
      z-index: 4;
      width: 32px; height: 32px;
      display: grid;
      place-items: center;
      border: 0;
      background: none;
      color: #fff;
      cursor: pointer;
      opacity: .9;
      filter: drop-shadow(0 1px 2px rgba(0,0,0,.5));
    }
    .stviewer-mute:hover, .stviewer-close:hover { opacity: 1; }
    /* Atenúa la interfaz al mantener presionado (pausa) */
    .stviewer.paused .stviewer-head,
    .stviewer.paused .stviewer-bars { opacity: .35; transition: opacity .15s ease; }
    /* Zonas de navegación (tap izquierda/derecha) */
    .stviewer-nav {
      position: absolute;
      top: 0; bottom: 0;
      width: 34%;
      z-index: 2;
      background: none;
      border: 0;
      cursor: pointer;
    }
    .stviewer-nav.prev { left: 0; }
    .stviewer-nav.next { right: 0; width: 66%; }

    @media (max-width: 640px) {
      /* El video no ocupa toda la pantalla: deja margen arriba (para la cabecera alta
         del ARC) y abajo, de modo que el botón de cerrar quede siempre accesible. */
      .stviewer { align-items: flex-start; padding: 14vh 0 4vh; box-sizing: border-box; }
      .stviewer-stage {
        width: min(88vw, calc(72vh * 9 / 16));
        height: min(72vh, 88vw * 16 / 9);
        max-height: 72vh;
        border-radius: 14px;
      }
      .stviewer-close { top: 8px; right: 8px; }
      .footer-section .footer-content ul{
            display: block;
              margin: 0 auto;
              text-align: center;
      }
    }

    /* ─── Module header (shared) ─────────────────────────────── */
    .mod-header {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 12px;
    }
    .mod-accent-bar {
      width: 3px;
      min-height: 56px;
      background: var(--accent);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .mod-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-faint);
      margin-bottom: 4px;
    }
    .mod-title {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-size: clamp(26px, 4vw, 42px);
      font-weight: 700;
      color: var(--ink);
      line-height: 1.1;
    }
    .mod-sub {
      font-size: 16px;
      color: var(--ink-muted);
      line-height: 1.6;
      max-width: 640px;
      margin-top: 10px;
      margin-bottom: 20px;
    }
    .mod-intro {
      font-size: 16px;
      color: var(--ink-muted);
      line-height: 1.7;
      max-width: 720px;
      margin-bottom: 40px;
      border-left: 2px solid var(--border);
      padding-left: 20px;
    }

    /* ─── Timeline: encabezado centrado (rediseño de puntos) ── */
    .tl-header-centered { text-align: center; margin-bottom: 26px; }
    .tl-header-rule {
      display: inline-block;
      width: 64px; height: 1px;
      background: var(--ink-faint);
      margin-bottom: 22px;
    }
    .tl-title-centered {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-style: italic;
      font-weight: 600;
      font-size: clamp(30px, 4.4vw, 28px);
      color: var(--ink);
      line-height: 1.05;
    }
    .tl-sub-bold { font-weight: 700; color: var(--ink); max-width: 600px; margin: 0 auto 10px;}
    .tl-intro-plain { border-left: none; padding-left: 0; max-width: 600px; margin: 0 auto 40px;}

    /* Rediseño de puntos: ocultar leyenda y barras de porcentaje */
    .timeline-section #legend-temas,
    .timeline-section .bars-section { display: none; }

    /* ─── Sección "Discurso en data" ─────────────────────── */
    .data-section {
      max-width: 960px;
      margin: 0 auto;
      padding: 60px 24px 64px;
    }
    .data-block { margin-bottom: 72px; }
    .data-block:last-child { margin-bottom: 8px; }
    .data-block-head {
      max-width: 640px;
      margin: 0 auto;
    }
    .data-block-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 8px;
    }
    .data-block-text {
      font-size: 16px;
      line-height: 1.7;
      color: var(--ink-muted);
      margin-bottom: 0;
    }

    /* Contenedor del gráfico (placeholder de imagen) */
    .chart-ph { margin: 40px 0 0; }
    .chart-ph-title {
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 4px;
    }
    .chart-ph-sub {
      text-align: center;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 18px;
    }
    .chart-ph-title + .chart-ph-box { margin-top: 18px; }
    .chart-ph-box {
      max-width: 640px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      /*background:
        repeating-linear-gradient(
          45deg,
          rgba(0,0,0,0.015) 0, rgba(0,0,0,0.015) 10px,
          transparent 10px, transparent 20px
        ),
        var(--surface);*/
      /*border: 1px dashed var(--border);*/
      border-radius: 4px;
    }
    .chart-ph-bar     { min-height: 300px; }
    .chart-ph-hbar    { min-height: 380px; }
    .chart-ph-network { min-height: 480px; }

    /* Contenedor cuando ya hay gráfico real (sin trama de placeholder) */
    .chart-ph-box.is-chart {
      display: block; align-items: stretch; max-width: 790px;
      /*background: var(--surface);*/ /*border: 1px solid var(--border);*/
      border-radius: 8px; padding: 26px 24px;
    }
    .chart-ph-box.is-chart.chart-ph-network { padding: 10px; }
    .g-chart { width: 100%; }
    .g-chart svg { display: block; width: 100%; height: auto; }
    .g-error { font-size: 13px; color: var(--ink-faint); text-align: center; padding: 40px 0; }

    /* ── Barras verticales ── */
    .g-vbars { display: flex; align-items: flex-end; gap: 14px; height: 240px; padding-top: 10px; }
    .g-vbar { flex: 1; display: flex; flex-direction: column; align-items: center; height: 100%; justify-content: flex-end; }
    .g-vbar-val { font-family: var(--font-serif); font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 6px; font-variant-numeric: tabular-nums; }
    .g-vbar-track { width: 100%; max-width: 54px; flex: 1; display: flex; align-items: flex-end; }
    .g-vbar-fill { width: 100%; height: 0; border-radius: 4px 4px 0 0; transition: height 1s cubic-bezier(0.16,1,0.3,1); }
    .g-vbar-label { font-size: 12px; color: var(--ink-muted); margin-top: 10px; text-align: center; line-height: 1.2; }

    /* ── Barras horizontales ── */
    .g-hbars { display: flex; flex-direction: column; gap: 12px; }
    .g-hbar { display: grid; grid-template-columns: 190px 1fr 52px; align-items: center; gap: 12px; }
    .g-hbar-label { font-size: 13px; color: var(--ink); text-align: right; line-height: 1.2; }
    .g-hbar-track { height: 16px; background: rgba(0,0,0,0.05); border-radius: 3px; overflow: hidden; }
    .g-hbar-fill { display: block; height: 100%; width: 0; border-radius: 3px; transition: width 1s cubic-bezier(0.16,1,0.3,1); }
    .g-hbar-val { font-size: 13px; font-weight: 700; color: var(--ink); text-align: right; font-variant-numeric: tabular-nums; }
    @media (max-width: 560px) {
      .g-hbar { grid-template-columns: 120px 1fr 44px; gap: 8px; }
      .g-hbar-label { font-size: 12px; }
    }

    /* ── Red D3 ── */
    .g-net-svg { display: block; width: 100%; height: auto; }
    .g-net-svg text { pointer-events: none; user-select: none; }
    .chart-ph-hint {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--ink-faint);
    }
    .chart-ph-ico {
      font-size: 15px;
      color: var(--border);
      letter-spacing: 1px;
    }

    /* ─── Sección "Análisis de emociones" ────────────────── */
    .emo-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 60px 24px 64px;
    }
    .emo-hint {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--ink);
      margin: 0 0 44px;
    }
    .emo-hint svg { width: 20px; height: 20px; }

    /* Fila de caritas */
    .emo-faces {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 26px;
      margin-bottom: 56px;
    }
    .emo-face-item {
      width: clamp(112px, 14.5vw, 120px);
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      padding: 0;
      border: none;
      background: #5b8fc7;
      cursor: pointer;
      transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }
    .emo-face-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .emo-face-item:hover {
      transform: translateY(-4px) scale(1.045);
      box-shadow: 0 14px 30px rgba(0,0,0,0.16);
      background: #b7a44f;
    }
    .emo-face-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

    /* Bloque de texto */
    .emo-text {
      max-width: 600px;
      margin: 0 auto 8px;
      text-align: left;
    }
    .emo-text .data-block-text + .data-block-text { margin-top: 16px; }

    /* Expresividad facial */
    .emo-stats-title {
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      color: var(--ink);
      margin: 48px 0 30px;
    }
    .emo-stats {
      display: flex;
      justify-content: center;
      max-width: 760px;
      margin: 0 auto;
    }
    .emo-stat { flex: 1; text-align: center; padding: 0 24px; }
    .emo-stat + .emo-stat { border-left: 1px solid var(--border); }
    .emo-stat-pct {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-weight: 700;
      font-size: 46px;
      line-height: 1;
      color: var(--ink);
    }
    .emo-emoji { width: 86px; height: 86px; display: block; margin: 12px auto 16px; }
    .emo-ring-track { fill: none; stroke: var(--border); stroke-width: 3; }
    .emo-ring-prog {
      fill: none; stroke: #9db8d6; stroke-width: 3; stroke-linecap: round;
      transform: rotate(-90deg); transform-origin: 50% 50%;
    }
    .emo-head  { fill: none; stroke: var(--ink); stroke-width: 2.4; }
    .emo-mouth { fill: none; stroke: var(--ink); stroke-width: 2.4; stroke-linecap: round; }
    .emo-dot   { fill: var(--ink); }
    .emo-stat-label { font-size: 13px; color: var(--ink-muted); margin-top: 2px; }

    @media (max-width: 640px) {
      .emo-stats { flex-direction: column; gap: 28px; }
      .emo-stat + .emo-stat { border-left: none; border-top: 1px solid var(--border); padding-top: 28px; }
    }

    /* ─── Módulo A — Resumen Inmediato ───────────────────────── */
    .modA-section {
      background: #fff;
      padding: 72px 24px;
      border-bottom: 1px solid var(--border);
    }
    .modA-inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .modA-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 8px;
    }
    @media (max-width: 700px) { .modA-grid { grid-template-columns: 1fr; } }

    /* Barras de temas (reutilizadas del showcase) */
    .modA-bars-card {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 28px 32px;
      grid-column: 1 / -1;
    }
    .modA-bars-title {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .modA-bar-row {
      display: grid;
      grid-template-columns: 200px 1fr 44px;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    @media (max-width: 600px) { .modA-bar-row { grid-template-columns: 120px 1fr 36px; } }
    .modA-bar-label {
      font-size: 13px;
      font-weight: 500;
      color: var(--ink);
      text-align: right;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
    }
    .modA-bar-dot {
      width: 8px; height: 8px;
      border-radius: 50%; flex-shrink: 0;
    }
    .modA-bar-track {
      height: 8px;
      background: var(--border);
      border-radius: 2px;
      overflow: hidden;
    }
    .modA-bar-fill {
      height: 100%;
      border-radius: 2px;
      width: 0;
      transition: width 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .modA-bar-pct {
      font-size: 12px;
      color: var(--ink-muted);
      font-variant-numeric: tabular-nums;
    }

    /* Cards de stats del ModuloA */
    .modA-stat-card {
      background: white;
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 28px 32px;
    }
    .modA-stat-card-title {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .modA-stat-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
    }
    .modA-stat-row:last-child { border-bottom: none; }
    .modA-stat-row-label { color: var(--ink-muted); }
    .modA-stat-row-val { font-weight: 700; color: var(--ink); }

    .modA-highlights-card {
      background: #fff5f5;
      border: 1px solid #f5c6c6;
      border-radius: 3px;
      padding: 28px 32px;
    }
    .modA-highlights-title {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 20px;
    }
    .modA-highlight-item {
      display: flex;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 13px;
      line-height: 1.55;
      color: var(--ink-muted);
    }
    .modA-highlight-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
      margin-top: 6px;
    }
    .modA-highlight-item strong { color: var(--ink); }

    /* ─── Dashboard de resumen (tarjetas del mockup) ─────────── */
    .dash-tiles {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 26px 0 8px;
    }
    @media (max-width: 560px) { .dash-tiles { grid-template-columns: 1fr; } }
    .dash-tile {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      min-height: 172px;
    }
    .dash-tile--center { align-items: center; justify-content: flex-start; text-align: center; }
    .dash-tile-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--ink-muted);
    }
    /* Dona de duración */
    .dash-donut {
      width: 104px; height: 104px; border-radius: 50%;
      background: conic-gradient(var(--ink) calc(var(--pct, 70) * 1%), var(--border) 0);
      display: grid; place-items: center; margin-top: 4px;
    }
    .dash-donut-hole {
      width: 76px; height: 76px; border-radius: 50%;
      background: var(--surface); display: grid; place-items: center;
    }
    .dash-donut-val { font-family: var(--font-serif); font-weight: 700; font-size: 19px; color: var(--ink); }
    /* Número grande (bloques) */
    .dash-bignum { font-family: var(--font-serif); font-weight: 700; font-size: 60px; line-height: 0.9; color: var(--ink); margin-top: 6px; }
    .dash-bignum-unit { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
    /* Número de palabras + mini-sparkline */
    .dash-spark { display: flex; align-items: flex-end; gap: 5px; height: 40px; }
    .dash-spark span { flex: 1; background: var(--border); border-radius: 2px; }
    .dash-spark span:nth-child(1) { height: 40%; }
    .dash-spark span:nth-child(2) { height: 65%; }
    .dash-spark span:nth-child(3) { height: 50%; }
    .dash-spark span:nth-child(4) { height: 85%; }
    .dash-spark span:nth-child(5) { height: 70%; }
    .dash-spark span:nth-child(6) { height: 100%; }
    .dash-spark span:nth-child(7) { height: 55%; }
    .dash-num { font-family: var(--font-serif); font-weight: 700; font-size: 30px; color: var(--ink); margin-top: auto; }
    .dash-num span { font-family: var(--font-sans); font-size: 13px; font-weight: 400; color: var(--ink-muted); }
    /* Referencias (barras pasado/presente/futuro) */
    .dash-refs { display: flex; align-items: flex-end; gap: 20px; }
    .dash-ref { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
    .dash-ref-track { height: 84px; width: 100%; display: flex; align-items: flex-end; justify-content: center; }
    .dash-ref-bar { width: 100%; max-width: 44px; background: var(--ink); border-radius: 3px 3px 0 0; }
    .dash-ref-pct { font-size: 12px; font-weight: 700; color: var(--ink); }
    .dash-ref-cat { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); }
    /* Bloques genéricos del dashboard */
    .dash-block { margin: 30px 0; }
    .dash-h3 { font-family: var(--font-serif); font-weight: 700; font-size: 19px; color: var(--ink); margin-bottom: 6px; }
    .dash-p { font-size: 13px; color: var(--ink-muted); line-height: 1.65; max-width: 72ch; margin-bottom: 14px; }
    /* Nube de palabras (placeholder) */
    .dash-cloud { margin: 0; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: #faf8f4; }
    .dash-cloud img { display: block; width: 100%; height: auto; }
    .dash-cloud-ph { display: none; }
    .dash-cloud.is-empty { aspect-ratio: 16 / 6; display: grid; place-items: center; border-style: dashed; }
    .dash-cloud.is-empty img { display: none; }
    .dash-cloud.is-empty .dash-cloud-ph {
      display: block; font-size: 12px; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--ink-faint);
    }

    /* ─── Módulo B — Discurso en 5 Minutos ───────────────────── */
    .modB-section {
      background: var(--bg);
      padding: 72px 24px;
      border-bottom: 1px solid var(--border);
    }
    .modB-inner {
      max-width: 960px;
      margin: 0 auto;
    }
    .modB-timeline {
      position: relative;
      margin-top: 8px;
    }
    .modB-spine { display: none; } /* la línea ahora es horizontal (.modB-block::before) */

    .modB-blocks {
      position: relative;
      display: flex;
      gap: 24px;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 46px 4px 14px;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
    }
    .modB-blocks::-webkit-scrollbar { height: 8px; }
    .modB-blocks::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
    .modB-blocks::-webkit-scrollbar-track { background: transparent; }

    .modB-block {
      position: relative;
      flex: 0 0 300px;
      max-width: 300px;
      scroll-snap-align: start;
    }
    /* Línea horizontal continua sobre los puntos */
    .modB-block::before {
      content: '';
      position: absolute;
      top: -30px;
      left: -12px;   /* medio gap: prolonga la línea entre tarjetas */
      right: -12px;
      height: 2px;
      background: var(--border);
    }
    .modB-block:first-child::before { left: 50%; }
    .modB-block:last-child::before  { right: 50%; }
    @media (max-width: 560px) {
      .modB-block { flex-basis: 82vw; max-width: 82vw; }
    }
    .modB-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: -37px;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: var(--accent);
      border: 3px solid var(--bg);
      z-index: 1;
    }
    /* Tarjetas de igual altura, con el pie anclado abajo */
    .modB-block .modB-card {
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    .modB-block .modB-card-footer { margin-top: auto; }
    .modB-card {
      flex: 1;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 3px;
      padding: 24px 28px;
      cursor: pointer;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    @media (min-width: 700px) {
      .modB-block:nth-child(even) .modB-card { margin-right: 0; }
    }
    .modB-card:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transform: translateY(-2px);
    }
    .modB-card-time {
      font-size: 11px;
      font-family: monospace;
      color: var(--ink-muted);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }
    .modB-card-clave {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid var(--accent);
      border-radius: 2px;
      padding: 1px 6px;
    }
    .modB-card-title {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--ink);
      line-height: 1.25;
      margin-bottom: 10px;
    }
    .modB-card-desc {
      font-size: 13px;
      color: var(--ink-muted);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .modB-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }
    .modB-block:nth-child(even) .modB-card-tags { justify-content: flex-start; }
    .modB-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.05em;
      padding: 3px 8px;
      border-radius: 2px;
      background: var(--bg);
      border: 1px solid var(--border);
      color: var(--ink-muted);
    }
    .modB-tag-dot {
      width: 6px; height: 6px;
      border-radius: 50%; flex-shrink: 0;
    }
    .modB-card-footer {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
    }
    .modB-block:nth-child(even) .modB-card-footer { justify-content: flex-start; }
    .modB-empty-side {
      display: none;
    }
    @media (min-width: 700px) {
      .modB-empty-side { display: block; flex: 1; }
    }
    .modB-anuncios {
      font-size: 11px;
      color: var(--ink-faint);
    }
    .modB-anuncios strong { color: var(--ink-muted); font-weight: 600; }
    .btn-play-block-sm {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 4px 10px;
      border: 1.5px solid var(--accent);
      border-radius: 2px;
      cursor: pointer;
      background: transparent;
      color: var(--accent);
      transition: background 0.15s, color 0.15s;
    }
    .btn-play-block-sm:hover { background: var(--accent); color: white; }

    /* ─── Section wrappers ────────────────────────────────────── */
    .timeline-section-wrapper {
      background: var(--bg);
      border-bottom: 1px solid var(--border);
    }
    .explorer-section-wrapper {
      background: white;
    }

    #perfil,
    .modE-marcos-card{
      display: none;
    }
    /* ─── Módulo 05 — Perfil y Forma del Discurso ─────────────── */
    .modE-section { padding: 72px 24px; background: var(--bg); border-bottom: 1px solid var(--border); }
    .modE-inner { max-width: 960px; margin: 0 auto; }
    .modE-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0 24px; }
    @media (max-width: 700px) { .modE-top-grid { grid-template-columns: 1fr; } }
    .modE-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
    .modE-card-title { font-family: "ivypresto-headline",'Georgia',serif; font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
    .modE-card-icon { color: #999; flex-shrink: 0; }
    .modE-field-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; }
    .modE-field-value { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 11px 16px; font-size: 14px; color: var(--ink); margin-bottom: 18px; }
    .modE-gesture-row { margin-bottom: 16px; }
    .modE-gesture-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 7px; }
    .modE-gesture-label { font-size: 13px; color: var(--ink); }
    .modE-gesture-pct { font-size: 14px; font-weight: 700; color: var(--ink); }
    .modE-gesture-track { height: 8px; background: #e5e7eb; border-radius: 4px; overflow: hidden; }
    .modE-gesture-fill { height: 100%; background: var(--ink); border-radius: 4px; width: 0; transition: width 1.1s cubic-bezier(0.16,1,0.3,1); }
    .modE-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
    .modE-mini-stat-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 6px; }
    .modE-mini-stat-value { font-size: 15px; font-weight: 700; color: var(--ink); }
    .modE-marcos-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
    .modE-marcos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 22px; }
    @media (max-width: 700px) { .modE-marcos-grid { grid-template-columns: 1fr; } }
    .modE-marco-card { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 20px; }
    .modE-marco-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
    .modE-marco-title { font-family: "ivypresto-headline",'Georgia',serif; font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.35; flex: 1; margin-right: 10px; }
    .modE-marco-count { width: 28px; height: 28px; border-radius: 50%; background: var(--ink); color: white; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .modE-marco-desc { font-size: 12px; color: var(--ink-muted); line-height: 1.55; }

    /* ─── Módulo 06 — Verificación y Fact-Checking ─────────────── */
    .modF-section { padding: 60px 24px 20px; background: #fff; border-bottom: 1px solid var(--border); }
    .modF-inner { max-width: 600px; margin: 0 auto; }
    .modF-verdicts-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin: 40px 0 52px; }
    @media (max-width: 700px) { .modF-verdicts-grid { grid-template-columns: repeat(2,1fr); } }
    .modF-verdict-card { border: none; border-radius: 10px; padding: 28px 20px 22px; text-align: center; color: #fff; box-shadow: 0 12px 24px rgba(0,0,0,0.12); }
    .modF-verdict-icon { display: none; }
    .modF-verdict-count { font-family: "ivypresto-headline",'Georgia',serif; font-size: 54px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 10px; }
    .modF-verdict-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.95); }
    .modF-verdict-card.verde    { background: linear-gradient(180deg,#5cc161,#4bb051); }
    .modF-verdict-card.amarillo { background: linear-gradient(180deg,#e7ac36,#d99a26); }
    .modF-verdict-card.naranja  { background: linear-gradient(180deg,#e17138,#d55f29); }
    .modF-verdict-card.rojo     { background: linear-gradient(180deg,#e35c54,#d54a44); }
    .modF-afirm-title { font-family: "ivypresto-headline",'Georgia',serif; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
    .modF-afirm-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
    .modF-afirm-item { background: #efeae2; border: 1px solid #e6dfd5; border-radius: 10px; padding: 20px 24px; display: flex; align-items: center; gap: 16px; box-shadow: 0 4px 14px rgba(0,0,0,0.04); }
    .modF-afirm-body { flex: 1; }
    .modF-afirm-claim { font-size: 15px; color: var(--ink); font-weight: 600; margin-bottom: 6px; }
    .modF-afirm-time { font-size: 12px; color: var(--ink-faint); }
    .modF-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
    .modF-badge.verde    { background: #dcefd8; color: #3d7a3a; }
    .modF-badge.amarillo { background: #fbf3c9; color: #9a7b1e; }
    .modF-badge.naranja  { background: #fbe6cf; color: #b45f26; }
    .modF-badge.rojo     { background: #f7d7d4; color: #b23b34; }

    /* ─── Fact-checking: hint + filtros clicables ──────────── */
    .modF-filter-hint { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; color: var(--ink-muted); margin: 40px 0 18px; }
    .modF-filters { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
    @media (max-width: 700px) { .modF-filters { grid-template-columns: 1fr; } }
    .modF-filter {
      border: none; border-radius: 10px; padding: 26px 22px 22px;
      text-align: center; color: #fff; cursor: pointer;
      box-shadow: 0 12px 24px rgba(0,0,0,0.12);
      transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .modF-filter:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(0,0,0,0.16); }
    .modF-filter-count { font-family: "ivypresto-headline",'Georgia',serif; font-size: 50px; font-weight: 700; line-height: 1; }
    .modF-filter-label { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; }
    .modF-filter-desc {
      font-size: 12.5px; line-height: 1.45; color: rgba(255,255,255,0.92);
      margin-top: 4px; max-width: 22ch;
    }
    .modF-filter.verde    { background: linear-gradient(180deg,#5cc161,#4bb051); }
    .modF-filter.amarillo { background: linear-gradient(180deg,#e7ac36,#d99a26); }
    .modF-filter.naranja  { background: linear-gradient(180deg,#e17138,#d55f29); }
    .modF-filter.rojo     { background: linear-gradient(180deg,#e35c54,#d54a44); }
    .modF-filter.is-active { transform: translateY(-2px); box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px rgba(17,17,17,0.55), 0 14px 28px rgba(0,0,0,0.18); }
    .modF-filter.is-dim { opacity: 0.4; }
    .modF-filter.is-dim:hover { opacity: 0.7; }

    .modF-divider { height: 1px; background: var(--border); margin: 36px 0 26px; }

    /* ─── Acordeones por calificación de viabilidad ────────── */
    .modF-acc-list { display: flex; flex-direction: column; gap: 16px; margin: 36px 0 40px; }
    .modF-acc-item { border-radius: 12px; }

    /* Cabecera de color (barra por calificación) */
    .modF-acc-head {
      width: 100%; text-align: left; cursor: pointer;
      display: flex; align-items: center; gap: 14px;
      padding: 22px 26px; border-radius: 12px; border: none;
      color: var(--hdr-fg, #fff);
      background: var(--hdr-bg, #444);
      box-shadow: 0 10px 22px rgba(0,0,0,0.14);
      transition: filter 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .modF-acc-head:hover { filter: brightness(1.04); box-shadow: 0 14px 28px rgba(0,0,0,0.18); }
    .modF-acc-label {
      flex: 1; min-width: 0;
      font-family: "ivypresto-headline",'Georgia',serif;
      font-size: 21px; font-weight: 700; line-height: 1.2;
    }
    /* Contador de promesas de la categoría */
    .modF-acc-count {
      flex: 0 0 auto;
      display: inline-flex; align-items: center; justify-content: center;
      min-width: 26px; height: 26px; padding: 0 8px;
      border-radius: 20px; font-size: 13px; font-weight: 700;
      font-variant-numeric: tabular-nums;
      background: rgba(255,255,255,0.28); color: inherit;
      opacity: 0;
    }
    .modF-acc-item.ambar .modF-acc-count { background: rgba(0,0,0,0.16); }
    /* Icono +/− */
    .modF-acc-toggle {
      flex: 0 0 auto; position: relative;
      width: 22px; height: 22px;
    }
    .modF-acc-toggle::before,
    .modF-acc-toggle::after {
      content: ""; position: absolute; top: 50%; left: 50%;
      background: currentColor; border-radius: 2px;
      transform: translate(-50%, -50%);
      transition: opacity 0.2s, transform 0.2s;
    }
    .modF-acc-toggle::before { width: 18px; height: 2.5px; }            /* barra horizontal */
    .modF-acc-toggle::after  { width: 2.5px; height: 18px; }            /* barra vertical (+) */
    .modF-acc-item.is-open .modF-acc-toggle::after { opacity: 0; transform: translate(-50%,-50%) rotate(90deg); }

    /* Colores por calificación */
    .modF-acc-item.azul    .modF-acc-head { --hdr-bg: linear-gradient(180deg,#3a63b4,#2f56a6); --hdr-fg: #fff; }
    .modF-acc-item.ambar   .modF-acc-head { --hdr-bg: linear-gradient(180deg,#f3b551,#e9a637); --hdr-fg: #1a1a1a; }
    .modF-acc-item.naranja .modF-acc-head { --hdr-bg: linear-gradient(180deg,#e35f2f,#d55024); --hdr-fg: #1a1a1a; }
    .modF-acc-item.rojo    .modF-acc-head { --hdr-bg: linear-gradient(180deg,#d83c2f,#c8322a); --hdr-fg: #1a1a1a; }
    .modF-acc-item.granate .modF-acc-head { --hdr-bg: linear-gradient(180deg,#9e211a,#851a13); --hdr-fg: #1a1a1a; }

    /* Cabecera cuando está abierta: cuadra con el cuerpo (esquinas inferiores rectas) */
    .modF-acc-item.is-open .modF-acc-head {
      border-radius: 12px 12px 0 0; box-shadow: none;
    }

    @media (max-width: 600px) {
      .modF-acc-head { padding: 18px 20px; gap: 10px; }
      .modF-acc-label { font-size: 19px; }
    }

    /* Cuerpo desplegable (lista de promesas sobre fondo blanco) */
    .modF-acc-body { max-height: 0; overflow: hidden; transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1); }
    .modF-acc-item.is-open .modF-acc-body {
      background: #fff;
      /*border: 1px solid var(--border); border-top: none;*/
      border-radius: 0 0 12px 12px;
      /*box-shadow: 0 12px 28px rgba(0,0,0,0.08);*/
    }
    .modF-acc-body-inner { padding: 8px 26px 6px; }
    @media (max-width: 600px) { .modF-acc-body-inner { padding: 4px 18px 4px; } }

    /* Promesa individual */
    .modF-prom { padding: 22px 0 26px; border-bottom: 2px solid var(--ink); }
    .modF-prom.is-last { border-bottom: none; }
    .modF-prom-time {
      display: block; font-size: 13px; color: var(--ink-faint);
      margin-bottom: 10px; font-variant-numeric: tabular-nums;
    }
    .modF-prom-title {
      font-family: "ivypresto-headline",'Georgia',serif;
      font-size: 20px; font-weight: 700; line-height: 1.3;
      color: var(--ink); margin: 0 0 12px;
    }
    .modF-prom-desc { font-size: 15px; line-height: 1.7; color: var(--ink-muted); margin: 0; }
    .modF-acc-empty { font-size: 15px; color: var(--ink-faint); font-style: italic; padding: 22px 0; margin: 0; }

    /* Fuentes: se listan una debajo de otra */
    .modF-prom-fuentes { margin-top: 18px; }
    .modF-prom-fuentes-label {
      display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--ink-faint); margin-bottom: 10px;
    }
    .modF-prom-fuente {
      padding: 9px 0; border-top: 1px solid rgba(0,0,0,0.08);
    }
    .modF-prom-fuente:first-of-type { border-top: none; padding-top: 0; }
    .modF-prom-fuente-nombre {
      display: block; font-size: 14px; line-height: 1.5;
      color: var(--ink-muted); margin-bottom: 4px;
    }

    /* Enlace "Ir a la fuente" */
    .modF-prom-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; font-weight: 600; color: var(--accent);
      text-decoration: none; border-bottom: 1px solid transparent;
      transition: border-color 0.15s, gap 0.15s;
    }
    .modF-prom-link:hover { border-bottom-color: var(--accent); }
    .modF-prom-link:hover .modF-prom-link-arrow { transform: translateX(2px); }
    .modF-prom-link-arrow { transition: transform 0.15s; }

    /* ─── Temas ausentes de alta importancia ───────────────── */
    .modF-ausentes { margin-top: 16px; }
    .modF-ausentes-header { display: flex; align-items: center; gap: 12px; color: var(--accent); margin-bottom: 12px; }
    .modF-ausentes-ico { flex: 0 0 auto; }
    .modF-ausentes-title { font-family: var(--font-sans); font-size: 21px; font-weight: 800; color: var(--accent); line-height: 1.2; }
    .modF-ausentes-sub { font-size: 15px; color: var(--ink-muted); margin-bottom: 42px; line-height: 1.5; }
    .modF-ausentes-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
    .modF-ausente-col { text-align: center; padding: 8px 12px; }
    .modF-ausente-col + .modF-ausente-col { border-left: 1px dashed #d6d1c6; }
    .modF-ausente-fig { margin: 0 auto 22px; height: 80px; display: flex; align-items: center; justify-content: center; }
    .modF-ausente-fig img { max-width: 30%; max-height: 160px; display: block; }
    .modF-ausente-ph { display: none; }
    .modF-ausente-fig.is-empty { width: 190px; border: 1px dashed var(--border); border-radius: 12px; background: #faf8f4; }
    .modF-ausente-fig.is-empty img { display: none; }
    .modF-ausente-fig.is-empty .modF-ausente-ph { display: block; font-size: 12px; color: var(--ink-faint); letter-spacing: 0.04em; }
    .modF-ausente-name { text-align: left; font-family: var(--font-serif); font-size: 18px; font-weight: 700; color: var(--ink); line-height: 1.2; }
    .descripcion-tema-ausente{
          margin: 10px auto;
    text-align: left;
    }
    @media (max-width: 700px) {
      .modF-ausentes-grid { grid-template-columns: 1fr; gap: 10px; }
      .modF-ausente-col { padding: 0 12px; }
      .modF-ausente-col + .modF-ausente-col { border-left: none; border-top: 1px dashed #d6d1c6; padding-top: 28px; }
    }

    /* ─── Metodología de análisis (bloque enmarcado) ─────── */
    .metodo-section { max-width: 700px; margin: 0 auto; padding: 72px 24px 88px; }
    .metodo-frame {
      background: #e5e0d5;
      padding: 10px;
      border-radius: 3px;
      box-shadow: 0 14px 34px rgba(0,0,0,0.06);
    }
    .metodo-inner {
      background: #fff;
      padding: 56px clamp(28px, 6vw, 72px) 64px;
    }
    .metodo-title {
      font-family: "ivypresto-headline", 'Georgia', serif;
      font-style: italic;
      font-weight: 600;
      font-size: clamp(26px, 3.4vw, 26px);
      text-align: center;
      color: var(--ink);
      margin-bottom: 36px;
    }
    .metodo-inner h6{
        font-family: var(--font-sans);
        font-size: 16px;
        font-weight: 700;
        margin: 10px 0 0;
    }
    .metodo-body { max-width: 800px; margin: 0 auto; }
    .metodo-text {
      font-size: 15px;
      line-height: 1.75;
      color: var(--ink);
      margin: 0;
    }
    .metodo-text + .metodo-text { margin-top: 22px; }

    .metodo-toggle {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 22px 0 0;
      padding: 0;
      border: none;
      background: none;
      cursor: pointer;
      font-family: var(--font-sans);
      font-size: 15px;
      font-weight: 700;
      color: var(--accent, #b3372c);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    .metodo-toggle:hover { opacity: 0.8; }
    .metodo-toggle-icon { flex: none; transition: transform 0.25s ease; }
    .metodo-toggle[aria-expanded="true"] .metodo-toggle-icon { transform: rotate(180deg); }
    .metodo-more { margin-top: 22px; }
    .metodo-more[hidden] { display: none; }
    .metodo-more h6 { margin-top: 15px; }

    /* ═══════════════════════════════════════════════════════════
       REDISEÑO — Dashboard de métricas (Resumen Inmediato)
       ═══════════════════════════════════════════════════════════ */
    :root {
      --rz-blue:    #2f80b4;
      --rz-blue-lt: #bcdcef;
      --rz-green:   #2f9e5f;
      --rz-red:     var(--accent);
      --map-blue:   #7ba3c9;
      --map-gold:   #a99a63;
      --map-gray:   #d6d3cb;
    }
    .rz-summary-head { text-align: center; max-width: 640px; margin: 0 auto; }
    .rz-summary-rule { width: 110px; height: 1px; background: #c7c4bb; margin: 0 auto 30px; }
    .rz-summary-title {
      font-family: var(--font-serif);
      font-size: clamp(28px, 3.6vw, 28px);
      font-weight: 600;
      color: var(--ink);
      line-height: 1.15;
      margin-bottom: 18px;
    }
    .rz-summary-sub { font-size: 16px; font-weight: 700; color: var(--ink); line-height: 1.5; margin-bottom: 22px; }
    .rz-summary-intro { font-size: 16px; color: var(--ink-muted); line-height: 1.7; margin: 0; }

    .rz-metrics {
      display: grid;
      grid-template-columns: 1fr 1fr;
      margin: 40px 0 8px;
    }
    @media (max-width: 700px) { .rz-metrics { grid-template-columns: 1fr; } }
    .rz-cell {
      padding: 36px 40px;
      display: flex;
      flex-direction: column;
    }
    .rz-cell--center { align-items: center; text-align: center; }
    .rz-cell--pad { padding-top: 40px; }
    .rz-cell--divL { border-left: 1px solid var(--border); }
    .rz-cell--divT { border-top: 1px solid var(--border); }
    @media (max-width: 700px) {
      .rz-cell--divL { border-left: none; border-top: 1px solid var(--border); }
    }
    .rz-metric-title {
      font-family: var(--font-serif);
      font-size: 22px;
      font-weight: 700;
      color: var(--ink);
      margin-bottom: 22px;
    }
    .rz-metric-title--center { text-align: center; }

    /* Donut de duración */
    .rz-donut { position: relative; width: 200px; height: 200px; }
    .rz-donut svg { width: 100%; height: 100%; }
    .rz-donut svg circle { fill: none; }
    .rz-donut-ticks { stroke: var(--rz-blue-lt); stroke-width: 9; stroke-dasharray: 1.6 10.1; }
    .rz-donut-bg   { stroke: #edf4f9; stroke-width: 15; }
    .rz-donut-arc  {
      stroke: var(--rz-blue); stroke-width: 15;
      stroke-dasharray: 0 452.4;
      transform: rotate(-90deg); transform-origin: 100px 100px;
      transition: stroke-dasharray 1.2s cubic-bezier(0.16,1,0.3,1);
    }
    .rz-donut.is-in .rz-donut-arc { stroke-dasharray: 325.7 452.4; }
    .rz-donut-val {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-serif); font-weight: 700; font-size: 30px; color: var(--ink);
    }

    /* Número grande de temas */
    .rz-bignum { font-family: var(--font-serif); font-weight: 700; font-size: 92px; line-height: 0.85; color: var(--rz-red); }
    .rz-bignum-unit { font-size: 20px; font-weight: 400; color: var(--ink); margin-top: 10px; }

    /* Número de palabras */
    .rz-wc-num { font-family: var(--font-serif); font-weight: 700; font-size: 34px; color: var(--rz-blue); text-align: center; }
    .rz-wc-num span { font-weight: 400; }
    .rz-wc-scale { margin: 22px 0 20px; }
    .rz-wc-ticks { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-faint); font-variant-numeric: tabular-nums; margin-bottom: 5px; }
    .rz-wc-bar { position: relative; height: 16px; border-radius: 3px; background: #eef3f7; overflow: hidden; }
    .rz-wc-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, #dcebf5, var(--rz-blue)); border-radius: 3px; transition: width 1.2s cubic-bezier(0.16,1,0.3,1); }
    .rz-metrics.is-in .rz-wc-fill { width: 84%; }
    .rz-wc-note { text-align: center; font-size: 14px; color: var(--ink-muted); line-height: 1.4; }
    .rz-wc-note strong { color: var(--ink); font-size: 15px; }

    /* Referencias — barras horizontales */
    .rz-refs { width: 100%; max-width: 340px; margin: 0 auto; }
    .rz-refs-axis { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-faint); margin: 0 0 8px 96px; }
    .rz-ref-row { display: grid; grid-template-columns: 62px 34px 1fr; align-items: center; gap: 6px; margin-bottom: 12px; }
    .rz-ref-name { font-size: 13px; color: var(--ink); text-align: right; }
    .rz-ref-pct { font-size: 14px; font-weight: 700; text-align: right; font-variant-numeric: tabular-nums; }
    .rz-c-red { color: var(--rz-red); } .rz-c-blue { color: var(--rz-blue); } .rz-c-green { color: var(--rz-green); }
    .rz-ref-track { height: 15px; background: #f0ede7; border-radius: 3px; overflow: hidden; }
    .rz-ref-fill { display: block; height: 100%; width: 0; border-radius: 3px; transition: width 1.1s cubic-bezier(0.16,1,0.3,1); }
    .rz-f-red { background: linear-gradient(90deg, #f2b9b2, var(--rz-red)); }
    .rz-f-blue { background: linear-gradient(90deg, var(--rz-blue-lt), var(--rz-blue)); }
    .rz-f-green { background: linear-gradient(90deg, #bfe3cc, var(--rz-green)); }

    /* Nube de palabras */
    .rz-cloud-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; text-align: center; margin-bottom: 18px; }
    .rz-cloud { margin: 0; border-radius: 6px; overflow: hidden; }
    .rz-cloud img { display: block; width: 100%; height: auto; }
    .rz-cloud-ph { display: none; }
    .rz-cloud.is-empty { aspect-ratio: 16/10; display: grid; place-items: center; border: 1px dashed var(--border); background: #faf8f4; }
    .rz-cloud.is-empty img { display: none; }
    .rz-cloud.is-empty .rz-cloud-ph { display: block; font-size: 12px; color: var(--ink-faint); }

    /* Barras de temas (JS) */
    .rz-theme-bars { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
    .rz-tb-row { display: grid; grid-template-columns: 118px 1fr auto; align-items: center; gap: 12px; }
    .rz-tb-name { font-size: 13px; color: var(--ink); text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .rz-tb-track { height: 12px; background: rgba(0,0,0,0.06); border-radius: 2px; overflow: hidden; }
    .rz-tb-fill { display: block; height: 100%; width: 0; border-radius: 2px; background: var(--rz-blue); transition: width 1s cubic-bezier(0.16,1,0.3,1); }
    .rz-tb-fill.is-otros { background: var(--rz-red); }
    .rz-tb-pct { font-size: 12px; color: var(--ink-muted); font-variant-numeric: tabular-nums; min-width: 36px; text-align: right; }

    /* ─── Mención a regiones (mapa + lista) ─────────────────── */
    .rz-map-legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 22px; margin-bottom: 26px; }
    .rz-map-leg { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-muted); }
    .rz-map-swatch { width: 26px; height: 11px; border-radius: 2px; display: inline-block; }
    .rz-map-swatch.is-b { background: var(--map-blue); }
    .rz-map-swatch.is-g { background: var(--map-gold); }
    .rz-map-swatch.is-n { background: var(--map-gray); }
    .rz-map-wrap { display: grid; grid-template-columns: minmax(150px, 1fr) 1.35fr; gap: 15px; align-items: start; }
    .rz-map-fig { width: 100%; }
    .rz-map-svg { display: block; width: 100%; height: auto; max-height: 460px; }
    .rz-map-svg path { fill: var(--map-gray); stroke: var(--surface); stroke-width: 0.8; stroke-linejoin: round; transition: fill 0.2s; }
    .rz-map-svg path.is-b { fill: var(--map-blue); }
    .rz-map-svg path.is-g { fill: var(--map-gold); }
    .rz-map-svg path.is-n { fill: var(--map-gray); }
    .rz-map-svg path.is-water { fill: #e7edf1; stroke: var(--surface); }
    .rz-reg-list { list-style: none; margin: 4px 0 0; padding: 0;
      display: grid; grid-template-columns: 1fr 1fr; grid-auto-flow: column;
      grid-template-rows: repeat(12, auto); column-gap: 15px; row-gap: 2px; width: 290px;}
    .rz-reg-item { display: flex; align-items: baseline; gap: 12px; padding: 0 0 3px; border-bottom: 1px solid var(--border); }
    .rz-reg-num { font-family: var(--font-serif); font-weight: 700; font-size: 15px; color: var(--ink);
      min-width: 26px; text-align: right; font-variant-numeric: tabular-nums; }
    .rz-reg-name { font-size: 14px; color: var(--ink-muted); }
    @media (max-width: 620px) {
      .rz-map-wrap { grid-template-columns: 1fr; }
      .rz-map-svg { max-height: 380px; margin: 0 auto; }
    }

    /* ─── Expresividad facial (caritas) ─────────────────────── */
    .rz-faces { display: flex; justify-content: space-around; align-items: flex-start; gap: 8px; margin-top: 10px; }
    .rz-face { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center;
      position: relative; padding: 0 6px; }
    .rz-face + .rz-face::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 34px; width: 1px; background: var(--border); }
    .rz-face-pct { font-family: var(--font-serif); font-weight: 700; font-size: 46px; line-height: 1; color: var(--ink); margin-bottom: 14px; }
    .rz-face-pct span { font-size: 30px; }
    .rz-face-svg { width: 108px; height: 108px; }
    .rz-face-arc-bg { fill: none; stroke: #eceae4; stroke-width: 6; }
    .rz-face-arc { fill: none; stroke: var(--map-blue); stroke-width: 6; stroke-linecap: round;
      transform: rotate(-90deg); transform-origin: 60px 60px;
      transition: stroke-dasharray 1.1s cubic-bezier(0.16,1,0.3,1); }
    .rz-face-outline { fill: none; stroke: var(--ink); stroke-width: 3.2; }
    .rz-face-eye { fill: var(--ink); }
    .rz-face-mouth { fill: none; stroke: var(--ink); stroke-width: 3.2; stroke-linecap: round; }
    .rz-face-label { font-size: 14px; color: var(--ink-muted); margin-top: 16px; }
    @media (max-width: 620px) {
      .rz-face-pct { font-size: 34px; } .rz-face-pct span { font-size: 22px; }
      .rz-face-svg { width: 78px; height: 78px; }
      .rz-face-label { font-size: 12px; }
    }

    /* ═══════════════════════════════════════════════════════════
       REDISEÑO — Carrusel "El discurso en 5 momentos"
       ═══════════════════════════════════════════════════════════ */
      .main-momentos{
        background-color: #fff;
            border-bottom: 1px solid var(--border);
        margin-bottom: 50px;
      }
    .rz-momentos {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 56px;
      max-width: 1180px;
      margin: 0 auto;
      padding: 56px 32px 48px;
    }
    @media (max-width: 820px) { .rz-momentos { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; } }
    .rz-momentos-rule { width: 88px; height: 2px; background: #c7c4bb; margin-bottom: 28px; }
    .rz-momentos-title {
      font-family: var(--font-serif);
      font-size: clamp(32px, 4.4vw, 40px);
      font-weight: 600;
      line-height: 1.08;
      color: var(--ink);
      margin-bottom: 26px;
    }
    .rz-momentos-sub { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.5; margin-bottom: 22px; }
    .rz-momentos-desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

    .rz-carousel { display: flex; align-items: stretch; gap: 14px; min-width: 0; }
    .rz-arrow {
      flex-shrink: 0; align-self: center;
      width: 40px; height: 40px;
      border: 1px solid var(--ink); background: transparent;
      font-size: 20px; line-height: 1; color: var(--ink);
      cursor: pointer; border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.15s, color 0.15s;
    }
    .rz-arrow:hover { background: var(--ink); color: #fff; }
    .rz-carousel-stage { position: relative; flex: 1; min-width: 0; min-height: 510px; padding-bottom: 20px; display: flex; flex-direction: column; }
    .rz-swipe-hint { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-muted); margin-bottom: 18px; flex: 0 0 auto; }

    /* Track horizontal fluido */
    .rz-slide-track {
      display: flex;
      flex: 1 1 auto;                 /* rellena el alto para que la línea llegue a la timeline */
      gap: 72px;
      overflow-x: auto; overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      touch-action: pan-x pan-y;
      cursor: grab;
    }
    @media (max-width: 620px) { .rz-slide-track { gap: 40px; } }
    .rz-slide-track::-webkit-scrollbar { display: none; }
    .rz-slide-track.is-dragging { cursor: grabbing; user-select: none; scroll-behavior: auto; }
    .rz-slide-panel {
      position: relative;
      flex: 0 0 100%; width: 100%;
      scroll-snap-align: start;
      min-height: 350px;
      display: flex; align-items: stretch; gap: 20px;
      padding-right: 46%;              /* reserva para la cita flotante */
    }
    /* Columna marcador: número + línea vertical del color del círculo */
    .rz-slide-marker { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; }
    .rz-slide-num {
      flex: 0 0 auto;
      width: 46px; height: 46px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 50%;
      background: #4f86b8; color: #fff;
      font-family: var(--font-serif); font-weight: 700; font-size: 21px; line-height: 1;
    }
    .rz-slide-line { flex: 1 1 auto; width: 2px; min-height: 40px; /*margin-top: 12px;*/ background: #4f86b8; }

    .rz-slide-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
    .rz-slide-time {
      align-self: flex-start;
      background: #fdf3c4; border: 1px solid #ecd98a;
      font-size: 11px; font-weight: 600; color: #7a6a1f;
      padding: 3px 10px; border-radius: 3px; white-space: nowrap;
      font-variant-numeric: tabular-nums; margin-bottom: 14px;
      opacity: 0;
    }
    .rz-slide-quote {
      font-size: 14px; color: var(--ink-muted); line-height: 1.75;
    }
    .rz-quote-p { margin: 0; }
    .rz-mark { background: #fae9a0; padding: 0 3px; border-radius: 2px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
    .rz-slide-main .rz-float-audio { margin-top: 22px; }
    /* Reproductor de clip por momento: oculto hasta pulsar "Escuchar audio" */
    .rz-slide-audio-wrap { margin-top: 22px; width: 100%;  opacity: 0;}
    .rz-slide-main .rz-slide-audio-wrap .rz-float-audio { margin-top: 0; }
    .rz-slide-player { display: none; width: 100%; max-width: 360px; margin-top: 4px; }
    .rz-slide-audio-wrap.is-playing .rz-slide-audio { display: none; }
    .rz-slide-audio-wrap.is-playing .rz-slide-player { display: block; }

    .rz-float-card {
      position: absolute; top: 8px; right: 0; width: 44%;
      background: #fff; border: 1.5px solid var(--ink);
      padding: 26px 26px 24px; border-radius: 2px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }
    /* Colita tipo globo apuntando al párrafo (borde + relleno) */
    .rz-float-card::before, .rz-float-card::after {
      content: ""; position: absolute; width: 0; height: 0;
      border-style: solid; border-color: transparent;
    }
    .rz-float-card::before {
      top: 70px; right: 100%;
      border-width: 13px 13px 13px 0; border-right-color: var(--ink);
    }
    .rz-float-card::after {
      top: 71px; right: calc(100% - 1px);
      border-width: 12px 12px 12px 0; border-right-color: #fff;
    }
    @media (max-width: 620px) {
      .rz-slide-panel { flex-wrap: wrap; padding-right: 0; }
      .rz-float-card { position: static; flex: 1 0 100%; width: 100%; margin-top: 24px; }
      .rz-float-card::before, .rz-float-card::after { display: none; }
    }
    .rz-float-rule { height: 1px; background: var(--ink); width: 44px; }
    .rz-float-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--ink); line-height: 1.3; margin: 16px 0 12px; }
    .rz-float-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; margin-bottom: 18px; }
    .rz-float-rule + .rz-float-audio { margin-top: 16px; }
    .rz-float-audio {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
      padding: 9px 16px; border: 1px solid var(--ink);
      background: transparent; color: var(--ink); cursor: pointer; border-radius: 2px;
      transition: background 0.15s, color 0.15s;
    }
    .rz-float-audio:hover { background: var(--ink); color: #fff; }

    .rz-time-track { position: relative; flex: 0 0 auto; margin-top: 4px; height: 1px; background: var(--border); }
    .rz-time-start {
      position: absolute; left: 0; top: 50%; transform: translateY(-50%);
      background: var(--ink); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 6px 13px; border-radius: 3px; white-space: nowrap;
      transition: opacity 0.25s;
    }
    .rz-time-start.is-hidden { opacity: 0; visibility: hidden; }
    .rz-time-badge {
      position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
      background: #fdf3c4; border: 1px solid #ecd98a;
      font-size: 11px; font-weight: 600; color: #7a6a1f;
      padding: 3px 10px; border-radius: 3px; white-space: nowrap;
      font-variant-numeric: tabular-nums;
    }
    .rz-dots { position: absolute; left: 0; bottom: -2px; display: flex; gap: 8px; }
    .rz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; padding: 0; cursor: pointer; transition: background 0.15s; }
    .rz-dot.is-active { background: var(--ink); }

    /* ═══════════════════════════════════════════════════════════
       REDISEÑO — Cita destacada (foto + quote + audio)
       ═══════════════════════════════════════════════════════════ */
    .rz-quote-feature { background: #fff; overflow: hidden; }
    .rz-quote-feature-inner {
      position: relative;
      max-width: 1100px; margin: 0 auto;
      padding: 72px 24px;
      display: flex; align-items: center;
      min-height: 520px;
    }
    .rz-quote-photo {
      margin: 0 0 0 auto;
      width: 76%;
      /*aspect-ratio: 16 / 10;*/
      overflow: hidden;
      background: #e8e4dc;
    }
    .rz-quote-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
    .rz-quote-photo-ph { 
      /*display: none; */
          background: #fff;
    }
    .rz-quote-photo.is-empty { display: grid; place-items: center; border: 1px dashed var(--border); }
    .rz-quote-photo.is-empty img { display: none; }
    .rz-quote-photo.is-empty .rz-quote-photo-ph { display: block; font-size: 13px; color: var(--ink-faint); }

    .rz-quote-card {
      position: absolute; z-index: 2;
      left: -20px; top: 50%;
      transform: translateY(-82%);
      width: min(400px, 40%);
      /*filter: drop-shadow(0 16px 26px rgba(0,0,0,0.16));*/
    }
    /* Forma irregular con colita tipo banderín (abajo-derecha) */
    /* Cara blanca */
    .rz-quote-card-inner {
      position: relative; z-index: 1;
      background: #F5EFD4;
      padding: 34px 44px 64px 36px;
          clip-path: polygon(
            7% 4%, 
            87% 9%, 
            88% 66%, 
            96% 75%, 
            88% 79%, 
            88% 90%, 
            4% 95%);
    }
    /* Capa de "papel" detrás, ligeramente desplazada */
    .rz-quote-card::before {
      content: ""; position: absolute; inset: 0; z-index: -1;
      /*background: #e7e2d6;*/
      transform: translate(11px, 13px);
      clip-path: polygon(
        7% 4%, 87% 9%,
        88% 66%, 97% 82%, 89% 75%, 90% 90%,
        4% 95%
      );
    }
    .rz-quote-rule { height: 1px; background: var(--ink); width: 60%; margin: 0 auto; }
    .rz-quote-time {
      text-align: center; font-size: 13px; font-weight: 500;
      letter-spacing: 0.06em; color: var(--ink);
      font-variant-numeric: tabular-nums;
      padding: 12px 0;
    }
    .rz-quote-text {
      font-family: var(--font-serif); font-style: italic; font-weight: 400;
      font-size: 22px; line-height: 1.35; color: var(--ink);
      text-align: center; padding: 26px 6px;
      margin: 0;
    }
    .rz-quote-audio {
      display: block;
      align-items: center;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 10px 18px;
      border: 1px solid var(--ink);
      background: transparent;
      color: var(--ink);
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      margin: 26px auto 0;
    }
    .rz-quote-audio:hover { background: var(--ink); color: #fff; }

    /* Variante espejo: foto a la izquierda, tarjeta a la derecha */
    .rz-quote-feature--rev .rz-quote-photo { margin: 0 auto 0 0; }
    .rz-quote-feature--rev .rz-quote-card { left: auto; right: 24px; transform: translateY(-82%); }
    /* Espejo: colita hacia la izquierda (apuntando a la foto) */
    .rz-quote-feature--rev .rz-quote-card-inner {
      padding: 34px 36px 64px 44px;
      clip-path: polygon(
        93% 4%, 13% 9%,
        12% 66%, 3% 70%, 11% 75%, 10% 90%,
        96% 95%
      );
    }
    .rz-quote-feature--rev .rz-quote-card::before {
      transform: translate(-11px, 13px);
      clip-path: polygon(
        93% 4%, 13% 9%,
        12% 66%, 2% 75%, 11% 75%, 10% 90%,
        96% 95%
      );
    }

    @media (max-width: 820px) {
      .rz-quote-feature-inner { flex-direction: column; align-items: stretch; min-height: 0; padding: 48px 24px; }
      .rz-quote-photo { width: 100%; margin: 0; }
      .rz-quote-card {
        position: relative; left: auto; top: auto;
        transform: none; width: auto; max-width: 440px;
        margin: -48px auto 0;
      }
    }
    .modF-importancia.alta  { background: #fee2e2; color: #991b1b; }
    .modF-importancia.media { background: #ffedd5; color: #9a3412; }


/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: #1a1a1a;
    color: white;
    padding: 30px 40px;
    margin-top: 80px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.logo-comercio {
    display: block;
    margin: 0 auto 50px;
    max-width: 130px;
}

span.separador-logo {
    background-color: white;
    display: block;
    height: 1px;
    margin: 0 auto var(--spacing-md);
    max-width: 600px;
}

.footer-content ul {
    display: inline-block;
    list-style-type: none;
    margin: 0 30px 0;
    padding: 0;
    text-align: left;
    vertical-align: top;
}

.footer-content ul li {
    margin-bottom: 15px;
}

.footer-content ul li h4 {
    font: 0.9rem/1.3 'Roboto', sans-serif;
    font-weight: 800;
    margin-bottom: 0;
}

.footer-content ul li p {
    font: 0.9rem/1.6 'Roboto', sans-serif;
    font-weight: 300;
    margin: 0;
}