
.site-footer {
    background: #4b280a;
    color: #fff;
    padding: 40px 20px 18px;
    margin-top: 40px;
    box-shadow: none; /* remove qualquer sombra */
}


.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: flex;
    gap: var(--gap);
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 18px;
    border-bottom: none;
}

/* Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    max-width: 120px; /* ajuste conforme necessário */
    height: auto;
}

.brand-text p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
}


/* Nav */
.footer-nav {
    flex: 0 1 200px;
    min-width: 160px;
}

.footer-title {
    font-size: 0.95rem;
    margin: 0 0 10px 0;
    color: var(--accent);
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    opacity: 0.87;
    font-size: 0.95rem;
}

    .footer-nav a:hover {
        color: var(--accent);
        text-decoration: underline;
    }

/* Contact & social */
.footer-contact {
    flex: 0 1 240px;
    min-width: 200px;
}

    .footer-contact address {
        font-style: normal;
        color: var(--muted);
        line-height: 1.5;
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .footer-contact a {
        color: #fff;
        text-decoration: none;
        display: inline-block;
        margin-top: 4px;
    }

.social {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.icon-link {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    transition: transform .16s ease, background .12s ease;
    text-decoration: none;
}

    .icon-link:focus,
    .icon-link:hover {
        transform: translateY(-3px);
        background: rgba(212,163,115,0.12);
    }

.svg-icon {
    width: 18px;
    height: 18px;
    fill: #fff;
    opacity: .95;
}

/* bottom bar */
.footer-bottom {
    max-width: var(--maxw);
    margin: 18px auto 0;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.back-top {
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    color: #fff;
    transition: background .12s ease, transform .12s ease;
}

    .back-top:hover {
        transform: translateY(-3px);
        background: rgba(212,163,115,0.12);
    }

/* Responsividade */
@media (max-width: 860px) {
    .footer-inner {
        gap: 16px;
        padding-bottom: 12px;
    }

    .footer-brand, .footer-nav, .footer-contact {
        flex: 1 1 100%;
        min-width: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Ajustes finais: links acessíveis */
.site-footer a:focus {
    outline: 3px solid rgba(212,163,115,0.14);
    outline-offset: 2px;
}
