@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&family=Lexend:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --azul: #212733;
    --branco: #f3f3f3;
    --beje: #cdc6bc;
}

main{
    display: block;
    z-index: 1;
}

main .whatsapp_fixed{
    position: fixed;
    right: 40px;
    bottom: 20px;
    z-index: 19;
    width: 70px;
    height: 70px;
}

footer{
    background-color: var(--beje);
    display: flex;
     align-items: center;
     justify-content: center;
     gap: 90px;
    height: 210px;
    position: relative;
    z-index: 1;
}

footer .logo_footer{
    width: 200px;
}

footer .box_text p{
    font-size: 1.1em;
    font-weight: 500;
    margin: 5px 0;
}

footer .instagram{
    width: fit-content;
}

footer .instagram {
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 15px;
}

footer .instagram a{
    text-decoration: none;
    color: unset;
}

footer .instagram img{
    width: 40px;
}

@media screen and (max-width:690px){
    footer{
        display: flex;
         align-items: center;
         justify-content: center;
         flex-direction: column;
         gap: 50px;
        height: unset;
        padding: 5vh 0;
    }
    footer p{
        text-align: center;
        width: unset;
    }
    main .whatsapp_fixed{
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 19;
        width: 50px;
        height: 50px;
    }
}