/* CSS do Rodapé da Página */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
footer {
    background-color: #000;
    color: #fff !important;
    padding: 50px 12px;
    min-height: 50vh;
}

footer .colunas-container {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: space-evenly;
    font-size: 14pt;
    color: #fff !important;
}

footer h2 {
    border-left: 5px solid var(--primaria);
    padding: 5px;
    margin: 18px 0;
    color: #fff !important;
}

.colunas-container .coluna {
    min-width: 280px;
    max-width: calc(100vw / 3);
    color: #fff !important;
}

.coluna .contatos {
    list-style: none;
    color: #fff !important;
}

.contatos li {
    margin-top: 3px;
    color: #fff !important;
}

.contatos .link {
    cursor: pointer;
    text-decoration: underline;
    color: #fff !important;
}

.contatos .link:visited {
    color: #fff;
}

.copyright-container {
    width: 100%;
  
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    color: #fff !important;
}

.copyright-container span {
    bottom: 0;
    width: 90%;
    padding: 14px;
    text-align: center;
    border-top: 2px solid var(--primaria);
    color: #fff !important;
}

#sobre-nos {
    color: #fff !important;
}