/* Rediseño registro tiendas — overlay cyan/navy (v7) */
:root {
  --cyan: #08d3e3;
  --cyan2: #00b8cc;
  --navy: #07172d;
  --navy2: #102d50;
  --ink: #0b1828;
  --text: #17314b;
  --muted: #708397;
  --bg: #f4f8fb;
  --line: #dfe9f1;
  --white: #fff;
  --shadow: 0 24px 70px rgba(7, 23, 45, 0.12);
  --web-primary: #07172d;
  --web-primary-2: #102d50;
  --web-accent: #08d3e3;
  --web-accent-2: #00b8cc;
  --web-accent-soft: #edfafd;
  --web-footer: #061326;
}

body.rt-page,
body.zas-body {
  background: var(--bg) !important;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.zas-announce {
  display: none !important;
}

/* NAV — dark sticky like redesign */
.zas-nav {
  position: sticky !important;
  top: 0;
  z-index: 100;
  height: calc(72px + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(7, 23, 45, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(18px);
  box-shadow: none !important;
}

.zas-nav__inner,
.zas-wrap.zas-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.zas-brand,
.zas-brand__name,
.zas-brand__name span {
  color: #fff !important;
}

.zas-brand img {
  width: 37px !important;
  height: 37px !important;
  border-radius: 11px;
  box-shadow: 0 0 16px rgba(8, 211, 227, 0.28);
}

.zas-nav__links a {
  color: #c7d5e1 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

.zas-nav__links a:hover {
  color: var(--cyan) !important;
}

.zas-btn--ghost {
  display: none !important;
}

.zas-btn--primary {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  border: 0 !important;
  border-radius: 11px !important;
  padding: 10px 15px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  box-shadow: none !important;
}

.zas-nav__burger {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px;
}

.zas-mobile {
  background: rgba(7, 23, 45, 0.98) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.zas-mobile a {
  color: #d6e3ec !important;
}

/* HERO redesign */
.rt-hero,
.wrap > #app > .hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 16%, rgba(8, 211, 227, 0.22), transparent 25%),
    radial-gradient(circle at 8% 88%, rgba(30, 75, 133, 0.46), transparent 31%),
    linear-gradient(135deg, #061427, #0a1930 65%, #102d50) !important;
  border: 0 !important;
  padding: 0 !important;
}

.rt-hero::after {
  content: "";
  position: absolute;
  width: 590px;
  height: 590px;
  right: -270px;
  top: -300px;
  border: 1px solid rgba(8, 211, 227, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(8, 211, 227, 0.025);
  animation: rtSpin 26s linear infinite;
  pointer-events: none;
}

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

.rt-hero-glow {
  display: none !important;
}

.rt-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 20px 95px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow,
.rt-hero .hero-eyebrow,
.wrap .hero-eyebrow {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(8, 211, 227, 0.29);
  background: rgba(8, 211, 227, 0.07);
  border-radius: 999px;
  color: var(--cyan) !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 13px var(--cyan);
  animation: rtPulse 1.6s infinite;
}

@keyframes rtPulse {
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.rt-hero h1,
.wrap .hero h1 {
  font-size: clamp(40px, 5vw, 64px) !important;
  line-height: 0.98 !important;
  letter-spacing: -3.2px !important;
  margin: 18px 0 15px !important;
  color: #fff !important;
}

.rt-hero h1 span,
.wrap .hero h1 span {
  color: var(--cyan);
}

.rt-hero p,
.wrap .hero .sub,
.wrap .hero p {
  max-width: 620px;
  color: #b9c8d7 !important;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.hero-primary,
.rt-m-start,
a.hero-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  background: var(--cyan) !important;
  color: var(--navy) !important;
  box-shadow: 0 13px 28px rgba(8, 211, 227, 0.15);
  text-decoration: none !important;
  border: 0 !important;
}

.hero-secondary,
a.hero-secondary {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.035) !important;
  text-decoration: none !important;
}

.rt-hero-metrics {
  display: none !important;
}

/* Hero visual device */
.rt-hero-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.rt-device {
  width: 225px;
  height: 430px;
  border: 7px solid #050c14;
  border-radius: 34px;
  overflow: hidden;
  background: #0a1930;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
  transform: rotate(5deg);
  position: relative;
  z-index: 3;
  animation: rtFloat 4.5s ease-in-out infinite;
}

.rt-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rt-device-notch {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 85px;
  height: 22px;
  background: #02060b;
  border-radius: 0 0 14px 14px;
}

.rt-mini-card {
  position: absolute;
  padding: 12px 14px;
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  z-index: 5;
}

.rt-mini-card strong {
  font-size: 11px;
  display: block;
}

.rt-mini-card small {
  font-size: 9px;
  color: #7c8e9f;
  display: block;
  margin-top: 3px;
}

.rt-m1 {
  top: 18%;
  left: 2%;
  animation: rtFloat 3.3s ease-in-out infinite;
}

.rt-m2 {
  bottom: 12%;
  right: 0;
  animation: rtFloat2 3.8s ease-in-out infinite;
}

.rt-rail {
  position: absolute;
  width: 360px;
  height: 220px;
  border: 2px dashed rgba(8, 211, 227, 0.36);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-15deg);
  animation: rtRoute 3s ease-in-out infinite;
}

@keyframes rtFloat {
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes rtFloat2 {
  50% {
    transform: translateY(10px);
  }
}

@keyframes rtRoute {
  50% {
    opacity: 0.7;
    transform: rotate(-15deg) scale(1.02);
  }
}

.hero-promo-card,
.rt-m-promo-card {
  display: none !important;
}

.hero-note {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 19px;
  color: #8fa5b8;
  font-size: 11px;
}

.hero-note b {
  color: #fff;
}

/* Trust strip — hide to match lean redesign */
.trust-strip,
.rt-m-trust {
  display: none !important;
}

/* Shell / layout */
.rt-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px 95px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: transparent !important;
}

.rt-aside {
  position: sticky;
  top: 95px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aside-step-card,
.rt-aside-block,
.help-card {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 21px !important;
  padding: 21px !important;
  box-shadow: 0 10px 30px rgba(7, 23, 45, 0.03) !important;
}

.aside-label {
  font-size: 9px !important;
  font-weight: 900 !important;
  letter-spacing: 1.4px !important;
  color: #8a9aab !important;
  text-transform: uppercase;
}

.aside-step-card h2 {
  font-size: 22px !important;
  letter-spacing: -1px !important;
  margin: 7px 0 6px !important;
  color: var(--ink) !important;
}

.aside-step-card > p {
  font-size: 11px !important;
  color: var(--muted) !important;
  line-height: 1.55 !important;
}

.process-list {
  display: grid;
  gap: 5px;
  margin-top: 18px;
}

.process-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 10px !important;
  border-radius: 12px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.process-item.active {
  background: #eefbfd !important;
}

.process-item > span:first-child,
.process-item > span {
  width: 29px !important;
  height: 29px !important;
  border-radius: 9px !important;
  background: #eef3f6 !important;
  color: #72859a !important;
  display: grid !important;
  place-items: center;
  font-size: 10px !important;
  font-weight: 900 !important;
  flex-shrink: 0;
}

.process-item.active > span:first-child,
.process-item.active > span {
  background: var(--cyan) !important;
  color: var(--navy) !important;
}

.process-item strong {
  display: block;
  font-size: 11px;
  color: var(--ink);
}

.process-item small {
  font-size: 10px;
  color: #8c9aaa;
}

.rt-counter {
  margin-top: 0 !important;
  padding: 15px !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, #07172d, #12385e) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: hidden;
}

.rt-counter .counter-glow {
  display: none !important;
}

.rt-counter .lbl {
  color: #9eb3c6 !important;
  font-size: 9px !important;
}

.rt-counter .counter-main strong,
.rt-counter strong {
  display: block;
  color: var(--cyan) !important;
  font-size: 28px !important;
  letter-spacing: -1px;
}

.rt-counter .counter-bar {
  background: rgba(255, 255, 255, 0.1) !important;
  height: 4px !important;
  border-radius: 9px;
  overflow: hidden;
  margin: 8px 0;
}

.rt-counter .counter-bar span {
  background: var(--cyan) !important;
}

.rt-aside-block {
  display: none !important;
}

.help-card {
  background: #f4f8fa !important;
  font-size: 11px;
  color: #718398;
}

.help-card strong {
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}

.rt-help-mail {
  color: #078a97 !important;
  font-weight: 800 !important;
}

/* Form card */
#app .form-body,
.form-body,
.rt-m-form-card {
  background: #fff !important;
  border: 1px solid var(--line) !important;
  border-radius: 25px !important;
  padding: 31px 34px !important;
  box-shadow: var(--shadow) !important;
}

.form-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.form-kicker {
  color: #078a97 !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.form-top h2 {
  font-size: 25px !important;
  letter-spacing: -1.2px !important;
  margin: 10px 0 5px !important;
  color: var(--ink) !important;
}

.form-lede {
  font-size: 12px !important;
  color: var(--muted) !important;
  line-height: 1.55 !important;
}

.secure-pill {
  white-space: nowrap;
  background: #f2fbf5 !important;
  color: #157447 !important;
  border: 1px solid #d8efdf !important;
  padding: 9px 10px !important;
  border-radius: 10px !important;
  font-size: 10px !important;
  font-weight: 800 !important;
}

.promo-notice {
  display: flex !important;
  gap: 11px;
  align-items: flex-start;
  margin: 21px 0 !important;
  padding: 13px 14px !important;
  border-radius: 14px !important;
  background: #effcff !important;
  border: 1px solid #bdeff3 !important;
  box-shadow: none !important;
}

.promo-notice-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--cyan);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.promo-notice strong {
  font-size: 12px;
  display: block;
}

.promo-notice span {
  font-size: 11px;
  color: #547084;
  line-height: 1.45;
  display: block;
  margin-top: 2px;
}

.form-progress {
  padding: 11px 12px !important;
  border-radius: 12px !important;
  background: #f7f9fa !important;
  border: 1px solid var(--line) !important;
  margin-bottom: 25px !important;
}

.progress-top {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  color: #75869a;
}

.progress-top b,
.progress-top strong {
  color: var(--navy) !important;
}

.progress-track {
  height: 4px !important;
  margin-top: 7px;
  background: #e6edf2 !important;
  border-radius: 9px;
  overflow: hidden;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--cyan)) !important;
}

.form-section-head h2,
.form-section-block h2 {
  color: var(--ink) !important;
}

.form-section-head .section-number,
.form-section-head .num {
  background: #edfafd !important;
  color: #078893 !important;
}

.field label,
label {
  color: #435b72;
}

.field input,
.field select,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
  border-color: #dbe6ed !important;
  border-radius: 10px !important;
  background: #fbfdfe !important;
}

.field input:focus,
.field select:focus,
input:focus,
select:focus {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 0 3px rgba(8, 211, 227, 0.1) !important;
}

.wizard-btn-next,
#btn,
button#btn,
.wizard-btn-next {
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: 11px !important;
  font-weight: 900 !important;
}

.wizard-btn-next:hover,
#btn:hover:not(.is-terms-locked) {
  background: var(--cyan) !important;
  color: var(--navy) !important;
}

.wizard-btn-prev {
  background: #eef3f6 !important;
  color: #536a7e !important;
  border-radius: 11px !important;
}

.choice-card:has(input:checked),
.segmented label:has(input:checked) span,
.entity label:has(input:checked) {
  border-color: var(--cyan) !important;
  background: #eefbfc !important;
}

.upload-card,
.upload {
  border-color: #b9cdd8 !important;
  border-radius: 13px !important;
}

/* Compact end footer */
.zas-footer {
  padding: 28px 0 35px !important;
  text-align: center !important;
  background: #061326 !important;
  color: #8095a8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.zas-footer__grid {
  display: none !important;
}

.zas-footer__copy {
  margin: 0 !important;
  font-size: 11px !important;
}

.rt-end {
  padding: 28px 0 35px;
  text-align: center;
  background: #061326;
  color: #8095a8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.rt-end-logo {
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  letter-spacing: -1px;
}

.rt-end-logo em {
  color: var(--cyan);
  font-style: normal;
}

.rt-end p {
  font-size: 11px;
  margin-top: 5px;
}

.rt-end-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.rt-end-links a {
  font-size: 11px;
  color: #aab9c6;
  text-decoration: underline;
}

/* Mobile hero in wrap */
.wrap {
  max-width: none !important;
  padding: 0 !important;
}

.wrap > #app > .hero {
  padding: 60px 20px 45px !important;
}

.wrap .rt-m-metrics {
  display: none !important;
}

.wrap .form-body.rt-m-form-card,
.wrap #registro {
  margin: 24px 14px 40px !important;
}

@media (max-width: 920px) {
  .rt-hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 20px 45px;
    gap: 36px;
  }

  .rt-hero-visual {
    min-height: 420px;
  }

  .rt-shell {
    grid-template-columns: 1fr;
    padding: 38px 16px 60px;
  }

  .rt-aside {
    position: static;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

@media (max-width: 650px) {
  .zas-nav__links {
    display: none !important;
  }

  .rt-hero h1,
  .wrap .hero h1 {
    font-size: 42px !important;
    letter-spacing: -2.4px !important;
  }

  .rt-device {
    width: 205px;
    height: 400px;
  }

  #app .form-body,
  .form-body,
  .rt-m-form-card {
    padding: 22px 18px !important;
    border-radius: 20px !important;
  }

  .form-top {
    display: block;
  }

  .secure-pill {
    display: inline-flex;
    margin-top: 12px;
  }

  .wizard-nav {
    position: sticky;
    bottom: 0;
    background: #fff;
    margin-inline: -18px;
    padding: 14px 18px;
    border-top: 1px solid var(--line);
    z-index: 3;
  }
}
