/* ── VFX4 Custom Styles ── */

/* Efeito hover nos cards */
.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .hover-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
    }

/* Barra de pesquisa arredondada */
.mud-input-control {
    margin-top: 0 !important;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F0F2F5;
}

::-webkit-scrollbar-thumb {
    background: #ADB5BD;
    border-radius: 4px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #6C757D;
    }

/* Chip de promoção */
.mud-chip {
    font-size: 0.75rem !important;
}
}