.formulario {
    position: relative;
    z-index: 1;
}

.c-formulario {
    background-color: #fff;
    border-radius: 16px 16px 0px 0px;
    margin-top: calc(-160px);
    padding: 68px 213px;
    display: flex;
    flex-direction: column;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 70px;
}

.c-formulario h2 {
    color: #333;
    text-align: center;
    font-family: Montserrat;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.input-group {
    display: flex;
    gap: 32px;
}

.box-select {
    width: 100%;
    border-radius: 66px;
    border: 1px solid #000;
    background: transparent;
    width: 100%;
    height: 64px;
    position: relative;
}

.box-select select {
    height: 100%;
    width: 100%;
    border-radius: 66px;
    border: none;
    outline: none;
    background-color: transparent;
    padding: 0 36px;
    z-index: 2;
    outline: none;
    color: #838383;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}

.box-select svg {
    position: absolute;
    right: 20px;
    top: 20%;
    z-index: 0;
}

.form input {
    border-radius: 66px;
    border: 1px solid #000;
    background: #FFF;
    width: 100%;
    height: 64px;
    padding: 0 36px;
    outline: none;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    color: #000;
    font-weight: 400;
}

.form input::placeholder {
    color: #838383;
}

.input-group textarea {
    border-radius: 66px;
    border: 1px solid #000;
    background: #FFF;
    width: 100%;
    height: 64px;
    padding: 36px;
    outline: none;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    color: #000;
    border-radius: 16px;
    height: 240px;
    resize: none;
}

.btns-form button {
    border-radius: 60px;
    background: #E30613;
    padding: 16px 48px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    border: none;
}

.btns-form button:hover {
    background-color: rgb(145, 20, 20);
    transition: all .3s ease;
}

.poli-priv label {
    color: #838383;
    font-family: Roboto;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: 133.333%;
}

.poli-priv label a {
    color: #00C2FF;
}

.poli-priv {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width:420px;
}

.btns-form {
    display: flex;
    justify-content: space-between;
    gap: 100px;
}

.poli-priv input {
    width: 50px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #000;
    padding: 0;
}

.cards-contato {
    display: flex;
    gap: 32px;
    margin-top: 100px;
}

.card-contato {
    border-radius: 8px;
    background: #4A8454;
    padding: 35px;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
}

.card-contato ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.icon-card {
    position: absolute;
    top: -40px;
    right: 5%;
}

.card-contato li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.inf-card {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.card-end li{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.inf-card p span {
    font-size: 12px;
    font-weight: 300;
}

.card-end li a {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    text-transform: uppercase;
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media all and (max-width:1800px) {
    .c-formulario {
        padding: 50px 100px;
    }
}

@media all and (max-width:1200px) {}

@media all and (max-width:1021px) {
    .c-formulario {
        padding: 50px 50px;
    }
}

@media all and (max-width: 781px) {

    .input-group{
        flex-direction: column;
    }

    .btns-form{
        flex-direction: column;
        gap: 25px;
    }

    .cards-contato{
        flex-direction: column;
    }

    .card-contato {
        width: 100%;
    }

    .poli-priv{
        width: 100%;
    }

}

@media all and (max-width: 551px) {
    .c-formulario {
        padding: 50px 25px;
        margin-top: calc(-50px);
    }

    .card-contato li{
        font-size: 14px;
    }

}