.footer {
    background-color: var(--footer-bg);
    color: var(--text-white);
    padding: 2.5rem 3rem;
    font-family: 'Open Sans', sans-serif;
    width: 100%;
}

.footer__top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.footer__logos {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer__logo {
    height: 28px;
    object-fit: contain;
}

.footer__logo-netactica {
    height: 34px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.footer__logo-netactica:hover {
    opacity: 1;
}

.footer__divider {
    border: none;
    border-top: 1px solid var(--text-white) !important;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer__links {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1.25rem 3rem;
}

.footer__link {
    color: var(--text-white) !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.footer__link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 0.25rem;
}

.footer__social-text {
    font-size: 15px;
    font-weight: 400;
}

.footer__social-link {
    color: var(--text-white) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.footer__social-link:hover {
    opacity: 0.8;
}

.footer__social-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* =========================================
           MEDIA QUERIES (RESPONSIVE)
           ========================================= */
@media (max-width: 1024px) {

    /* Footer Responsive */
    .footer {
        padding: 2rem 1.5rem;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 2.5rem;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer__top {
        justify-content: center;
    }
}