/* =============================================================
   ROMA · Consultor conversacional + Informe
   Estilos aislados con prefijo .rc-  (no choca con el landing)
   Paleta: navy #0F2A44 · naranja #FF751F · blanco #F7F7F7
   ============================================================= */

.rc-root {
  --rc-navy: #0F2A44;
  --rc-orange: #FF751F;
  --rc-white: #F7F7F7;
  --rc-paper: #FFFFFF;
  --rc-muted: #8A8A8A;
  --rc-line: rgba(15, 42, 68, 0.12);
  --rc-cafe: #A6743C;
  --rc-serif: 'Fraunces', Georgia, serif;
  --rc-mono: 'JetBrains Mono', monospace;
  position: fixed;
  z-index: 900;
  inset: 0;
  pointer-events: none;
}
.rc-root *, .rc-root *::before, .rc-root *::after { box-sizing: border-box; }

/* ---------- LAUNCHER (solo ícono WhatsApp · Valeria) ---------- */
.rc-launcher {
  pointer-events: auto;
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(37, 211, 102, 0.45);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, opacity 0.35s ease;
  z-index: 901;
}
.rc-launcher:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 40px rgba(37,211,102,0.5); }
.rc-launcher svg { width: 32px; height: 32px; }
.rc-launcher .rc-l-online {
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #fff;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
  animation: rc-online 2s ease-out infinite;
}
@keyframes rc-online {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(37,211,102,0); }
}
.rc-root.rc-open .rc-launcher { opacity: 0; pointer-events: none; transform: translateY(20px); }

@media (max-width: 600px) {
  .rc-launcher { bottom: 18px; right: 18px; width: 56px; height: 56px; }
  .rc-launcher svg { width: 30px; height: 30px; }
}

/* ---------- PANEL DE CHAT ---------- */
.rc-panel {
  pointer-events: auto;
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 408px;
  height: min(660px, calc(100vh - 56px));
  background: var(--rc-white);
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 42, 68, 0.10);
  box-shadow: 0 24px 64px rgba(15, 42, 68, 0.34);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.4s cubic-bezier(0.22,1,0.36,1), transform 0.4s cubic-bezier(0.22,1,0.36,1);
  z-index: 902;
}
.rc-root.rc-open .rc-panel { opacity: 1; transform: translateY(0) scale(1); }
.rc-root:not(.rc-open) .rc-panel { pointer-events: none; }

@media (max-width: 600px) {
  .rc-panel {
    inset: 0;
    width: 100%;
    height: 100%;
    bottom: 0; right: 0;
    border-radius: 0;
    border: none;
  }
}

/* Header */
.rc-head {
  background: var(--rc-navy);
  color: var(--rc-white);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.rc-head-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.rc-head-avatar svg { width: 24px; height: 24px; }
.rc-head-avatar .rc-l-online {
  position: absolute;
  bottom: 0; right: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid var(--rc-navy);
}
.rc-head-name {
  font-family: var(--rc-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.rc-head-meta {
  font-family: var(--rc-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6be39a;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rc-head-meta::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #25D366;
  animation: rc-blink 1.8s ease-in-out infinite;
}
.rc-head-titles { flex: 1; }
.rc-head-close {
  background: transparent;
  border: none;
  color: rgba(247,247,247,0.7);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.rc-head-close:hover { color: #E8D9C4; transform: rotate(90deg); }

/* Progreso */
.rc-progress {
  height: 3px;
  background: rgba(15,42,68,0.08);
  flex-shrink: 0;
}
.rc-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--rc-cafe);
  transition: width 0.5s cubic-bezier(0.22,1,0.36,1);
}

/* Chip de ahorro en vivo */
.rc-savings-chip {
  flex-shrink: 0;
  background: var(--rc-navy);
  color: var(--rc-white);
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.22,1,0.36,1), opacity 0.5s ease, padding 0.5s ease;
  border-top: 1px solid rgba(247,247,247,0.1);
}
.rc-savings-chip.rc-show {
  max-height: 96px;
  opacity: 1;
  padding: 14px 20px;
}
.rc-savings-chip .rc-sc-label {
  font-family: var(--rc-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #E0C9A6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rc-savings-chip .rc-sc-label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #E0C9A6;
  animation: rc-blink 1.6s ease-in-out infinite;
}
@keyframes rc-blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.rc-savings-chip .rc-sc-num {
  font-family: var(--rc-serif);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 2px;
}
.rc-savings-chip .rc-sc-foot {
  font-family: var(--rc-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(247,247,247,0.55);
  margin-top: 2px;
}

/* Mensajes — estilo WhatsApp */
.rc-messages {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  scroll-behavior: smooth;
  background-color: #F4EFE7;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%230F2A44' stroke-width='1.4' stroke-linecap='round' opacity='0.06'%3E%3Ccircle cx='20' cy='22' r='8'/%3E%3Cpath d='M50 18h18M50 26h12'/%3E%3Cpath d='M92 14l6 6-6 6-6-6z'/%3E%3Cpath d='M14 60c4-6 12-6 16 0s12 6 16 0'/%3E%3Ccircle cx='78' cy='62' r='3'/%3E%3Ccircle cx='90' cy='62' r='3'/%3E%3Ccircle cx='102' cy='62' r='3'/%3E%3Cpath d='M20 96l5 5 9-11'/%3E%3Cpath d='M58 92h26v18H58z'/%3E%3Cpath d='M58 92l13 9 13-9'/%3E%3Cpath d='M100 96v12M94 102h12'/%3E%3C/g%3E%3Cg fill='%230F2A44' opacity='0.05'%3E%3Ccircle cx='40' cy='52' r='2.5'/%3E%3Ccircle cx='108' cy='30' r='2.5'/%3E%3Ccircle cx='12' cy='110' r='2.5'/%3E%3Ccircle cx='72' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(rgba(15,42,68,0.05) 1.3px, transparent 1.3px),
    radial-gradient(circle at 18% 12%, rgba(15,42,68,0.06), rgba(255,255,255,0) 45%),
    radial-gradient(circle at 86% 88%, rgba(15,42,68,0.06), rgba(255,255,255,0) 50%);
  background-size: 120px 120px, 20px 20px, 100% 100%, 100% 100%;
  background-position: 0 0, 6px 9px, 0 0, 0 0;
}
.rc-messages::-webkit-scrollbar { width: 7px; }
.rc-messages::-webkit-scrollbar-thumb { background: rgba(15,42,68,0.18); border-radius: 4px; }

.rc-msg {
  max-width: 82%;
  font-family: var(--rc-serif);
  font-size: 15px;
  line-height: 1.45;
  position: relative;
  border-radius: 10px;
  padding: 9px 13px 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12);
  animation: rc-msg-in 0.4s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes rc-msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Burbuja entrante (Valeria) — blanca con cola izquierda */
.rc-msg-bot {
  align-self: flex-start;
  background: #FFFFFF;
  color: #11242f;
  border-top-left-radius: 2px;
}
.rc-msg-bot::before {
  content: "";
  position: absolute;
  top: 0; left: -7px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #FFFFFF transparent transparent;
}
.rc-msg-bot strong { font-weight: 600; }
.rc-msg-bot em { font-style: italic; color: var(--rc-cafe); font-weight: 500; }
/* Burbuja saliente (usuario) — verde WhatsApp con cola derecha */
.rc-msg-user {
  align-self: flex-end;
  background: #DCF8C6;
  color: #11242f;
  font-size: 15px;
  border-top-right-radius: 2px;
}
.rc-msg-user::before {
  content: "";
  position: absolute;
  top: 0; right: -7px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 8px 8px;
  border-color: transparent transparent transparent #DCF8C6;
}
/* hora ficticia tipo WhatsApp */
.rc-msg::after {
  content: attr(data-time);
  display: inline-block;
  font-family: var(--rc-mono);
  font-size: 9px;
  letter-spacing: 0;
  color: rgba(15,42,68,0.4);
  float: right;
  margin: 4px 0 -2px 10px;
  line-height: 1;
}
.rc-msg-user::after { color: rgba(20,100,40,0.5); }

/* Indicador escribiendo — burbuja blanca WhatsApp */
.rc-typing {
  align-self: flex-start;
  background: #FFFFFF;
  border-radius: 10px;
  border-top-left-radius: 2px;
  padding: 13px 16px;
  display: inline-flex;
  gap: 5px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.12);
  position: relative;
}
.rc-typing::before {
  content: "";
  position: absolute;
  top: 0; left: -7px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 8px 8px 0;
  border-color: transparent #FFFFFF transparent transparent;
}
.rc-typing span {
  width: 7px; height: 7px; border-radius: 50%;
  background: #99a;
  opacity: 0.5;
  animation: rc-typing 1.2s ease-in-out infinite;
}
.rc-typing span:nth-child(2) { animation-delay: 0.18s; }
.rc-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes rc-typing {
  0%,100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-4px); }
}

/* Chips de respuesta rápida */
.rc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 20px 10px;
  flex-shrink: 0;
}
.rc-chip {
  font-family: var(--rc-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--rc-navy);
  background: transparent;
  border: 1px solid var(--rc-line);
  padding: 9px 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.rc-chip:hover {
  border-color: var(--rc-cafe);
  background: rgba(166,116,60,0.08);
  color: var(--rc-cafe);
}

/* Input */
.rc-input-wrap {
  flex-shrink: 0;
  border-top: 1px solid var(--rc-line);
  background: var(--rc-paper);
  padding: 14px 16px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.rc-input {
  flex: 1;
  border: none;
  resize: none;
  font-family: var(--rc-serif);
  font-size: 15px;
  line-height: 1.4;
  color: var(--rc-navy);
  background: transparent;
  max-height: 96px;
  min-height: 24px;
  outline: none;
}
.rc-input::placeholder { color: var(--rc-muted); }
.rc-send {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: var(--rc-navy);
  color: var(--rc-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.rc-send:hover { background: var(--rc-orange); }
.rc-send:disabled { opacity: 0.35; cursor: default; }
.rc-send:disabled:hover { background: var(--rc-navy); }
.rc-send svg { width: 18px; height: 18px; }

.rc-mic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: transparent;
  color: var(--rc-muted);
  border: 1px solid var(--rc-line);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.rc-mic:hover { border-color: var(--rc-cafe); color: var(--rc-cafe); }
.rc-mic svg { width: 18px; height: 18px; }

/* =============================================================
   INFORME (overlay documento)
   ============================================================= */
.rc-report-overlay {
  pointer-events: auto;
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 68, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 950;
  overflow-y: auto;
  padding: 40px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.rc-report-overlay.rc-show { opacity: 1; }

.rc-report {
  max-width: 940px;
  margin: 0 auto;
  background: var(--rc-paper);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}
.rc-report-close {
  position: fixed;
  top: 24px; right: 28px;
  background: var(--rc-navy);
  color: var(--rc-white);
  border: none;
  width: 44px; height: 44px;
  font-size: 24px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.25s ease, transform 0.25s ease;
}
.rc-report-close:hover { background: var(--rc-orange); transform: rotate(90deg); }

/* Encabezado del informe */
.rc-rep-head {
  background: var(--rc-navy);
  color: var(--rc-white);
  padding: 56px 64px 48px;
  position: relative;
  overflow: hidden;
}
.rc-rep-head::after {
  content: ""; position: absolute; bottom: 0; left: 64px;
  width: 60px; height: 4px; background: var(--rc-orange);
}
.rc-rep-kicker {
  font-family: var(--rc-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rc-orange);
  margin-bottom: 18px;
}
.rc-rep-title {
  font-family: var(--rc-serif);
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.rc-rep-title em { font-style: italic; font-weight: 400; color: var(--rc-orange); }
.rc-rep-sub {
  font-family: var(--rc-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: rgba(247,247,247,0.78);
  margin-top: 18px;
  max-width: 620px;
}
.rc-rep-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(247,247,247,0.16);
}
.rc-rep-meta div { font-family: var(--rc-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(247,247,247,0.55); }
.rc-rep-meta div strong { display: block; color: var(--rc-white); font-size: 13px; font-family: var(--rc-serif); letter-spacing: 0; text-transform: none; font-weight: 600; margin-top: 4px; }

/* Secciones del informe */
.rc-rep-section { padding: 56px 64px; border-bottom: 1px solid var(--rc-line); }
.rc-rep-section:last-of-type { border-bottom: none; }
.rc-rep-sec-num {
  font-family: var(--rc-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rc-orange);
  margin-bottom: 14px;
}
.rc-rep-sec-title {
  font-family: var(--rc-serif);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--rc-navy);
  margin-bottom: 12px;
}
.rc-rep-sec-title em { font-style: italic; font-weight: 400; color: var(--rc-orange); }
.rc-rep-sec-intro {
  font-family: var(--rc-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--rc-navy);
  opacity: 0.85;
  max-width: 660px;
}

/* Cifras destacadas de ahorro */
.rc-headline-figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 36px;
  border: 1px solid var(--rc-line);
}
.rc-fig {
  padding: 36px 32px;
  border-right: 1px solid var(--rc-line);
}
.rc-fig:last-child { border-right: none; }
.rc-fig-label {
  font-family: var(--rc-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rc-muted);
  margin-bottom: 12px;
}
.rc-fig-num {
  font-family: var(--rc-serif);
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--rc-orange);
}
.rc-fig-foot {
  font-family: var(--rc-serif);
  font-weight: 300;
  font-size: 14px;
  color: var(--rc-navy);
  opacity: 0.7;
  margin-top: 10px;
}

/* Quick wins */
.rc-wins { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.rc-win {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--rc-line);
  border-left: 3px solid var(--rc-orange);
}
.rc-win-side { padding: 26px 28px; }
.rc-win-side.rc-prob { background: rgba(15,42,68,0.025); border-right: 1px solid var(--rc-line); }
.rc-win-tag {
  font-family: var(--rc-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.rc-win-side.rc-prob .rc-win-tag { color: var(--rc-muted); }
.rc-win-side.rc-sol .rc-win-tag { color: var(--rc-orange); }
.rc-win-text {
  font-family: var(--rc-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: var(--rc-navy);
}
.rc-win-side.rc-sol .rc-win-text { font-weight: 500; }

/* Calculadora */
.rc-calc {
  margin-top: 36px;
  border: 1px solid var(--rc-line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.rc-calc-inputs { padding: 36px 36px; border-right: 1px solid var(--rc-line); background: rgba(15,42,68,0.02); }
.rc-calc-out { padding: 36px 36px; display: flex; flex-direction: column; justify-content: center; }
.rc-field { margin-bottom: 28px; }
.rc-field:last-child { margin-bottom: 0; }
.rc-field label {
  display: block;
  font-family: var(--rc-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rc-navy);
  margin-bottom: 12px;
}
.rc-field-row { display: flex; align-items: baseline; gap: 10px; }
.rc-field-pre { font-family: var(--rc-serif); font-size: 22px; color: var(--rc-muted); }
.rc-num-input {
  font-family: var(--rc-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--rc-navy);
  border: none;
  border-bottom: 2px solid var(--rc-navy);
  background: transparent;
  width: 130px;
  padding: 2px 0;
  outline: none;
  -moz-appearance: textfield;
}
.rc-num-input::-webkit-outer-spin-button,
.rc-num-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.rc-num-input:focus { border-bottom-color: var(--rc-orange); }
.rc-field-unit { font-family: var(--rc-mono); font-size: 11px; color: var(--rc-muted); letter-spacing: 0.08em; }
.rc-range { width: 100%; margin-top: 16px; accent-color: var(--rc-orange); }

.rc-calc-out-label {
  font-family: var(--rc-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rc-muted);
}
.rc-calc-out-big {
  font-family: var(--rc-serif);
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--rc-orange);
  margin: 8px 0 6px;
}
.rc-calc-out-period { font-family: var(--rc-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--rc-navy); opacity: 0.6; text-transform: uppercase; }
.rc-calc-breakdown {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rc-line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rc-calc-line { display: flex; justify-content: space-between; align-items: baseline; }
.rc-calc-line span { font-family: var(--rc-serif); font-size: 15px; color: var(--rc-navy); opacity: 0.8; }
.rc-calc-line strong { font-family: var(--rc-serif); font-weight: 700; font-size: 18px; color: var(--rc-navy); }

/* Proyección 3 años */
.rc-proj {
  margin-top: 36px;
  background: var(--rc-navy);
  color: var(--rc-white);
  padding: 48px 48px;
  text-align: center;
}
.rc-proj-label {
  font-family: var(--rc-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rc-orange);
  margin-bottom: 18px;
}
.rc-proj-num {
  font-family: var(--rc-serif);
  font-weight: 800;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.rc-proj-foot {
  font-family: var(--rc-serif);
  font-weight: 300;
  font-style: italic;
  font-size: 17px;
  color: rgba(247,247,247,0.75);
  margin-top: 18px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Antes / después */
.rc-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 36px; border: 1px solid var(--rc-line); }
.rc-ba-col { padding: 36px 34px; }
.rc-ba-col.rc-before { border-right: 1px solid var(--rc-line); }
.rc-ba-col.rc-after { border-top: 3px solid var(--rc-orange); }
.rc-ba-col.rc-before { border-top: 3px solid rgba(15,42,68,0.3); }
.rc-ba-head {
  font-family: var(--rc-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 24px;
}
.rc-ba-col.rc-before .rc-ba-head { color: var(--rc-muted); }
.rc-ba-col.rc-after .rc-ba-head { color: var(--rc-orange); }
.rc-ba-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.rc-ba-list li {
  font-family: var(--rc-serif);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  color: var(--rc-navy);
  padding-left: 24px;
  position: relative;
}
.rc-ba-col.rc-before .rc-ba-list li::before { content: "—"; position: absolute; left: 0; color: var(--rc-muted); }
.rc-ba-col.rc-after .rc-ba-list li::before { content: "→"; position: absolute; left: 0; color: var(--rc-orange); font-weight: 600; }

/* CTA final del informe */
.rc-rep-cta {
  background: rgba(255,117,31,0.05);
  padding: 56px 64px;
  text-align: center;
}
.rc-rep-cta-title {
  font-family: var(--rc-serif);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--rc-navy);
  margin-bottom: 14px;
}
.rc-rep-cta-title em { font-style: italic; font-weight: 400; color: var(--rc-orange); }
.rc-rep-cta-sub {
  font-family: var(--rc-serif);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.5;
  color: var(--rc-navy);
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 32px;
}
.rc-rep-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.rc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rc-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 18px 30px;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid var(--rc-navy);
  transition: all 0.3s cubic-bezier(0.22,1,0.36,1);
}
.rc-btn-primary { background: var(--rc-orange); border-color: var(--rc-orange); color: var(--rc-white); }
.rc-btn-primary:hover { background: var(--rc-navy); border-color: var(--rc-navy); gap: 18px; }
.rc-btn-wa {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.rc-btn-wa:hover { background: #1ebe5a; border-color: #1ebe5a; gap: 16px; }
.rc-btn-wa svg { flex-shrink: 0; }
.rc-btn-ghost { background: transparent; color: var(--rc-navy); }
.rc-btn-ghost:hover { background: var(--rc-navy); color: var(--rc-white); gap: 18px; }
.rc-rep-disclaimer {
  font-family: var(--rc-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--rc-muted);
  margin-top: 28px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .rc-rep-head { padding: 40px 28px 34px; }
  .rc-rep-head::after { left: 28px; }
  .rc-rep-section, .rc-rep-cta { padding: 40px 28px; }
  .rc-headline-figures { grid-template-columns: 1fr; }
  .rc-fig { border-right: none; border-bottom: 1px solid var(--rc-line); }
  .rc-fig:last-child { border-bottom: none; }
  .rc-win { grid-template-columns: 1fr; }
  .rc-win-side.rc-prob { border-right: none; border-bottom: 1px solid var(--rc-line); }
  .rc-calc { grid-template-columns: 1fr; }
  .rc-calc-inputs { border-right: none; border-bottom: 1px solid var(--rc-line); }
  .rc-ba { grid-template-columns: 1fr; }
  .rc-ba-col.rc-before { border-right: none; border-bottom: 1px solid var(--rc-line); }
  .rc-report-close { top: 14px; right: 16px; }
}
