@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
    font-family: Poppins;
}
body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(231, 231, 231);
}

.whatsappFlutuante{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(0, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
    font-size: 26px;
    transition: all 0.3s;
    a{
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
    }
}

.whatsappFlutuante:hover{
    scale: 1.1;
}

main{
    margin-top: 80px;
}

/*   Estilo do rodapé   */
footer{
    display: flex;
    flex-direction: column;
    gap: auto;
    background-color: #242323;
    height: 100%;
    align-items: center;
    color: white;
    font-size: 10px;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10vw;
    padding-right: 10vw;
}

footer .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

footer hr{
    width: 100%;
    color: rgb(255, 255, 255);
    margin-top: 10px;
    margin-bottom: 10px;
}

footer .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 100%;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    color: white;
}

footer .atendimento{
    display: flex;
    justify-content: center;
    align-items: left;
    width: fit-content;
    height: 100%;
    margin-top: 20px;
    padding: 0;
    background-color: #242323;
    color: white;
    flex-direction: column;
    font-size: 10px;
    a{
        text-decoration: none;
        color: rgb(255, 88, 88);
        transition: 0.2s ease;
    }
    a:hover{
        color: rgb(255, 255, 255);
    }
    h2{
        margin-bottom: 10px;
        padding: 0;
        color: rgb(225, 225, 225);
        font-size: 15px;
    }
}

footer .follow{
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #242323;
    color: white;
    flex-direction: column;
    font-size: 10px;
    margin-bottom: 20px;
    .redes{
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        height: 100%;
        margin: 0;
        padding: 0;
        color: white;
        flex-direction: row;
        gap: 10px;
    }
    h2{
        margin-bottom: 10px;
        padding: 0;
        color: white;
        font-size: 15px;
        
    }
    .redes i{
        font-size: 25px;
    }
}


.redes a{
    text-decoration: none;
    color: white;
}

.redes a.instagram{
    transition: 0.4s;
    cursor: pointer;
}
.redes a.instagram:hover{
    color: rgb(255, 92, 228);
}
.redes a.facebook{
    transition: 0.4s;
    cursor: pointer;
}
.redes a.facebook:hover{
    color: rgb(88, 88, 255);
}

.redes a.whatsapp{
    transition: 0.4s;
    cursor: pointer;
}

.redes a.whatsapp:hover{
    color: rgb(109, 255, 69);
}

@media screen and (max-width: 900px) {
    footer .container{
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        margin: 0;
        padding-left: 10px;
        padding-right: 10px;
        background-color: #242323;
        height: 100%;
        align-items: center;
        color: white;
        font-size: 0.8rem;
    }

    footer p, h2{
        white-space: normal;
        text-align: center;
    }
}