/* ===== Journey ===== */
.journey__head { margin-bottom: 64px; }
.journey__time { position: relative; max-width: 940px; margin: 0 auto; }
.journey__line {
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 2px; height: 100%; background: var(--sand); border-radius: 2px; overflow: hidden;
}
.journey__line-fill { width: 100%; background: linear-gradient(var(--gold-400), var(--gold-600)); transition: height .15s linear; }

.journey__step { position: relative; display: flex; margin-bottom: 36px; min-height: 120px; }
.journey__step:last-child { margin-bottom: 0; }
.journey__step--l { justify-content: flex-start; }
.journey__step--r { justify-content: flex-end; }

.journey__card {
  width: calc(50% - 52px); background: var(--paper);
  border: 1px solid var(--mist); border-radius: var(--r); padding: 26px 28px;
  box-shadow: var(--sh-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.journey__card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.journey__tag { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-700); font-weight: 600; }
.journey__t { font-family: var(--font-display); font-weight: 600; font-size: 21px; color: var(--ink); margin: 8px 0 8px; }
.journey__d { font-size: 14.5px; color: var(--t-on-light-soft); line-height: 1.65; }

.journey__node {
  position: absolute; left: 50%; top: 30px; transform: translateX(-50%);
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--gold-700);
  box-shadow: 0 0 0 6px var(--ivory), var(--sh-sm); z-index: 2;
  transition: background .4s var(--ease), color .4s var(--ease), transform .4s var(--ease);
}
.journey__step.is-in .journey__node { background: var(--navy-800); border-color: var(--navy-800); color: var(--gold-300); transform: translateX(-50%) scale(1.06); }

/* migrado de estilos inline */
.journey__title { margin: 18px auto 16px; max-width: 14em; }
.journey__lead { max-width: 38em; margin: 0 auto; }

@media (max-width: 760px) {
  .journey__line { left: 27px; }
  .journey__step, .journey__step--l, .journey__step--r { justify-content: flex-start; padding-left: 70px; }
  .journey__card { width: 100%; }
  .journey__node { left: 27px; }
}
