/* Tour guiado — item 5 do roadmap de UX. */
.sga-tour-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    pointer-events: auto;
}

.sga-tour-target {
    position: relative;
    z-index: 2001;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.6), 0 0 0 9999px rgba(0, 0, 0, 0.4);
    border-radius: 6px;
}

.sga-tour-bubble {
    position: absolute;
    z-index: 2002;
    max-width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 16px 18px;
    font-size: 0.95rem;
    color: #212529;
}

.sga-tour-bubble h4 {
    margin: 0 0 6px 0;
    font-size: 1rem;
}

.sga-tour-bubble p {
    margin: 0 0 12px 0;
    color: #495057;
}

.sga-tour-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.sga-tour-step-counter {
    color: #868e96;
    font-size: 0.85rem;
}
