/* Фиксированное позиционирование и анимация для меню */
.uc-menudinamica {
    position: fixed !important;
    /* top: 0; */
    top: -100px;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out !important;
    /* transform: translateY(-100%); */
}

/* Класс для отображения меню */
.uc-menudinamica.visible {
    /* transform: translateY(0) !important; */
    top: 50 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}