/* ══════════════════════════════════════════════
   FEATURE QUAD DEMO  ·  prefix: dm-qd-
══════════════════════════════════════════════ */

.dm-qd-section {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #fafafa;
  padding: 96px 24px 88px;
  width: 100%;
  box-sizing: border-box;
}

.dm-qd-shell {
  max-width: 980px;
  margin: 0 auto;
}

/* ─── Intro ─── */
.dm-qd-intro {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.dm-qd-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6366f1;
  margin-bottom: 1rem;
}
.dm-qd-h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}
.dm-qd-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* ─── 2x2 Grid ─── */
.dm-qd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}

.dm-qd-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px -8px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dm-qd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -10px rgba(15, 23, 42, 0.18);
}

.dm-qd-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1.25rem;
}
.dm-qd-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
}
.dm-qd-icon-amber  { background: #fef3c7; color: #d97706; }
.dm-qd-icon-blue   { background: #dbeafe; color: #2563eb; }
.dm-qd-icon-rose   { background: #ffe4e6; color: #e11d48; }
.dm-qd-icon-emerald{ background: #d1fae5; color: #059669; }

.dm-qd-card-h {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0 0 0.55rem;
  color: #0f172a;
  letter-spacing: -0.005em;
}
.dm-qd-card-p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: #475569;
}

/* ─── Outro ─── */
.dm-qd-outro {
  margin-top: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #94a3b8;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.dm-qd-outro-key {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ─── Responsive ─── */
@media (max-width: 720px) {
  .dm-qd-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
