.titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 360px;
}

.titulo>h2 {
    font-size: 3.5rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-top: 12rem;
}

.prefeituras {
    display: flex;
    flex-wrap: wrap;
    max-width: 800px;
    min-width: 360px;
    margin: 1.5rem auto;
    gap: 1.5rem;
    padding-bottom: 10rem;
}

.prefeituras>a {
    /* flex: 1 1 15rem;
   border: 1px solid white;
   */
    width: 250px;
    height: 150px;
    cursor: pointer;
}

.prefeituras>a:hover {
    filter: sepia(1);
}

.prefeituras>a>img {
    margin: .5rem auto;
    margin-bottom: 10px;
}

.prefeituras>a>p {
    padding-top: .3rem;
    text-align: center;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 1rem;
    padding: .3rem 1rem 2rem;
    height: 2rem;
    font-size: 1rem;
    transition: 1s ease;
}

@media only screen and (max-width: 550px) {

    .titulo>h2 {
        font-size: 2rem;
    }

    .prefeituras {
        justify-content: center;
    }

    .prefeituras>a {
        width: 90%;
    }

    .prefeituras>a>img {
        max-width: 60px;
    }


}