/* 🤖 Mascot - CSS para imagem do boleto */

.mascot-container {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99998;
    pointer-events: none;
}

.mascot-image {
    width: 60px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .mascot-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .mascot-container {
        display: none;
    }
}