/* Trabalhe Conosco Page Styles */
.trabalhe-header {
  background: linear-gradient(135deg, var(--dark-blue), #1e40af);
  padding: 100px 0 60px;
  text-align: center;
}

.trabalhe-hero {
  padding: 80px 0;
  background: #f8fafc;
}

.trabalhe-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.trabalhe-intro-text {
  padding-right: 40px;
}

.trabalhe-tagline {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--orange);
  font-weight: 500;
}

.trabalhe-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trabalhe-cta-center {
  text-align: center;
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Vagas Section */
.trabalhe-vagas {
  padding: 80px 0;
  background: white;
}

.section-title-left {
  text-align: left;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--dark-blue);
}

.vaga-card {
  background: var(--dark-blue);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vaga-header {
  margin-bottom: 30px;
}

.vaga-title {
  color: var(--orange);
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
}

.vaga-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.vaga-requirements ul,
.vaga-details ul {
  list-style: none;
  padding: 0;
  color: white;
}

.vaga-requirements ul li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.vaga-requirements ul li:before {
  content: "•";
  color: var(--orange);
  font-weight: bold;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
}

.vaga-details ul li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.vaga-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-orange {
  background: var(--orange);
  color: white;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid var(--orange);
}

.btn-orange:hover {
  background: white;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

/* Banco de Talentos Section */
.trabalhe-banco {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.banco-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.banco-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.banco-description {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--orange);
  margin-bottom: 30px;
}

.banco-illustration {
  text-align: center;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.banco-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.banco-label h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--dark-blue);
  margin-bottom: 10px;
}

.banco-label p {
  font-size: 1rem;
  color: #64748b;
  font-style: italic;
}

/* Benefícios Section */
.trabalhe-beneficios {
  padding: 80px 0;
  background: white;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.beneficio-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 30px;
  background: #f8fafc;
  border-radius: 15px;
  transition: all 0.3s;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: white;
}

.beneficio-icon {
  flex-shrink: 0;
}

.beneficio-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-blue);
  line-height: 1.4;
}

/* Responsive Design for Trabalhe Conosco */
@media (max-width: 768px) {
  .trabalhe-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trabalhe-intro-text {
    padding-right: 0;
  }

  .trabalhe-tagline {
    font-size: 1.1rem;
  }

  .vaga-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .vaga-title {
    font-size: 1.4rem;
  }

  .banco-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banco-title {
    font-size: 1.75rem;
  }

  .banco-description {
    font-size: 1rem;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .beneficio-card {
    flex-direction: column;
    text-align: center;
  }

  .section-title-left {
    font-size: 2rem;
  }
}

