*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: aliceblue;
    font-size: 16pt;
    
}

body{
    /* background-color: tomato; */
}

main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px;
}

/* Bloco da logo e icons 1 */

.bloco1{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.logo{

    width: 200px;
    height: 200px;
}

.icons{
    width:100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    cursor: pointer;
}




/* Bloco 2 */

.bloco2{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

.buttons{

    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    

}

.botao{

    width: 100%;
    max-width: 500px;
    height: 80px;
    margin-top: 24px;
    border: none;
    border-radius: 10px;
    background-color: #0E79EE;
    cursor: pointer;
    
   
}

.botao:hover{

    box-shadow: 0px 4px 27px #0E79EE;
    border-radius: 7.5px;
}
.bottons-vendas :hover{

    background: #F0A725;
    box-shadow: 0px 4px 33px #F9A624;
}

.bottons-vendas{

    margin-top: 24px;
    margin-bottom: 24px;
}

/* bloco3 */


.bloco3{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 24px;
}


.icons2{
    width:100wv;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    cursor: pointer;
    
}

.icons2 div{
    width: 50px;
    height: 50px;
    gap: 20px;
    
}

/* Mobile */

@media only screen and (max-width: 3000px){
    /* main{
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 120px;
    } */
    .botao{

        width: 1000px;
        height: 80px;
        margin-top: 48px;
                
    }
}   


@media only screen and (max-width: 1000px){

    .botao{

        width: 600px;
        height: 80px;
        margin-top: 32px;
                
    }
}    
@media only screen and (max-width: 600px){
    body{
        width: 100vw;
        font-size: 10pt;
    }
    
    .logo{

        width: 200px;
        height: 200px;
    }


    .botao{

        width: 300px;
        height: 72px;
        margin-top: 24px;
        padding: 5px;
    }
    .icons{
        
        gap: 20px;
        cursor: pointer;
        
    }
}    


