body{
    width: 100%;
    flex-direction: column;
    background-image: url('/img/fundo.png');   
    background-repeat: no-repeat;
    background-position: center;
}



.header{
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 30px;
    position: fixed;   
    top: 0;
}

.header a{
    display: flex;
    gap: 10px;
}

.main{
    display: flex;
    justify-content: center;
    align-items: center;    
    gap: 20px;
    color: #fff;
    width: 600px;
    flex-wrap: wrap;
    max-height: 60%;
}

.main div{
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 25px;
    flex-direction: column;
    text-align: center;
    
}

main p{
    font-size: 20px;
}

.consultor{
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.select-consultor{
    height: 30px;
    border-radius: 5px;
    outline: none;
    text-align: center;
}

.consultor-disponivel{
    background-color: #00000060;
    padding: 5px;
    border-bottom: 1px solid;
    border-top: 1px solid;
}



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

    body{
        background-size: 3000px;
        
    }

    .main{
        width: 400px;
        gap: 50px;
    }

}

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

        
    .main{
        gap: 20px;
    }

    
   
}

@media screen and (min-height:1279px) {

    body{
        background-size: 2000px;
    }
   
}


