/* 🎯 Botão Smurfs MD10 exclusivo - gradiente fixo e brilho rosa */
.menu-item-40264 a {
    background: linear-gradient(45deg, #ff007f, #d100d1, #a200ff); /* rosa → magenta → roxo */
    color: #fff !important;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: cover;
}

/* Hover – aumenta um pouco e brilha mais */
.menu-item-40264 a:hover {
        transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
}

/* ✨ Efeito de brilho “passando” – agora ROSA */
.menu-item-40264 a::before {
    content: "";
    position: absolute;
    background: rgba(255, 105, 180, 0.25); /* 💖 brilho rosa claro */
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}

/* ✨ Animação do brilho passando */
@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}