#page-content{
    background: linear-gradient(to right, #00C0FF, #0051DB);
    display: flex;
    flex-direction: row;
    padding: 100px 0;
}

#info-contato{
    color: #fff;
}

#info-contato h2{
    font-size: 48px;
    letter-spacing: 1px;
}

#info-contato h3{
    padding-top: 30px;
    font-size: 24px;
    letter-spacing: 1px;
}

#info-contato p{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 300;
}

#info-contato img{
    width: 30px;
    margin-right: 10px;
    border: none;
    border-radius: 100%;
}

#info-contato img:hover{
    box-shadow: 5px 5px 10px #555555;
}

#info-form{
    display: flex;
    flex-direction: column;
    align-content: flex-end;
    flex-wrap: wrap;
}

.box-form{
    background-color:#fff ;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 10px;
    width: 400px;
}

.box-form form{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-form form input{
    height: 35px;
    border-radius: 5px;
    margin-bottom: 10px;
    background-color: #ececec;
    padding: 5px;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

.box-form form textarea{
    background-color: #ececec;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 5px;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
}

#info-contato a {
    color: #fff;
    text-decoration: none;
}

#btn-enviar{
    background-color: #00C0FF;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

#btn-enviar:hover{
    background-color: #0051DB;
    box-shadow: 5px 5px 10px #555555;
}

/* responsivo */
@media (min-width: 320px) {

    #page-content{
        padding: 20px;
    }

    #info-form{
        margin-top: 50px;
        align-content: center;
    }

    .box-form {
        width: 350px;
        padding: 30px;
    }



  }


