#rodape {
    display: flex;
    justify-content: space-evenly;
    align-items: top;
    flex-direction: row;
    padding: 20px;
    min-height: 10vh;
    background-color: #133E68;
    color: white;
    gap: 10px;
    font-size: 12px;
}

#rodape>div {
    border-right: 2px solid white;
    padding: 10px;
    width: 100%;
}

#rodape .termos {
    border: none;
}

#rodape .termos h5 {
    display: inline-block;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

#rodape>div:last-child {
    border: none;
}


.noticias {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.titulo-rodape {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
}

.noticias ul li {
    text-decoration: underline;
    transition: 0.2s ease-in-out;
    margin-block: 10px;
}

.noticias ul li:hover,
.termos h5:hover {
    color: rgb(245, 223, 193);
}

.endereco p {
    margin-block: 10px;
}


.redes-sociais img {
    width: 35px;
}

.redes-sociais ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.redes-sociais a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    color: white;
    transition: 0.3s ease;
    border: 2px solid #133E68;
    border-radius: 4px;
}

.redes-sociais li {
    display: inline;
}

.redes-sociais a:hover {
    background-color: #42d1d1;
    border: 2px solid #42d1d1;
    color: black;
}