/* Footer - Base CSS */
.sslp-footer {
    padding: 40px 0;
    margin-top: 0;
}

.sslp-footer .sslp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sslp-footer__logo {
    margin-bottom: 8px;
}

.sslp-footer__logo img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.sslp-footer__logo img:hover {
    opacity: 1;
}

.sslp-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.sslp-footer__link {
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
    opacity: 0.7;
}

.sslp-footer__link:hover {
    opacity: 1;
    text-decoration: underline;
}

.sslp-footer__info {
    text-align: center;
}

.sslp-footer__copyright {
    font-size: 12px;
    margin: 0;
    opacity: 0.5;
}

.sslp-footer__cnpj {
    font-size: 11px;
    margin: 4px 0 0;
    opacity: 0.4;
}

/* Responsive */
@media (max-width: 768px) {
    .sslp-footer {
        padding: 32px 0;
    }

    .sslp-footer__nav {
        gap: 6px 16px;
    }

    .sslp-footer__link {
        font-size: 12px;
    }

    .sslp-footer__logo img {
        height: 32px;
    }
}
