.contact {
    padding-bottom: 5rem;
}
.contact .section-subtitle {
    font-family: "Montserrat Medium";
    font-size: 1.125rem;
    color: #2f3c71;
    text-align: center;
    margin: 0 auto 3rem;
}
@media(min-width: 1200px) {
    .contact {
        padding-bottom: 8rem;
    }
    .contact .section-subtitle {
        margin: 0 auto 4rem;
    }
}

/* Formulario */
.form-contact {
    max-width: 654px;
    margin: 0 auto;
}
.form-contact .form-label {
    font-family: "Montserrat Bold";
    font-size: 1rem;
    color: #272727;
    margin-bottom: 0;
}
.form-contact .form-select,
.form-contact .form-control {
    font-family: "Montserrat Medium";
    font-size: 1rem;
    border-color: #b5b5b5;
    color: #5d5d5d;
}
.form-contact .form-control:not(textarea) {
    height: 56px;
    line-height: 56px;
}
.form-contact .form-select {
    height: 56px;
}
.form-contact .form-control:focus {
    box-shadow: 0 0 0 0.20rem rgba(95 95 95 / 20%);
}
.form-contact button {
    max-width: 190px;
}

/* Input File */
.form-contact input[type='file'] {
    position: absolute;
    top: 0;
    opacity: 0;
    height: 56px;
    width: 100%;
    color: #545454;
    background-color: #f2f2f2;
    border: 1px solid #b5b5b5;
    border-radius: 0.25rem;
    box-shadow: none;
    cursor: pointer;
}
.form-contact .file-label {
    font-family: "Montserrat Medium";
    font-size: 1rem;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    height: 56px;
    width: 100%;
    border-radius: 0.25rem;
    border: 1px solid #b5b5b5;
    background-color: #f2f2f2;
    color: #545454;
    padding: .375rem .75rem;
}
.form-contact .file-label::before {
    content: "";
    background-image: url("../images/icones/icone-input-upload.png");
    background-repeat: no-repeat;
    width: 20px;
    height: 24px;
    margin-right: 0.375rem;
}
.form-contact .files-area {
    font-family: "Montserrat Medium";
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    height: 56px;
    width: 100%;
    border-radius: 0.25rem;
    border: 1px solid #b5b5b5;
    background-color: #f2f2f2;
    color: #545454;
    padding: .375rem .75rem;
}
.form-contact .files-area .file-block {
    display: inline-flex;
    color: initial;
    margin: 0.25rem;
    border-radius: 1rem;
    background-color: rgba(144, 163, 203, 0.2);
}
.form-contact .files-area .file-block > span.name {
    display: inline-flex;
    width: max-content;
    padding-right: 1rem;
}
.form-contact .files-area .file-delete {
    display: flex;
    justify-content: center;
    font-size: large;
    cursor: pointer;
    color: initial;
    width: 24px;
    margin-right: 3px;
    background-color: rgba(110, 180, 255, 0);
}
.form-contact .files-area .file-delete:hover {
    background-color: rgba(144, 163, 203, 0.6);
    border-radius: 1rem;
}
.form-contact .files-area .file-delete > span {
    transform: rotate(45deg);
}
/* Pseudo do Bootstrap */
.form-contact input[type='file']::file-selector-button {
    display: none;
}