/*! @media(max-width:600px) quando for ABAIXO de 600 ele faz os comandos */

/*! @media(min-width:600px) quando for MAIOR de 600 ele faz os comandos */

/*! @media(min-width:600px) and (max-width:800px) aqui fica entre 600 e 800 roda os comandos*/


@media(max-width:800px){


    /*! box2  */
    .box2-conteudo{
        width: 100%;
        display: flex;
       flex-direction: column;
        /* border: 1px solid red; */
    }
    .box2-simbulo{
        display: none;
    }
    /*! box3  */

    .box3-padrao{
        width: 100%;
        max-width: 1220px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 70px;
    
        /* border: 1px solid red; */
    }

    .card1{
        width: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 30px;
        background: linear-gradient(152.97deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    }


    /*! box4  */
    .footer{
        width: 100%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 30px 0px;
    
        /* border: 1px solid red; */
    } 

    .footer1{
        width: 100%;
        height: 150px;
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
        /* border: 1px solid red; */
    }
    .res{
        margin-bottom: 30px;
    }

    .footer2{
        width: 100%;
        height: 150px;
        display: flex;
        flex-direction: column;
        padding: 0px;
        border: none;

    }

    .footer label p{
        width: 100%;
        height: 20px;
        margin: 0px 10px !important;
    
        /* border: 1px solid red; */
    }
    .whatsapp{
        position: fixed;
        bottom: 70px;
        right: -20px;
        z-index: 20;
        
    }
}