.btn-primary {
  background-color: #0b2c4d;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #071d33;
}

.btn-outline {
  border: 1px solid #0b2c4d;
  color: #0b2c4d;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #0b2c4d;
  color: #fff;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0b2c4d;
}

.card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: box-shadow 0.2s ease;
}

.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
}

.card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.btn-edital {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-edital.aberto {
  background-color: #1f7a3f;
  color: #ffffff;
  box-shadow: 0 0 0 rgba(31, 122, 63, 0.7);
  animation: pulse-edital 2s infinite;
}

@keyframes pulse-edital {
  0% {
    box-shadow: 0 0 0 0 rgba(31, 122, 63, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(31, 122, 63, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(31, 122, 63, 0);
  }
}
.btn-edital.aberto::after {
  content: "• VAGAS DISPONÍVEIS";
  font-size: 0.75rem;
  margin-left: 0.5rem;
  opacity: 0.9;
}
.btn-edital.fechado {
  background-color: #6b7280;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 0.85;
}

