/* Tutorial guiado (coachmarks) — overlay + spotlight + globo. */
.gt-layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Capa que bloquea la interacción con la página durante el tour. */
.gt-block {
  position: fixed;
  inset: 0;
  cursor: default;
}

/* Recorte: el box-shadow gigante atenúa todo MENOS el hueco del elemento. */
.gt-spot {
  position: fixed;
  border: 2px solid #22c7a7;
  border-radius: 12px;
  box-shadow: 0 0 0 9999px rgba(20, 33, 37, 0.66);
  pointer-events: none;
  transition: top 0.18s ease, left 0.18s ease, width 0.18s ease, height 0.18s ease, opacity 0.15s ease;
}

.gt-balloon {
  position: fixed;
  width: 320px;
  max-width: calc(100vw - 24px);
  background: #142125;
  color: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  transition: top 0.18s ease, left 0.18s ease;
}

.gt-counter {
  color: #3fd6b8;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gt-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 2px 4px;
}

.gt-close:hover {
  color: #ffffff;
}

.gt-title {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin: 4px 0 6px;
}

.gt-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.45;
}

.gt-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 16px;
}

.gt-btn {
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 16px;
  transition: background 0.15s ease, color 0.15s ease;
}

.gt-prev {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

.gt-prev:hover {
  color: #ffffff;
}

.gt-primary {
  background: #22c7a7;
  color: #0c2a24;
}

.gt-primary:hover {
  background: #3fd6b8;
}

/* Botón lanzador del tutorial (compartido Desk/portal). */
.gt-launch {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(20, 33, 37, 0.12);
  border-radius: 9px;
  color: #142125;
  cursor: pointer;
  display: inline-flex;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  gap: 7px;
  padding: 8px 13px;
}

.gt-launch:hover {
  border-color: #22c7a7;
  color: #0f9d83;
}

@media (max-width: 640px) {
  .gt-balloon {
    width: calc(100vw - 24px);
    left: 12px !important;
  }
}
