.content-formulario-contato {
    height: 210px;
}

.card-formulario-contato {
    background-color: #FFF;
    border-radius: 40px;
    box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.15);
    padding: 40px 38px;
    width: 80%;
    top: -89%;
}

.btn-form-contato {
    position: relative;
    overflow: hidden;
    background-color: #316094;
    border-radius: 17px;
    padding: 10px 40px;
    border: none;
    width: 230px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;

    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
}

.btn-form-contato:hover {
    transform: scale(1.05);
    box-shadow: 8px 11px 3px rgba(0, 0, 0, 0.15);
}

.btn-form-contato::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    /* começa fora */
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: skewX(-25deg);
}

.btn-form-contato:hover::before {
    animation: faixaPassando 0.9s linear forwards;
}

@keyframes faixaPassando {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.btn-tel-contato {
    background-color: #316094;
    border-radius: 40px;
    padding: 15px 50px;
    border: none;
    width: 260px;
    color: #FFF;
    text-decoration: none;
    font-weight: 600;
}

input {
    border-radius: 22px;
    border: 2px solid #ccc;
    font-size: 18px;
    padding: 12px 22px;
}

select {
    border-radius: 22px;
    border: 2px solid #ccc;
    font-size: 18px;
    padding: 12px 22px;
}

textarea {
    border-radius: 22px;
    border: 2px solid #ccc;
    font-size: 18px;
    padding: 12px 22px;
}

@media (max-width: 468px) {
    .content-formulario-contato {
        height: 480px;
    }
    .card-formulario-contato{
        top: -19%;
    }
}