.contato {
    width: 100vw;
    height: auto;
    
    padding-bottom: 2rem;
    background: linear-gradient(to right,#464547, #676768);
}

.contato h6 {
    text-align: center;
    margin: 0 auto 0 auto;
    padding-top: 3rem;
    color: white;
    font-size: 2.3rem;
    font-weight: 700;
}

.contato .content h6 {
    font-size: 1.6rem;
    text-align: left;
}

.contato-son {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: auto;
}

.form {
    display: flex;
    align-items: center;
    margin-top:2rem;
}

form {
    margin-right: 7rem;
    display: flex;
    margin-top: 0;
    align-items: center;
    flex-direction: column;
}

form input, .message {
    width: 30vw;
    padding: 1rem;
    border:none;
    border-radius: 10px;
    margin: 0.5rem 0 0.5rem 0;
}



form .enviar {
    width: 10rem;
    margin: 0.5rem auto 0.5rem auto;
    background-color: #683A9A;
    outline: none;
    font-size: 1rem;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.679);
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    transition: 0.25s linear;
}

form .enviar:hover {
    transform: scale(1.1);
    background-color: white;
    color: #683A9A;
}

form p {
    text-align: center;
    color: white;
    font-weight: 700;
}

.content {
    margin-left: 7rem;
}

.contato .content p {
    font-size: 1.1rem;
    max-width: 30vw;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contato .content p img {
    margin-right: 0.3rem;
}

@media only screen and (max-width:768px) {
    .contato-son {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .form {
        margin-right: 0;
    }

    form {
        margin-right: 0;
    }

    .contato .content h6 {
        font-size: 1.6rem;
        text-align: center;
    }

    .content {
        margin-left: 0rem;
    }
    
    .contato .content p {
        font-size: 1.1rem;
        max-width: 30vw;
        color: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width:550px) {
    .contato .content p {
        font-size: 1.1rem;
        max-width: 60vw;
    
    }

    form input, .message {
        width: 60vw;
    }
}