@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');

.logo{
    height: 35px;
}   

body{
    background-color: rgb(204, 228, 226);
}

.banner{
    width: 100%;
    height: 20%;
}
.recuo{
    padding: 40px 120px;
}
.fale{
    width: 480px;
    margin: auto;
}
#contato form{
    width: 360px;
    margin: auto;
}
#contato textarea{
    height: 240px;
    resize: none;
}
#empresa{
    background-color: rgb(173, 201, 245);
}
.foto{
    width: 120px;
    border-radius: 50%;
    filter: drop-shadow(5px 5px 10px #666);
}
.nome{
    font-weight: bold;
    font-size: 19px;
    margin-left: 20px;
}
.dep p{
    background-color: #eee;
    margin: 20px 5px;
    padding: 20px;
    filter: drop-shadow(5px 5px 10px #666);
}
.dep .col{
    rotate: -1deg;
}
#rodape{
    background-color: #666;
    color: aliceblue;
    padding: 20px 95px;
}


/* ajustes para celular */

@media only screen and (max-width: 640px) {
    .banner{
        display: none;
    }

    .recuo{
        padding: 40px 10px;
    }
    .fale{
        width: 90%;
    }
    #contato form{
        width: 90%;
    }
  }