@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nata+Sans:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');   

*{
    margin: 0px;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto;
}

a{
    text-decoration: none;
    color: inherit;
    flex: 0 0 120px;
}

.cabecalho{
    display: flex;
    height: 15vh;
    align-items: center;
    justify-content: center;
    background-color: #5c3d89;
    color: #fff;
}

.div_titulo_texto{
    border-bottom: solid #ffffff;
}

.container_cards{
    width: 100%;
    height: 50vh;
    background-color: #5c3d89;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

.container_cards_menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    max-width: 100vw;
    padding: 0 10px;
}

.container_cards_menu::-webkit-scrollbar {
    display: none;
}

.card{
    flex: 0 0 120px;
    height: 150px;
    margin: 5px;
    border-radius: 8px;
    background-color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
}

.logo_mapa{
    width: 50%;
    padding: 2px;
}

span{
    width: 90%;
    background-color: #5f5f5f;
    height: 10px;
    border-radius: 8px;
    margin: 2px;
}

.container_rodape{
    margin-top: 20px;
    height: 25vh;
    display: flex;
}

.imagem_rodape{
    width: 50%;
    border-right: solid 1px #5f5f5f;
    display: flex;
    justify-content: center;
}

.imagem_rodape img {
    width: 50%;
}

.info_rodape{
    margin-left: 5px;
    width: 50%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
}

.info_rodape h2 {
    font-size: 14px;
    padding: 7px;
}

.info_rodape p {
    font-size: 11px;
}
