footer {
    background-color: var(--azul);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 4px solid var(--verde);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
}

.footer-content .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 33%;
    height: auto;
    gap: 10px;
}

.footer-content .logo img {
    width: 100%;
    max-width: 150px;
    height: auto;
}

.footer-content .infos {
    width: 33%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

.footer-content .infos p {
    margin: 5px 0;
}

.footer-content nav {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 33%;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    text-align: center;
}

.footer-content ul li{
    list-style: none;
}

.footer-content nav a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.footer-content nav a:hover {
    color: var(--laranja);
}

footer .infos a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer .infos a:hover {
    color: var(--laranja);
}

footer .copyright {
    background-color: #0e335a;
    color: #fff;
    width: 100%;
}

footer .copyright p {
    margin: 0;
    padding: 10px;
}

footer .copyright a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer .copyright a:hover {
    color: #5aa62c;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-content .logo,
    .footer-content .infos,
    .footer-content nav {
        width: 100%;
        text-align: center;
    }

    .footer-content .logo img {
        max-width: 120px;
        height: auto;

    }

    .footer-content .logo{
        flex-direction: row;
    }

    .footer-content nav {
        flex-direction: column;
        gap: 10px;
    }
}
