/* faq.css */
/* ═══════════════════════════════════════════════
   PUDE — Preguntas Frecuentes
   Add to: Appearance → Customize → Additional CSS
═══════════════════════════════════════════════ */

/* ── Section wrapper ─────────────────────────── */
.pude-faq {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 72px;
  font-family: 'DM Sans', sans-serif;
}

/* ── Card list ───────────────────────────────── */
.pude-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Card ────────────────────────────────────── */
.pude-faq__card {
  background: #0f1512;
  border: 1px solid rgba(58, 170, 140, 0.18);
  border-radius: 16px;
  overflow: hidden;
  padding: 28px;
}

/* ── Question (title) ────────────────────────── */
.pude-faq__question {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(15px, 1.5vw, 17px);
  font-weight: 700;
  color: #e8eceb;
  line-height: 1.35;
  margin-bottom: 14px;
}

/* ── Answer (body text) ──────────────────────── */
.pude-faq__answer {
  border-top: 1px solid rgba(58, 170, 140, 0.12);
  padding-top: 16px;
}

.pude-faq__answer p {
  font-size: 14.5px;
  color: #8aa39a;
  line-height: 1.8;
  margin: 0;
}

.pude-faq__answer p strong {
  color: #e8eceb;
  font-weight: 700;
}

/* ── Contact CTA card ────────────────────────── */
.pude-faq__card--contact {
  text-align: center;
  background: linear-gradient(135deg, rgba(58,170,140,.10) 0%, rgba(8,12,11,.0) 100%), #0f1512;
  border-color: rgba(58, 170, 140, 0.35);
}

.pude-faq__contact-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 900;
  color: #e8eceb;
  line-height: 1.3;
  margin-bottom: 14px;
}

.pude-faq__contact-text {
  font-size: 14.5px;
  color: #8aa39a;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 560px;
}

.pude-faq__contact-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pude-faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(58, 170, 140, 0.14);
  color: #3aaa8c;
  border: 1px solid rgba(58, 170, 140, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.pude-faq__btn:hover {
  background: rgba(58, 170, 140, 0.25);
  border-color: rgba(58, 170, 140, 0.65);
  color: #e8eceb;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 600px) {
  .pude-faq {
    padding: 32px 16px 56px;
  }

  .pude-faq__card {
    padding: 20px;
  }
}
