/* ========= CIRCUITO HISTÓRICO TIMBUES - PUBLIC ========= */

:root {
  --brand: #1e5799;
  --brand-dark: #174270;
  --success: #198754;
  --warning: #ffc107;
}

body {
  background: #f4f6f8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-header {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: 1.25rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.site-header .brand strong { font-size: 1.25rem; }
.site-header .brand small { color: rgba(255,255,255,0.85) !important; }

.site-footer {
  background: #fff;
  border-top: 1px solid #dee2e6;
  padding: 1.5rem 0;
  margin-top: 3rem;
  color: #6c757d;
}

/* ---------- WIZARD STEPS ---------- */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.wizard-steps .step {
  flex: 1;
  text-align: center;
  color: #adb5bd;
  font-size: 0.9rem;
  position: relative;
}
.wizard-steps .step span {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.wizard-steps .step.active { color: var(--brand); font-weight: 500; }
.wizard-steps .step.active span { background: var(--brand); color: #fff; }

/* ---------- RECORRIDO CARD ---------- */
.recorrido-card {
  border: 2px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.15s;
  background: #fff;
  height: 100%;
  display: flex;
  gap: 1rem;
}
.recorrido-card:hover {
  border-color: var(--brand);
  box-shadow: 0 2px 8px rgba(30,87,153,0.15);
}
.recorrido-card.selected {
  border-color: var(--brand);
  background: #eaf3ff;
  box-shadow: 0 2px 12px rgba(30,87,153,0.25);
}
.rc-date {
  text-align: center;
  min-width: 90px;
  padding: 0.5rem;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
}
.rc-dia { font-size: 0.85rem; display: block; text-transform: uppercase; }
.rc-fecha { font-weight: bold; display: block; font-size: 1.1rem; }
.rc-info { flex: 1; font-size: 0.95rem; }
.rc-info div { margin: 0.2rem 0; }
.rc-info i { color: var(--brand); margin-right: 0.3rem; }

/* ---------- PERSONA BOX ---------- */
.persona-box {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  background: #f8f9fa;
}
.persona-box h6 { color: var(--brand); font-weight: 600; }

.card-header { background: #fff; border-bottom: 2px solid var(--brand); }
