.container__footer {
    border-top: 1px solid rgba(76, 31, 81, 0.14);

    .conhecer_portifolio {
        background: var(--background-cream);
        padding: 2.5rem var(--page-gutter);

        section {
            display: grid;
            gap: 1.375rem;
            margin: 0 auto;
    
            h2 {
                max-width: 20rem;
                color: var(--aunare-purple);
                font-size: 1.75rem;
                font-weight: 400;
                line-height: 1.18;
                text-align: center;
                justify-self: center;
            }
    
            a {
                min-width: 18rem;
                min-height: 3rem;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                justify-self: center;
                padding: 0.375rem 1.5rem;
                border: 1px solid var(--medium-text);
                border-radius: 999rem;
                color: var(--medium-text);
                font-size: 0.8125rem;
                font-weight: 400;
                line-height: 1;
                transition: background 180ms ease, color 180ms ease;
            }
    
            a:hover {
                color: var(--white);
                background: var(--aunare-purple);
            }
        }
    }

    footer {
        width: calc(100% - (var(--page-gutter) * 2));
        max-width: var(--page-max);
        display: grid;
        gap: 1.5rem;
        margin: 0 auto;
        padding: 1.25rem 0 1.75rem;
    }

    .footer-social {
        display: flex;
        align-items: center;
        gap: 0.8125rem;

        img {
            width: 1.875rem;
            height: 1.875rem;
        }
    }

    .footer-main {
        display: grid;
        gap: 1.5rem;
    }

    .footer-contact {
        display: grid;
        gap: 0.875rem;

        > img {
            width: 7.5rem;
            margin-bottom: 0.5rem;
        }

        address,
        p {
            color: var(--medium-text);
            font-size: 0.75rem;
            font-weight: 400;
            line-height: 1.45;
        }
    }

    .footer-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.75rem;

        div {
            display: grid;
            align-content: start;
            gap: 0.75rem;
        }

        h3 {
            color: var(--aunare-purple);
            font-size: 0.75rem;
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            color: var(--medium-text);
            font-size: 0.75rem;
            font-weight: 400;
            line-height: 1.2;
        }
    }

    .footer-bottom {
        display: grid;
        gap: 0.5rem;
        color: var(--medium-text);
        font-size: 0.75rem;
        line-height: 1.4;
        text-align: center;

        a {
            color: var(--medium-text);
        }
    }
}

@media (min-width: 768px) {
    .container__footer {
        .conhecer_portifolio {
            width: 100%;

            > section {
                max-width: var(--page-max);
                grid-template-columns: 1fr auto;
                align-items: center;
                gap: 2rem;
                padding-top: 3.5rem;
                padding-bottom: 3.5rem;
    
                h2 {
                    max-width: 32rem;
                    justify-self: start;
                    font-size: 2rem;
                    text-align: left;
                }
    
                a {
                    justify-self: end;
                }
            }
        }

        footer {
            gap: 1.75rem;
            padding-top: 1.75rem;
        }

        .footer-main {
            grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.65fr);
            align-items: start;
            gap: 4rem;
        }

        .footer-nav {
            padding-left: 3rem;
            border-left: 1px solid rgba(76, 31, 81, 0.24);
        }

        .footer-bottom {
            grid-template-columns: 1fr auto;
            text-align: left;

            p:last-child {
                text-align: right;
            }
        }
    }
}

@media (min-width: 992px) {
    .container__footer {
        .conhecer_portifolio {
            > section {
                a {
                    font-size: 1rem;
                }
            }
        }

        .footer-contact {
            > img {
                width: 10.5rem;
            }

            address,
            p {
                font-size: 1rem;
            }
        }

        .footer-nav {
            h3 {
                font-size: 1rem;
            }

            a {
                font-size: 1rem;
            }
        }

        .footer-bottom {
            font-size: 1rem;
        }
    }
}

@media (min-width: 1200px) {
    .container__footer {
        .conhecer_portifolio {
            /* padding-right: calc((100% - var(--page-max)) / 2 + var(--page-gutter));
            padding-left: calc((100% - var(--page-max)) / 2 + var(--page-gutter)); */
        }
    }
}
