.wpcf7{
    width: 100%;
}
.wpcf7 form .wpcf7-submit {
    position: relative;
    padding-right: 40px; /* espaço pro spinner */
  }
  
  .wpcf7 form .wpcf7-spinner {
    position: absolute;
    right: 270px;
    transform: translateY(-50%);
    margin: 0;
    bottom: 100px;
  }
  

.contact-section {
    background-color: var(--color-blue);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section .background-left-bottom {
    --bg-size: 503px;
}

.contact-section .background-right-top {
    --bg-size: 335px;
}

.contact-section__container {
    display: flex;
    gap: 48px;
    margin-left: 44px;
}

.contact-section__container .group {
    max-width: 242px;
}

.contact-section__title {
    font-weight: 700;
    font-size: 24px;
    max-width: 160px;
    margin-bottom: 8px;
    position: relative;
}

.contact-section__title::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 6px;
    width: 24px;
    height: 24px;
    background-image: linear-gradient(225deg, var(--color-gray) 50%, transparent 0%, transparent 100%);
}

.contact-section__container p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 16px;
}

.contact-section .contact {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
}

.contact-section .contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.contact-section .contact-form__fields {
    display: grid;
    gap: 24px;
}

.contact-section .contact-form__fields input {
    width: 100%;
    min-height: 60px;
    padding: 16px 22px;
    border: 0;
    font-weight: 400;
    font-size: 18px;
}

.contact-section .contact-form__fields textarea {
    grid-column: 1/3;
    padding: 16px 22px;
    min-height: 169px;
    font-weight: 400;
    font-size: 18px;
    border: 0;
    resize: vertical;
}

.contact-section .contact-form .btn {
    align-self: flex-end;
    max-width: 226px;
    background-image: linear-gradient(45deg, var(--color-gray) 80%, transparent 0%, transparent 90%, var(--color-white) 0%)
}


@media (max-width: 900px) {
    .contact-section__container {
        flex-direction: column;
    }

    .contact-section__container .group {
        max-width: none;
    }
}


@media (max-width: 500px) {
    .contact-section .contact-form__fields {
        gap: 16px;
    }

    .contact-section .contact-form__fields textarea {
        grid-column: 1/2;
    }
}