/* Recorrido guiado. El realce es un marco de óxido, no un resplandor: la
   profundidad de la lámina sigue saliendo de los filetes. */

.tour__highlight {
  position: absolute;
  z-index: 5;
  border: 1px solid var(--rust);
  outline: 2px solid rgba(243, 236, 218, .55);
  pointer-events: none;
  transition: top .18s ease-out, left .18s ease-out, width .18s ease-out, height .18s ease-out;
}

.tour__card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  background: var(--paper-sheet);
  border-top: 1px solid var(--rule-45);
  padding: var(--sp-14) var(--sp-18) calc(var(--sp-18) + env(safe-area-inset-bottom));
  animation: upsheet .22s ease-out;
}

.tour__head {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
}

.tour__seal {
  width: 26px;
  height: 26px;
  flex: none;
  border: 1px solid var(--rule-40);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: var(--mono-kicker);
  color: var(--ink-70);
}

.tour__count {
  flex: 1;
  font-family: var(--mono);
  font-size: var(--mono-kicker);
  letter-spacing: var(--track-kicker);
  color: var(--ink-55);
}

.tour__skip {
  border: 0;
  background: transparent;
  font-family: var(--mono);
  font-size: var(--mono-kicker);
  letter-spacing: var(--track-kicker);
  color: var(--ink-55);
  padding: 0;
}

.tour__rule { margin-top: var(--sp-10); background: var(--rule-25); }

.tour__title {
  margin: var(--sp-12) 0 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
}

.tour__text {
  margin: var(--sp-7) 0 0;
  font-size: var(--size-body);
  line-height: 1.45;
  color: var(--ink-78);
}

.tour__actions {
  display: flex;
  gap: var(--sp-9);
  margin-top: var(--sp-14);
}

.tour__back { flex: 1; }
.tour__next { flex: 2; }
