footer {
    background-color: var(--footer-color);
    padding: 2rem 1rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

.footer-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-titulo {
    font-size: 1.125rem;
    color: var(--text-padrao);
    user-select: none;
}

.footer-sectionItems {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
    color: rgba(82, 101, 113, 0.79);
    padding: 0;
    margin: 0;
}

    .footer-sectionItems a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease-in-out;
    }

        .footer-sectionItems a:hover,
        .footer-sectionItems a:focus-visible {
            color: #7d8d8f;
            outline: none;
        }

.btn-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btnFooter {
    background: rgba(82, 101, 113, 0.79);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: white;
    cursor: pointer;
    border-radius: 6px;
}

    .btnFooter:hover,
    .btnFooter:focus-visible {
        background-color: var(--primary-color);
        color: #fff;
        outline: none;
    }

.iconfooter {
    display: flex;
    gap: 0.75rem;
}

    .iconfooter a {
        display: inline-flex;
    }

        .iconfooter a i {
            color: #fff;
            width: 32px;
            height: 32px;
            font-size: 16px;
            background: rgba(82, 101, 113, 0.79);
            border-radius: 20%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s ease-in-out;
        }

        .iconfooter a:hover i,
        .iconfooter a:focus-visible i {
            background: var(--primary-color);
            outline: none;
        }

@media (min-width: 768px) {

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .footer-group {
        flex-direction: row;
        align-items: flex-start;
        gap: 4rem;
    }

    .footer-section {
        align-items: flex-start;
    }

    .footer-sectionItems {
        flex-direction: row;
        gap: 2rem;
    }

    .btn-section {
        flex-direction: row;
    }
}
