/* Rodapé exclusivo da Home — simples e alinhado ao restante da marca */

.home-site-footer {
    position: relative;
    z-index: 2;
    margin-top: clamp(2.5rem, 6vw, 3.75rem);
    padding: clamp(1.75rem, 4vw, 2.5rem) 0 clamp(2rem, 5vw, 2.75rem);
    border-top: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
    background: color-mix(in srgb, var(--card) 88%, transparent);
}

.home-site-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.home-site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.home-site-footer__logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.home-site-footer__name {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    color: var(--text);
}

.home-site-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.15rem;
}

.home-site-footer__nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease;
}

.home-site-footer__nav a:hover,
.home-site-footer__nav a:focus-visible {
    color: var(--ink);
    border-bottom-color: color-mix(in srgb, var(--primary) 55%, transparent);
}

.home-site-footer__copy {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--muted);
    max-width: 36rem;
}

@media (min-width: 720px) {
    .home-site-footer__inner {
        gap: 1.5rem;
    }
}
