*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

/* 01/04/2026 @filipemontt - fonte corporativa: Montserrat (carregada em index.php / site-includes/head.php). */
body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050711;
  color: #f5f7fb;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.dpix-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffb201, #ff8a00);
  color: #111827;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-secondary:hover {
  background: rgba(30, 64, 175, 0.7);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.5);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.9);
}

.btn-full {
  width: 100%;
}

.dpix-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5, 7, 17, 0.95), rgba(5, 7, 17, 0.7), transparent);
}

.dpix-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 1.5rem 1rem;
}

.dpix-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dpix-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.dpix-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, #ffb201, #ff8a00);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.dpix-logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
}

.dpix-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.dpix-nav a {
  color: #9ca3af;
  position: relative;
}

.dpix-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #1a9fff, #4f46e5);
  transition: width 0.2s ease;
}

.dpix-nav a:hover {
  color: #e5e7eb;
}

.dpix-nav a:hover::after {
  width: 100%;
}

.dpix-header-cta {
  display: flex;
  gap: 0.5rem;
}

/* 01/04/2026 @filipemontt — Faixa tipo “mini-navbar” abaixo do header: RSS Investing (sem imagens). */
.dpix-news-bar {
  position: relative;
  z-index: 15;
  background: linear-gradient(to bottom, rgba(12, 18, 33, 0.96), rgba(10, 16, 30, 0.92));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.dpix-news-bar-inner {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  min-height: 32px;
  padding: 0.35rem 0;
}

.dpix-news-bar-tag {
  flex-shrink: 0;
  align-self: center;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  line-height: 1;
}

.dpix-news-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
  height: 2.35rem;
}

.dpix-news-track {
  display: flex;
  flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.dpix-news-slide {
  flex: 0 0 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
}

.dpix-news-link {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
  color: #aab6cd;
  text-decoration: none;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.dpix-news-link:hover {
  color: #e2e8f0;
  text-decoration: underline;
  text-decoration-color: rgba(226, 232, 240, 0.45);
}

.dpix-news-controls {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.dpix-news-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.35rem;
  background: rgba(148, 163, 184, 0.1);
  color: #cbd5e1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.dpix-news-btn:hover {
  background: rgba(148, 163, 184, 0.2);
  border-color: rgba(148, 163, 184, 0.45);
}

.dpix-news-btn .ti {
  font-size: 1rem;
}

.dpix-hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 60%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.3), transparent 55%),
    #050711;
}

.dpix-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

.dpix-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  z-index: 1;
}

.dpix-hero-text h1 {
  font-size: clamp(2.2rem, 3vw + 1rem, 3rem);
  line-height: 1.1;
  margin: 0 0 1.75rem;
}

.dpix-hero-text h1 span {
  color: #ffb201;
}

/* 01/04/2026 @filipemontt — line-height mais confortável em textos de apoio aos títulos. */
.dpix-hero-text p {
  color: #9ca3af;
  font-size: 0.98rem;
  max-width: 32rem;
  margin: 0 0 2.5rem;
  line-height: 1.72;
}

/* 01/04/2026 @filipemontt - respiro vertical no hero (ajustes incrementais). */
.dpix-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.dpix-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #9ca3af;
  font-size: 0.8rem;
  margin-bottom: 2.25rem;
}

.badge-item {
  border-left: 2px solid rgba(56, 189, 248, 0.7);
  padding-left: 0.75rem;
}

.badge-label {
  display: block;
  font-weight: 500;
  color: #e5e7eb;
}

.badge-sub {
  display: block;
  opacity: 0.8;
}

.dpix-hero-app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0;
}

.dpix-app-btn {
  display: inline-block;
  line-height: 0;
}

.dpix-app-btn img {
  height: 57px;
  width: auto;
  display: block;
}

.dpix-hero-cards {
  position: relative;
  display: grid;
  gap: 1rem;
  justify-items: flex-end;
}

.card {
  border-radius: 1.25rem;
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.28), rgba(15, 23, 42, 0.96));
  color: #f9fafb;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.9);
}

.card-main {
  width: 100%;
  max-width: 320px;
  position: relative;
  overflow: hidden;
}

.card-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.25), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.7;
}

.card-chip {
  width: 38px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e5e7eb, #9ca3af);
  margin-bottom: 1.4rem;
  position: relative;
  z-index: 1;
}

.card-brand {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.card-number {
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
  letter-spacing: 0.22em;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

.card-secondary {
  max-width: 240px;
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 1));
}

.card-secondary-alt {
  opacity: 0.95;
}

.card-label {
  font-size: 0.8rem;
  color: #9ca3af;
}

.card-value {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 0.25rem;
}

.card-sub {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-top: 0.35rem;
}

.dpix-hero-partners {
  position: relative;
  margin-top: 3rem;
}

.dpix-hero-partners-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  color: #6b7280;
  font-size: 0.75rem;
}

.dpix-hero-partners-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
  align-items: center;
  justify-content: flex-end;
}

/* 27/03/2026 — Faixa de parceiros (imagem com alpha 0.5); @filipemontt */
.dpix-hero-partners-img {
  opacity: 0.5;
  max-width: min(100%, 520px);
  height: auto;
  width: auto;
  display: block;
}

.dpix-section {
  padding: 5.25rem 0;
  background: #050711;
}

.dpix-section-alt {
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 1), #020617);
}

.dpix-section-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.dpix-section-header h2 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
}

.dpix-section-header p {
  margin: 0;
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.68;
}

.dpix-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.dpix-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.dpix-feature-card,
.dpix-mini-card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 1rem;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 1.4rem 1.5rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.dpix-feature-card h3,
.dpix-mini-card h4 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.dpix-feature-card p,
.dpix-mini-card p {
  margin: 0;
  color: #9ca3af;
  line-height: 1.62;
}

.dpix-section-split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.dpix-section-copy h2 {
  margin-top: 0;
  margin-bottom: 1.1rem;
  font-size: 1.7rem;
}

.dpix-section-copy p {
  margin-top: 0;
  margin-bottom: 1.35rem;
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.68;
}

.dpix-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  color: #e5e7eb;
  font-size: 0.9rem;
}

.dpix-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}

.dpix-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb201, #ff8a00);
}

.dpix-section-box {
  background: rgba(15, 23, 42, 0.98);
  border-radius: 1.3rem;
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 1.75rem 1.75rem 1.8rem;
  font-size: 0.9rem;
}

.dpix-section-box > p {
  line-height: 1.65;
}

.dpix-section-box-tight {
  max-width: 420px;
}

/* 01/04/2026 @filipemontt — aumenta respiro específico da seção "Segurança de ponta a ponta". */
#seguranca {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

#seguranca .dpix-section-copy h2 {
  margin-bottom: 1.35rem;
}

#seguranca .dpix-section-copy p {
  margin-bottom: 1.6rem;
}

.dpix-simulate {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dpix-simulate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5e7eb;
}

.dpix-simulate-row span {
  color: #9ca3af;
  font-size: 0.85rem;
}

.dpix-simulate-row strong {
  font-size: 0.95rem;
}

.dpix-simulate-note {
  margin-top: 0.8rem;
  color: #6b7280;
  font-size: 0.8rem;
  line-height: 1.58;
}

.dpix-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dpix-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dpix-form-group label {
  font-size: 0.85rem;
  color: #e5e7eb;
}

.dpix-form-group input {
  background: #020617;
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 0.7rem 0.8rem;
  color: #e5e7eb;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dpix-form-group input::placeholder {
  color: #6b7280;
}

.dpix-form-group input:focus {
  border-color: #ffb201;
  box-shadow: 0 0 0 1px rgba(255, 178, 1, 0.45);
  background: #020617;
}

.dpix-form-group textarea {
  background: #020617;
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 0.7rem 0.8rem;
  color: #e5e7eb;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  resize: vertical;
  min-height: 5.5rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.dpix-form-group textarea::placeholder {
  color: #6b7280;
}

.dpix-form-group textarea:focus {
  border-color: #ffb201;
  box-shadow: 0 0 0 1px rgba(255, 178, 1, 0.45);
  background: #020617;
}

.dpix-form-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: #6b7280;
}

.dpix-footer {
  border-top: 1px solid rgba(31, 41, 55, 1);
  padding: 1.8rem 0 2rem;
  background: #020617;
}

.dpix-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #6b7280;
}

.dpix-logo-footer .dpix-logo-img {
  height: 28px;
}

.dpix-footer-links {
  display: flex;
  gap: 1.25rem;
}

.dpix-footer-links a {
  color: #9ca3af;
}

.dpix-footer-links a:hover {
  color: #e5e7eb;
}

/* 27/03/2026 — Botão no rodapé com aparência de link (offcanvas franqueado); @filipemontt */
.dpix-footer-link-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  color: #9ca3af;
  cursor: pointer;
}

.dpix-footer-link-btn:hover {
  color: #e5e7eb;
}

/* 27/03/2026 — Modal login (área do cliente); @filipemontt */
.dpix-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dpix-modal.dpix-modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dpix-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(6px);
}

.dpix-modal-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(31, 41, 55, 1);
  border-radius: 1.1rem;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.dpix-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dpix-modal-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f9fafb;
}

.dpix-modal-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(2, 6, 23, 0.6);
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.dpix-modal-close:hover {
  color: #f9fafb;
  background: rgba(31, 41, 55, 0.9);
  border-color: rgba(148, 163, 184, 0.45);
}

.dpix-modal-form {
  margin-top: 0.25rem;
}

/* 01/04/2026 @filipemontt — Variação do modal de empréstimo com CTA para lojas de app. */
.dpix-modal-dialog-emprestimo {
  max-width: 520px;
}

.dpix-modal-lead {
  margin: 0.2rem 0 1.2rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.68;
}

.dpix-modal-app-buttons {
  margin-top: 0;
  gap: 0.9rem;
}

/* 27/03/2026 — Offcanvas franqueado; @filipemontt */
.dpix-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 101;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.dpix-offcanvas.dpix-offcanvas--open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.dpix-offcanvas-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(4px);
}

.dpix-offcanvas-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(100%, 420px);
  max-width: 100vw;
  background: #0b1120;
  border-left: 1px solid rgba(31, 41, 55, 1);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  padding: 1.35rem 1.4rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.dpix-offcanvas.dpix-offcanvas--open .dpix-offcanvas-panel {
  transform: translateX(0);
}

.dpix-offcanvas-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.dpix-offcanvas-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #f9fafb;
}

.dpix-offcanvas-close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: rgba(2, 6, 23, 0.6);
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.dpix-offcanvas-close:hover {
  color: #f9fafb;
  background: rgba(31, 41, 55, 0.9);
  border-color: rgba(148, 163, 184, 0.45);
}

.dpix-offcanvas-lead {
  margin: 0 0 1.1rem;
  font-size: 0.88rem;
  color: #9ca3af;
  line-height: 1.62;
}

/* Ícones-only no mobile para os botões do header */
.btn-icon-only-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-label {
  display: inline-block;
}

@media (max-width: 960px) {
  .dpix-header-inner {
    gap: 1rem;
  }

  .dpix-nav {
    display: none;
  }

  .btn-icon-only-mobile {
    padding-inline: 0.55rem;
  }

  .btn-icon-only-mobile .btn-label {
    display: none;
  }

  .dpix-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dpix-hero-cards {
    justify-items: flex-start;
  }

  .dpix-section-split {
    grid-template-columns: minmax(0, 1fr);
  }

  .dpix-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .dpix-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  #seguranca {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .dpix-section {
    padding: 4.25rem 0;
  }

  .dpix-section-header {
    margin-bottom: 2.5rem;
  }

  .dpix-header-inner {
    padding-inline: 1rem;
  }

  .dpix-hero {
    padding-top: 3.5rem;
  }

  .dpix-hero-text h1 {
    font-size: 2rem;
  }

  .dpix-hero-partners-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .dpix-hero-partners-logos {
    justify-content: flex-start;
  }

  .dpix-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 01/04/2026 @filipemontt — Página institucional politica-privacidade.php (texto legal legível). */
.dpix-legal-wrap .dpix-section-header {
  text-align: left;
  margin-bottom: 1.25rem;
}

.dpix-legal-wrap {
  max-width: 42rem;
}

.dpix-legal-title {
  font-size: clamp(1.5rem, 2vw + 1rem, 1.85rem);
  margin-bottom: 0.5rem;
  color: #f9fafb;
}

.dpix-legal-updated {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0 0 1.5rem;
}

.dpix-legal-body h2 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.65rem;
  color: #e5e7eb;
}

.dpix-legal-body p,
.dpix-legal-body li {
  color: #d1d5db;
  line-height: 1.65;
}

.dpix-legal-body .dpix-list {
  margin-top: 0.5rem;
}

