/* Processo Seletivo Styles */

.hero-processo {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-white);
  text-align: center;
}

.hero-processo .hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-processo .hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.processo-section {
  padding: 80px 0;
}

.texto-destaque {
  font-weight: 800 !important;
  font-size: 1.2rem !important;
  color: var(--text-dark) !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.processo-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.info-text h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.info-text p {
  color: var(--text-light);
  line-height: 1.6;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.area-item {
  background: var(--bg-white);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.area-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent-color);
}

.area-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.processo-detalhes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.detalhe-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detalhe-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.detalhe-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.detalhe-icon i {
  font-size: 1.8rem;
  color: var(--text-white);
}

.detalhe-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.detalhe-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.cadastro-section {
  margin-top: 4rem;
}

.cadastro-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, #e0e7ff 100%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.cadastro-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.cadastro-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cadastro-icon i {
  font-size: 2rem;
  color: var(--text-white);
}

.cadastro-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.cadastro-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cadastro-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-white);
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.info-item i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.info-item span {
  color: var(--text-dark);
  font-weight: 500;
}

.cadastro-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cadastro-buttons .btn {
  padding: 16px 32px;
  font-size: 1rem;
  min-width: 200px;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-processo {
    padding: 140px 0 60px;
  }
  
  .hero-processo .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .areas-grid {
    grid-template-columns: 1fr;
  }
  
  .processo-detalhes {
    grid-template-columns: 1fr;
  }
  
  .cadastro-card {
    padding: 2rem;
  }
  
  .cadastro-header h3 {
    font-size: 1.5rem;
  }
  
  .cadastro-info {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cadastro-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cadastro-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-processo .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .cadastro-card {
    padding: 1.5rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .info-card {
    padding: 1.5rem;
  }
  
  .detalhe-card {
    padding: 1.5rem;
  }
}
