/**
 * Section - Work With Us (Trabalhe Conosco)
 * Title, description and CTA for the careers page
 *
 * @package SeedDigital
 * @since 1.0.0
 */

/* ============================================
   Section Container
   ============================================ */
.section-work-with-us {
  padding: 80px 32px 100px;
  box-sizing: border-box;
  width: 100%;
  background-color: #ffffff;
}

/* ============================================
   Wrapper
   ============================================ */
.work-with-us__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  box-sizing: border-box;
}

/* ============================================
   Title Block (label + headline)
   ============================================ */
.work-with-us__title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 200px 112px;
  gap: 24px;
  width: 100%;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  box-sizing: border-box;
}

.work-with-us__label {
  width: 100%;
  max-width: 944px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #0ba5ec;
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
}

.work-with-us__title {
  width: 100%;
  max-width: 944px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 48px;
  line-height: 60px;
  text-align: center;
  color: #1b1a1a;
  margin: 0;
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}

/* ============================================
   Description (body text)
   ============================================ */
.work-with-us__description {
  width: 100%;
  max-width: 1381px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #282828;
  text-align: left;
  box-sizing: border-box;
}

.work-with-us__description p {
  margin: 0 0 1em 0;
}

.work-with-us__description p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CTA Button
   ============================================ */
.work-with-us__cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  gap: 16px;
}

.work-with-us__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 322px;
  height: 71px;
  padding: 0 24px;
  box-sizing: border-box;
  background: #0ba5ec;
  border-radius: 72px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.work-with-us__button:hover {
  background: #0995d4;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1440px) {
  .work-with-us__title-block {
    padding: 0 120px;
  }
}

@media (max-width: 1024px) {
  .section-work-with-us {
    padding: 60px 24px 80px;
  }

  .work-with-us__title-block {
    padding: 0 48px;
    gap: 20px;
  }

  .work-with-us__title {
    font-size: 40px;
    line-height: 50px;
  }

  .work-with-us__description {
    font-size: 17px;
    line-height: 26px;
  }

  .work-with-us__button {
    width: 100%;
    max-width: 322px;
  }
}

@media (max-width: 768px) {
  .section-work-with-us {
    padding: 48px 16px 64px;
  }

  .work-with-us__wrapper {
    gap: 40px;
  }

  .work-with-us__title-block {
    padding: 0 16px;
    gap: 16px;
  }

  .work-with-us__label {
    font-size: 15px;
    line-height: 22px;
  }

  .work-with-us__title {
    font-size: 32px;
    line-height: 40px;
  }

  .work-with-us__description {
    font-size: 16px;
    line-height: 24px;
  }

  .work-with-us__button {
    width: 100%;
    max-width: 100%;
    height: 56px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section-work-with-us {
    padding: 40px 16px 56px;
  }

  .work-with-us__title {
    font-size: 28px;
    line-height: 36px;
  }

  .work-with-us__label {
    font-size: 14px;
    line-height: 20px;
  }
}
