:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-alt: #eef4ff;
  --ink: #0b1830;
  --ink-soft: #40506a;
  --ink-muted: #687790;
  --border: #dfe6f0;
  --border-strong: #cbd6e5;
  --brand: #2563eb;
  --brand-dark: #1749bd;
  --brand-50: #eff6ff;
  --accent: #0d9f78;
  --accent-soft: #e9f8f3;
  --warning-bg: #fff7dc;
  --warning-ink: #7b5400;
  --danger-bg: #fff0f0;
  --danger-ink: #a11c2f;
  --navy: #0b1830;
  --navy-light: #132747;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 2px 8px rgba(11, 24, 48, .06);
  --shadow-md: 0 16px 40px rgba(11, 24, 48, .11);
  --shadow-lg: 0 28px 70px rgba(11, 24, 48, .18);
  --ring: 0 0 0 4px rgba(37, 99, 235, .2);
  --contenedor: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { touch-action: manipulation; }

h1, h2, h3 {
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  letter-spacing: -.055em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: -.04em;
  font-weight: 760;
}

h3 {
  font-size: 1.2rem;
  letter-spacing: -.015em;
}

p { margin: 0; }

.contenedor {
  width: min(100% - 40px, var(--contenedor));
  margin-inline: auto;
}

.saltar {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  background: var(--surface);
  color: var(--ink);
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

.saltar:focus { top: 1rem; }

.encabezado {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(203, 214, 229, .8);
  backdrop-filter: blur(16px);
}

.barra {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.marca {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -.025em;
  flex: 0 0 auto;
}

.marca > span:last-child, .marca span:not(.marca-icono) { color: var(--brand); }

.marca-icono {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 7px 18px rgba(37, 99, 235, .25);
}

.marca-icono svg { width: 21px; height: 21px; }

.navegacion {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.navegacion a, .acceso {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 650;
  transition: color .2s ease;
}

.navegacion a:hover, .acceso:hover { color: var(--brand); }

.acciones-cabecera {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.boton {
  min-height: 48px;
  padding: .75rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 750;
  font-size: .94rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.boton svg { width: 18px; height: 18px; }
.boton:hover { transform: translateY(-2px); }
.boton:active { transform: translateY(0); }
.boton:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.boton-primario {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .24);
}

.boton-primario:hover { background: var(--brand-dark); }
.boton-corto { min-height: 44px; padding: .65rem 1rem; font-size: .86rem; }

.boton-terciario {
  background: #fff;
  color: var(--ink);
  border-color: var(--border-strong);
}

.boton-terciario:hover, .boton-plan:hover {
  background: var(--brand-50);
  border-color: #9bb8ee;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, #f5f8fe 100%);
  padding: 5.5rem 0 4.5rem;
}

.hero-fondo {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -260px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .16), transparent 68%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1.3rem;
  padding: .45rem .8rem;
  border: 1px solid #f0d991;
  border-radius: 999px;
  background: var(--warning-bg);
  color: var(--warning-ink);
  font-size: .83rem;
  font-weight: 750;
}

.punto-estado {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d99400;
  box-shadow: 0 0 0 4px rgba(217, 148, 0, .13);
}

.hero h1 span { color: var(--brand); }

.hero-bajada {
  max-width: 58ch;
  margin-top: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.hero-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero-confianza {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 2rem;
  max-width: 520px;
}

.hero-confianza p {
  color: var(--ink-muted);
  font-size: .82rem;
  line-height: 1.5;
}

.hero-confianza strong {
  display: block;
  color: var(--ink);
  font-size: .86rem;
}

.avatar-sello {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
}

.avatar-sello svg { width: 22px; height: 22px; stroke-width: 2.5; }

.hero-visual {
  position: relative;
  min-height: 570px;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 2% 3% 7%;
  z-index: -1;
  border-radius: var(--radius-xl);
  background: var(--brand);
  transform: rotate(3deg);
  opacity: .11;
}

.hero-visual picture img {
  position: absolute;
  inset: 0 0 100px 0;
  width: 100%;
  height: calc(100% - 100px);
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.panel-flotante {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem .9rem;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.panel-dgii { top: 32px; right: -20px; }

.panel-flotante small, .panel-flotante strong {
  display: block;
  line-height: 1.3;
}

.panel-flotante small { color: var(--ink-muted); font-size: .7rem; }
.panel-flotante strong { color: var(--ink); font-size: .83rem; }

.icono-estado {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
}

.icono-estado svg { width: 19px; height: 19px; stroke-width: 2.6; }

.panel-producto {
  position: absolute;
  z-index: 4;
  left: -38px;
  right: 38px;
  bottom: 0;
  padding: 1.15rem;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(203, 214, 229, .85);
  border-radius: 19px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.panel-cabecera {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}

.mini-marca { color: var(--ink); font-size: .78rem; font-weight: 800; }
.mini-marca span { color: var(--brand); }
.chip { padding: .2rem .55rem; border-radius: 999px; background: var(--bg); color: var(--ink-muted); font-size: .64rem; font-weight: 700; }

.panel-metricas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  padding-top: .85rem;
}

.panel-metricas > div {
  padding: .75rem;
  border-radius: 12px;
  background: var(--bg);
}

.panel-metricas small, .panel-metricas strong, .panel-metricas span { display: block; }
.panel-metricas small { color: var(--ink-muted); font-size: .64rem; }
.panel-metricas strong { margin-top: .14rem; color: var(--ink); font-size: .96rem; font-variant-numeric: tabular-nums; }
.tendencia, .estado-ok { margin-top: .1rem; color: var(--accent); font-size: .64rem; font-weight: 750; }

.grafico {
  height: 70px;
  display: flex;
  align-items: end;
  gap: 6px;
  padding: .85rem .4rem 0;
  border-bottom: 1px solid var(--border);
}

.grafico span {
  width: 100%;
  height: var(--alto);
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, #4e7ef0, var(--brand));
}

.franja-datos {
  background: var(--navy);
  color: #fff;
}

.datos-grid {
  min-height: 132px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.datos-grid > div {
  min-height: 62px;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.datos-grid > div:first-child { border-left: 0; padding-left: 0; }
.datos-grid strong { font-size: 1.05rem; letter-spacing: -.01em; }
.datos-grid span { margin-top: .12rem; color: #aebbd0; font-size: .78rem; }

.seccion { padding: clamp(5rem, 9vw, 8rem) 0; }
.kicker { margin-bottom: .8rem; color: var(--brand); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.kicker.claro { color: #80a9ff; }

.problema { background: var(--surface); }

.problema-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.imagen-editorial {
  position: relative;
  padding: 0 1rem 1rem 0;
}

.imagen-editorial::after {
  content: "";
  position: absolute;
  inset: 2rem 0 0 2rem;
  z-index: 0;
  border-radius: var(--radius-xl);
  background: var(--brand-50);
  border: 1px solid #d8e6ff;
}

.imagen-editorial picture { position: relative; z-index: 1; }

.imagen-editorial img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.imagen-insignia {
  position: absolute;
  z-index: 2;
  right: -14px;
  bottom: -4px;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.imagen-insignia svg { width: 30px; height: 30px; color: var(--brand); }
.imagen-insignia strong, .imagen-insignia small { display: block; line-height: 1.35; }
.imagen-insignia strong { color: var(--ink); font-size: .85rem; }
.imagen-insignia small { color: var(--ink-muted); font-size: .7rem; }

.problema-copy .intro {
  margin-top: 1.2rem;
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.pasos {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.25rem;
}

.pasos li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
}

.pasos li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--brand-50);
  color: var(--brand);
  font-size: .72rem;
  font-weight: 850;
}

.pasos strong { color: var(--ink); font-size: .98rem; }
.pasos p { margin-top: .16rem; color: var(--ink-muted); font-size: .88rem; line-height: 1.55; }

.soluciones {
  background:
    radial-gradient(circle at 0 0, rgba(37, 99, 235, .07), transparent 28%),
    var(--bg);
}

.titulo-seccion {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.titulo-seccion > p {
  max-width: 48ch;
  color: var(--ink-muted);
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tarjeta-solucion {
  min-height: 245px;
  padding: 1.55rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tarjeta-solucion:hover {
  transform: translateY(-4px);
  border-color: #b7c9e4;
  box-shadow: var(--shadow-md);
}

.tarjeta-solucion.principal {
  grid-column: span 2;
  min-height: 310px;
  display: grid;
  grid-template-columns: 64px 1fr 1.1fr;
  align-items: center;
  gap: 1.2rem;
  background: linear-gradient(135deg, #fff, #f5f8ff);
}

.icono-tarjeta {
  width: 48px;
  height: 48px;
  margin-bottom: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--brand-50);
  color: var(--brand);
}

.icono-tarjeta svg { width: 24px; height: 24px; }
.principal .icono-tarjeta { width: 56px; height: 56px; margin: 0; }
.tarjeta-solucion h3 { margin-bottom: .65rem; }
.tarjeta-solucion > p, .tarjeta-solucion > div > p:not(.mini-etiqueta) { color: var(--ink-muted); font-size: .9rem; }
.mini-etiqueta { margin-bottom: .45rem; color: var(--brand); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }

.ecf-lista {
  display: grid;
  gap: .55rem;
}

.ecf-lista span {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: .5rem;
  padding: .7rem .8rem;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .68rem;
  box-shadow: var(--shadow-sm);
}

.ecf-lista i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.ecf-lista b { color: var(--accent); font-size: .62rem; }

.testimonio { padding-top: 0; background: var(--bg); }

.cita {
  position: relative;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  overflow: hidden;
  background: linear-gradient(125deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cita::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -190px;
  border-radius: 50%;
  background: rgba(69, 119, 235, .28);
}

.cita-texto {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: -.02em;
}

.cita p:not(.cita-texto) { margin-top: 1.4rem; }
.cita p strong, .cita p span { display: block; line-height: 1.4; }
.cita p strong { font-size: .86rem; }
.cita p span { color: #9fadc2; font-size: .76rem; }

.sello-produccion {
  position: relative;
  z-index: 1;
  min-width: 175px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
}

.sello-produccion svg { width: 34px; height: 34px; color: #57d6b0; }
.sello-produccion span { color: #aebbd0; font-size: .74rem; line-height: 1.4; }
.sello-produccion strong { color: #fff; font-size: .82rem; }

/* --- Captura automática de gastos --- */
.gastos {
  background:
    radial-gradient(circle at 100% 0, rgba(37, 99, 235, .08), transparent 34%),
    var(--surface-alt);
}

.gastos-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
}

.gastos-copy .intro {
  margin-top: 1.2rem;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.nota-gastos {
  margin-top: 2rem;
  padding: .9rem 1.1rem;
  width: fit-content;
  border: 1px solid #d8e6ff;
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink-muted);
  font-size: .84rem;
}

.nota-gastos a { color: var(--brand); font-weight: 700; }

.panel-gastos {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.gasto-entrada {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: .8rem;
  margin-top: 1rem;
  padding: .9rem;
  border: 1px dashed var(--border-strong);
  border-radius: 14px;
  background: var(--bg);
}

.doc-icono {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-50);
  color: var(--brand);
}

.doc-icono svg { width: 22px; height: 22px; }
.doc-datos strong, .doc-datos small { display: block; line-height: 1.35; }
.doc-datos strong { color: var(--ink); font-size: .84rem; }
.doc-datos small { color: var(--ink-muted); font-size: .72rem; }

.doc-progreso {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--ink-muted);
  font-size: .74rem;
  font-weight: 700;
}

.doc-progreso i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
}

.gasto-fila {
  display: grid;
  grid-template-columns: 1.3fr 1fr .8fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: .9rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.gasto-fila small, .gasto-fila strong { display: block; line-height: 1.35; }
.gasto-fila small { color: var(--ink-muted); font-size: .68rem; }
.gasto-fila strong { color: var(--ink); font-size: .8rem; font-variant-numeric: tabular-nums; }

.badge-ok {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: .7rem;
  font-weight: 800;
  white-space: nowrap;
}

.badge-ok svg { width: 14px; height: 14px; stroke-width: 3; }

.gasto-pie {
  margin-top: 1rem;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
  color: var(--ink-muted);
  font-size: .76rem;
  text-align: center;
}

.precios { background: var(--surface); }

.titulo-centrado {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.titulo-centrado > p:last-child {
  max-width: 62ch;
  margin: 1rem auto 0;
  color: var(--ink-muted);
}

.planes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 1rem;
}

.plan {
  position: relative;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.plan.destacado {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
}

.recomendado {
  position: absolute;
  top: 0;
  right: 1.4rem;
  padding: .42rem .7rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.plan-cabecera { min-height: 88px; }
.plan .etiqueta { color: var(--ink); font-size: 1.22rem; font-weight: 800; }
.plan-cabecera > p:last-child { margin-top: .4rem; color: var(--ink-muted); font-size: .84rem; }

.precio {
  margin: 1rem 0 1.2rem;
  color: var(--ink);
  font-size: 2.35rem;
  font-weight: 820;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}

.precio sup { margin-right: .2rem; font-size: .8rem; vertical-align: super; letter-spacing: 0; }
.precio small { color: var(--ink-muted); font-size: .78rem; font-weight: 600; letter-spacing: 0; }

.boton-plan { background: var(--surface); border-color: var(--border-strong); }

.plan ul {
  list-style: none;
  padding: 1.4rem 0 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: .8rem;
  border-top: 1px solid var(--border);
}

.plan li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  font-size: .85rem;
}

.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .28rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--accent-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%230d9f78' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}

.nota {
  max-width: 80ch;
  margin: 2rem auto 0;
  padding: 1rem;
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink-muted);
  font-size: .78rem;
  text-align: center;
}

.preguntas { background: var(--bg); }

.preguntas-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(3rem, 7vw, 6rem);
}

.preguntas-grid > div:first-child > p:not(.kicker) { margin-top: 1rem; color: var(--ink-muted); }

.enlace-flecha {
  display: inline-flex;
  gap: .5rem;
  margin-top: 1.4rem;
  color: var(--brand);
  text-decoration: none;
  font-weight: 750;
}

.enlace-flecha:hover { text-decoration: underline; }

.acordeon {
  display: grid;
  gap: .7rem;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

summary {
  position: relative;
  min-height: 64px;
  padding: 1.1rem 3.4rem 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary span::before, summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: transform .2s ease;
}

summary span::after { transform: rotate(90deg); }
details[open] summary span::after { transform: rotate(0); }
details p { padding: 0 1.2rem 1.2rem; color: var(--ink-muted); font-size: .9rem; }

.contacto {
  padding: clamp(5rem, 9vw, 7rem) 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(37, 99, 235, .22), transparent 32%),
    linear-gradient(135deg, #08142a, #102547);
}

.contacto-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
}

.contacto-copy h2 { color: #fff; }
.contacto-copy > p:not(.kicker) { margin-top: 1.2rem; color: #b1bfd3; font-size: 1.02rem; }

.contacto-copy ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: .8rem;
}

.contacto-copy li {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #dfe7f3;
  font-size: .9rem;
}

.contacto-copy li svg { width: 20px; height: 20px; color: #59d7b1; stroke-width: 2.7; }

.whatsapp-contacto {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #b1bfd3;
  font-size: .9rem;
}

.whatsapp-contacto a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  color: #5ce38f;
  text-decoration: none;
  font-weight: 750;
}

.whatsapp-contacto a:hover { text-decoration: underline; }
.whatsapp-contacto svg { width: 20px; height: 20px; flex: 0 0 auto; }

.whatsapp-flotante {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(18, 140, 76, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-flotante:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 34px rgba(18, 140, 76, .55);
}

.whatsapp-flotante svg { width: 30px; height: 30px; }

.formulario {
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.formulario-cabecera { margin-bottom: 1.5rem; }
.formulario-cabecera h3 { font-size: 1.4rem; }
.formulario-cabecera p { margin-top: .35rem; color: var(--ink-muted); font-size: .86rem; }

.campos {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.campos.dos { grid-template-columns: 1fr 1fr; }
.formulario .campos:first-of-type { margin-top: 0; }

label {
  display: block;
  margin-bottom: .35rem;
  color: var(--ink);
  font-size: .79rem;
  font-weight: 720;
}

label span { color: #be273b; }
label small { color: var(--ink-muted); font-weight: 500; }

input, textarea {
  width: 100%;
  min-height: 47px;
  padding: .72rem .82rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:hover, textarea:hover { border-color: #9cacbf; }
input:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
textarea { min-height: 92px; resize: vertical; }

.honeypot { position: absolute; left: -9999px; }

.boton-enviar {
  width: 100%;
  margin-top: 1.2rem;
}

.boton:disabled {
  cursor: wait;
  opacity: .64;
  transform: none;
}

.privacidad {
  margin-top: .75rem;
  color: var(--ink-muted);
  font-size: .7rem;
  text-align: center;
}

.mensaje {
  margin-top: 1rem;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .84rem;
}

.mensaje:focus { outline: none; }
.mensaje.exito { background: var(--accent-soft); color: #076449; }
.mensaje.error { background: var(--danger-bg); color: var(--danger-ink); }
[hidden] { display: none !important; }

.pie {
  padding: 3.5rem 0 1.5rem;
  background: #071225;
  color: #9fadc2;
}

.pie-grid {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}

.marca-pie { color: #fff; }
.pie-grid > div:first-child p { max-width: 380px; margin-top: .8rem; font-size: .84rem; }

.pie-enlaces {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.2rem 1.7rem;
}

.pie-enlaces a {
  color: #c2ccda;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 650;
}

.pie-enlaces a:hover { color: #fff; }

.pie-legal {
  margin-top: 2.5rem;
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .72rem;
}

@media (max-width: 1040px) {
  .navegacion { display: none; }
  .hero-grid { grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); gap: 3rem; }
  .hero-visual { min-height: 520px; }
  .panel-dgii { right: -8px; }
  .tarjeta-solucion.principal { grid-template-columns: 54px 1fr; }
  .ecf-lista { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .ecf-lista span { grid-template-columns: 8px 1fr; }
  .ecf-lista b { grid-column: 2; }
}

@media (max-width: 850px) {
  .hero { padding-top: 4rem; }
  .hero-grid, .problema-grid, .gastos-grid, .contacto-grid, .preguntas-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 680px; width: 100%; margin-inline: auto; }
  .datos-grid { grid-template-columns: 1fr 1fr; padding: 1.25rem 0; }
  .datos-grid > div { padding: 1rem; border-left: 0; }
  .datos-grid > div:nth-child(even) { border-left: 1px solid rgba(255, 255, 255, .13); }
  .titulo-seccion { grid-template-columns: 1fr; gap: 1rem; }
  .bento { grid-template-columns: 1fr 1fr; }
  .tarjeta-solucion.principal { grid-column: 1 / -1; }
  .planes { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; gap: 1.4rem; }
  .plan.destacado { transform: none; order: -1; }
  .cita { grid-template-columns: 1fr; }
  .sello-produccion { width: fit-content; }
  .contacto-copy { max-width: 640px; }
}

@media (max-width: 620px) {
  .contenedor { width: min(100% - 28px, var(--contenedor)); }
  .barra { min-height: 68px; }
  .marca-icono { width: 32px; height: 32px; }
  .acceso { display: none; }
  .boton-corto { padding-inline: .8rem; font-size: .76rem; }
  .hero { padding: 3.2rem 0 3.5rem; }
  .hero-acciones { display: grid; }
  .hero-acciones .boton { width: 100%; }
  .hero-visual { min-height: 430px; }
  .hero-visual picture img { bottom: 82px; height: calc(100% - 82px); }
  .panel-producto { left: 10px; right: 10px; padding: .9rem; }
  .panel-dgii { top: 16px; right: -2px; transform: scale(.88); transform-origin: top right; }
  .panel-metricas strong { font-size: .82rem; }
  .grafico { height: 55px; }
  .datos-grid strong { font-size: .92rem; }
  .datos-grid span { font-size: .68rem; }
  .problema-grid { gap: 3.5rem; }
  .imagen-editorial { padding-right: 0; }
  .imagen-insignia { right: 10px; }
  .bento { grid-template-columns: 1fr; }
  .tarjeta-solucion.principal { grid-column: auto; grid-template-columns: 1fr; }
  .principal .icono-tarjeta { margin-bottom: 0; }
  .ecf-lista { grid-column: auto; grid-template-columns: 1fr; }
  .cita { gap: 1rem; }
  .campos.dos { grid-template-columns: 1fr; }
  .panel-gastos { padding: 1rem; }
  .gasto-entrada { grid-template-columns: 40px 1fr; }
  .doc-progreso { grid-column: 2; }
  .gasto-fila { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .badge-ok { justify-self: start; }
  .pie-grid, .pie-legal { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
