footer {
    background-color: var(--background-color);
}

.footer-container {
    display: grid;
    justify-content: start;
    align-items: center;
    gap: 24px;
}

.section-footer {
    display: grid;
    justify-content: flex-start;
    gap: 50px;
}

.title-footer {
    user-select: none;
    margin-left: 12px;
}

.section-footer p {
    font-size: 16px;
}

.section-footer a {
    color: var(--text-color);
    padding: 6px 12px;
    font-size: 14px;
    height: 100%;
    transition: all 0.2s ease-in-out;
}

    .section-footer a:hover {
        color: var(--primary-color);
    }

.sectionItems-footer {
    display: grid;
    gap: 12px;
    text-align: start;
    align-items: center;
}

.btn-section {
    display: grid;
    gap: 8px;
}


.btnFooter {
    color: var(--text-color);
    cursor: pointer;
    margin-left: 12px;
    padding: 8px 14px;
    border: solid 1px var(--primary-color);
    background: none;
    border-radius: 6px;
    font-size: 13px;
    transition: all 0.2s ease-in-out;
}

    .btnFooter:hover {
        color: var(--color-white);
        background: var(--primary-color);
    }

.iconfooter {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    margin-left: 12px;
}

    .iconfooter a {
        margin: 0;
    }

        .iconfooter a i {
            color: var(--text-color);
            background: none;
            height: 26px;
            width: 26px;
            font-size: 13px;
            border: 1px solid var(--primary-color);
            border-radius: 20%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease-in-out;
        }

            .iconfooter a i:hover {
                color: var(--color-white);
                background: var(--primary-color);
            }


@media (min-width:768px) {
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
    }

    .section-footer {
        display: flex;
        flex-grow: 1;
        justify-content: flex-start;
        gap: 132px;
    }

    .sectionItems-footer {
        display: flex;
        gap: 10px;
        text-align: start;
        align-items: center;
    }

    .btn-section {
        display: flex;
        gap: 2px;
    }
}
