/* ===================================
   Trabalhe Conosco - Estilos
   =================================== */

/* Hero Section */
.hero-trabalhe {
  background: linear-gradient(135deg, #004587 0%, #002d58 100%);
  position: relative;
  overflow: hidden;
}

.hero-trabalhe .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1rem;
}

.hero-trabalhe .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.hero-trabalhe .breadcrumb-item a:hover {
  color: #ffffff;
}

.hero-trabalhe .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* Cards de Oportunidades */
.opportunity-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  border-radius: 15px;
  overflow: hidden;
}

.opportunity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.opportunity-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Accordion Customizado */
.accordion-item {
  border-radius: 10px !important;
}

.accordion-button {
  background-color: #f8f9fa;
  color: #212529;
  font-weight: 500;
}

.accordion-button:not(.collapsed) {
  background-color: #004587;
  color: #ffffff;
}

.accordion-button:focus {
  border-color: #004587;
  box-shadow: 0 0 0 0.25rem rgba(0, 69, 135, 0.25);
}

/* List Group Documentos */
.list-group-item {
  border-color: #dee2e6;
  transition: background-color 0.2s ease;
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

/* Tabela de Prestador */
.table-hover tbody tr:hover {
  background-color: rgba(0, 69, 135, 0.05);
}

.table thead {
  background-color: #004587;
  color: #ffffff;
}

/* Badges */
.badge {
  font-weight: 500;
  padding: 0.5rem 0.75rem;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-trabalhe h1 {
    font-size: 2rem;
  }

  .hero-trabalhe .lead {
    font-size: 1rem;
  }

  .table {
    font-size: 0.875rem;
  }
}

/* Animações */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-item {
  animation: fadeIn 0.5s ease-in-out;
}
