/* style para mural de pedidos */
<style>
/* ── Radio inputs invisíveis ── */
.mural-radio { display: none !important; }

/* ── Variáveis ── */
.mural-section {
  --gold: #D4B068;
  --gold-dim: rgba(212,176,104,0.15);
  --dark2: #2a2a2a;
  --dark3: #333;
  --text-muted: #888;
}

/* ── Section ── */
.mural-section {
  position: relative;
  padding: 80px 20px;
  background: #1F1F1F;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  color: #fff;
}

.mural-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, rgba(212,176,104,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(212,176,104,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.mural-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Header ── */
.mural-header {
  text-align: center;
  margin-bottom: 56px;
}

.mural-gold-line {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, #D4B068, transparent);
  margin: 0 auto 12px;
}

.mural-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D4B068;
  margin-bottom: 14px;
  opacity: 0.9;
}

.mural-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px !important;
}

.mural-title span { color: #D4B068; }

.mural-subtitle {
  color: #888;
  font-size: 15px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto !important;
  line-height: 1.6;
}

/* ── Filter tabs (labels) ── */
.mural-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.mural-filters label {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid #333;
  background: transparent;
  color: #888;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  letter-spacing: 0.3px;
  user-select: none;
  display: inline-block;
}

.mural-filters label:hover {
  border-color: #D4B068;
  color: #D4B068;
}

/* ── Aba ativa via CSS ── */
#mf-all:checked        ~ .mural-section .mural-filters label[for="mf-all"],
#mf-emprego:checked    ~ .mural-section .mural-filters label[for="mf-emprego"],
#mf-servico:checked    ~ .mural-section .mural-filters label[for="mf-servico"],
#mf-voluntario:checked ~ .mural-section .mural-filters label[for="mf-voluntario"],
#mf-doacao:checked     ~ .mural-section .mural-filters label[for="mf-doacao"] {
  background: #D4B068;
  border-color: #D4B068;
  color: #1F1F1F;
  font-weight: 500;
}

/* ── Cards grid ── */
.mural-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Todos visíveis por padrão */
.mural-card {
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: muralCardIn 0.4s ease both;
  display: block;
}

.mural-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,176,104,0.35);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.mural-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4B068, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mural-card:hover::before { opacity: 1; }

/* ── FILTRO CSS PURO ──
   Quando filtro específico ativo → esconde tudo → mostra só a categoria
── */
#mf-emprego:checked    ~ .mural-section .mural-card { display: none; }
#mf-servico:checked    ~ .mural-section .mural-card { display: none; }
#mf-voluntario:checked ~ .mural-section .mural-card { display: none; }
#mf-doacao:checked     ~ .mural-section .mural-card { display: none; }

#mf-emprego:checked    ~ .mural-section .mural-card[data-cat="emprego"]    { display: block; }
#mf-servico:checked    ~ .mural-section .mural-card[data-cat="servico"]    { display: block; }
#mf-voluntario:checked ~ .mural-section .mural-card[data-cat="voluntario"] { display: block; }
#mf-doacao:checked     ~ .mural-section .mural-card[data-cat="doacao"]     { display: block; }

/* Todos: garante visível */
#mf-all:checked ~ .mural-section .mural-card { display: block; }

/* Featured: 2 colunas quando visível */
.mural-card.featured { grid-column: span 2; }
#mf-servico:checked    ~ .mural-section .mural-card.featured { grid-column: span 1; }
#mf-voluntario:checked ~ .mural-section .mural-card.featured { grid-column: span 1; }
#mf-doacao:checked     ~ .mural-section .mural-card.featured { grid-column: span 1; }

@media (max-width: 720px) {
  .mural-card.featured { grid-column: span 1; }
}

/* ── Badge ── */
.mural-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.mural-badge svg { width: 12px; height: 12px; flex-shrink: 0; }

.badge-emprego    { background: rgba(99,179,237,0.12);  color: #63b3ed; }
.badge-servico    { background: rgba(104,211,145,0.12); color: #68d391; }
.badge-voluntario { background: rgba(212,176,104,0.12); color: #D4B068; }
.badge-doacao     { background: rgba(252,129,74,0.12);  color: #fc814a; }

/* ── Card content ── */
.mural-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0 0 10px !important;
}

.mural-card.featured .mural-card-title { font-size: 28px; }

.mural-card-desc {
  font-size: 13.5px;
  color: #888;
  line-height: 1.65;
  margin: 0 0 20px !important;
  font-weight: 300;
}

.mural-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mural-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mural-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(212,176,104,0.15);
  border: 1px solid rgba(212,176,104,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #D4B068; font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  flex-shrink: 0;
}

.mural-contact-name { font-size: 12.5px; color: #888; }

.mural-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #D4B068 !important;
  font-weight: 500;
  text-decoration: none !important;
  transition: gap 0.2s ease;
  white-space: nowrap;
}

.mural-cta-link:hover { gap: 8px; }

/* ── Bottom CTA ── */
.mural-bottom-cta {
  text-align: center;
  margin-top: 52px;
}

.mural-bottom-cta p {
  color: #888;
  font-size: 14px;
  margin-bottom: 16px !important;
}

.mural-btn {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  border: 1px solid #D4B068;
  color: #D4B068 !important;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
}

.mural-btn:hover {
  background: #D4B068;
  color: #1F1F1F !important;
}

/* ── Animação ── */
@keyframes muralCardIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mural-card:nth-child(1) { animation-delay: 0.05s; }
.mural-card:nth-child(2) { animation-delay: 0.10s; }
.mural-card:nth-child(3) { animation-delay: 0.15s; }
.mural-card:nth-child(4) { animation-delay: 0.20s; }
.mural-card:nth-child(5) { animation-delay: 0.25s; }
.mural-card:nth-child(6) { animation-delay: 0.30s; }
</style>
/*fim do mural de oportunidades*/