.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding-top: 4rem;
}

.footer-inner {
    display: grid;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-col {}

.footer-brand img {
    height: 64px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 36ch;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.footer-heading--social {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 1.25rem;
}

.footer-address {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    line-height: 1.75;
    text-align: right;
}

.footer-address-item svg {
    display: inline;
    vertical-align: top;
    margin-top: 0.2em;
    margin-right: 0.375rem;
    opacity: 0.65;
}

.footer-address-item address {
    display: inline;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-list li a {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
    color: var(--color-white);
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--color-whatsapp) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-block: 1.25rem;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-credit {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: var(--color-white);
}

.footer-privacy-link {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.2s ease;
}

.footer-privacy-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
    .footer-col {
        text-align: center;
    }
    .footer-brand img {
        display: block;
        margin-inline: auto;
    }
    .footer-desc {
        margin-inline: auto;
    }
    .footer-contact-list li a {
        justify-content: center;
    }
    .footer-address {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
    }
    .footer-bottom p {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .footer-inner {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}
