#sectionContato {
    width: 100vw;
    height: auto;
    margin-top: 50px;
}

#contatoTitle {
    font-size: 48px;
    font-weight: bolder;
    width: 60%;
    text-align: center;
    text-transform: uppercase;
}

#contatoP {
    font-size: 22px;
    font-weight: 400;
    margin-top: 5px;
    margin-bottom: 25px;
}

#sectionContato form {
    width: 40%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    gap: 5%;
}

.formLabel {
    font-family: 'Dinot', 'Roboto';
    font-size: 18px;
    font-weight: 400;
    color: white;
    margin-top: 15px;
}

.campoForm {
    width: 47.5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.campoForm input {
    background-color: transparent;
    height: 40px;
    border-radius: 7px;
    border-width: 2px;
    border-style: solid;
    border-color: white;
    margin-top: 3px;
    width: 100%;
    box-sizing: border-box;
    color: white;
    font-family: 'Dinot', 'Roboto';
    font-size: 18px;
    font-weight: 400;
}

#campoAssunto {
    width: 100%;
}

#campoAssunto input {
    width: 100%;
}

#campoMensagem {
    width: 100%;
}

#campoMensagem textarea {
    width: 100%;
    background-color: transparent;
    border-radius: 7px;
    border-color: white;
    border-width: 2px;
    border-style: solid;
    margin-top: 5px;
    color: white;
    font-family: 'Dinot', 'Roboto';
    font-size: 18px;
    font-weight: 400;
    box-sizing: border-box;
}

.campoForm button {
    width: 65%;
    height: 40px;
    background-color: transparent;
    border-radius: 7px;
    border-color: white;
    border-width: 2px;
    border-style: solid;
    color: white;
    margin-top: 20px;
    margin-bottom: 25px;
    transition: all 0.5s;
    font-family: 'Dinot', 'Roboto';
    font-weight: 400;
    font-size: 18px;
}

#campoEnviar {
    align-items: center;
}

.campoForm button:hover {
    background-color: white;
    color: rgba(28, 28, 28, 1);
}


.campoForm button:active {
    scale: 0.9;
}





@media screen and (max-width: 900px) and (orientation: portrait) {
    #contatoTitle {
        font-size: 48px;
        width: 80%;
    }

    #sectionContato form {
        width: 60%;
    }
}


@media screen and (max-width: 500px) and (orientation: portrait) {
    #contatoTitle {
        font-size: 28px;
        width: 80%;
    }

    #sectionContato form {
        width: 80%;
    }

    #contatoP {
        font-size: 18px;
        width: 80%;
    }
    
    #sectionContato form {
        width: 70%;
        flex-direction: column;
    }

    .campoForm {
        width: 100%;
    }
}