footer{
    background-color: var(--azul);
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.footer-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4rem;
}

.footer-content div:nth-of-type(1){
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}
/* Menu footer */
.footer-content div:nth-of-type(1) .ftr-menu{
    width: fit-content;
}

.footer-content div:nth-of-type(1) .ftr-menu nav ul li{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
.footer-content div:nth-of-type(1) .ftr-menu nav ul li a{
    color: var(--branco)
}

.footer-content div:nth-of-type(1) .ftr-infos h3{
    color: var(--amarelo);
}
.footer-content div:nth-of-type(1) .ftr-infos p{
    color: var(--branco);
}
.footer-content div:nth-of-type(1) .ftr-infos a{
    color: var(--amarelo);
}

.footer-content div:nth-of-type(1) .maps{
    /* flex: 3; */
    width: fit-content;
    display: flex;
    justify-content: center;
}
.footer-content div:nth-of-type(1) .maps iframe{
    object-fit: cover;
    width: 100%;
    height: 240px;
}

/* DIREITOS */
.direitos{
    color: white;
    margin-bottom: 1rem;
}