.talk-to-us {
  width: 100%;
  padding: 0 max(calc((100% - var(--view-port)) / 2), 5%);

  padding-top: 107px;

  padding-bottom: 50px;

  display: flex;
  flex-direction: column;

  .name {
    grid-area: name;
  }
  .company {
    grid-area: company;
  }
  .cnpj {
    grid-area: cnpj;
  }
  .email {
    grid-area: email;
  }
  .phone {
    grid-area: phone;
  }
  .city {
    grid-area: city;
  }
  .state {
    grid-area: state;
  }
  .observation {
    grid-area: observation;
  }

  .text-300 {
    font-weight: 300;
  }

  .text-500 {
    font-weight: 500;
  }

  .margin-top {
    margin-top: 48px;
  }

  .email-wrapper {
    display: flex;
    border-radius: 8px;
    background: var(--blue-100);
    gap: 16;

    margin-top: 14px;

    padding: 12px;

    color: var(--blue-600);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;

    align-items: center;

    a {
      text-decoration: none;
      color: #242054;
    }

    img {
      width: 21px;
      height: 16.333px;

      margin-right: 16px;
    }
  }
}
@media screen and (max-width: 750px) {
  .talk-to-us .email-wrapper {
    font-size: 13px;
  }
}

.FAQ-margin-top {
  margin-top: 34px !important;
}

.talk-to-us-form-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;

  column-gap: 12px;

  .text {
    color: var(--blue-500);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.45px;
  }

  .promise-text {
    color: var(--blue-500);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.4px;

    max-width: 388px;
  }

  .row {
    display: flex;
    width: 93%;
    justify-content: space-between;
    margin-top: 42px;
  }

  .locaked-icon {
    width: 24px;
    height: 24px;

    margin-bottom: 16px;
  }

  .submit-btn {
    display: flex;
    height: 48px;
    padding: 22px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 600px;
    background: #33a3ff;

    color: #fff;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.45px;

    transition: all ease 0.5s;

    border: transparent;

    cursor: pointer;
  }

  .text-consent {
    max-width: 350px;
    color: #001871;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
  }

  .text-consent input[type="checkbox"] {
    margin-top: 10px;
  }

  .submit-btn:hover {
    transform: scale(1.09);
  }
}

@media (max-width: 750px) {
  .talk-to-us-form-wrapper {
    .text-consent {
      max-width: 100%;
    }
  }

  .submit-btn {
    max-width: 100%;
    width: 100%;
  }
}

.talk-to-us-column {
  display: flex;
  flex-direction: column;

  align-items: flex-start;
}

.talk-to-us-title {
  color: var(--blue-700);
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  margin-top: 32px;
}

.talk-to-us-for #wpcf7-f367-o1 .wpcf7-form .wpcf7-form-control-wrap {
  max-width: 250px !important;
  width: 250px;
}

.talk-to-us-form form {
  display: grid;
  max-width: 590px;
  grid-template-columns: 250px 250px;
  gap: 16px;
}

@media (max-width: 750px) {
  .talk-to-us-form form {
    display: flex !important;
    flex-direction: column;
  }
}

.talk-to-us-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "your-cnpj"
    "your-email"
    "your-phone"
    "your-city"
    "your-state"
    "observation observation";

  gap: 16px;

  .wpcf7-response-output {
    grid-column: 1/3;
    max-width: 100%;
    width: 100%;
    margin: -2em 0.5em 1em !important;

    .form.invalid {
      color: red;
    }
  }

  input {
    border-radius: 6px;
    border: 1px solid var(--blue-200);
    height: 48px;
    padding: 23px 22px;
    color: var(--blue-400);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 250px;
    color: #575387;
  }

  textarea {
    border-radius: 6px;
    border: 1px solid var(--blue-200);
    padding: 23px 22px;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    height: 124px;
    grid-area: observation;
    max-width: 100%;
    width: 100%;
    color: #575387;
  }

  span[data-name="your-name"] {
    grid-column: 1/3 !important;
    max-width: 100%;
    width: 100%;

    input {
      max-width: 100%;
      width: 100%;
    }
  }

  span[data-name="your-observation"] {
    grid-column: 1/3 !important;
    max-width: 100%;
    width: 100%;
  }

  .wpcf7-form .wpcf7-submit {
    display: none !important;
  }
}

@media (max-width: 750px) {
  .talk-to-us-form {
    grid-template-columns: 1fr;
  }

  .talk-to-us-form input {
    max-width: 100%;
    width: 100%;
  }
}

.spacing {
  width: 1px;
  height: 128px;
}

.be-part-of-our-team {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;

  .team-image {
    width: 100%;
    max-width: 399px;
  }

  .team-image-wrapper {
    width: 100%;

    display: flex;
    justify-content: flex-end;

    align-items: center;
  }
}

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

@media screen and (max-width: 1000px) {
  .talk-to-us-form-wrapper {
    grid-template-columns: 1fr;
    row-gap: 18px;

    .row {
      margin-top: 20px;
    }
  }

  .be-part-of-our-team {
    grid-template-columns: 1.3fr 0.7fr;

    gap: 20px;

    .team-image-wrapper {
      width: 100%;
    }
  }
}

@media screen and (max-width: 750px) {
  .talk-to-us-form-wrapper {
    .row {
      flex-direction: column-reverse;
      margin-top: 20px;
      gap: 12px;
    }
  }

  .be-part-of-our-team {
    grid-template-columns: 1fr;

    gap: 50px;

    .team-image-wrapper {
      width: 100%;
      align-items: center;
      justify-content: center;
    }
  }
}
