/* v3.16 - Tutorial UI Components */

/* Fundo escurecido */
.tutorial-overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 10000;
    pointer-events: none; /* Permite cliques passarem se necessário, ou use 'auto' para bloquear */
    transition: opacity 0.3s ease;
}

/* Caixa de destaque amarela */
.tutorial-highlight-box {
    position: fixed;
    border: 3px solid #ffeb3b; /* Amarelo vibrante */
    border-radius: 6px;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.6); /* Truque para escurecer tudo ao redor */
    z-index: 10001;
    pointer-events: none; /* Importante: permite clicar no elemento destacado */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Balão de Texto (Tooltip) */
.tutorial-tooltip {
    position: fixed;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 10002;
    transition: top 0.3s ease, left 0.3s ease, opacity 0.3s ease;
    animation: fadeIn 0.4s ease-out;
}

.tutorial-tooltip h5 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #4f46e5; /* Primary color */
    font-weight: 700;
}

.tutorial-tooltip p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tutorial-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 10px;
}

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