.footer {
    background: linear-gradient(45deg, #0A6553, #14CBA7);

    margin-top: 60px;
    padding: 8px 0 30px 0;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__linha {
    width: 95%;
    max-width: 900px;
    height: 2px;

    margin-bottom: 20px;

    background-color: white;
    border: none;
}

.footer__container {
    width: 95%;
    max-width: 900px;

    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__logo {
    color: white;
    font-family: var(--font-primary);
    font-size: 40px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    user-select: none;
    cursor: pointer;
}

.footer__logo img {
    filter: invert(1) brightness(100%);
    height: 80px;
}

.footer__title {
    color: white;
    text-transform: uppercase;
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: bold;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: var(--font-secondary);
    font-size: 18px;
}

.footer__icon {
    width: 28px;
}

.footer__item a {
    text-decoration: none;
    color: white;
    
    display: flex;
    align-items: center;
    gap: 8px;
}

@media screen and (max-width:791px) {
    .footer__container {
        gap: 20px;
    }
    
    .footer__title {
        padding-bottom: 10px;
    }

    .footer__container div {
        width: 100%;
        max-width: 400px;
    }
}