@import 'variables.css';

footer {
    background-color: var(--background-primary);
    height: 490px;
    width: 100%;
    margin-top: 20%;
}

.image {
    position: relative;
    width: 89%;
    top: -36%;
    left: 5%;
}

.maps {
    width: 100%;
    height: 442px;
    border: none;
}


.footer_container {
    position: relative;
    bottom: 50%;
    width: 100%;
    padding-left: 5%;
    padding-top: 3%;
    padding-right: 5%;
}

.footer_content {
    display: flex;
    align-items: center;
    padding-top: 3%;

}

.logo_footer_container {
    width: 37%;
    margin-right: 10%;
}

.logo_footer_container p {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: var(--bold);
    line-height: 150%;
}

.footer_menu_container {
    display: flex;
    width: 100%;
}

.footer_menu_container ul {
    width: 100%;
}

.footer_menu_container ul {
    list-style: none;
    color: white;
}

.footer_container ul li {
    line-height: 150%;
    font-style: normal;
    font-weight: 450;
    margin: 5px 0 5px 0;
}

.footer_container ul li a {
    text-decoration: none;
    color: var(--white);
}

.footer_container ul li a:hover {
    border-bottom: solid 1px var(--white);
}

.footer_menu_container ul li:first-child {
    font-weight: var(--bolder);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.sub_footer {
    position: relative;
    bottom: 46%;
    width: 100%;
    height: 57px;
    background-color: var(--text-primary);
    display: flex;
    justify-content: center;

    justify-content: space-around;
    align-items: center;
    color: var(--white);
}

.sub_footer a {
    text-decoration: none;
    color: var(--white);
}

.sub_footer a:hover {
    text-decoration: underline;
}

/* ----------------------------------------------------------------------------------------- */
/* Telas Pequenas */
@media (min-width: 249px) and (max-width: 480px) {
    .image {
        top: -10%;
    }

    .footer_container {
        background-color: var(--background-primary);
        top: -8%;
    }

    .logo_footer_container {
        width: 65%;
        margin-bottom: 15px;
    }

    .footer_content {
        flex-direction: column;
    }


    .footer_menu_container {
        flex-direction: column;

    }

    footer {
        height: auto;
        margin-top: 70%;
    }

    .sub_footer {
        bottom: 8%;
        flex-direction: column;
    }

    footer {
        height: 579px;
    }

    .menu_footer {
        display: flex;
    }
}

/* ----------------------------------------------------------------------------------------- */
/* Telas Médias */
@media (min-width: 481px) and (max-width: 1024px) {
    footer {
        margin-top: 35rem;
        height: 630px;
    }

    .image {
        top: -47%;
    }

    .footer_content {
        flex-direction: column;
    }

    .logo_footer_container {
        width: 90%;
        padding: 0;
        margin-left: 5rem;
        margin-bottom: 20px;
    }

    .footer_menu_container {
        flex-direction: column;
    }

}

/* ----------------------------------------------------------------------------------------- */
/* Telas Grandes */
@media screen and (min-width: 1024px) {
    footer {
        margin-top: 34rem;
    }
}