footer {
    display: flex;
    flex-direction: column;
    background-color: #222020;
    color: white;
    gap: 1rem;
    padding: 1rem;
}

.footer-left {
    display: flex;
    justify-content: center;
}

.footer-left hr {
    opacity: 0.1;
    margin-top: 1rem;
}

.footer-left-title {
    font-size: 1.5rem;
    opacity: 1;
}

.footer-left-subtitle {
    font-size: 0.85rem;
    opacity: 0.6;
    text-align: center;
}

.footer-center {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr;
    width: 90%;
    margin-left: 5%;
}

.footer-center h2 {
    opacity: 0.8;
}

.footer-center-schedule {
    display: grid;
    grid-template-rows: 0.2fr 1fr;
}

.footer-center-schedule-flex {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
}

.footer-center-schedule div {
    font-size: 0.8rem;
}

.footer-center-schedule div h3 {
    margin-bottom: 0.3rem;
    padding: 4px;
}

.footer-center-schedule div p {
    font-size: 0.8rem;
    padding: 4px;
}

.footer-center-legal {
    margin-left: 10%;
}

.footer-center-legal ul {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    list-style: none;
}

.footer-center-legal ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9;
}

.footer-center-legal ul li a:hover {
    opacity: 1;
}

.container-supports {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.container-supports img {
    width: 100px;
}

@media (min-width: 421px) and (max-width: 1050px) {
    footer {
        grid-template-columns: 1fr 1fr;
    }

    .footer-right {
        grid-column: span 2;
    }

    .footer-right ul {
        flex-direction: row;
        width: 70%;
        margin-left: 15%;
        gap: 2rem;
        margin-top: 3rem;
    }

    .footer-right ul li a {
        opacity: 1;
    }
}

@media (min-width: 0px) and (max-width: 420px) {
    footer {
        grid-template-columns: 1fr;
        gap: 3rem;

    }

    .footer-left-title {
        font-size: 1.3rem;
        opacity: 1;
    }

    .footer-left-subtitle {
        font-size: 0.85rem;
        opacity: 0.6;
        text-align: center;
    }

    .footer-center {
        display: flex;
        flex-direction: column;
    }

    .footer-center-legal {
        margin-left: 0%;
        margin-top: 10%;
        font-size: 0.8rem;
    }

    .container-supports {
        width: 80%;
        margin-left: 10%;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;

    }

    .footer-center-schedule div p,
    .footer-center-schedule div h3{
        padding: 0px;
    }

    .footer-center-schedule-flex{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}