.nexo-tour-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    z-index: 9500;
    animation: nexoTourFade .15s ease;
}

.nexo-tour-recorte {
    position: fixed;
    border-radius: 12px;
    box-shadow: 0 0 0 4000px rgba(15, 23, 42, .55);
    background: transparent;
    pointer-events: none;
    outline: 2px solid var(--nexo-brand, #0d6efd);
    transition: top .15s ease, left .15s ease, width .15s ease, height .15s ease;
}

.nexo-tour-globo {
    position: fixed;
    width: 280px;
    max-width: calc(100vw - 32px);
    background: var(--nexo-surface, #fff);
    color: var(--nexo-text, #101828);
    border-radius: var(--nexo-radius-md, 16px);
    box-shadow: var(--nexo-shadow-card, 0 14px 30px rgba(15, 23, 42, .2));
    padding: 14px 16px;
    z-index: 9501;
}

.nexo-tour-globo p {
    margin: 0 0 12px;
    font-size: 13.5px;
    line-height: 1.45;
}

.nexo-tour-globo-botones {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.nexo-tour-globo-botones button {
    border: none;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12.5px;
    cursor: pointer;
}

.nexo-tour-saltar {
    background: transparent;
    color: var(--nexo-muted, #64748b);
}

.nexo-tour-siguiente {
    background: var(--nexo-brand, #0d6efd) !important;
    color: #fff !important;
}

@keyframes nexoTourFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
