/* Utilitários de exibição responsiva */
.show-max-667px {
    display: none !important;
}

.show-max-990px {
    display: none !important;
}

/* Tablets e mobile (até 990px) */
@media only screen and (max-width: 990px) {
    .show-max-990px {
        display: inherit !important;
    }

    .hide-max-990px {
        display: none !important;
    }
}

/* Mobile pequeno (até 667px) */
@media only screen and (max-width: 667px) {
    .show-max-667px {
        display: inherit !important;
    }

    .hide-max-667px {
        display: none !important;
    }

    /* Ajustes para sistema admin/moderator (se necessário) */
    .moderator .inner-navbar-custom .breadcrumb,
    .admin .inner-navbar-custom .breadcrumb {
        flex-wrap: inherit !important;
        justify-content: start !important;
    }
}
