/* Forçar menu em uma única linha com Flexbox */
@media (min-width: 768px) {
    .menu.superior .nivel-um {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    .menu.superior .nivel-um > li {
        float: none !important;
        flex: 1 1 auto !important;
        text-align: center !important;
        padding: 0 5px !important;
        min-width: 0 !important; /* Permite que o item encolha se necessário */
    }
    
    .menu.superior .nivel-um > li > a {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .menu.superior .nivel-um .titulo {
        font-size: 13px !important; /* Reduz um pouco mais se necessário */
        white-space: nowrap !important;
        display: inline-block !important;
    }
}