/* ═══════════════════════════════════════════════════
 * vs-playtomic.css · overrides editoriales
 * Tabla comparativa NYT Sports · Calculadora ROI
 * Crema cálido + Tinta + Naranja teja (1 acento)
 * Sin gradients · sin shadows pesadas · sin emojis
 * ═══════════════════════════════════════════════════ */

/* ─── HERO ─────────────────────────────────────────── */
.vs-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) {
  .vs-hero { padding: 96px 0 72px; }
}

.vs-hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .vs-hero-grid { padding: 0 40px; } }
@media (min-width: 1280px) { .vs-hero-grid { padding: 0 48px; } }

.vs-hero-headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -.022em;
  color: var(--ink);
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 22ch;
}
.vs-hero-headline em {
  font-style: italic;
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}
.vs-hero-headline em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 4px;
  background: var(--accent);
  z-index: -1;
}

.vs-hero-deck {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 580px;
  margin-bottom: 28px;
}

.vs-hero-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-3);
  padding: 14px 0;
  border-top: 1px solid var(--paper-3);
  border-bottom: 1px solid var(--paper-3);
  max-width: 580px;
}
.vs-hero-byline strong { color: var(--ink); font-weight: 600; }
.vs-hero-note {
  margin: 14px 0 0;
  padding: 12px 16px;
  background: rgba(0,0,0,.03);
  border-left: 2px solid var(--accent);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  border-radius: 0 4px 4px 0;
  max-width: 640px;
}
.vs-hero-note strong { color: var(--ink); font-weight: 600; }
.vs-hero-meta {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ─── TABLA COMPARATIVA ────────────────────────────── */
.vs-table-section {
  padding: 80px 0 96px;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) { .vs-table-section { padding: 96px 0 112px; } }

.vs-table-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .vs-table-wrap { padding: 0 40px; } }

.vs-table-head {
  margin-bottom: 40px;
  max-width: 720px;
}
.vs-table-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 14px;
}
.vs-table-title em { font-style: italic; }
.vs-table-deck {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
}

.vs-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -24px;
  padding: 0 24px;
}

.vs-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 15px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.vs-table thead th {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink-3);
  text-align: left;
  padding: 18px 16px;
  border-bottom: 1px solid var(--rule);
  vertical-align: middle;
}
.vs-table thead th.vs-col-us {
  color: var(--paper);
  background: var(--ink);
  letter-spacing: .04em;
  font-size: 12px;
}
.vs-table thead th.vs-col-them {
  color: var(--ink-3);
}
.vs-table tbody th {
  text-align: left;
  font-weight: 500;
  color: var(--ink-2);
  padding: 18px 16px;
  border-bottom: 1px solid var(--paper-3);
  width: 44%;
  font-family: var(--sans);
  font-size: 15px;
}
.vs-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--paper-3);
  font-variant-numeric: tabular-nums;
  vertical-align: middle;
  width: 28%;
}
.vs-table tbody td.vs-cell-us {
  color: var(--ink);
  font-weight: 600;
  background: var(--paper-2);
}
.vs-table tbody td.vs-cell-them {
  color: var(--ink-3);
}
.vs-table tbody tr:last-child th,
.vs-table tbody tr:last-child td { border-bottom: none; }

.vs-check, .vs-cross {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.vs-check::before {
  content: "";
  width: 14px; height: 14px;
  border: 1px solid var(--ink);
  background: var(--accent);
  display: inline-block;
  flex-shrink: 0;
  /* Diamante editorial · sin tick FontAwesome */
  transform: rotate(45deg);
}
.vs-cross::before {
  content: "—";
  font-family: var(--mono);
  color: var(--ink-4);
  font-size: 14px;
  letter-spacing: -.05em;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

.vs-table tfoot td {
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-3);
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.vs-link-accent {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  transition: opacity .15s var(--ease);
}
.vs-link-accent:hover { opacity: .75; }

/* ─── CALCULADORA ROI ──────────────────────────────── */
.roi-section {
  padding: 80px 0 96px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 768px) { .roi-section { padding: 112px 0 128px; } }

.roi-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .roi-wrap { padding: 0 40px; } }

.roi-head { margin-bottom: 48px; max-width: 720px; }
.roi-kicker {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.roi-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.018em;
  color: var(--ink);
  margin-bottom: 14px;
}
.roi-title em { font-style: italic; }
.roi-deck {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
}

.roi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--paper-3);
  border: 1px solid var(--paper-3);
}
@media (min-width: 1024px) { .roi-grid { grid-template-columns: 1fr 1fr; } }

.roi-inputs,
.roi-results {
  background: var(--paper);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.roi-results {
  background: var(--ink);
  color: var(--paper);
  border-top: 2px solid var(--accent);
}
@media (min-width: 1024px) {
  .roi-inputs { padding: 40px 36px; }
  .roi-results { padding: 40px 36px; border-top: none; border-left: 2px solid var(--accent); }
}

.roi-section-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 4px;
}
.roi-results .roi-section-label { color: var(--accent); }

/* Sliders */
.roi-field {
  display: grid;
  gap: 10px;
}
.roi-field-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.roi-label {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.roi-value {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 1px;
  background: var(--ink);
  outline: none;
  border-radius: 0;
  margin: 12px 0 4px;
  cursor: pointer;
}
.roi-slider::-webkit-slider-runnable-track {
  height: 1px;
  background: var(--ink);
  border: none;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--ink);
  cursor: grab;
  margin-top: -9px;
  transition: transform .15s var(--ease);
}
.roi-slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.15); }
.roi-slider::-moz-range-track {
  height: 1px;
  background: var(--ink);
  border: none;
}
.roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--ink);
  cursor: grab;
}
.roi-slider:focus-visible {
  outline: none;
}
.roi-slider:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(217,87,43,.25);
}
.roi-slider:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(217,87,43,.25);
}

.roi-range-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--ink-4);
  text-transform: uppercase;
}

/* Resultados */
.roi-results-row {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,241,234,.14);
}
.roi-results-row:last-of-type { border-bottom: none; }
.roi-row-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(245,241,234,.6);
}
.roi-row-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.018em;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.roi-row-detail {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(245,241,234,.55);
  line-height: 1.4;
}

.roi-savings {
  margin-top: 8px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(245,241,234,.18);
}
.roi-savings-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: 8px;
}
.roi-savings-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.025em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.roi-savings-detail {
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(245,241,234,.7);
  line-height: 1.5;
}
.roi-savings--negative .roi-savings-value { color: var(--paper); font-size: clamp(1.4rem, 3vw, 2rem); }
.roi-savings--negative .roi-savings-label { color: rgba(245,241,234,.6); }

.roi-disclaimer {
  margin-top: 32px;
  padding: 16px 18px;
  border: 1px solid var(--paper-3);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}
.roi-disclaimer strong { color: var(--ink); font-weight: 600; }

/* ─── DATA SECTION ─────────────────────────────────── */
.data-section {
  padding: 80px 0 96px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.data-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .data-wrap { padding: 0 40px; } }

.data-head { margin-bottom: 48px; max-width: 720px; }
.data-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.018em;
  color: var(--ink);
}
.data-title em { font-style: italic; }

.data-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.data-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--paper-3);
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .data-item { grid-template-columns: 120px 1fr; gap: 32px; }
}
.data-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 4px;
}
.data-body {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 65ch;
}
.data-body strong { color: var(--ink); font-weight: 600; }

/* ─── CTA FINAL ────────────────────────────────────── */
.vs-cta {
  padding: 96px 0;
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.vs-cta-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
@media (min-width: 768px) { .vs-cta-wrap { padding: 0 40px; } }

.vs-cta-kicker {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: inline-block;
}
.vs-cta-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.022em;
  color: var(--paper);
  margin-bottom: 24px;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}
.vs-cta-title em { font-style: italic; }
.vs-cta-deck {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: rgba(245,241,234,.78);
  max-width: 52ch;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.vs-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.vs-cta-actions .cta-primary {
  background: var(--paper);
  color: var(--ink);
}
.vs-cta-actions .cta-primary:hover { background: var(--accent); color: var(--paper); }
.vs-cta-actions .cta-primary--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--paper);
}
.vs-cta-actions .cta-primary--ghost:hover { background: var(--paper); color: var(--ink); }

/* ─── FAQ ──────────────────────────────────────────── */
.faq-section {
  padding: 80px 0 96px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .faq-wrap { padding: 0 40px; } }

.faq-head { margin-bottom: 40px; }
.faq-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -.018em;
  color: var(--ink);
}

.faq-list {
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-bottom: 1px solid var(--paper-3);
  padding: 22px 0;
}
.faq-q {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -.012em;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.faq-a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 60ch;
}

/* ─── MOBILE FINE-TUNE ─────────────────────────────── */
@media (max-width: 767px) {
  .vs-hero { padding: 40px 0 32px; }
  .vs-hero-headline { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .vs-hero-byline { flex-direction: column; align-items: flex-start; gap: 4px; }
  .vs-table-section { padding: 56px 0; }
  .vs-table { font-size: 14px; }
  .vs-table thead th { padding: 14px 12px; font-size: 10px; }
  .vs-table tbody th, .vs-table tbody td { padding: 14px 12px; font-size: 14px; }
  .roi-section { padding: 56px 0; }
  .roi-inputs, .roi-results { padding: 26px 22px; }
  .roi-row-value { font-size: 1.5rem; }
  .roi-savings-value { font-size: 2rem; }
  .data-section, .faq-section { padding: 56px 0; }
  .vs-cta { padding: 64px 0; }
  .vs-cta-actions { flex-direction: column; align-items: stretch; }
  .vs-cta-actions .cta-primary { justify-content: space-between; }
}
