#main_container_conteudo #box_form_contatos.contact-form-card {
    background: linear-gradient(90deg, rgba(242, 245, 247, .97), rgba(255, 255, 255, .98) 16%, #fff 50%, rgba(255, 255, 255, .98) 84%, rgba(239, 243, 246, .97));
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 50% / 32px;
    box-shadow:
        0 16px 32px rgba(26, 45, 71, .17),
        inset 0 4px 5px rgba(255, 255, 255, .95),
        inset 0 -6px 10px rgba(31, 55, 78, .1);
    box-sizing: border-box;
    clear: both;
    float: none;
    margin: 10px 0 44px;
    overflow: hidden;
    padding: 44px 46px 46px;
    position: relative;
    width: 774px;
}

#main_container_conteudo #box_form_contatos.contact-form-card::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, .72), transparent);
    content: "";
    height: 25px;
    left: 8%;
    pointer-events: none;
    position: absolute;
    right: 8%;
    top: 1px;
}

.contact-card-header {
    align-items: center;
    border-bottom: 1px solid #dce3e8;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 23px;
    padding-bottom: 21px;
}

.contact-form-heading span {
    color: #1473ac;
    display: block;
    font-family: 'TitilliumText22LBold';
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    color: #172b55;
    font-family: 'TitilliumText22LBold';
    font-size: 28px;
    line-height: 1.08;
    margin: 5px 0 0;
}

.contact-form-heading > p {
    color: #68737c;
    font-size: 15px;
    margin: 7px 0 0;
}

#main_container_conteudo .contact-form-card #central {
    flex: 0 0 200px;
    margin: 0;
    position: static;
    width: 200px;
}

#main_container_conteudo .contact-form-card .contato_tel {
    width: 200px;
}

.contact-form-grid {
    display: grid;
    gap: 17px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-field {
    min-width: 0;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #263b5d;
    display: block;
    font-family: 'TitilliumText22LBold';
    font-size: 15px;
    margin: 0 0 6px;
}

.contact-field label span {
    color: #168fc5;
}

.contact-field label small {
    color: #7a858e;
    font-family: 'TitilliumText22LRegular';
    font-size: 12px;
    margin-left: 4px;
}

.contact-field input,
.contact-field textarea {
    background: #fff;
    border: 1px solid #c6d0d8;
    border-radius: 7px;
    box-shadow: inset 0 1px 2px rgba(20, 35, 54, .05);
    box-sizing: border-box;
    color: #33404a;
    font-family: 'TitilliumText22LRegular';
    font-size: 16px;
    outline: none;
    padding: 9px 11px;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
}

.contact-field input {
    height: 42px;
}

.contact-field textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #168fc5;
    box-shadow: 0 0 0 3px rgba(22, 143, 197, .14);
}

.contact-phone-fields {
    display: grid;
    gap: 8px;
    grid-template-columns: 68px minmax(0, 1fr);
}

.contact-form-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.contact-form-footer p {
    color: #6c7680;
    font-size: 12px;
    margin: 0;
    padding: 0 !important;
}

.contact-submit {
    background: linear-gradient(135deg, #24558a, #172b55);
    border: 0;
    border-radius: 7px;
    box-shadow: 0 5px 13px rgba(23, 43, 85, .23);
    color: #fff;
    cursor: pointer;
    font-family: 'TitilliumText22LBold';
    font-size: 16px;
    padding: 11px 20px;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    background: linear-gradient(135deg, #168fc5, #24558a);
    box-shadow: 0 7px 17px rgba(23, 43, 85, .28);
    outline: none;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    #main_container_conteudo #box_form_contatos.contact-form-card {
        border: 1px solid rgba(28, 62, 103, .16);
        border-radius: 14px;
        margin: 0 18px 34px;
        overflow: visible;
        padding: 23px 20px 24px;
        width: auto;
    }

    #main_container_conteudo #box_form_contatos.contact-form-card::before {
        display: none;
    }

    .contact-card-header {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

    #main_container_conteudo .contact-form-card #central,
    #main_container_conteudo .contact-form-card .contato_tel {
        box-sizing: border-box;
        flex-basis: auto;
        width: 100%;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-field-full {
        grid-column: auto;
    }
}

@media (max-width: 460px) {
    #main_container_conteudo #box_form_contatos.contact-form-card {
        margin-left: 12px;
        margin-right: 12px;
    }

    .contact-form-footer {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .contact-submit {
        width: 100%;
    }
}
