footer {
    margin: 100px 0 0 0;
    background-color: var(--color-1);
    width: 100%;
    padding: 50px 0 ;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
}
.footer-logo-img{
    width: 20%;
}
.footer-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 60%;
}

.footer-text-atencao {
    margin-top: 30px;
    font-weight: 700;
    font-size: 0.8em;
    text-align: justify;
    text-justify: inter-character;
    color: var(--color-2);
}

.footer-whats-img {
    width: 2.5em;
}

.footer-whats {
    font-size: 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-2);


}

.footer-text-name {
    font-size: 2.7em;
    font-family: var(--font-style-1);
    color: var(--color-2);
    font-weight: 700;
}

.footer-whats-cel {
    font-size: 0.7em;
}
.footer-crp{
    color: var(--color-2);
}

@media screen and (max-width: 1024px) {
    footer {
        margin: 100px 0 0 0;
       
        width: 100%;
      
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
        gap: 10px;
        height: 800px;
    }

    .footer-text {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
    .footer-whats-img {
        width: 2em;
    }
    .footer-whats {

        font-size: 2em;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-text-name {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;

    }
    .footer-text-atencao {
        margin-top: 20px;
        font-weight: 700;
        font-size: 0.8em;
        text-align: justify;
        text-justify: inter-character;
    }
    .footer-logo-img{
        width: 80%;
    }
    



}