.footer {
    background: var(--color-footer);
    color: var(--color-text);
    border-top: 1px solid var(--color-border);
}

.footer__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 4rem var(--container-padding);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__logo {
    width: 180px;
}

.footer__description {
    font-size: .9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer__list a {
    text-decoration: none;
    font-size: .9rem;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer__list a:hover {
    color: var(--color-primary);
}

.footer__map-wrapper {
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.footer__map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer__bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.25rem var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    font-size: .85rem;
    color: var(--color-text-muted);
}

.footer__dev a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer__dev a:hover {
    color: var(--color-primary);
}

@media (max-width: 900px) {
    .footer__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer__logo {
        width: 160px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center;
    }
}

.footer__socials {
    display: flex;
    gap: .75rem;
    margin-top: .5rem;
}

.footer__social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: .3s ease;
}

.footer__social:hover {
    background: var(--color-secondary);
}

.footer__payments {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.footer__payments img {
    height: 26px;
    width: auto;
    opacity: .85;
    transition: opacity .3s ease, transform .3s ease;
}

.footer__payments img:hover {
    opacity: 1;
    transform: translateY(-2px);
}
