/* Estilos para páginas de evaluación */
.eval-hero {
  padding: 80px 0 60px;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.breadcrumbs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-muted); margin-bottom: 32px;
}
.breadcrumbs a:hover { color: var(--fg); }
.breadcrumbs .sep { opacity: 0.4; }

.eval-hero-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: end; }
.eval-tag {
  display: inline-block;
  background: var(--wm-azul-oscuro); color: #fff;
  padding: 6px 12px; border-radius: var(--r-pill);
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
}
.eval-hero h1 { font-size: clamp(36px, 4.4vw, 64px); margin-top: 20px; }
.eval-hero .lead { margin-top: 24px; }

.eval-stats {
  background: #fff; border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  display: grid; gap: 22px;
}
.eval-stat { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.eval-stat__label { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.eval-stat__value { font-size: 16px; font-weight: 600; color: var(--fg); text-align: right; }
.eval-stat + .eval-stat { border-top: 1px solid var(--line-soft); padding-top: 22px; }

.eval-cta-row { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }

.eval-body { padding: 80px 0; }
.eval-body-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.eval-sticky { position: sticky; top: 100px; align-self: start; }
.toc { display: flex; flex-direction: column; gap: 4px; border-left: 1px solid var(--line); padding-left: 20px; }
.toc a { font-size: 14px; color: var(--fg-muted); padding: 8px 0; }
.toc a:hover { color: var(--fg); }

.eval-content > * + * { margin-top: 56px; }
.eval-content h2 { font-size: clamp(24px, 2.2vw, 32px); }
.eval-content h3 { font-size: 20px; margin-bottom: 14px; }
.eval-content p { color: var(--fg-muted); font-size: 16px; line-height: 1.7; max-width: 64ch; }
.eval-content p + p { margin-top: 14px; }
.eval-content ul { margin: 16px 0 0; padding: 0; list-style: none; }
.eval-content ul li {
  position: relative; padding-left: 24px; color: var(--fg-muted); font-size: 15.5px;
  margin-bottom: 12px; line-height: 1.6;
}
.eval-content ul li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 12px; height: 2px; background: var(--wm-rojo);
}

.eval-callout {
  background: var(--wm-azul-oscuro); color: #fff;
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.eval-callout h3 { color: #fff; margin-bottom: 6px; }
.eval-callout p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 50ch; }

/* ====== Pittsburgh interactive ====== */
.test-section {
  padding: 80px 0;
  background: var(--bg-soft);
  min-height: calc(100vh - 200px);
}
.test-shell {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 56px;
  box-shadow: var(--shadow-md);
  max-width: 760px; margin: 0 auto;
}
.test-progress {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--fg-muted);
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.test-bar {
  flex: 1; height: 4px; background: var(--line-soft); border-radius: 2px; overflow: hidden;
}
.test-bar__fill { height: 100%; background: var(--wm-rojo); transition: width .3s ease; }

.test-eyebrow { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wm-rojo); font-weight: 500; }
.test-question {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 14px 0 10px;
}
.test-help { font-size: 14.5px; color: var(--fg-muted); margin-bottom: 32px; line-height: 1.55; }

.test-options { display: flex; flex-direction: column; gap: 10px; }
.test-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff; cursor: pointer; text-align: left;
  font-size: 15.5px; color: var(--fg);
  transition: all .15s ease; width: 100%;
}
.test-opt:hover { border-color: var(--wm-azul-oscuro); background: rgba(45,51,78,0.02); }
.test-opt.selected { border-color: var(--wm-azul-oscuro); background: var(--wm-azul-oscuro); color: #fff; }
.test-opt .radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--line); flex-shrink: 0;
  display: grid; place-items: center; transition: all .15s ease;
}
.test-opt.selected .radio { border-color: #fff; background: var(--wm-rojo); }
.test-opt.selected .radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff; }

.test-input {
  width: 100%; padding: 18px 22px;
  border-radius: var(--r-md); border: 1px solid var(--line);
  font: inherit; font-size: 17px; color: var(--fg); background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.test-input:focus { outline: none; border-color: var(--wm-azul-oscuro); box-shadow: 0 0 0 4px rgba(45,51,78,0.07); }

.test-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 40px; gap: 16px; }

.test-intro h2 { font-size: clamp(32px, 3.4vw, 48px); margin-bottom: 18px; }
.test-intro p { color: var(--fg-muted); font-size: 16px; line-height: 1.65; max-width: 56ch; }
.test-intro-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.test-intro-meta strong { font-size: 22px; font-weight: 700; color: var(--wm-azul-oscuro); letter-spacing: -0.02em; display: block; }
.test-intro-meta span { font-size: 13px; color: var(--fg-muted); margin-top: 4px; display: block; }

/* Result */
.test-result { text-align: center; }
.test-result__score {
  display: inline-grid; place-items: center;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--wm-azul-oscuro);
  color: #fff;
  margin: 0 auto 32px;
  position: relative;
}
.test-result__score-num { font-size: 72px; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.test-result__score-out { font-size: 13px; opacity: 0.6; margin-top: 4px; letter-spacing: 0.1em; text-transform: uppercase; }
.test-result__band {
  display: inline-block; padding: 8px 16px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.test-result__band--good { background: rgba(31,138,91,0.12); color: #1F8A5B; }
.test-result__band--mid { background: rgba(217,150,30,0.15); color: #B57810; }
.test-result__band--bad { background: rgba(204,45,59,0.12); color: var(--wm-rojo); }

.test-result__breakdown {
  margin: 40px 0; padding: 28px; background: var(--bg-soft); border-radius: var(--r-lg);
  text-align: left;
}
.test-result__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.test-result__row:last-child { border-bottom: none; }
.test-result__row strong { font-weight: 500; color: var(--fg); }
.test-result__row .v { font-weight: 600; color: var(--wm-azul-oscuro); }

/* Time pickers grid for Pittsburgh times */
.time-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) {
  .test-shell { padding: 32px 24px; }
  .eval-body-grid, .eval-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .time-row { grid-template-columns: 1fr; }
}
