/* Landing comercial.
 *
 * Todo lleva prefijo `.mkt-` a proposito. Los nombres genericos —.card, .grid,
 * .row, .figures, .plat— ya estan tomados en app.css y varios estan forzados con
 * !important para tapar los <style> antiguos de cada pagina. Reutilizar uno de
 * esos nombres aqui arrastraria estilos ajenos y, peor, cualquier ajuste hecho
 * para la landing acabaria viendose en diagnostico.html.
 *
 * Los tokens NO se redefinen: se heredan de app.css, que es la paleta viva. El
 * repositorio ya arrastra tres paletas distintas y una cuarta no ayuda a nadie.
 *
 * Tres voces tipograficas, y cada una significa una cosa distinta. Es la misma
 * division que hace el dominio en EvidenceSource:
 *   mono   -> lo que se verifico en el codigo (rutas, lineas, comandos)
 *   serif  -> lo que dijo una persona (las citas del corpus)
 *   sans   -> la interfaz que lo envuelve
 */

.mkt-page {
  /* Sin barra de pestanas: esta pagina no es la app. */
  padding-bottom: 0;
}

.mkt-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------------------------------------------------------------- Cabecera */

.mkt-nav {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  transition: border-color .2s ease;
}

.mkt-nav[data-scrolled="si"] { border-bottom-color: var(--rule); }

.mkt-nav-in {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 62px;
}

.mkt-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--ink);
  font-weight: 730;
  letter-spacing: -.03em;
  text-decoration: none;
}

.mkt-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font: 700 12px/1 var(--mono);
  letter-spacing: .02em;
}

.mkt-nav-links { display: none; gap: 4px; }

.mkt-nav-links a {
  padding: 8px 11px;
  border-radius: 9px;
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 560;
  text-decoration: none;
  transition: color .16s ease, background-color .16s ease;
}

.mkt-nav-links a:hover { background: var(--shade); color: var(--ink); }

/* ---------------------------------------------------------------- Botones */

.mkt-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 620 14.5px/1 var(--sans);
  letter-spacing: -.012em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s cubic-bezier(.22, 1, .36, 1), box-shadow .16s ease, background-color .16s ease;
}

.mkt-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 26px color-mix(in srgb, var(--accent) 24%, transparent);
}

.mkt-btn-primary:hover { background: var(--accent-strong); transform: translateY(-1px); }

.mkt-btn-ghost {
  border-color: var(--rule);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.mkt-btn-ghost:hover { border-color: color-mix(in srgb, var(--accent) 40%, var(--rule)); transform: translateY(-1px); }

.mkt-btn-small { min-height: 40px; padding: 0 15px; font-size: 13.5px; }

.mkt-btn:active { transform: translateY(0); }

/* ---------------------------------------------------------------- Secciones */

.mkt-sec { padding: 64px 0; }
.mkt-sec + .mkt-sec { border-top: 1px solid var(--rule); }

.mkt-eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--ink-faint);
  font: 620 10.5px/1 var(--mono);
  letter-spacing: .13em;
  text-transform: uppercase;
}

.mkt-sec h2 {
  max-width: 19ch;
  margin: 0 0 12px;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 740;
  letter-spacing: -.038em;
  line-height: 1.06;
}

.mkt-sec-lede {
  max-width: 56ch;
  margin: 0 0 34px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
}

/* ---------------------------------------------------------------- Hero */

.mkt-hero { padding: 44px 0 56px; }

.mkt-hero-grid { display: grid; gap: 38px; }

.mkt-hero h1 {
  max-width: 15ch;
  margin: 0 0 18px;
  font-size: clamp(38px, 8.6vw, 60px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: -.045em;
}

/* Fraunces solo aqui y en las citas: marca lo que dijo una persona frente a lo
 * que verifico la maquina. */
.mkt-hero h1 em {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -.03em;
}

.mkt-hero-lede {
  max-width: 46ch;
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.mkt-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }

.mkt-hero-note {
  margin: 18px 0 0;
  color: var(--ink-faint);
  font-size: 12.5px;
  line-height: 1.5;
}

.mkt-hero-note code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--shade);
  font: 500 11.5px var(--mono);
}

/* ------------------------------------------------- Firma: el informe vivo */

.mkt-report {
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-md);
}

.mkt-report-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--shade) 45%, var(--panel));
}

.mkt-dots { display: flex; gap: 5px; }
.mkt-dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--shade); }

.mkt-report-path {
  overflow: hidden;
  color: var(--ink-soft);
  font: 500 11.5px var(--mono);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mkt-report-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--ink-faint);
  font: 620 10px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mkt-report-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--good);
  animation: mkt-pulse 2.4s ease-in-out infinite;
}

@keyframes mkt-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.mkt-findings { margin: 0; padding: 6px; list-style: none; }

.mkt-finding {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 3px 11px;
  padding: 13px 12px;
  border-radius: var(--radius-sm);
}

.mkt-finding + .mkt-finding { box-shadow: 0 -1px 0 var(--rule); }

.mkt-finding-sym {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  font: 600 12px/1 var(--sans);
}

.mkt-finding-name {
  align-self: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.015em;
}

.mkt-finding-ev {
  grid-column: 2;
  color: var(--ink-faint);
  font: 500 11.5px/1.5 var(--mono);
  overflow-wrap: anywhere;
}

.mkt-finding-ev b { color: var(--ink-soft); font-weight: 500; }

.mkt-ok .mkt-finding-sym { background: color-mix(in srgb, var(--good) 15%, transparent); color: var(--good); }
.mkt-off .mkt-finding-sym { background: var(--evidence-soft); color: var(--evidence); }
.mkt-none .mkt-finding-sym { background: var(--shade); color: var(--ink-faint); }
.mkt-part .mkt-finding-sym { background: var(--accent-soft); color: var(--accent); }

/* El clima de la pieza: el hallazgo que ninguna otra herramienta nombra. Es el
 * unico bloque con fondo propio, y por eso se lee como el punto de llegada. */
.mkt-finding.mkt-off {
  background: color-mix(in srgb, var(--evidence) 9%, var(--panel));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--evidence) 26%, transparent);
}

.mkt-finding-why {
  grid-column: 2;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.45;
}

.mkt-report-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding: 14px 18px;
  border-top: 1px solid var(--rule);
  background: color-mix(in srgb, var(--shade) 45%, var(--panel));
  color: var(--ink-soft);
  font-size: 12.5px;
}

.mkt-report-foot b { color: var(--ink); font-weight: 660; }

/* Entrada escalonada: la auditoria llega hallazgo a hallazgo, igual que cuando
 * corre de verdad dentro del agente. */
.mkt-anim .mkt-finding {
  opacity: 0;
  animation: mkt-in .5s cubic-bezier(.22, 1, .36, 1) both;
}

.mkt-anim .mkt-finding:nth-child(1) { animation-delay: .25s; }
.mkt-anim .mkt-finding:nth-child(2) { animation-delay: .65s; }
.mkt-anim .mkt-finding:nth-child(3) { animation-delay: 1.05s; }
.mkt-anim .mkt-finding:nth-child(4) { animation-delay: 1.5s; }
.mkt-anim .mkt-report-foot { opacity: 0; animation: mkt-in .5s 1.95s cubic-bezier(.22, 1, .36, 1) both; }

@keyframes mkt-in {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------- Cifras */

.mkt-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--rule);
}

.mkt-stat { padding: 17px 16px; background: var(--panel); }

.mkt-stat b {
  display: block;
  min-height: 30px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 740;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.mkt-stat span {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.35;
}

/* El hueco lo ocupa el esqueleto desde el HTML: si la cifra creciera la caja al
 * llegar, movería toda la pagina por debajo. Ya paso una vez con #figures. */
.mkt-stat[data-cargando="si"] b {
  width: 62px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--shade), color-mix(in srgb, var(--shade) 45%, var(--panel)), var(--shade));
  background-size: 200% 100%;
  color: transparent;
  animation: mkt-shimmer 1.3s linear infinite;
}

@keyframes mkt-shimmer { to { background-position: -200% 0; } }

.mkt-stats-note { margin: 12px 2px 0; color: var(--ink-faint); font-size: 12px; }

/* ---------------------------------------------------------------- Pasos */

.mkt-steps { display: grid; gap: 14px; counter-reset: paso; }

.mkt-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 14px;
  padding: 20px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.mkt-step::before {
  counter-increment: paso;
  content: counter(paso, decimal-leading-zero);
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font: 660 12px/1 var(--mono);
}

.mkt-step h3 {
  align-self: center;
  margin: 0;
  font-size: 16px;
  font-weight: 660;
  letter-spacing: -.02em;
}

.mkt-step p {
  grid-column: 2;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.mkt-cmd {
  grid-column: 2;
  margin-top: 12px;
  padding: 11px 13px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink-soft);
  font: 500 12px/1.5 var(--mono);
  overflow-wrap: anywhere;
}

.mkt-cmd b { color: var(--accent); font-weight: 500; }

/* ---------------------------------------------------------------- Categorias */

/* Van numeradas porque el catalogo las ordena de verdad: sin medicion no se
 * puede evaluar ninguna de las otras, y el consentimiento va al final porque
 * solo tiene sentido cuando ya hay algo que consentir. El numero informa. */
.mkt-cats { border-top: 1px solid var(--rule); }

.mkt-cat {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 14px;
  padding: 19px 4px;
  border-bottom: 1px solid var(--rule);
}

.mkt-cat-n { color: var(--ink-faint); font: 620 11px/1.6 var(--mono); }

.mkt-cat h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 660;
  letter-spacing: -.02em;
}

.mkt-cat p {
  grid-column: 2;
  max-width: 60ch;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.mkt-cat-tag {
  grid-column: 2;
  margin-top: 7px;
  color: var(--ink-faint);
  font: 500 11px var(--mono);
}

/* ---------------------------------------------------------------- Bloque partido */

.mkt-split { display: grid; gap: 30px; align-items: start; }

.mkt-code {
  overflow-x: auto;
  padding: 18px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  font: 500 12.5px/1.75 var(--mono);
}

.mkt-code pre { margin: 0; }
.mkt-code .c { color: var(--ink-faint); }
.mkt-code .k { color: var(--accent); }
.mkt-code .w { color: var(--evidence); }

.mkt-verdict {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--evidence-soft);
  color: var(--ink);
  font-size: 13.5px;
  line-height: 1.45;
}

.mkt-verdict b { font-weight: 660; }

.mkt-list { margin: 0; padding: 0; list-style: none; }

.mkt-list li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.5;
}

.mkt-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  color: var(--good);
  content: "\2713";
  font-size: 13px;
  font-weight: 700;
}

.mkt-list li b { color: var(--ink); font-weight: 620; }

/* ---------------------------------------------------------------- Cita */

.mkt-quote {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--panel);
}

.mkt-quote p {
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -.015em;
}

.mkt-quote footer {
  color: var(--ink-faint);
  font: 500 11.5px var(--mono);
}

.mkt-quote footer b { color: var(--ink-soft); font-weight: 500; }

/* ---------------------------------------------------------------- Tarjetas */

.mkt-cards { display: grid; gap: 14px; }

.mkt-card {
  padding: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.mkt-card h3 {
  margin: 0 0 7px;
  font-size: 16.5px;
  font-weight: 680;
  letter-spacing: -.022em;
}

.mkt-card p { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.5; }

.mkt-card-tag {
  display: inline-block;
  margin-bottom: 13px;
  padding: 4px 9px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  font: 620 10.5px/1.4 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------- Privacidad */

.mkt-privacy {
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.mkt-privacy h2 { max-width: 17ch; margin: 0; }

.mkt-privacy p { margin: 0 0 14px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

.mkt-privacy p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- Precios */

/* stretch, no start: con alturas distintas los tres botones caen a distinto
 * nivel y la comparacion se vuelve incomoda de leer. */
.mkt-plans { display: grid; gap: 16px; align-items: stretch; }

.mkt-plan {
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.mkt-plan[data-destacado="si"] {
  border-color: color-mix(in srgb, var(--accent) 42%, transparent);
  box-shadow: var(--shadow-md);
}

.mkt-plan-top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.mkt-plan h3 { margin: 0; font-size: 15px; font-weight: 680; letter-spacing: -.02em; }

.mkt-plan-flag {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: 620 10px/1.4 var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
}

.mkt-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 750;
  letter-spacing: -.045em;
}

.mkt-price span { color: var(--ink-faint); font-size: 13px; font-weight: 520; letter-spacing: -.01em; }

.mkt-plan-for { margin: 0 0 20px; color: var(--ink-soft); font-size: 13.5px; line-height: 1.45; }

.mkt-plan ul { flex: 1; margin: 0 0 22px; padding: 0; list-style: none; }

.mkt-plan li {
  position: relative;
  padding: 7px 0 7px 22px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.45;
}

.mkt-plan li::before {
  position: absolute;
  top: 7px;
  left: 0;
  color: var(--accent);
  content: "\2713";
  font-size: 12px;
  font-weight: 700;
}

.mkt-plan li[data-no="si"] { color: var(--ink-faint); }
.mkt-plan li[data-no="si"]::before { color: var(--ink-faint); content: "\2014"; font-weight: 500; }

.mkt-plan .mkt-btn { width: 100%; }

.mkt-plan-note { margin: 11px 0 0; color: var(--ink-faint); font-size: 11.5px; line-height: 1.45; text-align: center; }

/* Aviso de interes en un plan que todavia no se cobra. */
.mkt-interes { display: none; margin-top: 12px; }
.mkt-interes[data-abierto="si"] { display: block; }

.mkt-interes-row { display: flex; gap: 7px; }

.mkt-interes input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--rule);
  border-radius: 11px;
  background: var(--bg);
  color: var(--ink);
  font-size: 14px;
}

.mkt-interes input:focus-visible { border-color: var(--accent); }

.mkt-interes-msg { margin: 8px 0 0; color: var(--ink-soft); font-size: 12px; line-height: 1.45; }

/* ---------------------------------------------------------------- FAQ */

.mkt-faq { border-top: 1px solid var(--rule); }

.mkt-faq details { border-bottom: 1px solid var(--rule); }

.mkt-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 8px 2px;
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 620;
  letter-spacing: -.02em;
  list-style: none;
  cursor: pointer;
}

.mkt-faq summary::-webkit-details-marker { display: none; }

.mkt-faq summary::after {
  flex: none;
  color: var(--ink-faint);
  content: "+";
  font: 400 20px/1 var(--sans);
  transition: transform .2s ease;
}

.mkt-faq details[open] summary::after { transform: rotate(45deg); }

.mkt-faq p {
  max-width: 68ch;
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
}

.mkt-faq code { padding: 2px 6px; border-radius: 6px; background: var(--shade); font: 500 12px var(--mono); }

/* ---------------------------------------------------------------- Cierre */

.mkt-close {
  padding: 46px 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 13%, transparent), transparent 60%),
    var(--panel);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.mkt-close h2 { max-width: 20ch; margin: 0 auto 12px; }

.mkt-close p { max-width: 46ch; margin: 0 auto 26px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

.mkt-close-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* ---------------------------------------------------------------- Pie */

.mkt-footer { border-top: 1px solid var(--rule); padding: 40px 0 46px; }

.mkt-footer-grid { display: grid; gap: 28px; }

.mkt-footer-about { max-width: 40ch; color: var(--ink-soft); font-size: 13.5px; line-height: 1.55; }

.mkt-footer-about .mkt-wordmark { margin: 0 0 12px; }

.mkt-footer h4 {
  margin: 0 0 12px;
  color: var(--ink-faint);
  font: 620 10.5px/1 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mkt-footer ul { margin: 0; padding: 0; list-style: none; }

.mkt-footer li { margin-bottom: 9px; }

.mkt-footer a { color: var(--ink-soft); font-size: 13.5px; text-decoration: none; }
.mkt-footer a:hover { color: var(--accent); }

.mkt-footer-legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.5;
}

/* ---------------------------------------------------------------- Anchos */

@media (min-width: 700px) {
  .mkt-stats { grid-template-columns: repeat(4, 1fr); }
  .mkt-steps { grid-template-columns: repeat(3, 1fr); }
  .mkt-cards { grid-template-columns: repeat(3, 1fr); }
  .mkt-split { grid-template-columns: 1fr 1fr; gap: 40px; }
  .mkt-privacy { grid-template-columns: 1fr 1.25fr; gap: 34px; align-items: center; }
  .mkt-footer-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
  .mkt-cat { grid-template-columns: 34px minmax(0, 20ch) 1fr; padding: 20px 4px; }
  .mkt-cat h3 { align-self: baseline; }
  .mkt-cat p { grid-column: 3; grid-row: 1; }
  .mkt-cat-tag { grid-column: 3; grid-row: 2; margin-top: 4px; }
}

@media (min-width: 900px) {
  .mkt-nav-links { display: flex; }
  .mkt-sec { padding: 84px 0; }
  .mkt-hero { padding: 60px 0 76px; }
  .mkt-hero-grid { grid-template-columns: 1fr 1.02fr; gap: 52px; align-items: center; }
  .mkt-plans { grid-template-columns: repeat(3, 1fr); }
  .mkt-close { padding: 66px 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .mkt-anim .mkt-finding,
  .mkt-anim .mkt-report-foot { opacity: 1; animation: none; }
  .mkt-report-live::before { animation: none; }
  .mkt-stat[data-cargando="si"] b { animation: none; }
  .mkt-btn { transition: none; }
}
