.footer-wrapper {
    background-color: var(--main-color);
        box-shadow: 0 4px 4px 5px rgba(174, 174, 174, 0.25);
}

.footer-wrapper .footer-left {
    padding-top: 2.5rem;

    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
    max-width: 28.4375rem;
    margin-right: 7.5rem;
    padding-bottom: 1.875rem;

    min-width: 22.8125rem;
}

.footer-wrapper .footer-left .footer-title {
    color: #FFF;
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.875rem;

    text-transform: uppercase;
    
}

.footer-wrapper .footer-left .footer-description {
    font-family: var(--font-family);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem;
    color: #FFF;
}

.footer-wrapper .footer-right .footer-support {
    min-width: 16.9375rem;
}

.footer-wrapper .footer-right .footer-about span,
.footer-wrapper .footer-right .footer-support span {
    color: var(--cor-secundria);
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.875rem;
    margin-bottom: 1.5625rem;
}

.footer-wrapper .footer-content-wrapper {
    display: flex;

}

.footer-wrapper .footer-right {
    display: flex;
    justify-content: space-between;

    padding-top: 2.5rem;
    padding-bottom: 1.875rem;

    gap: 3.125rem;
}


.footer-wrapper .footer-right .footer-about,
.footer-wrapper .footer-right .footer-support {
    display: flex;
    flex-direction: column;
    gap: 0.3125rem;
}

.footer-wrapper .footer-right .footer-about a,
.footer-wrapper .footer-right .footer-support a {
    color: #FFF;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625rem;

    text-decoration: none;
    transition: ease .3s all;
    width: max-content;
}

.footer-wrapper .footer-right a:hover {
    text-decoration: underline;
}

.footer-wrapper .footer-right .footer-social {
    margin-top: 1.875rem;
    display: flex;
    gap: 1.25rem;
}

.footer-wrapper .footer-right .footer-social a:hover {
    transition: ease .3s all;
    transform: scale(1.1);
}

.footer-wrapper .footer-right .footer-social .icon.linkedin {
    content: url('../images/linkedin.svg');
}

.footer-wrapper .footer-right .footer-social .icon.youtube {
    content: url('../images/youtube.svg');
}


#caixasegura-footer {
    background-color: var(--main-color);
}

#caixasegura-footer .footer-content {
    display: flex;
    justify-content: space-between;

    padding: 1.3125rem 0;

    width: 72.5rem;
    margin: 0 auto;

    border-top: solid 1px var(--cor-secundria);

    color: #FFF;
}

#caixasegura-footer .footer-content a {
    text-decoration: none;
    color: #fff;
}

#caixasegura-footer .footer-content a:hover {
    text-decoration: underline;
}


@media (max-width: 1160px) {
    #caixasegura-footer .footer-content {
        width: 94%;
    }

    .footer-wrapper .footer-left {
        margin-right: 1.875rem;
    }

}

@media (max-width: 860px) {
    .footer-wrapper .footer-content-wrapper {
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    .footer-wrapper .footer-left {
        padding-bottom: 0;
        margin-right: 0;
    }

    .footer-wrapper .footer-right {
        padding-top: 0;
    }
    
}


@media (max-width: 650px) {
    #caixasegura-footer .footer-content {
        flex-direction: column;
        gap: 0.9375rem;
        padding-top: 1.875rem;
    }
}

@media (max-width: 480px) {
    .footer-wrapper .footer-right {
        flex-direction: column;
        gap: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .footer-wrapper .footer-right .footer-about span,
    .footer-wrapper .footer-right .footer-support span {
        margin-bottom: 0.625rem;
    }

        .footer-wrapper .footer-left {
            min-width: unset;
        }
}