/* ═══ DATAPOS · Preview panels (mini-UI dentro de las stack-cards del Process) ═══
   Reemplazan las ilustraciones 3D por mockups de producto. Self-contained:
   no dependen de clases Tailwind compiladas, ni de lucide, ni de imágenes externas.
   Paleta DATAPOS (azul #7691f2 / #437be9) sobre cristal oscuro. */

.dpprev {
  position: relative;
  width: 100%;
  /* misma altura que la ilustración original (300px) → la card no cambia de
     alto y el borde gradiente (PNG rotado, posicionado en % del alto) sigue alineado */
  min-height: 300px;
  display: flex; flex-direction: column;
  border-radius: 16px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 40px -24px rgba(0, 0, 0, 0.8);
  font-family: var(--dp-font, 'Inter', system-ui, sans-serif);
  overflow: hidden;
}
/* glow azul difuso en una esquina (como el blur-3xl del original) */
.dpprev::after {
  content: ""; position: absolute; top: -90px; right: -90px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 145, 242, 0.22), transparent 70%);
  pointer-events: none;
}

/* encabezado del panel */
.dpprev__head {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 500; color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
}
.dpprev__head svg { width: 16px; height: 16px; color: #7691f2; flex: none; }

/* grilla de "fuentes" conectadas */
.dpprev__tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.dpprev__tile {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 18px 6px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .25s, border-color .25s, transform .25s;
}
.dpprev__tile:hover {
  background: rgba(118, 145, 242, 0.12);
  border-color: rgba(118, 145, 242, 0.35);
  transform: translateY(-2px);
}
.dpprev__tile svg { width: 20px; height: 20px; color: rgba(255, 255, 255, 0.85); }
.dpprev__tile span { font-size: 0.7rem; color: rgba(255, 255, 255, 0.7); }

/* bloque de "sincronización" con barras shimmer */
.dpprev__sync {
  margin-top: auto; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.dpprev__bars {
  position: relative; display: grid; gap: 9px; padding: 14px 12px;
}
.dpprev__bar {
  height: 8px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
/* barra de luz que recorre el bloque (puro CSS, sin JS) */
.dpprev__bars::after {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 90px;
  background: linear-gradient(90deg, transparent, rgba(118, 145, 242, 0.28), transparent);
  animation: dpprev-sweep 2.6s linear infinite;
}
@keyframes dpprev-sweep {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(420px); }
}
.dpprev__foot {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.6);
}
.dpprev__dot {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: #57d08a; box-shadow: 0 0 0 0 rgba(87, 208, 138, 0.6);
  animation: dpprev-pulse 1.8s ease-out infinite;
}
@keyframes dpprev-pulse {
  0% { box-shadow: 0 0 0 0 rgba(87, 208, 138, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(87, 208, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(87, 208, 138, 0); }
}

/* ═══ DATAPOS · sección "Razones": retrato circular con órbitas + stat cards ═══ */
.dp-portrait { position: relative; width: 100%; max-width: 540px; margin: 0 auto; aspect-ratio: 1 / 1.05; }
.dp-portrait__circle {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 86%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #0e1730 0%, #060b18 70%, #04060f 100%);
}
.dp-portrait__orbits { position: absolute; left: 50%; bottom: 2%; transform: translateX(-50%); width: 96%; z-index: 1; pointer-events: none; }
.dp-portrait__orbits path { fill: none; stroke: #2f6bff; stroke-width: 2.4; filter: drop-shadow(0 0 6px rgba(47,107,255,0.7)); opacity: 0.9; }
.dp-portrait__img {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 92%; max-width: 480px; z-index: 2; display: block;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.6));
}
/* fallback oscuro si todavía no está la foto */
.dp-portrait__ph {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 70%; aspect-ratio: 3/4; z-index: 2; border-radius: 200px 200px 0 0;
  background: linear-gradient(180deg, #11203f, #0b1424);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px;
  color: rgba(255,255,255,0.35); font-size: 0.8rem; text-align: center;
}

/* tarjetas de stat flotantes */
.dp-stats { display: flex; flex-direction: column; gap: 18px; }
.dpstat {
  display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; align-items: center;
  padding: 20px 22px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 22px 50px -28px rgba(0,0,0,0.85);
  font-family: var(--dp-font, 'Inter', system-ui, sans-serif);
}
.dpstat__ico {
  grid-row: span 1; width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.dpstat__ico svg { width: 22px; height: 22px; }
.dpstat__label { align-self: center; font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.9); line-height: 1.15; margin: 0; }
.dpstat__val { grid-column: 1 / -1; font-size: 1.9rem; font-weight: 700; line-height: 1.1; margin: 6px 0 2px; }
.dpstat__sub { grid-column: 1 / -1; font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.35; margin: 0; }
.dpstat--blue   .dpstat__ico { background: #2f6bff; } .dpstat--blue   .dpstat__val { color: #6f9bff; }
.dpstat--purple .dpstat__ico { background: #7c5cff; } .dpstat--purple .dpstat__val { color: #a892ff; }
.dpstat--green  .dpstat__ico { background: #18b27a; } .dpstat--green  .dpstat__val { color: #3fd49a; }

/* centra verticalmente el contenido cuando sobra alto (card "Integra"):
   un único wrapper con margen auto arriba y abajo → espacio simétrico
   (mismo patrón que el listwrap de "Unifica", que sí centra bien) */
.dpprev__cwrap { margin: auto 0; }

/* ───── variante "Integra": progress con pasos (estilo onboarding) ───── */
.dpprev__progress {
  margin-top: 14px; border-radius: 12px; padding: 14px 14px 16px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
}
.dpprev__prow { display: flex; align-items: center; gap: 9px; margin-bottom: 11px; }
.dpprev__pspin {
  width: 15px; height: 15px; border-radius: 50%; flex: none;
  border: 2px solid rgba(118, 145, 242, 0.25); border-top-color: #7691f2;
  animation: dpprev-spin .8s linear infinite;
}
@keyframes dpprev-spin { to { transform: rotate(360deg); } }
.dpprev__pcheck { width: 16px; height: 16px; color: #57d08a; flex: none; display: none; }
.dpprev__plabel { flex: 1; font-size: 0.78rem; color: rgba(255, 255, 255, 0.85); }
.dpprev__ppct { font-size: 0.72rem; color: rgba(255, 255, 255, 0.6); font-variant-numeric: tabular-nums; }
.dpprev__pfill {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, #437be9, #7691f2);
}
.dpprev__progress.is-done .dpprev__pspin { display: none; }
.dpprev__progress.is-done .dpprev__pcheck { display: block; }

/* ───── variante "Unifica": header con tag + lista de procesadoras en loop ───── */
.dpprev__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.dpprev__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; color: rgba(118, 145, 242, 0.95);
}
.dpprev__tag svg { width: 13px; height: 13px; }

.dpprev__listwrap {
  position: relative; flex: none; height: 168px; margin: auto 0;
  overflow: hidden; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}
.dpprev__list {
  display: flex; flex-direction: column;
  animation: dpprev-scroll 16s linear infinite;
}
.dpprev__listwrap:hover .dpprev__list { animation-play-state: paused; }
@keyframes dpprev-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
.dpprev__row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px;
}
.dpprev__rid { display: flex; align-items: center; gap: 10px; min-width: 0; }
.dpprev__logo {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: #fff; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.dpprev__logo img { width: 100%; height: 100%; object-fit: cover; }
.dpprev__name { font-size: 0.8rem; color: rgba(255, 255, 255, 0.9); line-height: 1.15; }
.dpprev__sub { font-size: 0.66rem; color: rgba(255, 255, 255, 0.5); }
.dpprev__check { width: 16px; height: 16px; color: #57d08a; flex: none; }
.dpprev__check--wait { color: #e0b15a; }
.dpprev__foot--ico { border-top: none; padding-top: 0; }
.dpprev__foot--ico svg { width: 13px; height: 13px; color: rgba(118, 145, 242, 0.9); flex: none; }

/* ───── variante "Decide": panel con tabs (Acreditaciones / Contracargos / Análisis) ───── */
.dpprev__tabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.dpprev__tab {
  font-size: 0.7rem; padding: 5px 11px; border-radius: 999px; cursor: pointer;
  background: transparent; color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: inherit; transition: background .2s, color .2s, border-color .2s;
}
.dpprev__tab:hover { color: rgba(255, 255, 255, 0.85); }
.dpprev__tab.is-active {
  background: rgba(118, 145, 242, 0.16); color: #cdd6ff;
  border-color: rgba(118, 145, 242, 0.42);
}
.dpprev__panes { flex: 1; display: flex; flex-direction: column; }
.dpprev__pane { display: none; }
.dpprev__pane.is-active {
  display: flex; flex: 1; flex-direction: column; gap: 8px; justify-content: center;
  animation: dpprev-fade .25s ease;
}
@keyframes dpprev-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* fila genérica (banco/procesadora) con badge a la derecha */
.dpprev__brow {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 9px 12px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
}
.dpprev__logo--c img { object-fit: contain; padding: 5px; }
.dpprev__badge {
  font-size: 0.66rem; padding: 3px 9px; border-radius: 999px; white-space: nowrap;
  background: rgba(87, 208, 138, 0.14); color: #7fe0a6;
  border: 1px solid rgba(87, 208, 138, 0.28);
}
.dpprev__badge--info { background: rgba(118, 145, 242, 0.16); color: #aebcff; border-color: rgba(118, 145, 242, 0.34); }
.dpprev__badge--warn { background: rgba(224, 177, 90, 0.14); color: #e7c483; border-color: rgba(224, 177, 90, 0.3); }
.dpprev__badge--alert { background: rgba(240, 110, 110, 0.14); color: #f3a0a0; border-color: rgba(240, 110, 110, 0.3); }

/* ícono en caja (filas de Proyecciones) */
.dpprev__icobox {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(118, 145, 242, 0.14);
  border: 1px solid rgba(118, 145, 242, 0.3);
}
.dpprev__icobox svg { width: 16px; height: 16px; color: #aebcff; }
.dpprev__amount { font-size: 0.86rem; font-weight: 600; color: #fff; white-space: nowrap; }
.dpprev__amount.up { color: #7fe0a6; }

/* filas de métrica (Análisis) */
.dpprev__metric {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 12px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
}
.dpprev__metric .lbl { display: flex; align-items: center; gap: 9px; font-size: 0.76rem; color: rgba(255, 255, 255, 0.82); }
.dpprev__metric .lbl svg { width: 15px; height: 15px; color: #7691f2; flex: none; }
.dpprev__metric .val { font-size: 0.98rem; font-weight: 600; color: #fff; }
.dpprev__metric .val.up { color: #7fe0a6; }
.dpprev__metric .val.warn { color: #e7c483; }

/* ───── variante "Valida": monitor de acreditaciones con barras de progreso ───── */
.dpprev__kpis { display: flex; flex-direction: column; gap: 9px; }
.dpprev__kpi {
  padding: 9px 12px; border-radius: 12px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
}
.dpprev__kpitop { display: flex; align-items: center; gap: 9px; }
.dpprev__kpiname { font-size: 0.8rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); flex: 1; min-width: 0; }
.dpprev__kpipct { font-size: 0.72rem; font-weight: 600; color: rgba(255, 255, 255, 0.8); white-space: nowrap; }
.dpprev__kpipct.up { color: #7fe0a6; }
.dpprev__track {
  height: 7px; border-radius: 999px; margin-top: 9px;
  background: rgba(255, 255, 255, 0.1); overflow: hidden;
}
.dpprev__fill {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, #437be9, #7691f2);
  transition: width 1.1s cubic-bezier(.2, .8, .2, 1);
}
.dpprev__fill--g { background: linear-gradient(90deg, #2fae7e, #57d08a); }
.dpprev__kpisub { font-size: 0.66rem; color: rgba(255, 255, 255, 0.5); margin-top: 8px; }
.dpprev__kpifoot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px;
}
.dpprev__pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.7rem; padding: 6px 12px; border-radius: 999px;
  background: rgba(118, 145, 242, 0.15); color: #cdd6ff;
  border: 1px solid rgba(118, 145, 242, 0.34); font-family: inherit;
}
.dpprev__pill svg { width: 13px; height: 13px; }
.dpprev__live { display: inline-flex; align-items: center; gap: 6px; font-size: 0.66rem; color: rgba(255, 255, 255, 0.5); }
.dpprev__live svg { width: 13px; height: 13px; color: #57d08a; }

@media (prefers-reduced-motion: reduce) {
  .dpprev__bars::after, .dpprev__dot, .dpprev__list { animation: none; }
  .dpprev__fill { transition: none; }
}

/* ═══ DATAPOS · sección "Integraciones" (arco de íconos + grid de cards) ═══ */
/* órbita = dos anillos concéntricos (círculos con borde superior degradé) + chips,
   réplica fiel del componente cnblocks "integrations-8" (demo.tsx) */
.dpint-orbit { position: relative; width: 100%; max-width: 480px; margin: 0 auto; aspect-ratio: 16 / 10; }
.dpint-ring { position: absolute; border-radius: 50%; aspect-ratio: 1; pointer-events: none; }
.dpint-ring--outer {
  width: 100%; left: 0; top: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), transparent 26%);
  border-top: 1px solid rgba(255,255,255,0.16);
}
.dpint-ring--inner {
  width: 64%; left: 50%; top: 28.4%; transform: translateX(-50%);
  background: linear-gradient(to bottom, rgba(255,255,255,0.10), transparent 28%);
  border-top: 1px solid rgba(255,255,255,0.13);
}
/* aros que giran al pasar el mouse (group-hover del original) */
.dpint-spin {
  position: absolute; border-radius: 50%; aspect-ratio: 1; pointer-events: none;
  opacity: 0; transition: opacity .45s; border: 0; border-top: 2px solid;
  animation: dpint-spin 3.5s linear infinite;
}
.dpint-orbit:hover .dpint-spin { opacity: 1; }
.dpint-spin--1 { width: 100%; left: 0; top: 0; border-top-color: rgba(118,145,242,0.5); }
.dpint-spin--2 { width: 64%; left: 18%; top: 28.4%; border-top-color: rgba(120,210,160,0.45); }
@keyframes dpint-spin { to { transform: rotate(360deg); } }

.dpint-chip {
  position: absolute; transform: translate(-50%, -50%);
  width: 13%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 6px 16px -8px rgba(0,0,0,0.7);
}
.dpint-chip img { width: 62%; height: 62%; object-fit: cover; border-radius: 50%; }
/* logos que no se leen sobre oscuro (ej. Interbanking): chip oscuro como el resto,
   pero el logo va en un círculo BLANCO interno */
.dpint-chip--white img {
  width: 70%; height: 70%; object-fit: contain; border-radius: 50%;
  background: #fff; padding: 9%;
}
/* nodo central abajo, dentro de su "píldora" */
.dpint-center {
  position: absolute; left: 50%; top: 89%; transform: translate(-50%, -50%); z-index: 4;
  padding: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
}
.dpint-chip--center {
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%; overflow: hidden;
  background: #fff; border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 42px rgba(47,107,255,0.55), inset 0 0 0 1px rgba(118,145,242,0.18);
}
.dpint-chip--center img { width: 66%; height: 66%; object-fit: contain; }

/* layout split: texto a la izquierda, gráfico (arco) a la derecha */
.dpint-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.dpint-copy { max-width: 600px; }
.dpint-copy h2 { letter-spacing: -0.01em; font-size: clamp(1.9rem, 3.2vw, 2.5rem); line-height: 1.14; }
.dpint-copy h2 .dp-grad-text { white-space: nowrap; }
.dpint-copy p { max-width: 460px; }
.dpint-copy .dpbtn { margin-top: 30px; }
@media (max-width: 1023px) {
  .dpint-split { grid-template-columns: 1fr; gap: 16px; }
  .dpint-copy { max-width: none; text-align: center; margin: 0 auto; order: 2; }
  .dpint-copy h2, .dpint-copy p { text-align: center; }
  .dpint-copy .dpbtn { margin-left: auto; margin-right: auto; }
  .dpint-orbit { order: 1; }
}

.dpint-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1000px; margin: 52px auto 0; }
@media (max-width: 900px) { .dpint-grid { grid-template-columns: repeat(2, 1fr); } }
.dpint {
  display: flex; flex-direction: column; padding: 20px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.022));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  font-family: var(--dp-font, 'Inter', system-ui, sans-serif);
}
.dpint__logo {
  width: 42px; height: 42px; border-radius: 11px; flex: none; overflow: hidden;
  background: #fff; display: flex; align-items: center; justify-content: center;
}
.dpint__logo img { width: 100%; height: 100%; object-fit: contain; padding: 7px; }
.dpint__body { padding: 16px 0; flex: 1; }
.dpint__title { font-size: 0.98rem; font-weight: 600; color: #fff; margin: 0 0 6px; }
.dpint__desc { font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.4; margin: 0; }
.dpint__foot { border-top: 1px dashed rgba(255,255,255,0.15); padding-top: 15px; }
.dpint__link {
  display: inline-flex; align-items: center; gap: 5px; text-decoration: none;
  font-size: 0.8rem; color: #aebcff; transition: gap .2s;
}
.dpint__link:hover { gap: 9px; }
.dpint__link svg { width: 14px; height: 14px; opacity: 0.6; }

@media (max-width: 575px) { .dpint-grid { grid-template-columns: 1fr; } }

/* botón CTA oscuro (sección hero de app-development) */
.dpcta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: #0b1020; color: #fff; font-family: var(--dp-font, 'Inter', system-ui, sans-serif);
  font-weight: 600; font-size: 1.02rem; padding: 17px 36px; border-radius: 999px;
  text-decoration: none; transition: background .25s, transform .25s;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,0.6);
}
.dpcta-btn:hover { background: #16213f; transform: translateY(-2px); }
@media (max-width: 767px) { .dpcta-btn { width: 100%; } }

/* badges de descarga (App Store / Google Play) construidos en HTML, mismo estilo */
.dpstore-row { display: flex; align-items: center; gap: 14px; margin-top: 4px; flex-wrap: wrap; }
.dpstore-btn {
  display: inline-flex; align-items: center; gap: 12px;
  height: 64px; padding: 0 26px 0 22px; border-radius: 14px;
  background: #000; color: #fff; text-decoration: none;
  font-family: var(--dp-font, 'Inter', system-ui, sans-serif);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform .2s, background .2s;
}
.dpstore-btn:hover { transform: translateY(-2px); background: #111; }
.dpstore-btn__ico { width: 30px; height: 30px; flex: none; }
.dpstore-btn__lbl { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.dpstore-btn__lbl .top { font-size: 12px; letter-spacing: -0.01em; opacity: 0.9; }
.dpstore-btn__lbl .big { font-size: 23px; font-weight: 700; letter-spacing: -0.01em; margin-top: 4px; }
@media (max-width: 767px) { .dpstore-row { justify-content: center; } }

/* ───── burbuja flotante de WhatsApp ───── */
.dp-wa {
  position: fixed; right: 24px; bottom: 24px; z-index: 300;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6), 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: transform .2s, box-shadow .2s;
}
.dp-wa:hover { transform: scale(1.08); box-shadow: 0 16px 36px -8px rgba(37, 211, 102, 0.7), 0 6px 16px rgba(0, 0, 0, 0.35); }
.dp-wa svg { width: 33px; height: 33px; }
.dp-wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; z-index: -1; animation: dp-wa-pulse 2.2s ease-out infinite;
}
@keyframes dp-wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 767px) { .dp-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; } }
@media (prefers-reduced-motion: reduce) { .dp-wa::before { animation: none; } }

/* ───── CTA (app-development) — ajustes solo en MOBILE ───── */
@media (max-width: 767px) {
  .dp-cta h1 { font-size: clamp(2.3rem, 9vw, 2.9rem); line-height: 1.12; }
  .dp-cta p { font-size: 1.02rem; line-height: 1.5; }
  .dp-cta .dpstore-row { gap: 12px; margin-top: 26px; }
  .dp-cta .dpstore-btn { height: 56px; padding: 0 22px 0 18px; gap: 11px; }
  .dp-cta .dpstore-btn__ico { width: 26px; height: 26px; }
  .dp-cta .dpstore-btn__lbl .top { font-size: 11px; }
  .dp-cta .dpstore-btn__lbl .big { font-size: 19px; }
}

/* ───── Mejoras MOBILE de las cards del Process ─────
   Se gana ancho útil sin cambiar el ALTO de la card (el borde gradiente es un PNG
   posicionado en % del alto, así que mantenemos la altura para no descolocarlo). */
@media (max-width: 767px) {
  /* contenedor blanco/negro de la card: solo achicamos el padding HORIZONTAL */
  .dp-process figure.bg-white { padding-left: 1.1rem !important; padding-right: 1.1rem !important; }
  /* la descripción que ocupe todo el ancho disponible en mobile */
  .dp-process figcaption p { max-width: none !important; }

  /* panel preview un poco más compacto y con más aire interno */
  .dpprev { padding: 14px 12px; }
  .dpprev__head { font-size: 0.8rem; }

  /* tiles de "Integra": que entren las etiquetas largas sin apretarse */
  .dpprev__tiles { gap: 8px; }
  .dpprev__tile { padding: 14px 3px; gap: 8px; }
  .dpprev__tile span { font-size: 0.64rem; line-height: 1.15; }

  /* filas (Unifica / Decide / Valida): nombres y montos legibles */
  .dpprev__name, .dpprev__kpiname { font-size: 0.82rem; }
  .dpprev__row, .dpprev__brow { padding: 9px 10px; }
  .dpprev__metric { padding: 11px 10px; }
}
