.site-footer {
    background: #2d6a4f;
    padding: 32px 24px 24px;
    border-top: 1px solid var(--site-border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

/* ── Foto + Assinatura ─────────────────────────────────── */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-brand__sig {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-brand__photo-img {
    height: 250px;
    width: auto;
    object-fit: contain;
}

.footer-brand__logo {
    height: 150px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.footer-brand__logo:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* ── Redes sociais ─────────────────────────────────────── */

.footer-social {
    text-align: center;
}

.footer-social__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-social__icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    text-decoration: none;
    /* color: #e3a45c;
    background: var(--site-bg-card); */
    color: #fff;
    background: #35694f;
    border: 1px solid var(--site-border);
    font-size: 1.4rem;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social__icon-link:hover {
    border-color: #e3a45c;
    color: #fff;
    background: #e3a45c;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(227, 164, 92, 0.4);
}

/* ── Sitemap ───────────────────────────────────────────── */

.footer-sitemap__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-sitemap__list a {
    color: var(--footer-text);
    opacity: 0.6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-sitemap__list a:hover {
    color: var(--footer-accent);
    opacity: 1;
}

/* ── Copyright ──────────────────────────────────────────── */

.footer-copy {
    width: 100%;
    margin-top: 8px;
    font-size: 12px;
    color: var(--footer-text);
    opacity: 0.5;
    text-align: right;
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1919px) {
    .footer-brand__photo-img {
        height: 150px;
    }
}

@media (max-width: 1200px) {
    .footer-brand__photo-img {
        height: 250px;
    }
}

@media (max-width: 1024px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-sitemap__list {
        align-items: center;
    }
}
