.site-footer {
    padding: 60px 60px 30px;
    font-size: 13px;
    background: #fff;
    color: var(--primary);
}

.footer-inner {
    margin: 0 auto 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left .footer-logo img {
    width: auto;
    display: block;
}

.footer-right {
    text-align: right;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu a {
    color: var(--primary);
    text-decoration: none;
    opacity: 0.85;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.footer-menu a:hover {
    opacity: 1;
}

/* alsó divider + copyright */

.footer-bottom {
    margin: 0 auto;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: rgba(17, 50, 81, 0.12);
    margin-bottom: 16px;
}

.footer-copy {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }

    .footer-right {
        text-align: left;
    }

    .footer-menu li {
        display: inline-block;
        margin-right: 16px;
    }

    .footer-menu li:last-child {
        margin-right: 0;
    }

    .footer-bottom {
        text-align: center;
    }
}