/* ==========================================================================
   Footer — Card verde sobre fundo claro
   ========================================================================== */

.site-footer {
    background-color: #FBFDF2;
    padding: 24px;
}

.site-footer__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ACC837;
    border-radius: 12px;
}

/* ===== Top: Brand + Colunas ===== */

.site-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding: 40px clamp(48px, calc(29.71px + 1.79vw), 64px) 40px;
    width: 100%;
    box-sizing: border-box;
}

/* Brand */

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 370px;
    flex-shrink: 0;
}

.site-footer__logo-row img {
    width: 224px;
    height: auto;
    filter: brightness(0);
}

.site-footer__tagline {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #252B37;
}

/* Grupo de colunas (Mapa + Social + Downloads) */

.site-footer__columns {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    flex: 1;
    justify-content: flex-end;
}

/* Coluna genérica */

.site-footer__col {
    display: flex;
    flex-direction: column;
}

/* Heading de coluna */

.site-footer__heading {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-family: 'Manrope', var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    color: #414651;
}

/* Lista de links */

.site-footer__links {
    display: flex;
    flex-direction: column;
}

.site-footer__links a {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-family: 'Manrope', var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    color: #252B37;
    transition: opacity var(--transition-fast);
}

.site-footer__links a:hover {
    opacity: 0.6;
}

/* ===== Divider ===== */

.site-footer__divider {
    width: calc(100% - clamp(96px, calc(59.43px + 3.57vw), 128px));
    height: 1px;
    background-color: #B6D23F;
}

/* ===== Bottom bar ===== */

.site-footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px clamp(48px, calc(29.71px + 1.79vw), 64px);
    width: 100%;
    box-sizing: border-box;
}

.site-footer__bottom p {
    font-family: 'Manrope', var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
    color: #414651;
}

/* ===== Mobile ===== */

@media (max-width: 768px) {
    .site-footer {
        padding: 16px;
    }

    .site-footer__top {
        flex-direction: column;
        padding: 32px 24px 36px;
        gap: 36px;
        align-items: center;
        text-align: center;
    }

    .site-footer__brand {
        max-width: 100%;
    }

    .site-footer__logo-row {
        display: flex;
        justify-content: center;
    }

    .site-footer__columns {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 28px;
    }

    .site-footer__col {
        align-items: center;
        text-align: center;
    }

    .site-footer__heading,
    .site-footer__links a {
        justify-content: center;
        text-align: center;
    }

    .site-footer__bottom {
        flex-direction: column-reverse;
        align-items: center;
        gap: 8px;
        text-align: center;
        padding: 24px;
    }

    .site-footer__divider {
        width: calc(100% - 48px);
    }
}
