/* ─────────────────────────────────────────────────────────────
   Formas de Ajudar — estilos específicos
───────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────
   Seção "Como ajudar"
───────────────────────────────────────────────────────────── */
.help-section {
  background: var(--bg);
  border-top: 1.5px solid var(--border);
}
.help-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 5%;
}
.help-header {
  text-align: center;
  margin-bottom: 40px;
}
.help-header h2 {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 6px;
}
.help-header p {
  color: var(--accent);
  font-size: 1rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.help-item:last-child {
  grid-column: 2 / 3;
}
.help-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.help-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(100, 50, 10, .14);
}
.help-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.help-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--border);
  stroke-width: 1.75;
}
.help-item strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 4px;
}
.help-item p {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.4;
}
@media (max-width: 700px) {
  .help-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .help-item:last-child {
    grid-column: 1 / -1;
  }
}

.help-cta {
  text-align: center;
  color: var(--accent);
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
}


.ajudar-hero {
  background: linear-gradient(135deg, #fff1e6 0%, #fde9da 100%);
  padding: 56px 5% 48px;
  border-bottom: 1.5px solid var(--border);
}
.ajudar-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 1160px;
  margin: 0 auto 10px;
  color: var(--accent);
}
.ajudar-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 1160px;
  margin: 0 auto;
}

/* Link ativo na nav */
.nav-active {
  font-weight: 600;
  color: var(--accent) !important;
}

/* Bloco de CTA com botão de doação */
.donation-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 500px) {
  .donation-cta {
    flex-direction: column;
  }
}

.btn-donation {
  font-size: 1.05rem;
  padding: 14px 36px;
}

.btn-info {
  font-size: 1.05rem;
  padding: 14px 36px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
