.elementor-10 .elementor-element.elementor-element-4186603{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a882ec4 *//* =========================================================
   NEXT BYTE — Landing page
   Sistema de diseño: dark mode + acento naranja de marca
   ========================================================= */

:root {
  /* Color */
  --bg: #050505;
  --bg-elevated: #0e0e0e;
  --surface: #131313;
  --surface-2: #1a1a1a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f3;
  --text-muted: #9a9a97;
  --text-faint: #6b6b68;
  --accent: #ff4b00;
  --accent-light: #ff7a3d;
  --accent-dim: rgba(255, 75, 0, 0.12);

  /* Tipografía: pila afín a Inter, sin dependencias externas */
  --font-sans: "Inter", -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SFMono-Regular", "Consolas", "Liberation Mono", Menlo, monospace;

  /* Layout */
  --radius: 12px;
  --radius-sm: 8px;
  --container-w: 1160px;
  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

/* ---------- Reset base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

img, svg { display: block; max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 760px; }

.text-accent { color: var(--accent); }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-light); }

.btn--ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent-light); }

.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--block { width: 100%; margin-top: 16px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
}
.navbar__logo-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
}
.navbar__nav {
  display: flex;
  gap: 28px;
}
.navbar__nav a {
  font-size: 14.5px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.navbar__nav a:hover { color: var(--text); }

.navbar__actions { display: flex; align-items: center; gap: 14px; }

.navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}
.navbar__toggle span {
  display: block;
  height: 2px;
  width: 16px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.navbar__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero__note {
  font-size: 14px;
  color: var(--text-faint);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}
.hero__note strong { color: var(--text); }

/* ---- Elemento firma: la boleta ---- */
.hero__visual { display: flex; justify-content: center; }
.ticket {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: #f7f5ef;
  color: #1a1a1a;
  border-radius: 4px;
  padding: 26px 22px 34px;
  font-family: var(--font-mono);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
  animation: ticket-float 5s ease-in-out infinite;
}
@keyframes ticket-float {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}
.ticket::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 18px;
  background:
    linear-gradient(-45deg, #f7f5ef 9px, transparent 0),
    linear-gradient(45deg, #f7f5ef 9px, transparent 0);
  background-size: 18px 18px;
  background-repeat: repeat-x;
}
.ticket__brand {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
}
.ticket__sub {
  text-align: center;
  font-size: 11px;
  color: #6b6b68;
  margin-top: 2px;
}
.ticket__divider {
  border-top: 1px dashed #b8b5aa;
  margin: 14px 0;
}
.ticket__lines li {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  padding: 4px 0;
}
.ticket__total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
  padding-top: 2px;
}
.ticket__foot {
  font-size: 10.5px;
  color: #6b6b68;
  text-align: center;
  margin-top: 14px;
}
.ticket__barcode {
  margin-top: 12px;
  height: 30px;
  background: repeating-linear-gradient(90deg, #1a1a1a 0 2px, transparent 2px 5px);
  opacity: 0.85;
}

/* =========================================================
   SECCIONES GENERALES
   ========================================================= */
main > section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.section-head {
  max-width: 620px;
  margin: 0 auto 52px;
  text-align: center;
}
.section-head h2 {
  font-size: clamp(26px, 3.4vw, 36px);
  margin-bottom: 12px;
}
.section-head__desc {
  color: var(--text-muted);
  font-size: 16px;
}

/* =========================================================
   CARACTERÍSTICAS
   ========================================================= */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.feature-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; }

.badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.badge--plan {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}
.badge--best {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.features__extra {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.features__extra-label {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 14px;
}
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; }
.chip {
  font-size: 13px;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
}
.chip em { color: var(--accent-light); font-style: normal; }

/* =========================================================
   PLANES
   ========================================================= */
.plans__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-col__title { font-size: 19px; margin-bottom: 6px; }
.plan-col__desc { color: var(--text-muted); font-size: 13.5px; margin-bottom: 20px; }

.plan-col--pro,
.plan-col--multi {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px 4px;
  background: var(--bg-elevated);
}
.plan-col--pro { border-color: rgba(255, 75, 0, 0.35); }

.plan-col__tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.plan-col__tag--pro {
  background: var(--accent);
  color: #fff;
}
.plan-col__tag--multi {
  background: var(--surface-2);
  color: var(--text-muted);
  border: 1px solid var(--border-strong);
}

.plan-col__includes {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.plan-col__features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 24px;
}
.plan-col__features li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
}
.plan-col__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
}
.plan-col__features code {
  font-family: var(--font-mono);
  font-size: 12px;
  background: var(--surface-2);
  padding: 1px 5px;
  border-radius: 4px;
  color: var(--text);
}

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  margin-bottom: 16px;
}
.plan-card--best {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-dim), var(--surface) 60%);
}
.plan-card__variant {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.plan-card__price {
  font-family: var(--font-mono);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}
.plan-card__price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.plan-card__note {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 10px;
  line-height: 1.4;
}

/* =========================================================
   CÓMO FUNCIONA
   ========================================================= */
.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how__step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.how__num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 700;
  margin-bottom: 16px;
}
.how__step h3 { font-size: 17px; margin-bottom: 8px; }
.how__step p { color: var(--text-muted); font-size: 14.5px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.faq__item summary {
  cursor: pointer;
  padding: 16px 0;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  margin-left: 12px;
}
.faq__item[open] summary::after { content: "–"; }
.faq__item p {
  color: var(--text-muted);
  font-size: 14.5px;
  padding-bottom: 18px;
  line-height: 1.6;
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final__inner {
  text-align: center;
  max-width: 560px;
}
.cta-final__inner h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}
.cta-final__inner p {
  color: var(--text-muted);
  margin-bottom: 26px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
  background: var(--bg-elevated);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer__brand { display: flex; flex-direction: column; gap: 10px; }
.footer__brand p { color: var(--text-muted); font-size: 13.5px; max-width: 240px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-faint); margin-bottom: 4px; }
.footer__col a { color: var(--text-muted); font-size: 14px; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  font-size: 13px;
  color: var(--text-faint);
}

/* =========================================================
   BARRA DE COMPRA FIJA
   ========================================================= */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: 90;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  transition: bottom 0.3s ease;
}
.sticky-cta.is-visible { bottom: 0; }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}
.sticky-cta__inner p { font-size: 14px; color: var(--text-muted); }
.sticky-cta__inner strong { color: var(--text); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 320px; margin: 0 auto 12px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .plans__columns { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .how__steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .navbar__nav { display: none; }
  .navbar__toggle { display: flex; }
  .navbar__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
  }
  .navbar__actions .btn--sm { display: none; }
  .hero { padding: 128px 0 72px; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .sticky-cta__inner { flex-direction: column; align-items: flex-start; }
}/* End custom CSS */