footer {
    background: url('../../img/footer.png') no-repeat center;
    background-size: cover;

    font-family: 'Jura', sans-serif;
    color: white;
    font-size: 1rem;
}

.rodape {
    width: 100%;

    background-color: rgb(92 87 77 / 35%);
    backdrop-filter: blur(3px) brightness(0.3);

    padding-inline: 10%;
}

/* informacoes */
.informacoes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;

    padding-block: 20px;
}

.rodape .contato {
    width: 100%;
    max-width: 300px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;

    div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;


        h3 {
            margin: 0;
            font-size: 1.3rem;
        }

        p {
            padding: 0;
            font-size: 1.1rem;
            color: #fefefe;
        }
    }

    a>i {
        font-size: 18px;
        margin-right: 5px;
    }
}

.informacoes h3 {
    font-weight: 400;
    font-size: 1.5rem;
}

.informacoes p {
    margin: 0;
    padding-inline: 15px;
    color: #c8c8c8;
}

.informacoes a {
    color: white;
    text-decoration: none;
}

iframe {
    width: 100%;
    max-width: 300px;
    border-radius: 15px;
}

.rodape hr {
    margin: 0;
}

/* FIM informacoes END */

/* Copy Right */
.autoria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;

    padding-block: 50px;
}

.rodape .logo-prefeitura {
    width: 100%;
    height: 100px;

}

/* FIM Copy Right END */

@media (max-width:768px) {
    .informacoes {
        padding: 40px 0;
        justify-content: center;
        text-align: center;

        .localizacao h3 {
            margin-bottom: 15px;
        }
    }

    .autoria {
        padding: 40px 0;
        text-align: center;
    }
}