
.modal-contato {
    position: fixed;
    z-index: 1001;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: all;
    background-color: rgba(0, 0, 0, .7);
}

.wrapper-modal {
    animation: modal .5s forwards;
    position: absolute;
    width: 50%;
    max-width: 640px;
    height: 620px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;

    background-color: #005FF6;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    color: #fff;
    border-radius: 10px;
    padding: 50px 30px;
}

.S11-btn-fechar {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 16px;
    color: #333;
    padding: 15px;
}

.S11-titulo {
    margin-bottom: 20px;
}

.S11-wrapper-input {
    width: 100%;
    padding: 10px;
    background-color: #003FA2;
    border-radius: 5px;
    margin-bottom: 10px;
}

.S11-input {
    width: 100%;
    height: 40px;
    border: none;
    background-color: transparent;
    /* background-color: #003FA2; */
    outline: none;
    color: #fff;
    font-size: 16px;
}

.S11-input::placeholder {
    color: rgb(209, 209, 209);
    font-size: 16px;
    font-weight: 400;
}

.S11-btn-box {
    width: 100%;
    text-align: center;
}

.S11-btn-conhecer {
    display: block;
    background-color: #fff;
    color: #005FF6;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bolder;
    letter-spacing: 2px;
    padding: 20px;
    transition: .5s;
    cursor: pointer;
}

.S11-btn-conhecer:hover {
    transform: scale(0.90);

}