footer {
    width: 100%;
    display: block;
    color: #fff;
}

footer .container {
    max-width: 1170px;
}

.footer__primary {
    padding: 60px 0;
    background: var(--dark-blue-100);
}

.footer__primary .container {
    display: flex;
    justify-content: space-between;
    gap: 120px;
}

.footer__right {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex: 1;
}

footer h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
}

footer a {
    font-size: 16px;
    display: block;
}

footer a:hover {
    color: var(--light-blue-40);
}

.footer__logo {
    margin-bottom: 60px;
}

.footer__social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: nowrap;
    margin-top: 35px;
}

.footer__copyright {
    background: #969696;
    font-size: 16px;
}

.footer__copyright .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 15px 0;
}


/*
    Reponsivo 
*/
@media all and (max-width: 1170px) {
    footer .container {
        max-width: 90%;
    }
}

@media all and (max-width: 992px) {
    .footer__primary .container,
    .footer__right {
        flex-wrap: wrap;
    }
}

@media all and (max-width: 768px) {
    .footer__primary .container {
        gap:30px;
    }

    .footer__logo {
        margin-bottom: 30px;
    }

    .footer__left {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__social {
        margin-top: 20px;
    }

    .footer__right {
        gap: 30px;
        justify-content: center;
        text-align: center;
        margin-top: 30px;
    }

    .footer__copyright .container {
        justify-content: center;
        gap: 15px;
    }

    .footer__copyright p {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 20px;
    }
}