body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

footer {
    background-color: #0a4275;
    margin-top: 5px;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {

    .footer,
    .hide-on-mobile {
        display: none;
    }

    .show-on-mobile {
        display: block !important;
    }

    .float-right {
        float: left !important
    }
}

.footer .container .row .col {
    padding: 5px 10px;
    /* Reduz o padding dos elementos dentro do rodapé */
}

.footer h3,
.footer h5 {
    margin: 5px 0;
    /* Reduz a margem dos títulos */
}

.fixed-bottom {
    height: 190px;
}

.show-on-mobile {
    display: none;
}

#header {

    min-height: 600px;
}