/* ===================================
   CARREIRAS - ESTILOS ESPECÍFICOS
   =================================== */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--color-black) 0%, var(--gray-600) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 48px;
  font-weight: 500;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
}

.hero-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

/* Sobre a Empresa */
.about-company-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--color-black);
  margin: 0 0 30px 0;
  text-align: center;
  letter-spacing: 1px;
}

.section-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 20px 0;
}

/* Jobs Section */
.jobs-section {
  padding: 80px 0;
  background-color: white;
}

/* Filtros de Vagas */
.filters-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 30px;
  border: 2px solid #ddd;
  background: white;
  color: #555;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Grid de Vagas - 2 colunas */
.vagas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Cards de Vaga Resumidos */
.job-card-resumido {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card-resumido:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: var(--brand-orange);
}

/* Header do Card */
.job-card-header {
  margin-bottom: 20px;
}

.job-nivel {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.job-nivel-estagio {
  background: #e3f2fd;
  color: #1976d2;
}

.job-nivel-junior {
  background: #e8f5e9;
  color: #388e3c;
}

.job-nivel-pleno {
  background: #fff3e0;
  color: #f57c00;
}

.job-nivel-senior {
  background: #f3e5f5;
  color: #7b1fa2;
}

.job-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-black);
  margin: 0;
  line-height: 1.3;
}

/* Informações do Card */
.job-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.job-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #666;
}

.job-info-item .material-symbols-outlined {
  font-size: 18px;
  color: var(--brand-orange);
}

/* Resumo da Vaga */
.job-card-resumo {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

/* Footer do Card */
.job-card-footer {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.btn-ver-detalhes {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--brand-orange);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-ver-detalhes:hover {
  color: #e65c00;
  gap: 12px;
}

.btn-ver-detalhes .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-ver-detalhes:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* Mensagem sem vagas */
.no-vagas {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px dashed #ddd;
  grid-column: 1 / -1;
}

.no-vagas p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* ===================================
   RESPONSIVE - CARREIRAS
   =================================== */

@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .vagas-grid {
    gap: 25px;
  }
  
  .job-card-resumido {
    padding: 25px;
  }
  
  .job-card-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-description {
    font-size: 15px;
  }
  
  .about-company-section,
  .jobs-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .filters-container {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* Grid continua 2 colunas em tablet */
  .vagas-grid {
    gap: 20px;
  }
  
  .job-card-resumido {
    padding: 20px;
  }
  
  .job-card-title {
    font-size: 18px;
  }
  
  .job-card-resumo {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .hero-section {
    padding: 40px 0;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-description {
    font-size: 14px;
  }
  
  .about-company-section,
  .jobs-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .section-text {
    font-size: 14px;
  }
  
  .filters-container {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  /* Grid muda para 1 coluna em mobile */
  .vagas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .job-card-resumido {
    padding: 20px;
  }
  
  .job-card-title {
    font-size: 18px;
  }
  
  .job-card-info {
    font-size: 13px;
  }
  
  .job-card-resumo {
    font-size: 14px;
  }
  
  .btn-ver-detalhes {
    font-size: 14px;
  }
}