/* FOOTER */

.footer {
    background: url('../../imagens/backgrounds/backgroundFooter.png') no-repeat center;
    background-size: cover;
    color: var(--color-white);
    padding: 90px 0 60px;
}

.footer-container-principal {
    width: min(90%, 1200px);
    margin: 0 auto;

    display: flex;
    justify-content: space-around;
    align-items: end;
}

.footer-info-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.footer-logo {
    width: 250px;
    height: auto;
    border-radius: 10px;
}

.endereco1,
.endereco2 {
    text-align: center;
}

.footer h3 {
    margin-bottom: 15px;
    color: var(--color-white);
}

.footer p,
.footer span {
    color: var(--color-white);
}

.email {
    padding-top: 10px;
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-social {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    gap: 28px;
    padding-top: 20px;
}

.footer-social a {
    color: var(--color-white);
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    opacity: .75;
    transform: translateY(-3px);
}

.footer-links {
    text-align: center;
}

.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-white);
    transition: .3s;
    padding: 8px 10px;
}

.footer-links a:hover {
    opacity: .75;
}

/* RESPONSIVO FOOTER */

@media(max-width: 900px) {
    .footer {
        padding: 70px 0 50px;
    }

    .footer-container-principal {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 12px;
    }
}

@media(max-width: 520px) {
    .footer {
        padding: 60px 0 40px;
    }

    .footer-logo {
        width: 190px;
    }

    .footer-social {
        font-size: 1.5rem;
        gap: 22px;
    }

    .footer h3 {
        font-size: 1.2rem;
    }

    .footer p,
    .footer span,
    .footer-links a {
        font-size: .95rem;
    }
}