.footer {
    display: flex;
    width: 100%;
    padding: 30px 100px;
    flex-direction: column;
    align-items: center;
    background: #1E1E1E;
}

.footer-logo {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.footer-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.left-footer {
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    border-right: none;
    margin-right: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.50);
    padding-bottom: 20px;
}

.right-footer {
    width: 100%;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    align-self: stretch;
}

.dados-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: auto;
    gap: 20px;
}

.phoneNumber, .address, .schedule, .itemBar-footer a {
    display: flex;
    color: var(--bg-color);
    align-items: start;
    gap: 0.5rem;
}

.itemBar-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.socials {
    display: flex;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer {
        padding: 30px 50px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .left-footer {
        padding: 20px 50px 20px 0px;
        border-right: 2px solid rgba(255, 255, 255, 0.50);
        margin-right: 50px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .right-footer {
        flex-direction: row;
        padding: 60px 0px;
        gap: 50px;
    }

    .dados-footer {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
    }

    .phoneNumber, .address, .schedule, .itemBar-footer a {
        justify-content: flex-start;
    }

    .itemBar-footer {
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .footer {
        padding: 30px 100px;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .left-footer {
        padding: 20px 100px 20px 0px;
        margin-right: 100px;
    }

    .right-footer {
        width: 740px;
        padding: 60px 0px;
        flex-direction: row;
        gap: 100px;
    }

    .dados-footer {
        height: 100%;
    }
}
