/* =========================
   EMPREGOS
========================= */

.empregos-section {
  padding: 60px 0;
}

.empregos-section h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.subtitulo {
  color: #555;
  margin-bottom: 30px;
}

/* GRID */

.empregos-grid {
  display: grid;
  gap: 20px;
}

/* CARD */

.card-emprego {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}

.card-emprego:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* HEADER CARD */

.card-emprego-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.card-emprego img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 12px;
}

/* =========================
   BADGES
========================= */

.badge-urgente {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: .5px;
}

.badge-nova {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #22c55e;
  color: #fff;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 700;
}

/* TEXTO */

.card-emprego h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.card-emprego p {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.info-emprego {
  font-size: 13px;
  color: #777;
}

/* BOTÃO WHATSAPP */

.btn-whatsapp {
  display: inline-block;
  margin-top: 12px;
  background: #22c55e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease;
}

.btn-whatsapp:hover {
  background: #16a34a;
}
.hero-empregos {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}

.hero-empregos h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.cta-empregos {
  background: #f8fafc;
  padding: 60px 20px;
  text-align: center;
}

.btn-publicar-vaga {
  display: inline-block;
  margin-top: 15px;
  background: #2563eb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background .2s ease;
}

.btn-publicar-vaga:hover {
  background: #1d4ed8;
}
/* FILTRO */
.filtro-empregos {
  margin-bottom: 30px;
}

.filtro-empregos select {
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid #ddd;
}

/* =========================
   CARROSSEL URGENTE
========================= */

.carrossel-urgentes {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.carrossel-urgentes::-webkit-scrollbar {
  display: none;
}

.carrossel-urgentes .card-emprego {
  flex: 0 0 320px;
  scroll-snap-align: center;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
  padding: 22px;
  position: relative;
  transition: transform .3s ease, opacity .3s ease;
  transform: scale(.95);
  opacity: .8;
}

.carrossel-urgentes .card-emprego.ativo {
  transform: scale(1.05);
  opacity: 1;
}
/* =========================
   PAGINAÇÃO MODERNA
========================= */

.paginacao {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.paginacao button {
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  border: none;
  background: #e2e8f0;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}

.paginacao button:hover {
  background: #cbd5e1;
}

.paginacao button.ativo {
  background: #2563eb;
  color: #fff;
}

.paginacao button.seta {
  background: #111827;
  color: #fff;
}
/* =========================
   HERO BUSCA
========================= */

.hero-content {
  text-align: center;
}

.busca-empregos {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.busca-empregos input {
  width: 320px;
  max-width: 90%;
  padding: 12px 16px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.busca-empregos button {
  padding: 12px 20px;
  border-radius: 25px;
  border: none;
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
}

.busca-empregos button:hover {
  background: #16a34a;
}

/* ==================================================
   EMPREGOS – MOBILE
   max-width: 768px
================================================== */

/* =========================
   HERO
========================= */

.hero-empregos {
  padding: 50px 20px;
}

.hero-empregos h1 {
  font-size: 1.6rem;
  line-height: 1.3;
}

.hero-empregos p {
  font-size: 14px;
}

/* =========================
   BUSCA
========================= */

.busca-empregos {
  flex-direction: column;
  gap: 8px;
  margin-top: 18px;
}

.busca-empregos input {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  font-size: 14px;
}

.busca-empregos button {
  width: 100%;
  border-radius: 14px;
  padding: 12px;
}

/* =========================
   CARROSSEL URGENTE
========================= */

.urgentes-section {
  margin-bottom: 30px;
}

.carrossel-urgentes {
  gap: 14px;
}

.carrossel-urgentes .card-emprego {
  flex: 0 0 85%;
  padding: 18px;
  border-radius: 18px;
}

/* BADGES */

.badge-urgente,
.badge-nova {
  font-size: 10px;
  padding: 4px 10px;
}

/* =========================
   CARDS NORMAIS
========================= */

.empregos-grid {
  gap: 16px;
}

.card-emprego {
  padding: 16px;
  border-radius: 16px;
}

.card-emprego-header {
  gap: 10px;
}

.card-emprego-header img {
  width: 45px;
  height: 45px;
  border-radius: 10px;
}

.card-emprego h3 {
  font-size: 1rem;
}

.card-emprego p {
  font-size: 13px;
}

.info-emprego {
  font-size: 12px;
}

/* =========================
   BOTÃO WHATSAPP
========================= */

.btn-whatsapp {
  width: 100%;
  text-align: center;
  border-radius: 14px;
  padding: 12px;
  font-size: 14px;
}

/* =========================
   FILTRO
========================= */

.filtro-empregos {
  margin-bottom: 20px;
}

.filtro-empregos select {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
}

/* =========================
   PAGINAÇÃO
========================= */

.paginacao {
  margin-top: 30px;
  gap: 6px;
}

.paginacao button {
  min-width: 34px;
  height: 34px;
  font-size: 13px;
  border-radius: 10px;
}
.vaga-acoes {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}




.btn-compartilhar {
  padding: 7px 14px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}

.btn-compartilhar:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.btn-compartilhar:active {
  transform: scale(.97);
}

.ajuda-compartilhar {
  margin-top: 8px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
  opacity: .85;
  transition: opacity .2s ease;
}

.card-emprego:hover .ajuda-compartilhar {
  opacity: 1;
}

