#footer {
    position: fixed;
    top: 3rem;
    right: 0;
    left: 0;
    min-width: 100vw;
    width: 100vw;
    max-width: 100vw;
    background-image: url('../media/backgrounds/Cielo.png');
    background-size: cover;
    overflow-y: hidden;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    transform: translateY(200vh);
    padding-bottom: 3rem;
}
@media only screen and (min-width: 1024px) {
    #footer {
        top: 0;
        min-width: calc(100vw - 3rem);
        width: calc(100vw - 3rem);
        max-width: calc(100vw - 3rem);
        padding-bottom: 0;
    }
}

#footer-questionary {
    display: flex;
    flex-direction: column;
}

#footer-questionary > img {
    height: 65vh;
    animation: section_cta_img 2s ease infinite alternate;
}
@media only screen and (min-width: 1024px) {
    #footer-questionary>img {height: 50vh;}
}

.footer-buttons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -6rem;
}
.footer-buttons-container li {margin-bottom: 1rem;}
.footer-buttons-container a {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media only screen and (min-width: 1024px) {
    .footer-buttons-container {
        position: relative;
        transform: translateY(-2rem);
        margin-top: 0;
    }

    .footer-buttons-container li {
        position: absolute;
        margin-bottom: 0;
    }

    .footer-buttons-container li:nth-of-type(1) {
        top: 0;
        left: 0;
    }
    .footer-buttons-container li:nth-of-type(2) {
        top: 3.5rem;
        left: 25%;
        transform: translateX(-25%);
    }
    .footer-buttons-container li:nth-of-type(3) {
        top: 7rem;
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-buttons-container li:nth-of-type(4) {
        top: 3.5rem;
        right: 25%;
        transform: translateX(25%);
    }
    .footer-buttons-container li:nth-of-type(5) {
        top: 0;
        right: 0;
    }
}

@media (hover: hover) {
    .footer-buttons-container button:hover {
        background-color: var(--c-pink);
        color: var(--c-white) !important;
        transform: scale(1.1);
    }
}


/* 
BOTTOM
*/
#footer-bottom {
    padding-top: 8rem;
    background: linear-gradient(-180deg, rgba(255, 132, 243, 0) 0%, rgba(255, 132, 243, 1) 10%);
}
@media only screen and (min-width: 1024px) {
    #footer-bottom {background: linear-gradient(-180deg, rgba(255, 132, 243, 0) 0%, rgba(255, 132, 243, 1) 20%);}
}
#footer-bottom a {color: white !important;}

.footer-logos {margin-top: 1rem;}

.footer-logos p {
    text-align: center;
    margin-bottom: 1rem;
}
@media only screen and (min-width: 1024px) {
    .footer-logos p {text-align: left;}
}

.footer-logos img {
    height: 2.75rem;
    width: auto;
    max-width: 50vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
    object-position: top center;
}

.footer-logo-bigger {
    height: 3.75rem !important;
    max-width: unset !important;
}
@media only screen and (min-width: 1024px) {
    .footer-logos img {
        height: 2.5rem;
        max-width: 12vw;
        margin-left: 0;
        margin-right: 0;
    }

    #footer-logos-instal img {margin-left: -1.3333vw;}
}

#footer-bottom > * {grid-column: 1/-1;}
@media only screen and (min-width: 1024px) {
    .footer-logos:nth-of-type(1) {grid-column: 1/2 !important; grid-row: 1/3;}
    .footer-logos:nth-of-type(2) {grid-column: 2/3 !important; grid-row: 1;}
    .footer-logos:nth-of-type(3) {grid-column: 3/4 !important; grid-row: 1;}
    .footer-logos:nth-of-type(4) {grid-column: 4/5 !important; grid-row: 1;}
    .footer-logos:nth-of-type(5) {grid-column: 2/3 !important; grid-row: 2;}
    .footer-logos:nth-of-type(6) {grid-column: 3/4 !important; grid-row: 2;}
    .footer-logos:nth-of-type(7) {grid-column: 4/5 !important; grid-row: 2;}
}

.footer-bottom-mobile img {
    width: 70vw;
    margin: 2rem auto .5rem;
}

.footer-mobile-social {justify-content: center;}
.footer-mobile-social a {margin: 0 1rem;}

.footer-bottom-mobile > a {
    margin: 2rem 0 1rem auto;
    width: fit-content;
}

.footer-mobile-pages {flex-wrap: wrap;}
.footer-mobile-pages > * {
    width: 50%;
    margin-top: .5rem;
}
@media only screen and (min-width: 1024px) {
    .foter-bottom-desktop {
        margin-top: 4rem;
        display: grid !important;
        align-items: self-end;
    }
    .foter-bottom-desktop > p {grid-column: 1/2;}
    .foter-bottom-desktop > .footer-socials {grid-column: 2/3;}
    .footer-socials a {margin-right: 1.5rem;}
    .foter-bottom-desktop > .footer-sec_pages {
        grid-column: 3/-1;
        align-items: self-end;
    }
    .footer-sec_pages a {margin-right: 1.5rem;}
    .footer-link-top {margin-left: auto;}
}

.footer-top-img {width: 1.25rem !important;}