  .main-employers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    position: relative;
  }

  .w-100 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .profissional-card .saiba-mais {
    opacity: 0;
    text-decoration: none !important;
    visibility: hidden;
    transition: opacity .3s ease, transform .3s ease;
    transform: translateY(10px);
  }

  .profissional-card:hover .saiba-mais {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .container-employers {
    width: 100%;
    max-width: 1440px;
    text-align: center;
    padding: 64px 5.5em 48px;
    box-sizing: border-box;
  }

  .employers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
  }

  .employers-header h2 {
    font-size: 36px;
    margin: 0;
    text-align: start;
    font-weight: 400;
  }

  .employers-header p {
    color: #012840;
    font-size: 16px;
    line-height: 1.5;
    max-width: 650px;
    text-align: end;
  }

  .h3-title {
    width: 100%;
    font-weight: 400;
    line-height: 46px;
    text-align: start;
    font-size: 36px;
    margin-top: 64px;
  }

  .search-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
  }

  .search-input,
  .search-button,
  .search-select {
    height: 40px;
    box-sizing: border-box;
    background-color: #F2F2F2;
  }

  .search-input {
    width: 405px;
    padding: 0 14px;
    border: 1px solid #00000040;
    border-radius: 4px;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #00000080;
  }

  .search-button {
    background: linear-gradient(90deg, #009EE2, #00CFFF);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0 16px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    line-height: 100%;
  }

  .search-input:focus,
  .search-select:focus {
    border-color: #00CFFF;
    outline: none;
  }

  .search-button svg {

    background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/search-icon.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90% auto;
    width: 28px;
    height: auto;
  }

  .search-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 314px;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #00000080;
    padding: 0 40px 0 14px;
    border: 1px solid #00000040;
    border-radius: 6px;
    font-style: italic;
    margin-left: 50px;
    height: 40px;
    box-sizing: border-box;
    background: #F2F2F2 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24"><path d="M6 9L12 15L18 9" stroke="%23868889" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat right 12px center;
    background-size: 18px 18px;
    cursor: pointer;
  }

  .profissionais-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 40px;
  }

  .profissional-card {
    width: 288px;
    border-radius: 25px 25px 0 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
  }

  .profissional-card:hover {
    cursor: pointer;
    transform: translateY(-10px);
  }

  .profissional-imagem {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    z-index: 500;
    margin-bottom: -6px;
  }

  .profissional-imagem::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;

    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    pointer-events: none;

    z-index: 501;

  }

  .foto-profissional {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .profissional-info {
    background-color: #002C4D;
    color: #fff;
    text-align: left;
    padding: 16px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 234px;
    border-radius: 6px;
    z-index: 502;
  }

  .profissional-nome {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }

  .profissional-cargo {
    margin: 4px 0 0 0;
    font-size: 15px;
    color: #FFFFFFBF;
    font-weight: 400;
  }

  .profissional-area {
    margin: 6px 0 0 0;
    font-size: 15px;
    color: #009EE2;
    font-weight: 600;
  }

  .equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .equipe-item {
    width: 295px;
    height: 98px;
    background-color: #f7f7f7;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .equipe-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: relative;
    height: 100%;
    margin-top: 25px;
  }

  .equipe-nome {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #0D1826;
    margin: 0 0 8px 0;
    text-align: start;
  }

  .equipe-contatos {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .contato-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(116deg, #009EE2 30%, #00F0FD 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease-in-out;
  }

  .linkedin-icon,
  .email-icon,
  .phone-icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90% auto;
    width: 28px;
    height: 28px;
  }

  .linkedin-icon {
    background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/icon-linkedin.svg');
  }

  .email-icon {
    background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/icon-mail.svg');
  }

  .phone-icon {
    background-image: url('/wp-content/themes/hello-elementor-child-theme/styles/icons/icon-phone.svg');
  }


  .contato-icon:hover {
    background-color: #00F0FD;
  }


  @media (max-width: 1366px) {
    .profissional-card {
      width: 20vw;
    }
  }

  @media (max-width: 1200px) {
    .container-employers {
      padding: 48px 1em;
    }

    .employers-header {
      flex-direction: column;
      align-items: flex-start;
    }

    .employers-header p {
      text-align: start;
      margin-top: 16px;
    }

    .search-bar {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }

    .search-select {
      margin-left: 0;
      width: 100%;
      max-width: none;
    }

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

    .profissionais-list {
      justify-content: center;
    }
  }

  @media (max-width: 768px) {

    .equipe-info {
      margin-top: 0px;
    }

    .equipe-grid {
      display: grid;
      grid-template-columns: auto auto;
    }

    .employers-header h2 {
      font-size: 28px;
    }

    .h3-title {
      font-size: 28px;
      line-height: 36px;
    }

    .profissional-card {
      width: 100%;
      max-width: 295px;
    }

    .profissional-info {
      height: auto;
      padding: 12px 16px;
    }

    .profissional-nome {
      font-size: 16px;
    }

    .profissional-cargo,
    .profissional-area {
      font-size: 14px;
    }

    .equipe-item {
      width: 100%;
      max-width: 295px;
      flex-direction: column;
      height: auto;
      padding: 12px;
      height: 154px;
    }

    .equipe-nome {
      font-size: 16px;
      width: 100%;
      text-align: start;
      /* margin-bottom: auto; */
    }

    .equipe-contatos {
      margin-top: auto;
    }
  }

  @media screen and (min-width: 480px) and (max-width: 767px) {

    .container-employers {
      padding: 38px 20px;
    }

    .search-bar {
      flex-wrap: wrap;
      flex-direction: row;
      gap: 10px;
    }

    .search-button {
      font-size: 0px;
      width: 40px;
      height: 40px;
      position: absolute;
      right: 20px;

      gap: 8px;
      padding: 0px;
      gap: 0px;
      justify-content: center;
    }

    /*     .search-bar {
      gap: 8px;
      padding: 0px;
      gap: 12px;
      justify-content: space-between;
    }
 */
    .search-bar input,
    .search-bar select {
      font-size: 14px !important;
    }


    .search-bar> :nth-child(3) {
      width: 48vw;
    }

    .search-bar> :nth-child(4) {
      width: 38vw;
    }

    .h3-title {
      width: 100px;
    }

    /*     .profissionais-list {
      display: grid;
      grid-template-columns: auto auto;
    } */

    .profissional-card {
      height: 509px;
    }

    .equipe-grid {
      grid-template-columns: 48% 48%;
    }

    .equipe-item {
      align-items: start;
    }


  }

  @media screen and (max-width: 480px) {
    .h3-title {
      margin-top: 0;
      font-size: 24px;
      line-height: 36px;
    }

    .search-bar> :nth-child(3) {
      width: 100%;
    }
  }