.ContactUs {
    height: auto;
}

    .ContactUs .form-select {
        border-radius: var(--rounded);
        padding: 0.6rem;
        box-shadow: none;
        outline: 1px;
        padding-right: 30px;
    }

    .ContactUs .positionSelect {
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .ContactUs .umbraco-forms-page-v2 .field-validation-error::before {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-right: 6px;
        background: url('/assets/warningoctagon.svg') no-repeat center;
        background-size: contain;
        vertical-align: middle;
    }

    /*.classModalForm {
    display: none;*/ /*lembrar de tirar*/
    /*}*/

    .ContactUs .form-select:first-child {
        color: #818181;
    }

    .ContactUs .form-select:focus {
        border-color: #818181;
        box-shadow: none;
    }

    .ContactUs .form-container {
        background: #4D3293;
        padding: 2rem;
    }

    .ContactUs .form-container-text {
        color: white;
        font-family: var(--font-tpSans-exLight);
        font-weight: 275;
        font-size: 40px;
    }

    .ContactUs .form-close {
        top: 20px;
        position: absolute;
        right: 20px;
        cursor: pointer;
    }

    .ContactUs .tp-contact-form__label {
        background-color: #3E4854;
        height: 104px;
        border-radius: 8px;
        width: 100%;
        padding: 16px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
    }

        .ContactUs .tp-contact-form__label hr {
            border: 1px solid white;
            color: white;
            opacity: 1;
        }

    .ContactUs .form-select-contact {
        background: white;
        border-radius: 8px;
        width: 100%;
        font-family: var(--font-tpSans-exLight);
        font-weight: 275;
        font-size: 24px;
        transition: opacity 0.25s ease, transform 0.25s ease;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
    }

        .ContactUs .form-select-contact div {
            padding: 1.5rem;
            border-bottom: 1px solid #CED6DE;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
        }


    .ContactUs .tp-contact-form__label svg {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: rotate(0deg);
        transform-origin: center;
    }

    .ContactUs .tp-contact-form__label.label-active svg {
        transform: rotate(180deg);
    }

    .ContactUs .form-select-contact div:hover {
        color: var(--title-primary-strong);
    }

    .ContactUs .form-select-contact div:last-child {
        border: none;
    }

    .ContactUs .form-select-contact.show-select {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .ContactUs .contactUs__selectContact {
        font-family: var(--font-tpSans-light);
        font-weight: 300;
        font-size: 20px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .ContactUs .contactus__headerForm {
        border-top-left-radius: var(--rounded);
        border-top-right-radius: var(--rounded);
        top: 6px;
        position: relative;
    }

    .ContactUs .contactus__headerForm-text {
        font-family: var(--font-tpSans-medium);
        font-weight: normal;
        font-size: 2rem;
        color: white;
        padding: 0.8rem 0;
    }

    .ContactUs .render-form iframe {
        width: 100%;
    }

    .ContactUs .title-container {
        padding: 1rem 0;
    }

    .ContactUs .tp-btn {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 56px;
        width: 154px;
        background: var(--bg-primary-strong);
        color: var(--title-inverse);
        font-size: var(--fs-18);
        line-height: var(--lh-24);
        font-weight: var(--fw-light);
        isolation: isolate;
        font-family: var(--font-tpSans-light);
        cursor: pointer;
    }

        .ContactUs .tp-btn > * {
            position: relative;
            z-index: 2;
        }

    .ContactUs .tp-btn__accent {
        position: absolute;
        inset: 0;
        background: var(--bg-secondary-strong);
        transform: scaleX(0);
        transform-origin: left center;
        z-index: 1;
        transition: transform var(--t-base) var(--ease);
    }

    .ContactUs .tp-btn:hover .tp-btn__accent,
    .ContactUs .tp-btn:focus-visible .tp-btn__accent {
        transform: scaleX(1);
    }

    .ContactUs .tp-btn__icon {
        width: 24px;
        height: 24px;
        flex: none;
        transition: transform var(--t-base) var(--ease);
    }

        .ContactUs .tp-btn__icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

    .ContactUs .tp-btn:hover .tp-btn__icon,
    .ContactUs .tp-btn:focus-visible .tp-btn__icon {
        transform: rotate(-45deg);
    }

    .ContactUs .tp-btn--secondary {
        background: var(--bg-neutral-medium);
        color: var(--title-primary-strong);
    }

        .ContactUs .tp-btn--secondary .tp-btn__accent {
            background: var(--bg-primary-strong);
        }

        .ContactUs .tp-btn--secondary:hover,
        .ContactUs .tp-btn--secondary:focus-visible {
            color: var(--title-inverse);
        }

@media (min-width:992px) {
    .ContactUs .title-container {
        padding: 0;
    }

    .ContactUs {
        min-height: 500px;
    }

        .ContactUs .contactUs__selectContact {
            font-size: 24px;
        }
}
