footer
{
    min-height: 50vh;
    width: 100%;
}

footer > div.container
{
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    align-items: flex-start;
    padding: 2rem;
    padding-top: 4rem;
}

footer a
{
    font-family: var(--displayLight);
    font-size: calc(var(--smallFontSize) - 0.1rem);
    color: #666;
}

footer a:hover
{
    color: var(--orange);
}

footer ul
{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

footer div.title
{
    color: var(--orange);
    padding-bottom: 0.25rem;
    font-size: calc(var(--smallFontSize) + 0.3rem);
    font-family: var(--displayLight);
}

footer > div.container > div.social
{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem;
}

footer > div.container > div.social > a > img
{
    width: 16px;
    vertical-align: middle;
    padding-right: 0.5rem;
    box-sizing: content-box;
}

footer > div.container > div.social > a > img.youtube,
footer > div.container > div.social > a > img.whatsapp,
footer > div.container > div.social > a > img.tiktok,
footer > div.container > div.social > a > img.phone
{
    width: 21px;
    margin-left: -2px;
}

footer > div.container > div.social > a.map
{
    display: flex;
    align-items: flex-start;
}

footer > div.container > div.social > a.map > p
{
    color: #666;
    font-family: var(--displayLight);
    font-size: calc(var(--smallFontSize) - 0.1rem);
    line-height: 1.5;
}

footer > div.container > div.social > a.map > p:hover
{
    color: var(--orange);
}

footer > div.container > div.social > a.map > img
{
    width: 20px;
}



footer div.copyright
{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 3rem;
    padding-bottom: 100px;
}

footer div.copyright > p
{
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
}

footer div.copyright > a > img
{
    width: 48px;
    rotate: 180deg;
}


@media only screen and (max-width: 500px)
{
    footer > div.container
    {
        flex-direction: column;
    }

    footer > div.container > div.social
    {
        order: 4;
    }

    footer div.copyright
    {
        padding-bottom: 50px;
    }
}
