/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: rgba(139,92,246,0.32); color: #fff; }

/* ── Base ── */
body {
  background: #0D0B1A;
  color: #EDE9F6;
  font-family: 'Manrope', system-ui, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* subtle grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.4;
}

/* ── Ambient glows ── */
.glow-hero {
  position: fixed;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.18), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ── */
.container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 44px;
}

/* ── Glass mixin (shared) ── */
.glass {
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
}
.glass-purple {
  background: rgba(139,92,246,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(139,92,246,0.22);
  border-radius: 18px;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,11,26,0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  z-index: -1;
  margin: 0 -44px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.nav-orbit {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: conic-gradient(from 140deg, #A78BFA, #6D28D9, #C4B5FD, #A78BFA);
  box-shadow: 0 0 18px rgba(167,139,250,0.5);
  position: relative;
  flex-shrink: 0;
}
.nav-orbit-inner { position: absolute; inset: 7px; border-radius: 50%; background: #0D0B1A; }

.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-name  { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; letter-spacing: -0.01em; color: #F0ECF9; }
.nav-sub   { font-size: 10px; color: #6B6480; letter-spacing: .15em; text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link  { color: #B0A8C4; text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-link:hover { color: #D9D1F0; }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: rgba(167,139,250,0.10);
  border: 1px solid rgba(167,139,250,0.30);
  color: #D9CEFB;
  text-decoration: none;
  font-size: 13.5px; font-weight: 600;
  padding: 9px 18px; border-radius: 999px;
  transition: background .2s, border-color .2s;
}
.nav-cta:hover { background: rgba(167,139,250,0.18); border-color: rgba(167,139,250,0.50); }
.nav-dot { width: 7px; height: 7px; border-radius: 50%; background: #34D399; box-shadow: 0 0 8px #34D399; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 80px 0 100px;
  min-height: 88vh;
  overflow: hidden;
}
#orbitCanvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .38em; text-transform: uppercase;
  color: #A78BFA;
  padding: 7px 14px;
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 999px;
  background: rgba(167,139,250,0.07);
}
.hero-badge-dot { width: 5px; height: 5px; border-radius: 50%; background: #A78BFA; }

.hero-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 76px;
  line-height: 1.01;
  letter-spacing: -0.032em;
  margin-top: 26px;
  color: #F2EEF9;
}
.hero-grad {
  background: linear-gradient(115deg, #C4B5FD 0%, #8B5CF6 55%, #6D28D9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-p {
  font-size: 19px;
  line-height: 1.65;
  color: #9D96AD;
  margin-top: 22px;
  max-width: 500px;
}

.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #9B72FB, #6D28D9);
  color: #fff;
  text-decoration: none;
  font-weight: 700; font-size: 14.5px;
  padding: 14px 24px; border-radius: 12px;
  box-shadow: 0 8px 28px -6px rgba(109,40,217,0.65);
  transition: box-shadow .2s, transform .15s;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px -6px rgba(109,40,217,0.75); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #DDD8EC;
  text-decoration: none;
  font-weight: 600; font-size: 14.5px;
  padding: 14px 22px; border-radius: 12px;
  transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.09); }

.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
/* ── Trust strip ── */
.trust-strip {
  position: relative;
  padding: 32px 0 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.trust-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 260px;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.18), transparent 70%);
  pointer-events: none;
}

@keyframes trust-spin    { from { transform: translate(-50%,-50%) rotate(0deg)   } to { transform: translate(-50%,-50%) rotate(360deg)  } }
@keyframes trust-spincw  { from { transform: translate(-50%,-50%) rotate(0deg)   } to { transform: translate(-50%,-50%) rotate(-360deg) } }

.trust-orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.14);
  pointer-events: none;
}
.trust-ring-1 { width: 460px; height: 120px; animation: trust-spin   55s linear infinite; }
.trust-ring-2 { width: 680px; height: 180px; animation: trust-spincw 80s linear infinite; }

.trust-orbit-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.trust-dot-1 {
  width: 7px; height: 7px;
  background: #A78BFA;
  box-shadow: 0 0 10px #A78BFA;
  top: calc(50% - 60px); left: calc(50% + 225px);
  animation: trust-spin 55s linear infinite;
  transform-origin: -225px 60px;
}
.trust-dot-2 {
  width: 5px; height: 5px;
  background: #7C3AED;
  box-shadow: 0 0 8px #7C3AED;
  top: calc(50% + 85px); left: calc(50% - 335px);
  animation: trust-spincw 80s linear infinite;
  transform-origin: 335px -85px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
}

.hero-mini-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.035);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  transition: border-color .25s, background .25s;
}
.hero-mini-card:hover {
  background: rgba(167,139,250,0.07);
  border-color: rgba(167,139,250,0.22);
}
.hero-mini-card:hover {
  background: rgba(167,139,250,0.06);
  border-color: rgba(167,139,250,0.18);
}
.hero-mini-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 9px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.22);
  display: flex; align-items: center; justify-content: center;
}
.hero-mini-title {
  font-size: 13px; font-weight: 700;
  color: #D4CEE8; margin-bottom: 3px;
  font-family: 'Space Grotesk', sans-serif;
}
.hero-mini-desc {
  font-size: 12px; color: #6E677E; line-height: 1.5;
}


/* ════════════════════════════════════════
   SECTION COMMONS
════════════════════════════════════════ */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: .38em; text-transform: uppercase;
  color: #A78BFA;
}
.section-center { text-align: center; max-width: 600px; margin: 0 auto 52px; }
.section-center .eyebrow { margin-bottom: 14px; }

.section-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 38px;
  letter-spacing: -0.02em; line-height: 1.1;
  color: #F0ECF9;
}
.section-p { font-size: 16px; color: #9D96AD; margin-top: 14px; line-height: 1.65; }

/* ════════════════════════════════════════
   FEATURES
════════════════════════════════════════ */
.features { padding: 48px 0 32px; }

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

.feat-card {
  padding: 26px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: border-color .25s, background .25s;
}
.feat-card:hover {
  background: rgba(167,139,250,0.07);
  border-color: rgba(167,139,250,0.22);
}

.feat-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(109,40,217,0.10);
  border: 1px solid rgba(139,92,246,0.22);
  box-shadow: 0 0 18px -6px rgba(139,92,246,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feat-icon img { display: block; }
.feat-h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin-bottom: 8px; color: #EAE6F5; }
.feat-p  { font-size: 14px; line-height: 1.6; color: #8A8397; }

/* ════════════════════════════════════════
   ONBOARDING
════════════════════════════════════════ */
.onboarding { padding: 80px 0 32px; }

.onboard-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }

.onboard-eyebrow { margin-bottom: 14px; }
.onboard-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 34px; letter-spacing: -0.02em; line-height: 1.15;
  color: #F0ECF9;
}
.onboard-p { font-size: 15.5px; line-height: 1.7; color: #9090A0; margin-top: 16px; }

.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.step-card {
  padding: 22px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.step-num  { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; color: #7C3AED; margin-bottom: 12px; letter-spacing: .06em; }
.step-h4   { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 6px; color: #E0DBF0; }
.step-p    { font-size: 13px; line-height: 1.55; color: #8A8397; }

/* ════════════════════════════════════════
   PRICING
════════════════════════════════════════ */
.pricing { padding: 96px 0 32px; }
.pricing-center .eyebrow { margin-bottom: 14px; }

.tier-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: #6B6480;
  margin-bottom: 14px;
}

.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.plan-card {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
}
.plan-card-featured {
  position: relative;
  background: rgba(139,92,246,0.10);
  border-color: rgba(139,92,246,0.38);
  box-shadow: 0 0 60px -20px rgba(109,40,217,0.45);
}

.plan-badge {
  position: absolute; top: -12px; right: 22px;
  background: linear-gradient(135deg, #9B72FB, #6D28D9);
  color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 18px -4px rgba(109,40,217,0.7);
}

.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: #A8A0BC; }
.plan-name-feat { color: #C4B5FD; }
.plan-tag  { font-size: 13.5px; color: #8A8397; margin-top: 5px; }

.plan-price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 22px; }
.plan-amt   { font-family: 'Space Grotesk', sans-serif; font-size: 44px; font-weight: 700; letter-spacing: -0.025em; color: #F0ECF9; }
.plan-period { font-size: 13.5px; color: #7E7790; }

.plan-div { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 20px; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan-feat { display: flex; gap: 10px; font-size: 14px; color: #C0BAD2; }
.plan-feat-feat { color: #DDD8EC; }
.plan-check { color: #A78BFA; }
.plan-check-feat { color: #C4B5FD; }

.plan-btn {
  display: block; text-align: center; margin-top: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.13);
  color: #DDD8EC;
  text-decoration: none; font-weight: 600; font-size: 14px;
  padding: 13px; border-radius: 11px;
  transition: background .2s;
}
.plan-btn:hover { background: rgba(255,255,255,0.09); }
.plan-btn-feat {
  background: linear-gradient(135deg, #9B72FB, #6D28D9);
  color: #fff; border: none;
  box-shadow: 0 10px 28px -8px rgba(109,40,217,0.65);
}
.plan-btn-feat:hover { background: linear-gradient(135deg, #A980FF, #7C3AED); }

/* ── Galaxy ── */
.galaxy-title { margin: 48px 0 6px; }
.galaxy-sub   { font-size: 14px; color: #8A8397; margin-bottom: 20px; }
.galaxy-grid  { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }

.galaxy-card {
  position: relative;
  padding: 22px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
}
.galaxy-card-plain    { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); }
.galaxy-card-featured { background: rgba(139,92,246,0.10); border: 1px solid rgba(139,92,246,0.32); }

.galaxy-rec {
  position: absolute; top: -11px; left: 16px;
  background: rgba(124,58,237,0.88);
  backdrop-filter: blur(8px);
  color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .07em;
  padding: 5px 11px; border-radius: 999px;
}
.galaxy-name   { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #C4B5FD; }
.galaxy-tag    { font-size: 12px; color: #8A8397; margin-top: 4px; }
.galaxy-price  { display: flex; align-items: baseline; gap: 4px; margin: 14px 0 3px; }
.galaxy-amt    { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; letter-spacing: -0.01em; color: #F0ECF9; }
.galaxy-period { font-size: 11px; color: #6B6480; margin-bottom: 16px; }
.galaxy-div    { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 14px; }
.galaxy-specs  { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.galaxy-spec   { font-size: 12.5px; color: #B8B2C6; display: flex; justify-content: space-between; }
.galaxy-spec-label { color: #6B6480; }
.galaxy-spec-val   { font-family: 'Space Grotesk', sans-serif; font-weight: 600; }

/* ════════════════════════════════════════
   CTA
════════════════════════════════════════ */
.cta { padding: 96px 0 44px; }

.cta-box {
  position: relative;
  background: rgba(109,40,217,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(139,92,246,0.28);
  border-radius: 28px;
  padding: 68px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute; bottom: -140px; left: 50%;
  transform: translateX(-50%);
  width: 520px; height: 320px;
  background: radial-gradient(ellipse at center, rgba(109,40,217,0.35), transparent 65%);
  pointer-events: none;
}
.cta-inner { position: relative; }

.cta-eyebrow {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px;
  margin-bottom: 22px;
}
.cta-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: .02em;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(167,139,250,0.12);
  border: 1px solid rgba(167,139,250,0.35);
  color: #D4BBFF;
  box-shadow: 0 0 14px -4px rgba(139,92,246,0.45);
}
.cta-pill-green {
  background: rgba(52,211,153,0.10);
  border-color: rgba(52,211,153,0.40);
  color: #6EE7B7;
  box-shadow: 0 0 14px -4px rgba(52,211,153,0.30);
}
.cta-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 44px; letter-spacing: -0.025em; line-height: 1.06;
  color: #F2EEF9;
}
.cta-p { font-size: 16.5px; color: #B0A8C0; margin: 16px auto 0; max-width: 500px; line-height: 1.65; }
.cta-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

.cta-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #fff; color: #1E1333;
  text-decoration: none; font-weight: 700; font-size: 18px;
  letter-spacing: 0.04em;
  padding: 16px 44px; border-radius: 12px;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.25);
  transition: transform .15s, box-shadow .15s;
  font-family: 'Space Grotesk', sans-serif;
}
.cta-wa:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -6px rgba(0,0,0,0.35); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 36px 0 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 24px;
}
.footer-logo  { display: flex; align-items: center; gap: 10px; }
.footer-orbit { width: 22px; height: 22px; border-radius: 50%; background: conic-gradient(from 140deg,#A78BFA,#6D28D9,#C4B5FD,#A78BFA); position: relative; }
.footer-orbit-inner { position: absolute; inset: 5px; border-radius: 50%; background: #0D0B1A; }
.footer-text  { font-size: 13px; color: #8A8397; }
.footer-name  { color: #D9D1F0; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }
.footer-copy  { font-size: 12px; color: #56506A; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
/* ── Tablet (960px) ── */
@media (max-width: 960px) {
  .hero { min-height: auto; padding: 56px 0 64px; }
  .hero-h1 { font-size: 48px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .galaxy-grid { grid-template-columns: 1fr 1fr; }
  .section-h2 { font-size: 32px; }
  .cta-h2 { font-size: 36px; }
}

/* ── Móvil (600px) ── */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  nav::before { margin: 0 -18px; }
  nav { padding: 18px 0; }

  /* Ocultar links de nav, dejar solo WhatsApp */
  .nav-link { display: none; }
  .nav-links { gap: 0; }

  .hero { padding: 40px 0 56px; }
  .hero-content { max-width: 100%; }
  .hero-h1 { font-size: 38px; line-height: 1.05; }
  .hero-p { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-tags { gap: 7px; }
  .hero-tag { font-size: 12px; padding: 6px 11px; }

  .orbit-wrap { max-width: 100%; }

  .trust-grid { grid-template-columns: 1fr; max-width: 100%; }
  .trust-ring-1 { width: 320px; height: 80px; }
  .trust-ring-2 { width: 480px; height: 120px; }
  .features { padding: 32px 0 24px; }
  .feat-grid { grid-template-columns: 1fr; gap: 12px; }
  .section-h2 { font-size: 28px; }
  .section-p { font-size: 15px; }

  .pricing { padding: 64px 0 24px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 100%; }
  .plan-amt { font-size: 36px; }

  .galaxy-grid { grid-template-columns: 1fr; gap: 10px; }

  .cta { padding: 64px 0 32px; }
  .cta-box { padding: 40px 20px; border-radius: 20px; }
  .cta-h2 { font-size: 28px; }
  .cta-p { font-size: 15px; }
  .cta-eyebrow { gap: 8px; }
  .cta-pill { font-size: 12.5px; padding: 7px 14px; }
  .cta-wa { font-size: 15px; padding: 14px 28px; width: 100%; justify-content: center; }

  footer { flex-direction: column; gap: 14px; text-align: center; }
}

/* ── Móvil pequeño (375px) ── */
@media (max-width: 375px) {
  .hero-h1 { font-size: 32px; }
  .nav-name { font-size: 14px; }
  .cta-h2 { font-size: 24px; }
  .plan-amt { font-size: 32px; }
}
