:root {
  --ink: #142033;
  --muted: #647085;
  --line: rgba(20, 32, 51, .12);
  --blue: #1067e8;
  --blue-dark: #073f9a;
  --mint: #18b88f;
  --amber: #f3a21b;
  --paper: #f7f9fc;
  --glass: rgba(255, 255, 255, .72);
  --shadow: 0 24px 70px rgba(20, 32, 51, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Animacion de entrada al hacer scroll (site-nav.js agrega
   .reveal-visible via IntersectionObserver la primera vez que la
   seccion entra en pantalla). Con guardia de movimiento reducido --
   las animaciones de mascota existentes (girarMascota, nexoFlotar,
   etc.) son decorativas y no llevaban esta guardia; esta si, porque
   es la primera animacion que de verdad mueve contenido/texto. */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(16, 103, 232, .08), rgba(255,255,255,0) 460px),
    radial-gradient(circle at 84% 8%, rgba(24, 184, 143, .12), transparent 260px),
    var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.58);
  background: rgba(247, 249, 252, .74);
  backdrop-filter: blur(22px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 950;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.brand-mascota {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  margin-left: -2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
}

nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

nav a:hover {
  color: var(--ink);
  background: rgba(16, 103, 232, .08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Menu movil -- .mobile-menu envuelve nav + .header-actions.
   En escritorio es "display:contents" (invisible como caja, sus
   hijos siguen siendo hijos flex directos de .site-header, cero
   cambio de layout). Debajo de 760px se convierte en un panel
   desplegable real, y el boton hamburguesa (oculto en escritorio)
   lo abre/cierra. */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.abierto span {
  background: transparent;
}

.nav-toggle.abierto span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.abierto span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: contents;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    padding: 12px clamp(18px, 6vw, 32px) 20px;
    background: rgba(247, 249, 252, .98);
    backdrop-filter: blur(22px) saturate(160%);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 44px rgba(20, 32, 51, .16);
  }

  .mobile-menu.abierto {
    display: flex;
  }

  .mobile-menu nav {
    order: 0;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 2px;
    padding: 0;
    border: none;
    background: none;
    overflow-x: visible;
  }

  .mobile-menu nav a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .mobile-menu .header-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
    margin: 8px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .mobile-menu .header-login {
    padding: 10px 14px;
    text-align: center;
  }

  .mobile-menu .header-cta {
    width: 100%;
  }
}

.header-login {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.header-login:hover {
  color: var(--blue);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 14px;
  padding: 0 18px;
  font-weight: 950;
}

button.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
}

button.btn:disabled {
  cursor: wait;
  opacity: .72;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 16px 34px rgba(16, 103, 232, .25);
}

.btn.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .72);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 6vw, 88px);
}

.hero-mascota {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(90px, 9vw, 140px);
  height: clamp(90px, 9vw, 140px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(20, 32, 51, .22);
  border: 4px solid #fff;
  pointer-events: none;
  animation: girarMascota 12s linear infinite;
}

@keyframes girarMascota {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 760px) {
  .hero-mascota {
    display: none;
  }

  .hero-content {
    padding-bottom: 0;
  }
}

.hero-content {
  position: relative;
  max-width: 780px;
  padding-bottom: clamp(110px, 13vw, 164px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: .96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.hero-proof {
  display: inline-grid;
  gap: 4px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.66);
}

.hero-proof span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.product-preview {
  min-height: 580px;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(232,239,250,.58));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.preview-top,
.preview-grid div,
.preview-pos,
.preview-products span,
.preview-cart {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(20, 32, 51, .08);
}

.preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 86px;
  padding: 16px;
  border-radius: 24px;
}

.preview-top img {
  width: 152px;
  max-height: 52px;
  object-fit: contain;
}

.preview-top span {
  color: var(--muted);
  font-weight: 900;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.preview-grid div {
  min-height: 114px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px;
  border-radius: 22px;
}

.preview-grid span,
.preview-cart span,
.feature-list span,
.plans span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.preview-grid strong {
  font-size: 28px;
}

.preview-grid div:nth-child(2) strong {
  color: var(--amber);
}

.preview-grid div:nth-child(3) strong {
  color: var(--blue);
}

.preview-pos {
  display: grid;
  grid-template-columns: 1fr .84fr;
  gap: 14px;
  padding: 16px;
  border-radius: 26px;
}

.preview-products {
  display: grid;
  gap: 10px;
}

.preview-products span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 16px;
  font-weight: 900;
}

.preview-cart {
  display: grid;
  gap: 12px;
  align-content: center;
  padding: 16px;
  border-radius: 20px;
}

.preview-cart button {
  height: 44px;
  border: 0;
  border-radius: 14px;
  color: #fff;
  background: var(--blue);
  font-weight: 950;
}

.section-band,
.features,
.demo-section,
.pricing,
.growth,
.testimonials,
.contact {
  padding: clamp(50px, 7vw, 96px) clamp(18px, 6vw, 88px);
}

.section-title {
  max-width: 780px;
  margin-bottom: 28px;
}

.benefits,
.feature-list,
.plans,
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.benefits article,
.feature-list article,
.plans article,
.quotes blockquote {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(20, 32, 51, .08);
}

.benefits article span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--mint);
  font-weight: 950;
}

.benefits p,
.demo-copy p,
.growth p,
.testimonials p,
.contact p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

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

.feature-list article {
  min-height: 124px;
  display: grid;
  gap: 8px;
}

.feature-list strong {
  font-size: 20px;
}

.feature-list strong small {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.demo-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(20, 32, 51, .95), rgba(15, 49, 90, .9));
  color: #fff;
}

.demo-section .eyebrow,
.demo-copy p {
  color: rgba(255,255,255,.72);
}

.video-shell {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.04)),
    repeating-linear-gradient(0deg, rgba(255,255,255,.06), rgba(255,255,255,.06) 1px, transparent 1px, transparent 34px);
}

.play-button {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 22px 46px rgba(16, 103, 232, .34);
}

.plans article {
  display: grid;
  gap: 10px;
  align-content: start;
}

.plans article strong {
  font-size: 22px;
}

.plans .featured {
  border-color: rgba(16, 103, 232, .26);
  background: linear-gradient(145deg, rgba(16,103,232,.12), rgba(255,255,255,.76));
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.plans article .plan-target {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin: 0;
}

.plans article ul {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.plans article li {
  display: flex;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}

.plans article li::before {
  content: "✓";
  color: var(--mint);
  font-weight: 900;
  flex: none;
}

.plans article .plan-cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.plans .featured .plan-cta {
  background: var(--blue);
  color: #fff;
  border-color: transparent;
}

.plan-acciones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.plan-detalles-btn {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 14px;
  font-family: inherit;
  border: 0;
  background: none;
  color: var(--blue);
  cursor: pointer;
}

.plan-detalles-btn:hover {
  text-decoration: underline;
}

.plan-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 32, 51, .48);
  backdrop-filter: blur(6px);
}

.plan-modal-overlay.abierto {
  display: flex;
}

.plan-modal-card {
  position: relative;
  width: min(560px, 100%);
  max-height: min(80vh, 720px);
  overflow-y: auto;
  padding: 32px 30px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.plan-modal-cerrar {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.plan-modal-descripcion {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.plan-modal-categoria {
  margin-bottom: 18px;
}

.plan-modal-categoria h4 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 950;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.plan-modal-categoria ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.plan-modal-categoria li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.plan-modal-categoria li.incluido {
  color: var(--ink);
}

.plan-modal-categoria li.no-incluido {
  color: var(--muted);
  text-decoration: line-through;
}

.plan-modal-icono {
  flex: none;
  font-weight: 900;
}

.plan-modal-categoria li.incluido .plan-modal-icono {
  color: var(--mint);
}

.plan-modal-categoria li.no-incluido .plan-modal-icono {
  color: var(--muted);
}

.plan-modal-ia {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(16, 103, 232, .08);
}

.plan-modal-ia p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.pricing-promo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: -6px 0 26px;
  padding: 22px 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(20, 32, 51, .95), rgba(15, 49, 90, .9));
  color: #fff;
  box-shadow: var(--shadow);
}

.pricing-promo img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  object-fit: cover;
  flex: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.pricing-promo-eyebrow {
  margin: 0 0 4px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pricing-promo h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.6vw, 26px);
}

.pricing-promo p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.plan-precio {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}

.plan-precio-antes {
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

.plan-precio-fundador {
  font-size: 26px;
  color: var(--blue-dark);
}

.plan-precio-ahorro {
  flex-basis: 100%;
  color: var(--mint);
  font-size: 12.5px;
  font-weight: 900;
}

.plan-precio-nota {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.pricing-tabla-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(20, 32, 51, .08);
}

.pricing-tabla {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.pricing-tabla caption {
  text-align: left;
  padding: 22px 24px 6px;
  font-weight: 900;
  font-size: 15px;
  color: var(--ink);
}

.pricing-tabla th,
.pricing-tabla td {
  padding: 14px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.pricing-tabla thead th {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pricing-tabla tbody th {
  text-align: left;
  font-weight: 800;
  white-space: normal;
}

.pricing-tabla td.si {
  color: var(--mint);
  font-weight: 900;
  font-size: 16px;
}

.pricing-tabla td.no {
  color: var(--muted);
  font-weight: 700;
}

.pricing-tabla th:nth-child(3),
.pricing-tabla td:nth-child(3) {
  background: rgba(16, 103, 232, .07);
}

.growth {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: start;
}

.growth ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.growth li {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  font-weight: 900;
}

.growth li.giro-proximamente {
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-weight: 700;
  background: rgba(255,255,255,.36);
  border-style: dashed;
}

.growth li.giro-proximamente::after {
  content: "Proximamente";
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

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

blockquote {
  margin: 0;
}

cite {
  color: var(--blue);
  font-style: normal;
  font-weight: 950;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 28px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.lead-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255,255,255,.76);
  font: inherit;
  font-weight: 750;
}

.lead-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700 !important;
  font-size: 13px;
  line-height: 1.5;
}

.lead-consent input {
  min-height: auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex: none;
}

.lead-consent a {
  text-decoration: underline;
}

.lead-result {
  display: grid;
  gap: 6px;
  min-height: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.lead-result strong {
  color: var(--ink);
  font-size: 16px;
}

.lead-result b {
  color: var(--blue);
}

.lead-result.error {
  color: #b42318;
}

.registro-acceso-inicial {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  margin: 4px 0;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.registro-acceso-inicial strong {
  font-size: 13px;
}

/* Panel de exito del registro / pagina de descarga persistente --
   antes de esto este momento (clave de licencia + link del
   instalador) se pintaba con el mismo estilo diminuto y gris que un
   mensaje de error de formulario, sin ninguna jerarquia visual para
   el paso mas importante de todo el flujo. */
.registro-exito {
  display: grid;
  gap: 14px;
}

.registro-exito-check {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--mint);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.registro-exito h3 {
  margin: 0;
  font-size: 20px;
  color: var(--ink);
}

.registro-exito > p {
  margin: -6px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
}

.registro-clave {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(16, 103, 232, .07);
  border: 1px solid rgba(16, 103, 232, .18);
}

.registro-clave span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.registro-clave strong {
  font-family: "Courier New", monospace;
  font-size: 15px;
  color: var(--blue-dark);
  letter-spacing: .02em;
  word-break: break-all;
}

.registro-pasos {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.4;
}

.registro-pasos li::marker {
  color: var(--blue);
  font-weight: 900;
}

.registro-descarga-btn {
  justify-content: center;
  text-align: center;
  font-size: 14.5px;
}

.registro-aviso-windows {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(243, 162, 27, .12);
  border: 1px solid rgba(243, 162, 27, .32);
}

.registro-aviso-windows strong {
  color: #8a5c0a;
  font-size: 13px;
}

.registro-aviso-windows p {
  margin: 0;
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.5;
}

.contact-intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-whatsapp {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: fit-content;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(24, 184, 143, .12);
  border: 1px solid rgba(24, 184, 143, .28);
  color: var(--ink);
}

.contact-whatsapp span {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
}

.contact-whatsapp strong {
  color: var(--mint);
  font-size: 15px;
}

.contact-panel-wrap {
  display: grid;
  gap: 14px;
}

.contact-tabs {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 32, 51, .05);
  width: fit-content;
  max-width: 100%;
}

.contact-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: none;
  color: var(--muted);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.contact-tab.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  box-shadow: 0 12px 26px rgba(16, 103, 232, .3);
}

.contact-panel[hidden] {
  display: none;
}

.cuenta-nexo-lista {
  display: grid;
  gap: 12px;
}

.cuenta-nexo-tarjeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cuenta-nexo-tarjeta span {
  font-weight: 800;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero,
  .demo-section,
  .growth,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-preview {
    min-height: auto;
  }

  .benefits,
  .feature-list,
  .plans,
  .quotes {
    grid-template-columns: minmax(0, 1fr);
  }

  .preview-grid,
  .preview-pos,
  .growth ul {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 560px) {
  .header-cta {
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .pricing-promo {
    flex-direction: column;
    text-align: center;
  }

  .contact-tabs {
    width: 100%;
  }

  .contact-tab {
    flex: 1;
    padding: 0 10px;
  }

  .contact-whatsapp {
    width: 100%;
  }
}

/* Paginas legales (terminos, privacidad) */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) clamp(18px, 6vw, 32px) 96px;
}

.legal-page .eyebrow {
  display: block;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.legal-page h1 {
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 10px;
}

.legal-page .legal-meta {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-page .legal-notice {
  background: rgba(243, 162, 27, .12);
  border: 1px solid rgba(243, 162, 27, .35);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink);
  margin: 24px 0 40px;
}

.legal-page h2 {
  font-size: 20px;
  margin: 40px 0 12px;
}

.legal-page p,
.legal-page li {
  color: var(--ink);
  line-height: 1.7;
  font-size: 15px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 22px;
  margin: 0 0 16px;
}

.legal-page li {
  margin-bottom: 8px;
}

.legal-page a {
  color: var(--blue);
  text-decoration: underline;
}

.legal-page .legal-toc {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--glass);
  padding: 18px 20px;
  margin: 28px 0;
}

.legal-page .legal-toc p {
  font-weight: 900;
  margin: 0 0 8px;
}

.legal-page .legal-toc ol {
  columns: 2;
  margin: 0;
}

@media (max-width: 560px) {
  .legal-page .legal-toc ol {
    columns: 1;
  }
}

/* Nexo IA -- seccion teaser en la pagina de inicio */

.nexo-showcase {
  display: grid;
  grid-template-columns: minmax(200px, 300px) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: clamp(50px, 7vw, 96px) clamp(18px, 6vw, 88px);
  background:
    radial-gradient(circle at 12% 20%, rgba(16, 103, 232, .10), transparent 320px),
    radial-gradient(circle at 88% 82%, rgba(24, 184, 143, .10), transparent 320px);
}

.nexo-showcase-mascota {
  position: relative;
  display: flex;
  justify-content: center;
}

.nexo-showcase-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 24px 60px rgba(16, 103, 232, .28);
  animation: nexoFlotar 4.5s ease-in-out infinite;
}

.nexo-showcase-spark {
  position: absolute;
  top: 4px;
  right: calc(50% - 108px);
  font-size: 26px;
  color: var(--blue);
  animation: nexoDestello 2.4s ease-in-out infinite;
}

.nexo-showcase-content h2 {
  max-width: 620px;
}

.nexo-showcase-content > p {
  max-width: 560px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.nexo-showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.nexo-showcase-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 850;
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(20, 32, 51, .06);
}

@keyframes nexoFlotar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes nexoDestello {
  0%, 100% { opacity: .35; transform: scale(.85) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(18deg); }
}

@media (max-width: 760px) {
  .nexo-showcase {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .nexo-showcase-content h2,
  .nexo-showcase-content > p {
    max-width: none;
  }

  .nexo-showcase-tags {
    justify-content: center;
  }
}

/* Panel del dueno -- notificaciones al instante, visibilidad remota */

.dueno-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 44px;
  align-items: center;
  padding: clamp(50px, 7vw, 96px) clamp(18px, 6vw, 88px);
}

.dueno-showcase-content h2 {
  max-width: 560px;
}

.dueno-showcase-content > p {
  max-width: 520px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.dueno-showcase-lista {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
  padding: 0;
  list-style: none;
}

.dueno-showcase-lista li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 750;
  font-size: 14.5px;
}

.dueno-showcase-lista li::before {
  content: "\2713";
  color: var(--mint);
  font-weight: 900;
  flex: none;
}

.dueno-showcase-notifs {
  display: grid;
  gap: 12px;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.82), rgba(232,239,250,.58));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.dueno-notif {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(20, 32, 51, .08);
}

.dueno-notif:nth-child(2) {
  transform: scale(.98);
  opacity: .92;
}

.dueno-notif:nth-child(3) {
  transform: scale(.96);
  opacity: .84;
}

.dueno-notif-icono {
  display: flex;
  flex: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(16, 103, 232, .10);
  font-size: 18px;
}

.dueno-notif strong {
  display: block;
  font-size: 13.5px;
  color: var(--ink);
}

.dueno-notif span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .dueno-showcase {
    grid-template-columns: minmax(0, 1fr);
  }

  .dueno-showcase-content h2,
  .dueno-showcase-content > p {
    max-width: none;
  }
}

/* Nexo IA -- pagina dedicada (/nexo-ia) */

.nexo-hero {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 108px) clamp(18px, 6vw, 88px) clamp(50px, 7vw, 96px);
}

.nexo-hero-mascota {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto 30px;
}

.nexo-hero-img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 30px 70px rgba(16, 103, 232, .32);
  animation: nexoFlotar 5s ease-in-out infinite, nexoBrillo 3s ease-in-out infinite;
}

.nexo-hero-flotante {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 14px 30px rgba(20, 32, 51, .18);
}

.nexo-hero-flotante-1 {
  top: -8px;
  left: -20px;
  animation: nexoOrbita1 6s ease-in-out infinite;
}

.nexo-hero-flotante-2 {
  bottom: 4px;
  right: -24px;
  animation: nexoOrbita2 7s ease-in-out infinite;
}

.nexo-hero-spark {
  position: absolute;
  font-size: 22px;
  color: var(--mint);
}

.nexo-hero-spark-1 {
  top: 12px;
  right: 6px;
  animation: nexoDestello 2.2s ease-in-out infinite;
}

.nexo-hero-spark-2 {
  bottom: 22px;
  left: 2px;
  color: var(--blue);
  animation: nexoDestello 2.8s ease-in-out infinite .4s;
}

.nexo-hero h1 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.nexo-hero-copy {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.nexo-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

@keyframes nexoBrillo {
  0%, 100% { box-shadow: 0 30px 70px rgba(16, 103, 232, .32); }
  50% { box-shadow: 0 30px 90px rgba(24, 184, 143, .38); }
}

@keyframes nexoOrbita1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(-10deg); }
}

@keyframes nexoOrbita2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(16px) rotate(10deg); }
}

.nexo-capacidades,
.nexo-conversaciones,
.nexo-planes,
.modulos-nexo {
  padding: clamp(50px, 7vw, 96px) clamp(18px, 6vw, 88px);
}

.modulos-nexo-nota {
  margin: 24px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.modulos-nexo > .btn {
  display: table;
  margin: 16px auto 0;
}

.nexo-capacidad-grid h3 small {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

.nexo-capacidad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.nexo-capacidad-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(20, 32, 51, .08);
}

.nexo-capacidad-icono {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 26px;
}

.nexo-capacidad-grid h3 {
  margin-bottom: 8px;
}

.nexo-capacidad-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.nexo-pilares {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.nexo-pilar {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(20, 32, 51, .08);
}

.nexo-pilar h3 {
  margin: 8px 0;
  color: var(--blue-dark);
}

.nexo-pilar p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.nexo-chat-ejemplos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.nexo-chat-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: 0 18px 48px rgba(20, 32, 51, .08);
}

.nexo-chat-burbuja {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.nexo-chat-burbuja p {
  margin: 0;
}

.nexo-chat-burbuja.usuario {
  justify-self: end;
  background: var(--blue);
  color: #fff;
  border-bottom-right-radius: 6px;
}

.nexo-chat-burbuja.nexo {
  justify-self: start;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 6px;
}

.nexo-chat-burbuja.nexo img {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  border-radius: 999px;
  object-fit: cover;
  flex: none;
}

.nexo-chat-nota {
  margin: 20px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
}

.nexo-planes {
  background: linear-gradient(135deg, rgba(20, 32, 51, .95), rgba(15, 49, 90, .9));
  color: #fff;
}

.nexo-planes .eyebrow {
  color: rgba(255, 255, 255, .72);
}

.nexo-planes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.nexo-planes-grid article {
  position: relative;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .06);
}

.nexo-planes-grid article.destacado {
  border-color: rgba(255, 255, 255, .4);
  background: rgba(255, 255, 255, .1);
}

.nexo-planes-grid h3 {
  margin: 0 0 8px;
}

.nexo-planes-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-weight: 700;
  line-height: 1.5;
}

.nexo-planes-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
}

.nexo-planes-badge-pro {
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

.nexo-planes-nota {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 700;
}

.nexo-cta {
  text-align: center;
  padding: clamp(50px, 7vw, 96px) clamp(18px, 6vw, 88px);
}

.nexo-cta h2 {
  max-width: 620px;
  margin: 0 auto 22px;
}

@media (max-width: 900px) {
  .nexo-capacidad-grid,
  .nexo-planes-grid,
  .nexo-pilares {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .nexo-capacidad-grid,
  .nexo-planes-grid,
  .nexo-pilares,
  .nexo-chat-ejemplos {
    grid-template-columns: minmax(0, 1fr);
  }

  .nexo-hero-flotante {
    display: none;
  }
}
