/* Botón flotante para iniciar el tour */
.onboarding-floating-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: linear-gradient(135deg, #0a3b5c 0%, #1e6b8e 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 12px rgba(10, 59, 92, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.onboarding-floating-button:hover {
    background: linear-gradient(135deg, #1e6b8e 0%, #2a7ba8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 59, 92, 0.4);
}

.onboarding-floating-button:active {
    transform: translateY(0);
}

.onboarding-floating-button i {
    font-size: 1.1rem;
}

.onboarding-floating-button.active {
    background: linear-gradient(135deg, #42c0fb 0%, #0a3b5c 100%);
}

.onboarding-floating-button.guide-button-pulse {
    animation: guideButtonPulse 0.95s ease-out 3;
}

@keyframes guideButtonPulse {
    0% {
        box-shadow: 0 4px 12px rgba(10, 59, 92, 0.3);
        transform: scale(1);
    }
    55% {
        box-shadow: 0 0 0 12px rgba(66, 192, 251, 0.18), 0 8px 20px rgba(10, 59, 92, 0.5);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 12px rgba(10, 59, 92, 0.3);
        transform: scale(1);
    }
}

/* Badge de notificación en el botón */
.onboarding-floating-button .badge {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 0.25rem;
}
