.tutorial-tooltip {
    position: absolute;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 300px;
    animation: fadeIn 0.3s ease-in-out;
}

.tutorial-tooltip h4 {
    margin: 0 0 10px 0;
    color: #0d47a1;
    font-size: 16px;
}

.tutorial-tooltip p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
}

.tutorial-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.tutorial-controls button {
    padding: 5px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.btn-next {
    background: #0d47a1;
    color: white;
}

.btn-prev {
    background: #e0e0e0;
    color: #333;
}

.tutorial-reset {
    position: absolute;
    top: 10px;
    right: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Highlight para elementos do tutorial */
[data-tutorial-highlight] {
    position: relative;
    z-index: 1;
}

[data-tutorial-highlight]::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #0d47a1;
    border-radius: 4px;
    animation: pulse 1.5s infinite;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}
