/* css/components/animations.css */
.animate-fade-in {
    animation: fadeIn 0.4s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* css/components/animations.css */

/* --- Animación de rebote horizontal para la flecha --- */
@keyframes bounce-horizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* --- Animación de pulso para resaltar iconos --- */
@keyframes pulse-highlight {
    0% { box-shadow: 0 0 0 0 rgba(0, 85, 234, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 85, 234, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 85, 234, 0); }
}

/* --- Estilo de la etiqueta/flecha guía --- */
.guide-tooltip {
    position: absolute;
    background: #fff7d6;
    color: #3a2d12;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--sys-font, sans-serif);
    z-index: 20;
    pointer-events: none;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid #caa84d;
    animation: bounce-horizontal 1s infinite ease-in-out;
}

/* El piquito de la flecha apuntando a la izquierda */
.guide-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent #fff7d6 transparent transparent;
}

/* Clase para que el icono del escritorio palpite */
.needs-attention {
    animation: pulse-highlight 1.5s infinite;
    border-radius: 4px;
    background-color: rgba(0, 120, 215, 0.2);
}