main section {
  margin-bottom: 2rem;

  .container {
    padding: 0;
  }
}

section.talentos-section-header .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;

  h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: #035c2f;
    text-align: center;
  }

  > p {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.5;
    text-align: center;
    font-weight: 600;
    margin: 0;
  }

  .intro-text {
    p {
      color: #4b5563;
      font-size: 1rem;
      line-height: 1.6;
      text-align: center;
      margin-bottom: 0.75rem;
      font-weight: 500;
    }
  }

  @media (min-width: 768px) {
    padding: 2rem 0;

    h1 {
      font-size: 2.5rem;
    }

    > p {
      font-size: 1.25rem;
    }

    .intro-text p {
      font-size: 1.125rem;
    }
  }

  @media (min-width: 1024px) {
    h1 {
      font-size: 3.75rem;
    }

    > p {
      font-size: 1.5rem;
      line-height: 1.75rem;
    }

    .intro-text p {
      font-size: 1.25rem;
    }
  }
}

section.talentos-section-why {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .section-title {
    margin-bottom: 2rem;
    text-align: center;

    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1rem;
      display: inline-block;

      &:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.5rem;
        height: 0.25rem;
        width: 50%;
        border-radius: 9999px;
        background-color: #00944a;
        transition: width 0.3s ease;
      }
    }
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .benefit-icon {
      min-width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #008c45 0%, #035c2f 100%);
      display: flex;
      align-items: center;
      justify-content: center;

      i {
        font-size: 1.5rem;
        color: #fff;
      }
    }

    h3 {
      font-size: 0.9rem;
      font-weight: 600;
      color: #035c2f;
      margin: 0;
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .section-title {
      h2 {
        font-size: 2rem;

        &:after {
          width: 40%;
        }
      }
    }

    .benefits-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .benefit-card {
      padding: 2rem;

      .benefit-icon {
        min-width: 80px;
        height: 80px;

        i {
          font-size: 2rem;
        }
      }

      h3 {
        font-size: 1rem;
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .section-title {
      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 30%;
        }
      }
    }

    .benefit-card {
      h3 {
        font-size: 1.125rem;
      }
    }
  }
}

section.talentos-section-about {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .about-text {
    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1.5rem;

      &:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        height: 0.25rem;
        width: 15%;
        border-radius: 9999px;
        background-color: #00944a;
      }
    }

    p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #374151;
      margin-bottom: 1rem;
    }
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-item {
    background: linear-gradient(135deg, #008c45 0%, #035c2f 100%);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;

    &:hover {
      transform: translateY(-5px);
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.75rem;
      color: #fff;
      font-weight: 500;
      line-height: 1.3;
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .about-text {
      h2 {
        font-size: 2rem;

        &:after {
          width: 12%;
        }
      }

      p {
        font-size: 1rem;
      }
    }

    .stat-item {
      padding: 2rem 1.5rem;

      .stat-number {
        font-size: 2.5rem;
      }

      .stat-label {
        font-size: 0.875rem;
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .about-text {
      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 8%;
        }
      }
    }

    .stat-item {
      .stat-number {
        font-size: 3rem;
      }

      .stat-label {
        font-size: 1rem;
      }
    }
  }
}

section.talentos-section-values {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .section-title {
    margin-bottom: 2rem;
    text-align: center;

    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1rem;
      display: inline-block;

      &:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.5rem;
        height: 0.25rem;
        width: 50%;
        border-radius: 9999px;
        background-color: #00944a;
      }
    }
  }

  .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .value-card {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .value-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #008c45 0%, #035c2f 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;

      i {
        font-size: 1.5rem;
        color: #fff;
      }
    }

    h3 {
      font-size: 0.9rem;
      font-weight: 600;
      color: #035c2f;
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .section-title {
      h2 {
        font-size: 2rem;

        &:after {
          width: 40%;
        }
      }
    }

    .values-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .value-card {
      padding: 2rem;

      .value-icon {
        width: 80px;
        height: 80px;

        i {
          font-size: 2rem;
        }
      }

      h3 {
        font-size: 1rem;
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .section-title {
      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 30%;
        }
      }
    }

    .value-card {
      h3 {
        font-size: 1.125rem;
      }
    }
  }
}

section.talentos-section-form {
  .container {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  }

  .form-header {
    text-align: center;
    margin-bottom: 2rem;

    h2 {
      position: relative;
      font-size: 1.75rem;
      line-height: 1.3;
      font-weight: 700;
      color: #035c2f;
      margin-bottom: 1rem;
      display: inline-block;

      &:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -0.5rem;
        height: 0.25rem;
        width: 50%;
        border-radius: 9999px;
        background-color: #00944a;
      }
    }

    p {
      font-size: 0.875rem;
      line-height: 1.6;
      color: #374151;
      margin: 0;
    }
  }

  .form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 12px;

    form {
      .form-group {
        margin-bottom: 1.5rem;

        label {
          font-weight: 600;
          color: #035c2f;
          font-size: 0.875rem;
          margin-bottom: 0.5rem;
        }

        .form-control,
        .form-control-file {
          border: 2px solid #e5e7eb;
          border-radius: 8px;
          padding: 0.75rem;
          font-size: 0.875rem;
          transition: border-color 0.3s ease;

          &:focus {
            border-color: #008c45;
            box-shadow: 0 0 0 0.2rem rgba(0, 140, 69, 0.25);
          }
        }

        .form-control-file {
          padding: 0.5rem;
        }

        .form-text {
          font-size: 0.75rem;
          color: #6b7280;
          margin-top: 0.25rem;
        }
      }

      .btn-submit {
        width: 100%;
        padding: 1rem;
        background-color: #008c45;
        border-color: #008c45;
        color: white;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 140, 69, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;

        i {
          font-size: 1.125rem;
        }

        &:hover {
          background-color: #016d37;
          border-color: #016d37;
          transform: translateY(-2px);
          box-shadow: 0 6px 12px rgba(0, 140, 69, 0.4);
        }
      }
    }
  }

  @media (min-width: 768px) {
    .container {
      padding: 2rem;
      border-radius: 14px;
    }

    .form-header {
      h2 {
        font-size: 2rem;

        &:after {
          width: 40%;
        }
      }

      p {
        font-size: 1rem;
      }
    }

    .form-container {
      padding: 2rem;

      form {
        .form-group {
          label {
            font-size: 1rem;
          }

          .form-control,
          .form-control-file {
            font-size: 1rem;
          }

          .form-text {
            font-size: 0.875rem;
          }
        }

        .btn-submit {
          font-size: 1.125rem;
        }
      }
    }
  }

  @media (min-width: 1024px) {
    .container {
      padding: 3rem;
      border-radius: 16px;
    }

    .form-header {
      h2 {
        font-size: 2.25rem;
        line-height: 2.5rem;

        &:after {
          width: 30%;
        }
      }
    }

    .form-container {
      padding: 3rem;
    }
  }
}
