.content {
    display: block;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 6%;
    box-sizing: border-box;
}

/* resets do design antigo */
.main-footer .links .title:before {
    all: unset;
}

.main-footer .links li a {
    color: #fff;
    text-decoration: none;
    opacity: .63;
    font-size: 14px;
    font-family: "source-sans-pro", sans-serif !important;
    white-space: nowrap;
    margin: 4px 0px !important;
}

.app-section {
    display: none;
}

.flex-box {
    display: flex;
}

.main-footer .copy p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    text-align: center;

    a {
        font-size: 12px;
        display: inline-block !important;
    }
}

/* fim resets do design antigo */
/* novo design */
.main-footer {
    background-color: #1c1a16 !important;
    padding: 40px 0 0;

    .content.flex-box {
        flex-direction: column;

        .links {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            padding: 0 30px 50px;
            border-bottom: 3px solid #fff;
            position: relative;
            min-height: 150px;

            .flex-box.content-links {
                align-items: start;
                justify-content: space-between;
                width: 60%;
                margin-bottom: 0 !important;

                .title {
                    font-size: 16px;
                    font-weight: 600;
                    color: #fff;
                    margin-bottom: 4px;
                    margin-left: -15px;
                    cursor: pointer;
                    display: flex;
                    align-items: center;
                    justify-content: start;

                    svg {
                        transition: transform 0.3s ease-in-out;
                    }

                    &.active svg {
                        transform: rotate(90deg);
                        transition: transform 0.3s ease-in-out;
                    }
                }

                .menu-footer {
                    width: 150px;
                }
            }
        }

        .baixe-app {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;

            p {
                font-size: 16px;
                font-weight: 500;
                color: #fff;
                margin: 0;
                line-height: 1.2;
                text-align: center;
            }

            a {
                aspect-ratio: 140 / 33;
                width: 140px;
                height: 33px;
                display: flex;
                align-items: center;
                justify-content: center;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }

        .squares {


            margin: 0 !important;
            gap: 20px;
            align-items: center;

            li {
                border: 1px solid #fff;
                text-align: center;
                list-style: none;
                width: 140px;
                height: 30px;
                margin: 0 !important;
                border-radius: 5px;

                a {
                    padding: 0;
                    line-height: 30px;
                    text-wrap-mode: nowrap;
                    font-size: 10px;
                    text-transform: uppercase;
                    opacity: 1 !important;
                    text-align: center;
                    display: block;
                }

                &:hover {
                    background-color: #fff;

                    a {
                        color: #000;
                    }
                }
            }
        }

        .access {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 30px;

            > div {
                display: flex;
                align-items: end;
                justify-content: start;
                width: 100%;
                gap: 10px;

                .social {
                    margin: 0 !important;
                    align-items: center;
                    gap: 10px;

                    li {
                        margin: 0 !important;
                        opacity: 1 !important;

                        a {
                            display: block;
                        }
                    }
                }
            }

        }
    }

    .copy {
        margin: 0 !important;
        padding-bottom: 30px;

        a {
            color: #fff;
            text-decoration: none;

            &:hover {
                text-decoration: underline;
            }
        }
    }

    .go-top {
        right: 30px;

        img {
            width: 15px;
            height: auto;
            border: 1px solid #fff;
            border-radius: 10px;
            padding: 5px;
        }
    }
}

.main-footer .content {
    max-width: 1500px;
    position: relative;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    body .main-footer {
        .links {
            padding: 0 !important;
            gap: 10px !important;
            align-items: start !important;
            border: none !important;
            margin: 30px 0;

            li {
                display: block !important;
                padding: 0 !important;
            }

            .flex-box.content-links {
                width: calc(50% - 5px) !important;
                gap: 25px;
                display: flex;
                flex-direction: column;
            }

        }

        .squares {
            position: static !important;
            flex-direction: column;
            width: calc(50% - 5px) !important;
            gap: 10px !important;
            align-items: end !important;

            li {
                display: block !important;
                height: 20px !important;

                a {
                    padding: 0 !important;
                    line-height: 20px !important;
                }
            }
        }

        .access {
            padding: 20px 0 !important;
        }

        .social {
            padding: 0px;

            img {
                width: 28px !important;
            }
        }

        .baixe-app {
            flex-direction: row !important;
            flex-wrap: wrap;
            gap: 20px !important;

            p {
                flex: 0 0 100%;
            }
        }
    }
}