/* ══════════════════════════════════════════════════════════════
   NETO BUSINESS · MASTER CORPORATE LIGHT DESIGN SYSTEM 2026
   Inspirado en Square / Shopify / Loyverse para el Comercio Venezolano
   100% Fondos Claros · Alto Contraste · Cero Textos Ocultos · Tasa BCV
   ══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* ── Paleta Luminosa Corporativa ── */
  --nb-bg-deep: #FFFFFF;
  --nb-bg-primary: #F8FAFC;
  --nb-bg-secondary: #F1F5F9;
  --nb-bg-card: #FFFFFF;
  --nb-bg-card-hover: #FFFFFF;
  --nb-bg-card-solid: #FFFFFF;

  /* ── Acentos de Confianza y Moneda ── */
  --nb-green: #059669;
  --nb-green-bright: #10B981;
  --nb-green-glow: rgba(5, 150, 105, 0.15);
  --nb-green-subtle: rgba(5, 150, 105, 0.08);
  --nb-teal: #0D9488;
  --nb-cyan: #0284C7;
  --nb-amber: #D97706;
  --nb-amber-subtle: rgba(217, 119, 6, 0.08);
  --nb-red: #DC2626;
  --nb-red-subtle: rgba(220, 38, 38, 0.08);
  --nb-purple: #7C3AED;

  /* ── Bordes y Separadores ── */
  --nb-border: #E2E8F0;
  --nb-border-subtle: #F1F5F9;
  --nb-border-highlight: #059669;

  /* ── Tipografía (Alto Contraste Estricto) ── */
  --nb-text-primary: #0F172A;
  --nb-text-secondary: #334155;
  --nb-text-muted: #64748B;
  --nb-font-heading: 'Outfit', sans-serif;
  --nb-font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --nb-font-mono: 'JetBrains Mono', monospace;

  /* ── Sombras Suaves Estilo Stripe/Square ── */
  --nb-shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
  --nb-shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06);
  --nb-shadow-lg: 0 12px 32px -4px rgba(15, 23, 42, 0.08);
  --nb-radius-sm: 8px;
  --nb-radius-md: 14px;
  --nb-radius-lg: 20px;
  --nb-radius-xl: 28px;
}

/* Desactivar elementos de videojuego / matrix */
.grid-bg, .money-bg, .hero-scan-line {
  display: none !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  background-color: #FFFFFF !important;
}

body {
  font-family: var(--nb-font-body);
  background-color: #FFFFFF !important;
  color: #0F172A !important;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center { text-align: center; }
.w-100 { width: 100%; }
.fw-bold { font-weight: 700; }
.d-none { display: none !important; }
.text-dark { color: #0F172A !important; }
.text-primary { color: #0284C7 !important; }
.text-warning { color: #D97706 !important; }
.mt-3 { margin-top: 1rem; }
.me-1 { margin-right: 0.25rem; }

.nb-nav-demo-btn {
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 10px;
  background: #fde047 !important;
  color: #0F172A !important;
  border: none;
  box-shadow: 0 4px 12px rgba(253,224,71,.25);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 900px) {
  .nb-nav-demo-btn { display: none !important; }
}

@media (min-width: 576px) {
  .d-sm-inline-flex { display: inline-flex !important; }
}

/* ═══════════════════════════════════════
   NAVBAR SUPERIOR OFICIAL
   ═══════════════════════════════════════ */
.nb-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #047857 0%, #059669 60%, #10B981 100%) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 20px rgba(5, 150, 105, 0.25);
  backdrop-filter: blur(12px);
}

.nb-nav__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nb-brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo image in green navbar */
.nb-brand img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* make logo white */
}

.nb-nav-bcv-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--nb-font-mono);
}

.nb-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 6px rgba(255,255,255,0.7);
  display: inline-block;
}

.nb-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nb-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.9) !important;
  transition: all 0.2s ease;
}

.nb-links a:hover, .nb-links a.is-current {
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.18) !important;
}

.nb-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ═══════════════════════════════════════
   BOTONES
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 13.5px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #059669 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25) !important;
}

.btn-primary:hover {
  background: #047857 !important;
  color: #FFFFFF !important;
}

.btn-ghost {
  background: #FFFFFF !important;
  color: #0F172A !important;
  border: 1px solid #CBD5E1 !important;
}

.btn-ghost:hover {
  background: #F8FAFC !important;
  border-color: #94A3B8 !important;
  color: #0F172A !important;
}

.btn-warning {
  background: #F59E0B !important;
  color: #0F172A !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.25) !important;
}

.btn-warning:hover {
  background: #D97706 !important;
  color: #FFFFFF !important;
}

.btn-xl {
  padding: 15px 26px;
  font-size: 15.5px;
  border-radius: 12px;
}

.cta-w-full {
  width: 100%;
}

/* Botones dentro del navbar verde — overrides específicos */
.nb-nav .btn-ghost {
  background: rgba(255,255,255,0.18) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(255,255,255,0.45) !important;
}
.nb-nav .btn-ghost:hover {
  background: rgba(255,255,255,0.30) !important;
  border-color: rgba(255,255,255,0.7) !important;
  color: #FFFFFF !important;
}
.nb-nav .btn-primary {
  background: #FFFFFF !important;
  color: #16A34A !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12) !important;
}
.nb-nav .btn-primary:hover {
  background: #F0FDF4 !important;
  color: #15803D !important;
}
.nb-menu-toggle {
  background: rgba(255,255,255,0.18) !important;
  border: 1px solid rgba(255,255,255,0.4) !important;
  color: #FFFFFF !important;
}
.nb-menu-toggle:hover {
  background: rgba(255,255,255,0.30) !important;
}

/* ═══════════════════════════════════════
   HERO SECTION (Luminoso Estilo Square)
   ═══════════════════════════════════════ */
.hero {
  padding: 24px 0 50px;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%) !important;
  border-bottom: 1px solid #E2E8F0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ECFDF5 !important;
  border: 1px solid #A7F3D0 !important;
  color: #059669 !important;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--nb-font-mono);
  margin-bottom: 18px;
  max-width: 100%;
  white-space: normal;
  line-height: 1.4;
  box-sizing: border-box;
}

.kicker--danger {
  background: #FEF2F2 !important;
  border-color: #FECACA !important;
  color: #DC2626 !important;
}

.hero h1, .section h2, .section h3 {
  font-family: var(--nb-font-heading);
  color: #0F172A !important;
}

.hero h1 {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.gradient-text {
  color: #0F172A !important;
  background: none !important;
  -webkit-text-fill-color: #0F172A !important;
}

.gradient-text span, .hero h1 span {
  color: #059669 !important;
  -webkit-text-fill-color: #059669 !important;
}

.hero-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #475569 !important;
  margin-bottom: 28px;
}

.hero-lead em {
  font-style: normal;
  font-weight: 700;
  color: #0F172A !important;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
}

.trust-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #475569 !important;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row i {
  color: #059669;
  font-size: 16px;
}

/* ═══════════════════════════════════════
   HERO CARD & MOSTRADOR REAL
   ═══════════════════════════════════════ */
.hero-visual-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.08) !important;
  position: relative;
  color: #0F172A !important;
}

/* ═══════════════════════════════════════
   BANDA EN VIVO (MÉTRICAS & TASA BCV)
   ═══════════════════════════════════════ */
.nb-live-band {
  background: #FFFFFF !important;
  border-bottom: 1px solid #E2E8F0;
  padding: 28px 0;
}

.nb-live-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.nb-live {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 14px;
  padding: 16px 20px;
  transition: all 0.2s ease;
}

.nb-live:hover {
  background: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.nb-live__value {
  font-size: 22px;
  font-weight: 900;
  font-family: var(--nb-font-heading);
  color: #0F172A !important;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.nb-live__value i {
  color: #059669;
}

.nb-live__label {
  font-size: 12.5px;
  color: #475569 !important;
  line-height: 1.4;
}

.nb-live__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  background: #ECFDF5;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 6px;
}

/* ═══════════════════════════════════════
   SECCIONES Y ENCABEZADOS
   ═══════════════════════════════════════ */
.section {
  padding: 80px 0;
  background: #FFFFFF !important;
  position: relative;
}

.section--panel {
  background: #F8FAFC !important;
  border-top: 1px solid #E2E8F0 !important;
  border-bottom: 1px solid #E2E8F0 !important;
}

.section-head {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2, .section h2 {
  font-family: var(--nb-font-heading);
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-head p {
  font-size: 16.5px;
  color: #475569 !important;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TARJETAS CORPORATIVAS (NB-CARD)
   ═══════════════════════════════════════ */
.nb-problems-grid, .nb-features-grid, .nb-industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.nb-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04) !important;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.nb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -4px rgba(15, 23, 42, 0.08) !important;
  border-color: #CBD5E1 !important;
}

.nb-card--danger {
  border-top: 4px solid #DC2626 !important;
}

.nb-card--sm {
  padding: 20px;
}

.nb-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ECFDF5 !important;
  color: #059669 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.nb-card--danger .nb-card__icon {
  background: #FEF2F2 !important;
  color: #DC2626 !important;
}

.nb-card__title {
  font-family: var(--nb-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 10px;
}

.nb-card__text {
  font-size: 14px;
  color: #475569 !important;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   LISTAS DE CARACTERÍSTICAS (NB-FLIST & CHECKLIST)
   ═══════════════════════════════════════ */
.nb-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.nb-flist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nb-flist__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.nb-flist__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #ECFDF5 !important;
  color: #059669 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.nb-flist__title {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #0F172A !important;
  margin-bottom: 4px;
  font-family: var(--nb-font-heading);
}

.nb-flist__text {
  display: block;
  font-size: 14px;
  color: #475569 !important;
  line-height: 1.55;
}

.nb-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.nb-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.nb-checklist li > i {
  color: #059669;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.nb-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #CBD5E1;
  box-shadow: 0 12px 36px -8px rgba(15, 23, 42, 0.1);
  background: #FFFFFF;
}

/* ═══════════════════════════════════════
   WHATSAPP ASISTENTE SIMULADOR
   ═══════════════════════════════════════ */
.wa-simulator-card {
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 36px -6px rgba(15, 23, 42, 0.08) !important;
}

.wa-sim-header {
  background: #075E54 !important;
  color: #FFFFFF !important;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.wa-chat-body {
  background: #ECE5DD !important;
  padding: 18px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.wa-bubble-user {
  align-self: flex-end;
  background: #DCF8C6 !important;
  color: #0F172A !important;
}

.wa-bubble-ai {
  align-self: flex-start;
  background: #FFFFFF !important;
  color: #0F172A !important;
}

.wa-prompt-chips {
  background: #FFFFFF !important;
  padding: 12px 16px;
  border-top: 1px solid #E2E8F0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.wa-chip {
  background: #F1F5F9 !important;
  border: 1px solid #CBD5E1 !important;
  color: #0F172A !important;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.wa-chip:hover {
  background: #ECFDF5 !important;
  border-color: #059669 !important;
  color: #059669 !important;
}

/* ═══════════════════════════════════════
   CALCULADORA ROI
   ═══════════════════════════════════════ */
.roi-calculator-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 10px 30px -4px rgba(15, 23, 42, 0.06);
}

.roi-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
}

.roi-control-group {
  margin-bottom: 24px;
}

.roi-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.roi-label {
  font-weight: 700;
  font-size: 14px;
  color: #0F172A !important;
}

.roi-val-badge {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #059669;
  font-family: var(--nb-font-mono);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.roi-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #E2E8F0 !important;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #059669 !important;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(5, 150, 105, 0.4);
}

.roi-results-box {
  background: #F8FAFC !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.roi-kpi-num {
  font-family: var(--nb-font-mono);
  font-size: 38px;
  font-weight: 900;
  color: #059669 !important;
  margin-bottom: 4px;
}

.roi-kpi-sub {
  font-size: 13px;
  color: #64748B !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   ANTES VS DESPUÉS (NB-BA)
   ═══════════════════════════════════════ */
.nb-before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.nb-ba {
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.nb-ba--bad {
  background: #FEF2F2 !important;
  border-color: #FECACA !important;
}

.nb-ba--bad .nb-ba__title {
  color: #991B1B !important;
}

.nb-ba--bad .nb-ba__list li {
  color: #7F1D1D !important;
}

.nb-ba--bad .nb-ba__list li i {
  color: #DC2626 !important;
}

.nb-ba--good {
  background: #ECFDF5 !important;
  border-color: #A7F3D0 !important;
}

.nb-ba--good .nb-ba__title {
  color: #065F46 !important;
}

.nb-ba--good .nb-ba__list li {
  color: #064E3B !important;
}

.nb-ba--good .nb-ba__list li i {
  color: #059669 !important;
}

.nb-ba__title {
  font-family: var(--nb-font-heading);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nb-ba__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nb-ba__list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   TABLA COMPARATIVA
   ═══════════════════════════════════════ */
.comp-table-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 18px;
  overflow-x: auto;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
  background: #FFFFFF !important;
}

.comp-table th, .comp-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #E2E8F0;
}

.comp-table th {
  font-family: var(--nb-font-heading);
  font-weight: 800;
  color: #0F172A !important;
  background: #F8FAFC !important;
}

.comp-table td {
  color: #334155 !important;
  font-weight: 500;
}

.comp-table tr:hover td {
  background: #F8FAFC;
}

.brand-col-header {
  background: #059669 !important;
  color: #FFFFFF !important;
  border-left: 2px solid #059669;
  border-right: 2px solid #059669;
}

.brand-col-active {
  background: #F0FDF4 !important;
  font-weight: 700;
  color: #065F46 !important;
  border-left: 2px solid #A7F3D0;
  border-right: 2px solid #A7F3D0;
}

.comp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.comp-badge-positive {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.comp-badge-negative {
  background: #FEF2F2;
  color: #DC2626;
  border: 1px solid #FECACA;
}

.comp-badge-accent {
  background: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
}

.comp-badge-warning {
  background: #FFFBEB;
  color: #D97706;
  border: 1px solid #FDE68A;
}

/* ═══════════════════════════════════════
   DEMO BROWSER & TOUR DE MÓDULOS
   ═══════════════════════════════════════ */
.nb-segment-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.nb-segment, .demo-tabs {
  display: inline-flex;
  background: #F1F5F9;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.demo-tab, .plan-freq-btn, .faq-cat-btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 700;
  color: #475569 !important;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.demo-tab:hover, .plan-freq-btn:hover, .faq-cat-btn:hover {
  color: #0F172A !important;
  background: rgba(255, 255, 255, 0.6);
}

.demo-tab.active, .plan-freq-btn.active, .faq-cat-btn.active {
  background: #FFFFFF !important;
  color: #059669 !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.demo-browser-window {
  max-width: 800px;
  margin: 0 auto;
  background: #FFFFFF !important;
  border: 1px solid #CBD5E1 !important;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px -10px rgba(15, 23, 42, 0.12);
}

.browser-header {
  background: #F8FAFC;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #E2E8F0;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.browser-address-bar {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 4px 16px;
  font-family: var(--nb-font-mono);
  font-size: 12px;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.browser-badge {
  font-family: var(--nb-font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.browser-content {
  background: #FFFFFF;
  padding: 0;
}

.browser-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════
   PRECIOS Y PLANES (NB-PLAN)
   ═══════════════════════════════════════ */
.nb-plan-wrap {
  max-width: 580px;
  margin: 0 auto;
}

.nb-plan {
  background: #FFFFFF !important;
  border: 2px solid #059669 !important;
  border-radius: 22px;
  padding: 44px 38px;
  position: relative;
  box-shadow: 0 12px 36px -4px rgba(5, 150, 105, 0.15) !important;
  text-align: center;
}

.nb-plan__ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #059669;
  color: #FFFFFF;
  font-family: var(--nb-font-mono);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 18px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.nb-plan__name {
  font-family: var(--nb-font-heading);
  font-size: 26px;
  font-weight: 900;
  color: #0F172A !important;
  margin-bottom: 14px;
}

.nb-plan__pricing {
  margin-bottom: 24px;
}

.nb-plan__price {
  font-family: var(--nb-font-mono);
  font-size: 52px;
  font-weight: 900;
  color: #0F172A !important;
  letter-spacing: -0.03em;
}

.nb-plan__period {
  font-size: 17px;
  font-weight: 600;
  color: #64748B !important;
}

.nb-plan__billing {
  font-size: 13.5px;
  color: #64748B !important;
  margin-top: 4px;
}

.discount-badge {
  font-size: 11px;
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 700;
}

.nb-plan__features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
  border-top: 1px solid #E2E8F0;
  padding-top: 24px;
}

.nb-plan__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: #334155 !important;
}

.nb-plan__features li i {
  color: #059669;
  font-size: 18px;
}

.nb-plan__note {
  font-size: 12.5px;
  color: #64748B !important;
  margin-top: 12px;
}

/* ═══════════════════════════════════════
   PRICING GRID 3-TIER (SQUARE/SHOPIFY STYLE)
   ═══════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #FFFFFF !important;
  border: 1.5px solid #E2E8F0 !important;
  border-radius: 20px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04) !important;
  transition: transform .2s, border-color .2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: #059669 !important;
  box-shadow: 0 12px 32px rgba(15,23,42,0.08) !important;
}

.pricing-card.featured {
  border: 2px solid #059669 !important;
  box-shadow: 0 12px 36px rgba(5,150,105,0.14) !important;
  background: #FFFFFF !important;
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #059669 !important;
  color: #FFFFFF !important;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(5,150,105,0.3);
}

.pay-method-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  font-size: 13.5px;
  font-weight: 700;
  color: #0F172A !important;
  box-shadow: 0 2px 8px rgba(15,23,42,0.03);
}

/* ═══════════════════════════════════════
   FAQS ACCORDION (FAQ-CARD)
   ═══════════════════════════════════════ */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.faq-card:hover {
  border-color: #CBD5E1;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--nb-font-heading);
  font-weight: 700;
  font-size: 15.5px;
  color: #0F172A !important;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  color: #059669 !important;
}

.faq-question i {
  font-size: 15px;
  color: #64748B;
  transition: transform 0.25s ease;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(45deg);
  color: #059669;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 22px;
  color: #475569 !important;
  font-size: 14px;
  line-height: 1.65;
  background: #FFFFFF;
}

.faq-question[aria-expanded="true"] + .faq-answer {
  padding-bottom: 20px;
}

/* ═══════════════════════════════════════
   CTA FINAL (NB-CTA-FINAL)
   ═══════════════════════════════════════ */
.nb-cta-final {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  border-top: 1px solid #E2E8F0;
  text-align: center;
}

.nb-cta-final__inner {
  max-width: 820px;
  margin: 0 auto;
}

.nb-final-lead {
  font-size: 17px;
  color: #475569 !important;
  margin: 18px auto 32px;
  line-height: 1.6;
}

.final-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.nb-final-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 600;
  color: #64748B !important;
}

.nb-final-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nb-final-trust i {
  color: #059669;
  font-size: 16px;
}

/* ═══════════════════════════════════════
   FOOTER OFICIAL
   ═══════════════════════════════════════ */
.nb-footer {
  background: #0B132B !important;
  color: #94A3B8 !important;
  padding: 68px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.nb-footer a {
  color: #94A3B8 !important;
  transition: all 0.2s ease;
  text-decoration: none;
}

.nb-footer a:hover {
  color: #34D399 !important;
  transform: translateX(3px);
}

.nb-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}

.nb-footer__about p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-top: 14px;
  color: #94A3B8;
  max-width: 320px;
}

.nb-footer__title {
  color: #FFFFFF !important;
  font-size: 13.5px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nb-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 13.5px;
  padding: 0;
  margin: 0;
}

.nb-footer__links li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nb-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #64748B;
}

.nb-footer__badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nb-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #94A3B8;
  font-size: 12.5px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nb-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  z-index: 900;
  transition: all 0.2s;
}

.nb-to-top:hover {
  background: #059669;
  color: #FFFFFF;
  border-color: #059669;
}

/* ═══════════════════════════════════════
   ANDROIDE NATIVE BOTTOM NAV & DRAWER
   ═══════════════════════════════════════ */
.android-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF !important;
  border-top: 1px solid #E2E8F0;
  z-index: 999;
  padding: 8px 12px calc(8px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.android-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: #64748B !important;
  font-size: 11px;
  font-weight: 700;
}

.android-nav-item.active {
  color: #059669 !important;
}

.android-nav-pill {
  width: 44px;
  height: 28px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}

.android-nav-item.active .android-nav-pill {
  background: #ECFDF5 !important;
  color: #059669 !important;
}

.android-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.android-sheet-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.android-bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #FFFFFF !important;
  border-top: 1px solid #CBD5E1;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  padding: 16px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  overflow-y: auto;
}

.android-bottom-sheet.is-open {
  transform: translateY(0);
}

.android-sheet-handle {
  width: 44px;
  height: 4px;
  border-radius: 2px;
  background: #CBD5E1;
  margin: 0 auto 16px;
}

.android-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}

.android-sheet-title {
  font-family: var(--nb-font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #0F172A !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.android-sheet-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.android-sheet-login-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #ECFDF5 !important;
  border: 1.5px solid #A7F3D0 !important;
  border-radius: 14px;
  margin-bottom: 18px;
  text-decoration: none;
  color: #065F46 !important;
}

.android-sheet-login-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #059669;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.android-sheet-login-info strong {
  display: block;
  font-size: 14.5px;
  color: #065F46;
}

.android-sheet-login-info span {
  display: block;
  font-size: 12px;
  color: #047857;
}

.android-sheet-login-arrow {
  margin-left: auto;
  color: #059669;
  font-size: 18px;
}

.android-sheet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.android-sheet-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  color: #0F172A !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.android-sheet-card i {
  font-size: 20px;
  color: #059669;
  margin-bottom: 4px;
}

.android-sheet-card strong {
  font-size: 13.5px;
  font-weight: 700;
}

.android-sheet-card span {
  font-size: 11.5px;
  color: #64748B;
}

.android-sheet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.android-sheet-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #334155 !important;
}

.android-sheet-list li a:hover {
  background: #F1F5F9;
  color: #059669 !important;
}

/* ═══════════════════════════════════════
   RESPONSIVE (MÓVILES Y TABLETS)
   ═══════════════════════════════════════ */
.nb-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 960px) {
  .hero-grid, .nb-split-grid, .roi-grid, .nb-before-after-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .nb-problems-grid, .nb-features-grid {
    grid-template-columns: 1fr;
  }
  .nb-live-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nb-links {
    display: none;
  }
  .nb-menu-toggle {
    display: inline-flex;
  }
  .nb-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .android-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  body {
    padding-bottom: 60px;
  }
  .nb-nav__inner {
    padding: 8px 0;
    min-height: 54px;
    gap: 6px;
  }
  .nb-brand span {
    font-size: 16px !important;
  }
  .nb-nav-bcv-chip {
    display: none !important;
  }
  .nb-actions .nb-login-btn {
    display: none !important;
  }
  #cta-navbar {
    padding: 7px 12px !important;
    font-size: 12px !important;
  }
  .hero-card, .hero-visual-wrap {
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .hero {
    padding: 24px 0 36px !important;
  }
  .hero h1 {
    font-size: clamp(22px, 6vw, 32px) !important;
    line-height: 1.2 !important;
    word-break: break-word !important;
  }
  .hero-lead {
    font-size: 14px !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
  }
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .hero-actions .btn, .hero-actions button, .btn {
    white-space: normal !important;
  }
  .hero-actions .btn, .hero-actions button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    justify-content: center !important;
    text-align: center !important;
  }
  .trust-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
    font-size: 12px !important;
  }
  .nb-steps-grid {
    grid-template-columns: 1fr !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .pricing-card {
    padding: 24px 18px !important;
  }
  .demo-tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    padding: 6px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .demo-tab {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  .comp-table-card {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
  }
  .comp-table {
    min-width: 620px !important;
    font-size: 12.5px !important;
  }
  .comp-table th, .comp-table td {
    padding: 10px 12px !important;
  }
  .wa-chat-body {
    padding: 12px !important;
  }
  .wa-bubble {
    max-width: 95% !important;
    font-size: 12.5px !important;
  }
  .wa-prompt-chips {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 8px 10px !important;
  }
  .wa-chip {
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 11px !important;
    padding: 5px 10px !important;
  }
  .roi-results-box {
    margin-top: 20px !important;
  }
}

@media (max-width: 600px) {
  .nb-live-grid {
    grid-template-columns: 1fr;
  }
  .nb-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   UTILIDADES COMPLEMENTARIAS
   ═══════════════════════════════════════ */
.nb-live--info { border-left: 3px solid #0284C7 !important; }
.nb-live--soft { border-left: 3px solid #059669 !important; }
.nb-live--warn { border-left: 3px solid #D97706 !important; }
.nb-card__num { font-size: 24px; font-weight: 800; color: #059669 !important; margin-bottom: 8px; font-family: var(--nb-font-mono); }
.nb-login-btn { font-size: 13px; font-weight: 700; color: #334155 !important; }
.nb-progress { position: fixed; top: 0; left: 0; height: 3px; background: #059669; z-index: 99999; }
.nb-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.no-js { display: block; }

