/* UYARIQ SALUD · Recorrido guiado (overlay del pitch) */

.tour-bar {
  position: fixed; z-index: 200;
  left: 50%; bottom: 22px; transform: translateX(-50%);
  width: min(620px, calc(100vw - 28px));
  background: #10181A; color: #E8ECEC;
  border: 1px solid rgba(30, 139, 148, .5);
  border-radius: 18px; padding: 16px 18px 14px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
  animation: tour-in .35s var(--ease-out);
}
@keyframes tour-in { from { opacity: 0; transform: translate(-50%, 14px); } }

.tour-bar .tb-top { display: flex; align-items: baseline; gap: 10px; }
.tour-bar .tb-n {
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #E8A020; white-space: nowrap;
}
.tour-bar .tb-title { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; }
.tour-bar .tb-caption { margin: 6px 0 12px; font-size: 13px; line-height: 1.55; color: #A7B4B2; text-wrap: pretty; }

.tour-bar .tb-foot { display: flex; align-items: center; gap: 12px; }
.tour-bar .tb-dots { display: flex; gap: 5px; flex: 1; }
.tour-bar .tb-dot { width: 7px; height: 7px; border-radius: 50%; background: #2C3A3D; }
.tour-bar .tb-dot.on { background: #E8A020; }
.tour-bar .tb-dot.done { background: #1E8B94; }

.tour-bar .tb-btn {
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  font-weight: 700; font-size: 13px; padding: 9px 16px; border-radius: 999px;
  color: #E8ECEC; background: #1D2629; transition: background .15s;
}
.tour-bar .tb-btn:hover { background: #263134; }
.tour-bar .tb-btn.next { background: #E8A020; color: #10181A; }
.tour-bar .tb-btn.next:hover { background: #F4B23A; }
.tour-bar .tb-exit {
  position: absolute; top: 10px; right: 12px; text-decoration: none;
  color: #6E7C7A; font-size: 15px; font-weight: 700; padding: 4px 8px; border-radius: 8px;
}
.tour-bar .tb-exit:hover { color: #E8ECEC; background: #1D2629; }
.tour-bar .tb-kbd { font-size: 10px; color: #6E7C7A; white-space: nowrap; }

@media (max-width: 560px) {
  .tour-bar { bottom: 8px; padding: 13px 14px 11px; }
  .tour-bar .tb-kbd { display: none; }
}
