.title-page {
    background: #007274;
}

.contato .btn.contato__btn-send {
    background: rgb(22, 159, 147);
    border: 1px solid rgb(22, 159, 147);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
    transition: all 0.3s ease-in-out 0s;
}

.contato .btn.contato__btn-send:hover {
    background: rgb(145, 235, 221);
    border: 1px solid rgb(145, 235, 221);
    -webkit-appearance: none;
    color: #000000;
}

.modalEspera2 {
    background: rgba(30, 30, 28, .8) url(../img/assets/img/wait.gif) 50% 50% no-repeat;
    z-index: 10000000000;
    border-radius: 0;
    color: white;
}

@media screen and (min-width: 0px) {
    .contato .btn.contato__btn-send {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .modalEspera2 {
        background: rgba(30, 30, 28, .8) url(../img/assets/img/wait_2.gif) 50% 50% no-repeat !important;
    }
}

@media screen and (min-width: 768px) {
    .contato .btn.contato__btn-send {
        width: initial;
    }
}