/* =========================
     BASE DO FOOTER
     ========================= */
.footer {
    width: 100vw;
    /* ocupa toda a largura da viewport */
    background: #fff;
    color: #e9e9f1;
    overflow: hidden;
    /* evita qualquer overflow horizontal */
}

.footer a {
    color: #e9e9f1;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus {
    text-decoration: underline;
}

/* Container central com largura máxima “agradável” em telas muito grandes */
.footer .footer-container {
    max-width: 1200px;
    /* ajuste se quiser mais largo (ex.: 1320px) */
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

.footer .footer-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: .75rem;
}

/* Lista com respiro melhor no mobile */
.footer .list-unstyled li+li {
    margin-top: .5rem;
}

/* Redes sociais com alvo de toque maior e melhor quebra no mobile */
.footer .social {
    flex-wrap: wrap;
    /* quebra linha se faltar espaço */
}

.footer .social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    margin-right: .5rem;
    margin-bottom: .5rem;
    /* quando quebrar linha */
    transition: transform .15s ease;
}

.footer .social a:hover {
    transform: translateY(-2px);
}

.footer .social a:focus {
    outline: 2px dashed #ffffff;
    outline-offset: 2px;
}

/* Link “Acesso rápido” com setinha sutil */
.footer .link-item i {
    opacity: .85;
}

/* Barra final de copyright (100% horizontal) */
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, .15);
    background: #fff;
    color: #cfcfe8;
    font-size: .9375rem;
}

/* Melhorias de responsividade específicas */
@media (max-width: 575.98px) {
    .footer .footer-title {
        margin-top: .5rem;
    }
}