:root {
  --bg: #1a1512;
  --bg-soft: #2a221c;
  --paper: #fffaf6;
  --ink: #1f1a17;
  --soft: #6f655c;
  --brand: #ff6b00;
  --deep: #e85d04;
  --teal: #0d9488;
  --line: rgba(255, 107, 0, 0.18);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --page-pad: clamp(1rem, 3vw, 2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* —— Nav —— */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 0.55rem clamp(1rem, 2.5vw, 2rem);
  margin: 0;
  background: rgba(255, 250, 246, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.brand img {
  height: 48px;
  width: auto;
  max-width: min(220px, 55vw);
  display: block;
  object-fit: contain;
  object-position: left center;
}
.nav nav {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.92rem;
}
.nav nav a:not(.btn-nav) { color: var(--soft); }
.nav nav a:not(.btn-nav):hover { color: var(--ink); }
.btn-nav {
  background: var(--brand);
  color: #fff !important;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.25);
}
.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #128c7e !important;
  font-weight: 700;
}
.nav-wa:hover { color: #075e54 !important; }
.nav-wa svg { flex-shrink: 0; }

/* —— Hero —— */
.hero {
  position: relative;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem var(--page-pad) 1.85rem;
  overflow: visible;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background:
    radial-gradient(circle at 40% 40%, rgba(255, 107, 0, 0.35), transparent 60%),
    radial-gradient(circle at 70% 60%, rgba(13, 148, 136, 0.22), transparent 55%);
  pointer-events: none;
  animation: glow 8s ease-in-out infinite alternate;
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 26rem;
  animation: rise 0.7s ease-out both;
}
.hero-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  color: var(--ink);
}
.lead {
  margin: 0;
  font-size: 0.98rem;
  color: var(--soft);
  line-height: 1.5;
  max-width: 38ch;
}
.hero-points {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.hero-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--ink);
}
.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}
.hero-points strong { font-weight: 700; color: var(--ink); }
.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff !important;
  padding: 0.72rem 1.1rem;
  border-radius: 12px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px rgba(255, 107, 0, 0.28);
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn-primary:hover { background: var(--deep); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.1rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid #e8d9cc;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.btn-ghost:hover { border-color: var(--brand); }
.btn-wa {
  border-color: rgba(18, 140, 126, 0.35);
  color: #0f766e;
}
.btn-wa:hover {
  border-color: #128c7e;
  color: #075e54;
}
.btn-block { width: 100%; }

/* POS screenshot — marco + captura real */
.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  animation: rise 0.9s 0.12s ease-out both;
}
.pos-shell {
  background: linear-gradient(165deg, #2c241e 0%, #1a1512 100%);
  border-radius: 14px 14px 12px 12px;
  padding: 0.45rem;
  width: 100%;
  max-width: none;
  margin-left: auto;
  box-shadow:
    0 18px 40px rgba(26, 21, 18, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}
.pos-top {
  display: flex;
  gap: 0.3rem;
  padding: 0.25rem 0.4rem 0.45rem;
}
.pos-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
.pos-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  background: #fff8f3;
  image-rendering: auto;
}

/* —— Sections —— */
/* —— Para quién —— */
.for-who {
  padding: 2.75rem 0 3rem;
  background: #1a1512;
  color: #f5efe9;
}
.for-who h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.for-who .section-lead { color: rgba(245, 239, 233, 0.72); }
.who-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 0.5rem;
}
@media (min-width: 720px) {
  .who-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.who-yes h3, .who-no h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
}
.who-yes h3 { color: #5eead4; }
.who-no h3 { color: #fb923c; }
.who-yes ul, .who-no ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.who-yes li, .who-no li {
  position: relative;
  padding-left: 1.2rem;
  color: rgba(245, 239, 233, 0.88);
  line-height: 1.4;
  font-size: 0.98rem;
}
.who-yes li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #5eead4;
  font-weight: 700;
}
.who-no li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #fb923c;
  font-weight: 700;
}
.who-note {
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
  color: rgba(245, 239, 233, 0.55);
  max-width: 42ch;
}

.price, .register, .quote {
  padding: 2.5rem 0;
}
.price {
  padding: 1.25rem 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.06), transparent 40%),
    #fff;
  border-top: 1px solid #f0e4d8;
}
#precio {
  scroll-margin-top: 5.5rem;
}
.register {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 107, 0, 0.18), transparent 55%),
    linear-gradient(165deg, #12100e 0%, #1a1512 45%, #0d0b0a 100%);
  color: #f5efe9;
  border-top: 1px solid rgba(255, 107, 0, 0.28);
}
.register h2 { color: #fffaf6; }
.register .section-lead { color: rgba(245, 239, 233, 0.72); }
.register label { color: rgba(245, 239, 233, 0.9); }
.register input {
  background: rgba(255, 250, 246, 0.96);
  color: var(--ink);
  border-color: rgba(255, 107, 0, 0.3);
}
.register input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.28);
}
.pass-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.pass-wrap input {
  width: 100%;
  padding-right: 2.75rem;
  box-sizing: border-box;
}
.pass-toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #8a7a6c;
  cursor: pointer;
  border-radius: 8px;
  padding: 0;
}
.pass-toggle:hover,
.pass-toggle.is-on { color: var(--ink); background: rgba(0,0,0,0.05); }
.pass-toggle svg { display: block; }
.register .msg.ok { color: #5eead4; }
.register .msg.err { color: #fca5a5; }
.register .msg.ok a { color: #fdba74; text-decoration: underline; }
.quote {
  background:
    linear-gradient(160deg, #1f1a17 0%, #2a221c 55%, #1a1512 100%);
  color: #f5efe9;
  border-top: 1px solid rgba(255, 107, 0, 0.22);
  border-bottom: 1px solid #f0e4d8;
}
.quote .section-lead { color: rgba(245, 239, 233, 0.72); }
.quote h2 { color: #fffaf6; }
.quote label { color: rgba(245, 239, 233, 0.9); }
.quote input, .quote textarea {
  background: rgba(255, 250, 246, 0.96);
  color: var(--ink);
  border-color: rgba(255, 107, 0, 0.28);
}
.quote-list {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.quote-list li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(245, 239, 233, 0.88);
  line-height: 1.4;
  font-size: 0.95rem;
}
.quote-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
}
.quote form { display: grid; gap: 0.85rem; }
.quote textarea {
  padding: 0.8rem 0.9rem;
  border: 1px solid #e8d9cc;
  border-radius: 12px;
  font: inherit;
  resize: vertical;
  min-height: 5rem;
}
.quote textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}
.quote-hint {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 239, 233, 0.55);
  text-align: center;
}
.price-note {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--teal);
  background: rgba(13, 148, 136, 0.08);
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: none;
}
.amount-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 0.2rem;
}
.price-install {
  margin: 0 0 1.35rem;
  padding: 1rem 1.1rem;
  border: 1px solid #e8d9cc;
  border-radius: 14px;
  background: #fffaf6;
  max-width: 52ch;
}
.price-install-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.45rem;
}
.price-install-head strong {
  font-size: 1.02rem;
  color: var(--ink);
}
.price-install-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f766e;
  background: rgba(13, 148, 136, 0.12);
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
}
.price-install p {
  margin: 0 0 0.55rem;
  color: var(--soft);
  font-size: 0.94rem;
  line-height: 1.45;
}
.price-install-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}
.price-install-link:hover {
  text-decoration: underline;
}
.price-cta { margin-top: 0; }
.price-cta .btn-ghost {
  border-color: #e8d9cc;
  color: var(--ink);
}
.price-cta .btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.section-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
  box-sizing: border-box;
}
.section-inner.narrow {
  max-width: 440px;
  margin: 0 auto;
  padding: 0 var(--page-pad);
}
.price-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
.price .section-lead {
  margin: 0 0 0.85rem;
}
.price-detail-title {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
  color: var(--ink);
}
.price-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.5rem;
  margin: 0 0 1.25rem;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid #f0e4d8;
  width: 100%;
}
.price-details article {
  min-width: 0;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid #f3ebe3;
}
.price-details article:last-child { border-bottom: 0; padding-bottom: 0; }
.price-details h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.price-details p {
  margin: 0;
  color: var(--soft);
  font-size: 0.95rem;
  line-height: 1.5;
}
@media (min-width: 700px) {
  .price-details {
    grid-template-columns: 1fr 1fr;
  }
  .price-details article {
    border-bottom: 0;
    padding-bottom: 0;
    padding-top: 0.15rem;
  }
}
@media (min-width: 1100px) {
  .price-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem 1.75rem;
  }
}
.price h2, .register h2, .quote h2 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}
.section-lead {
  margin: 0 0 1.15rem;
  color: var(--soft);
  font-size: 0.98rem;
}
.price-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
.amount {
  font-size: clamp(2.1rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}
.per { color: var(--soft); margin-top: 0.35rem; font-weight: 500; }
.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.price-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
  line-height: 1.4;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal);
}

.register form {
  display: grid;
  gap: 0.85rem;
}
label {
  font-size: 0.85rem;
  font-weight: 600;
  display: grid;
  gap: 0.35rem;
}
input {
  padding: 0.8rem 0.9rem;
  border: 1px solid #e8d9cc;
  border-radius: 12px;
  font: inherit;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}
.msg { font-size: 0.9rem; margin: 0; }
.msg.ok { color: var(--teal); }
.msg.err { color: #dc2626; }

footer,
.site-footer {
  text-align: center;
  padding: 1.75rem 1rem 2.25rem;
  color: rgba(245, 239, 233, 0.7);
  font-size: 0.92rem;
  background: #0d0b0a;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
}
.footer-logo {
  height: 72px;
  width: auto;
  max-width: min(420px, 85vw);
  display: block;
  margin: 0 auto 1rem;
  object-fit: contain;
  padding: 0.65rem 1.15rem;
  background: #fffaf6;
  border-radius: 14px;
}
footer p,
.site-footer p { margin: 0.25rem 0 0; }
.footer-origin { color: rgba(245, 239, 233, 0.88); margin-top: 0 !important; }
.footer-origin strong { color: #fff; }
.footer-wa {
  display: inline;
  margin: 0;
  color: #5eead4;
  font-weight: 700;
}
.footer-wa:hover { color: #99f6e4; text-decoration: underline; }
.footer-legal {
  margin-top: 0.45rem !important;
  padding-top: 0;
  border-top: 0;
  font-size: 0.82rem;
  color: rgba(245, 239, 233, 0.5);
  line-height: 1.45;
}

.wa-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 40;
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.15s ease, background 0.15s ease;
}
.wa-float:hover {
  background: #1ebe57;
  transform: translateY(-2px) scale(1.04);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes glow {
  from { transform: translate(0, 0) scale(1); opacity: 0.85; }
  to { transform: translate(-4%, 3%) scale(1.06); opacity: 1; }
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.45fr);
    gap: 1.75rem;
    padding: 0.75rem var(--page-pad) 2rem;
    align-items: center;
  }
  .hero-visual {
    min-width: 0;
    width: 100%;
  }
  .pos-shell {
    max-width: none;
  }
  .price-row {
    grid-template-columns: minmax(180px, 0.35fr) 1fr;
    align-items: start;
    gap: 1.5rem 2.5rem;
    margin-bottom: 1rem;
  }
  .price-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 1.5rem;
  }
}

@media (min-width: 1200px) {
  .hero {
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.55fr);
    gap: 2rem;
  }
}

@media (max-width: 879px) {
  .hero { padding: 0.35rem var(--page-pad) 1.5rem; }
  .pos-shell { max-width: 100%; margin: 0 auto; }
}

@media (max-width: 600px) {
  .nav nav a:not(.btn-nav):not(.nav-wa) { display: none; }
  .brand img { height: 42px; max-width: min(180px, 55vw); }
  .footer-logo { height: 48px; }
}
