footer {
    padding: 140px 20px 0px 20px;
    position: relative;
    height: 400px;
}

.footer-content-quemSomos {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1280px;
    margin: auto;

    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.whatsapp-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border: 2px solid #3CBF4D;
    border-radius: 20px;
    padding: 0px 20px;
    transition: all 0.3s ease-in-out;
    height: 100px;
}



.whatsapp-contact>div>h3 {
    color: var(--color46);
    font-family: "InterTight-SemiBold";
    font-size: 28px;
}




.whatsapp-contact>div>p {
    color: var(--color46);
    font-family: "InterTight-Regular";
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.whatsapp-contact>img {
    height: 80px;
    width: 80px;
    transition: top 0.5s ease-in-out, transform 0.5s ease-in-out;
    filter: drop-shadow(-15px 27px 18px rgba(0, 0, 0, 0.15));
}

.footer-infos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-infos>small {
    font-family: "InterTight-Regular";
    color: var(--color46);
    font-size: 16px;
}

.footer-infos>nav {
    display: flex;
    gap: 40px;
}

.footer-infos>nav>a {
    font-family: "InterTight-Regular";
    color: var(--color46);
    font-size: 16px;
}

@media (min-width: 769px) {
    .footer-visible .whatsapp-contact > div > h3 {
        font-size: 46px;
        transition: all 0.3s ease-in-out;
    }
    
    .footer-visible .whatsapp-contact {
        height: 160px;
        position: relative; /* Certifique-se de que o elemento pai tenha posição relativa */
        transition: height 0.3s ease-in-out;
    }
    
    .footer-visible .whatsapp-contact > img {
        transform: scale(1.5);
        position: absolute;
        right: 80px;
        top: 0px;
        transition: transform 0.3s ease-in-out; /* Adiciona uma transição suave ao efeito de escala */
    }
    
    .footer-visible .whatsapp-contact div > p {
        font-size: 30px;
        transition: font-size 0.3s ease-in-out;
    }    
}


/*MOBILE*/
@media (max-width: 769px) {
    .footer-content-quemSomos {
        padding: 0px 20px;
    }

    .whatsapp-contact {
        height: 186px;
        position: relative;
    }

    .whatsapp-contact>div>h3 {
        font-size: 30px;
        max-width: 200px;
    }

    .whatsapp-contact>img {
        position: absolute;
        right: -10px;
        top: -20px;
        height: 116px;
        width: 116px;
        filter: drop-shadow(-15px 27px 18px rgba(0, 0, 0, 0.15));
    }

    .footer-infos {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .footer-infos>nav {
        display: none;
    }
    
}