@charset "UTF-8";

footer {
    width: 100%;
    min-height: 250px;
    background: #dda816;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-around;
    animation: fadeInUp;
    animation-duration: 1s;

    border-bottom: 14px solid #A67D0D;
}

footer .boxs {
    width: 320px;
    min-height: 150px;
    padding: 20px;
    padding-top: 0;
}

footer .boxs:nth-child(4) {
    width: 400px;
}

.boxs h2 {
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.boxs ul li {
    margin: 10px 20px 10px -40px; /*10px 20px*/
    list-style: none;
    color: white;
}

@media screen and (max-width: 980px) {
    .boxs ul li {
        margin: 10px 230px;
    }
}

@media screen and (max-width: 750px) {
    .boxs ul li {
        margin: 10px 50px;
    }
}

@media screen and (max-width: 400px) {
    .boxs ul li {
        margin: 10px 15px;
    }
}

.boxs ul li a {
    color: white;
    text-decoration: none;
}

.boxs ul li a:hover {
    color: white;
}

.boxs li {
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
}

.boxs p {
    color: white;
    text-align: justify;
    font-size: 20px;
    letter-spacing: 0px; /*Espaço entre as letras*/
    line-height: normal; /*Espaço entre as linhas*/
}

.boxs .social {
    font-size: 26px;
}

.footer {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #8a680c;
    padding: 0px 20px;
}

.footer h2 {
    color: #8a680c;
    font-size: 10px;
}

.footer .sociais {
    display: flex;
}

.sociais .social {
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    background-color: #8a680c;
    margin: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sociais .social a {
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #000;
    font-size: 1.5em;
}

.sociais .social:hover {
    background: #8a680c;
}

.sociais .social:hover a {
    color: white;
}



@media(max-width: 980px) {
    footer {
        flex-direction: column;
    }

    footer .boxs {
        width: 100%;
        text-align: left;
    }

    footer .boxs:nth-child(4) {
        width: 100%;
    }

    .boxs > p {
        margin-left: 230px;
    margin-right: 230px;
    padding-left: 40px;
    }
}

@media(max-width: 841px) {
    .boxs > p {
        margin-left: 165px;
        margin-right: 165px;
        padding-left: 40px;
    }
}

@media(max-width: 750px) {
    .boxs > p {
        margin: 0px 44px;
        padding: 0px;
    }
}