/* tutorial.css — estilos para el tour interactivo */
.tour-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  pointer-events: none;
}
.tour-highlight {
  position: relative;
  z-index: 9999 !important;
  box-shadow: 0 0 0 4px #6366f1, 0 0 30px rgba(99,102,241,0.4) !important;
  border-radius: var(--radius) !important;
  pointer-events: auto !important;
}
.tour-popup {
  position: fixed;
  z-index: 10000;
  background: var(--surface);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 1.2rem;
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  font-size: 0.85rem;
  line-height: 1.5;
  animation: tour-slide 0.3s ease;
}
@keyframes tour-slide {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tour-popup h4 {
  margin: 0 0 0.5rem 0;
  font-size: 0.95rem;
  color: var(--primary-hover);
}
.tour-popup p {
  margin: 0 0 0.8rem 0;
  color: var(--text-secondary);
}
.tour-popup .tour-step {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.tour-popup button {
  padding: 0.4rem 0.9rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all var(--transition);
}
.tour-next {
  background: var(--primary);
  color: #fff;
  margin-right: 0.4rem;
}
.tour-next:hover { background: var(--primary-hover); }
.tour-skip {
  background: var(--surface-hover);
  color: var(--text-secondary);
}
.tour-skip:hover { color: var(--text); }
#tour-btn {
  background: var(--primary-dim);
  border: 1px solid var(--primary);
  color: var(--primary-hover);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
#tour-btn:hover {
  background: var(--primary);
  color: #fff;
}
