/*------------------------------------------------------------------------------------------------------------------ */
/* FOOTER - RODAPÉ */
/*------------------------------------------------------------------------------------------------------------------*/

footer {
    width: 100%;
    background: var(--branco);
    color: var(--texto);
    padding-top: 10vh;
    margin-top: 7vh;
    box-shadow: 0px -3px 5.4px rgba(29, 77, 107, 0.2);
}

footer .content-footer {
    margin-bottom: 7vh;
    display: flex;
}

footer .copyright, footer .infos {
    margin: auto;
}

footer .copyright a {
    color: var(--cinza-escuro);
    font-weight: 700;
}

footer .copyright a:hover {
    color: var(--preto);
}

footer a, footer p, footer span {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-size: 16px;
}

footer .credits {
    background-color: var(--cinza-claro);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .credits .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

footer .credits span {
    font-size: 12px;
    color: #A1A1A1;
}

footer .credits a img {
    width: 40px;
}

footer .site-branding img {
    height: auto;
    width: 100%;
    max-width: 200px;
    object-fit: contain;
}

footer .container.content-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

footer .content-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .contact-link:not(:last-child) {
    margin-bottom: 10px;
}

/*---------------------------------------------------------*/
/* RESPONSIVO */
/*---------------------------------------------------------*/

@media (max-width: 999px) {
    footer {
        padding-top: 5vh;
        margin-top: 100px;
    }

    footer a.custom-logo-link img {
        width: 150px;
        height: auto;
    }

    footer .copyright {
        align-items: center;
    }

    footer .content-footer > div {
        width: 100%;
        padding: 20px;
        gap: 30px;
    }

    footer .container.content-footer {
        gap: 20px;
    }

    footer .contact-link a {
        font-size: 14px;
    }
}

/*---------------------------------------------------------*/
/* WHATSAPP BUTTON */
/*---------------------------------------------------------*/

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}
