/* ============================================================
   BubbleMesh Xperience — Landing
   Sistema de diseño basado en DESIGN.md v1.0
   ============================================================ */

/* ---- Tokens ---- */
:root {
  /* Fondos */
  --bg-base: #0B0F1A;
  --bg-warm: #0F1420;
  --bg-card: #141928;
  --bg-footer: #060911;

  /* Acentos marca */
  --magenta: #EC4899;
  --magenta-hover: #D946A8;
  --violet: #A855F7;
  --purple: #6D28D9;

  /* Acentos Xperience */
  --amber: #F59E0B;
  --terracota: #C4622D;
  --teal: #14B8A6;

  /* Texto */
  --text-primary: #FFFFFF;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;

  /* Bordes */
  --border: #1E293B;
  --border-soft: rgba(255, 255, 255, 0.08);

  /* Gradientes */
  --grad-bubble: linear-gradient(135deg, #F59E0B, #C4622D 55%, #EC4899);
  --grad-bubble-hover: linear-gradient(135deg, #FBB12F, #D9743A 55%, #F45BAE);
  --grad-brand: linear-gradient(135deg, #EC4899, #A855F7, #6D28D9);

  /* Tipografía */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Forma */
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --pill: 9999px;

  /* Layout */
  --maxw: 1180px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-cta: 0 0 26px rgba(236, 72, 153, 0.40);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }
::selection { background: var(--magenta); color: #fff; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }

/* ---- Utilidades ---- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--warm { background: var(--bg-warm); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.section--base { background: var(--bg-base); }
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { margin-top: 16px; }
.section-head p { margin-top: 14px; font-size: 16px; color: var(--text-muted); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.12; color: #fff; }
h1 { font-size: clamp(2.7rem, 5.8vw, 4.9rem); line-height: 1.05; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }

.grad-text {
  background: var(--grad-bubble);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Botones ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  border-radius: var(--pill);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn--primary {
  background: var(--grad-bubble);
  color: #fff;
  font-size: 16px;
  padding: 16px 30px;
  box-shadow: var(--shadow-cta);
}
.btn--primary:hover {
  background: var(--grad-bubble-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(236, 72, 153, 0.6);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.12); }
.btn--lg { font-size: 17px; padding: 18px 44px; }
.cta-center { text-align: center; margin-top: 36px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 15, 26, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.bubble {
  position: relative;
  width: 38px;
  height: 38px;
  flex: none;
}
.bubble::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #FFE3AC 0%, #F9A826 24%, #DD5E1F 52%, #B81E63 80%, #EC4899 100%);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.45), 0 3px 10px rgba(0, 0, 0, 0.55);
}
.bubble::after {
  content: '';
  position: absolute;
  top: 13%; left: 19%;
  width: 36%; height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 70%);
}
.bubble--sm { width: 34px; height: 34px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: #fff; letter-spacing: 0.3px; }
.brand__by { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 1.6px; color: var(--text-muted); text-transform: uppercase; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.25s; }
.nav__links a:hover { color: #fff; }

.nav-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-bubble);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: var(--pill);
  box-shadow: 0 0 22px rgba(236, 72, 153, 0.30);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--grad-bubble-hover); transform: translateY(-1px); box-shadow: 0 0 30px rgba(236, 72, 153, 0.5); }

/* Hamburguesa */
.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  width: 42px; height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav__toggle svg { stroke: #fff; }
.nav__drawer { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(540px, 84vh, 800px);
  overflow: hidden;
}
.hero__bgfallback {
  position: absolute;
  inset: 0;
  background: #0d111a;
  background-size: cover;
  background-position: center;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.18), rgba(236, 72, 153, 0.05) 50%, transparent 72%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 11, 18, 0.95) 0%, rgba(9, 12, 20, 0.88) 32%, rgba(11, 15, 26, 0.58) 64%, rgba(11, 15, 26, 0.34) 100%);
}
.hero__overlay2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 15, 26, 0.45) 0%, transparent 22%, transparent 70%, rgba(11, 15, 26, 0.9) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 24px;
}
.hero__inner { max-width: 940px; }
.hero .kicker { color: var(--amber); }
.hero h1 { margin: 22px 0 0; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4); }
.hero__sub {
  margin-top: 30px;
  max-width: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.hero__sub p { font-size: 17px; line-height: 1.66; color: #CBD5E1; }
.hero__sub p.accent { color: #fff; padding-left: 22px; border-left: 2px solid rgba(245, 158, 11, 0.55); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--text-muted); margin-top: 22px; }

/* ============================================================
   PAIN CARDS (S2)
   ============================================================ */
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.pain-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 3px solid var(--magenta);
  border-radius: 14px;
  padding: 24px;
  transition: var(--transition);
}
.pain-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.05); }
.icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  background: rgba(236, 72, 153, 0.10);
  border: 1px solid rgba(236, 72, 153, 0.25);
}
.pain-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 16px; color: #fff; margin-bottom: 9px; line-height: 1.3; }
.pain-card p, .obj-card p { font-size: 13.5px; line-height: 1.62; color: var(--text-muted); }
.transition-line {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.45;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 52px auto 0;
}
.transition-line span { color: var(--amber); }

/* ============================================================
   PASOS (S3)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 30px 26px;
}
.step__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 60px;
  line-height: 1;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.4;
}
.step .icon-circle { margin: 14px 0 18px; }
.step h3 { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 10px; }
.step p { font-size: 14px; line-height: 1.62; color: var(--text-muted); }
.badge {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: var(--pill);
}
.lead-center { text-align: center; font-size: 16px; line-height: 1.6; color: var(--text-muted); max-width: 600px; margin: 46px auto 28px; }

/* ============================================================
   PAQUETES (S4)
   ============================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
.pkg {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--accent, var(--teal));
  border-radius: 18px;
  padding: 30px;
  transition: var(--transition);
}
.pkg:hover { transform: translateY(-5px); box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4); }
.pkg--featured {
  background: rgba(168, 85, 247, 0.07);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.12);
}
.pkg--featured:hover { box-shadow: 0 16px 50px rgba(168, 85, 247, 0.2); }
.pkg__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--pill);
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
}
.pkg__ribbon {
  position: absolute;
  top: -12px; right: 24px;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--violet);
  padding: 5px 14px;
  border-radius: var(--pill);
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.45);
}
.pkg__head { display: flex; align-items: center; gap: 12px; margin: 20px 0 6px; }
.pkg__head h3 { font-family: var(--font-body); font-weight: 700; font-size: 19px; color: #fff; }
.pkg__price { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.pkg__price .amount { font-family: var(--font-display); font-weight: 800; font-size: 30px; color: var(--accent); }
.pkg__price .per { font-size: 13px; color: var(--text-muted); }
.pkg__price .old { font-size: 13px; color: var(--text-subtle); text-decoration: line-through; }
.pkg__setup { font-size: 12px; color: var(--text-subtle); margin-top: 4px; }
.pkg__rule { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 20px 0; }
.checklist { display: flex; flex-direction: column; gap: 11px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; }
.checklist svg { flex: none; margin-top: 1px; }
.checklist span { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); }
.pkg__roi {
  font-size: 12.5px;
  font-style: italic;
  line-height: 1.55;
  color: var(--amber);
  border-left: 2px solid var(--amber);
  padding-left: 12px;
  margin-top: 20px;
}

/* Combos */
.combos {
  background: rgba(245, 158, 11, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 18px;
  padding: clamp(26px, 4vw, 40px);
  margin-top: 36px;
}
.combos h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2.5vw, 1.7rem); color: #fff; margin-bottom: 22px; }
.combos__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.combo {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 18px;
}
.combo--best {
  grid-column: 1 / -1;
  background: linear-gradient(120deg, rgba(236, 72, 153, 0.16), rgba(168, 85, 247, 0.16));
  border: 1px solid rgba(236, 72, 153, 0.45);
  padding: 22px 28px;
  box-shadow: 0 0 36px rgba(236, 72, 153, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.combo__name { font-size: 14px; font-weight: 500; color: var(--text-secondary); }
.combo--best .combo__name { font-weight: 700; font-size: 17px; color: #fff; }
.combo__price { text-align: right; flex: none; }
.combo__price b { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.combo--best .combo__price b { font-size: 26px; }
.combo__price small { font-size: 11px; color: var(--teal); }
.combo--best .combo__price small { font-size: 13px; }
.tag-rec { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.05em; color: var(--magenta); background: rgba(236, 72, 153, 0.15); padding: 2px 7px; border-radius: 6px; vertical-align: middle; }

/* ============================================================
   OBJECIONES (S5)
   ============================================================ */
.obj-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 3px solid var(--violet);
  border-radius: 14px;
  padding: 24px;
}
.obj-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.obj-card__head h3 { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: #fff; line-height: 1.3; }
.obj-card__head svg { flex: none; }

/* ============================================================
   PARA QUIÉN ES (S6)
   ============================================================ */
.pq-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.pq-photo {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.pq-photo img { width: 100%; height: 100%; object-fit: cover; }
.pq-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 15, 26, 0.3), rgba(11, 15, 26, 0.7));
}
.pq-list { display: flex; flex-direction: column; gap: 16px; }
.pq-list li { display: flex; gap: 13px; align-items: flex-start; }
.pq-list svg { flex: none; margin-top: 1px; }
.pq-list span { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }
.pq-not {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 20px;
  margin-top: 26px;
  opacity: 0.72;
}
.pq-not p:first-child { font-weight: 600; font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.pq-not p:last-child { font-size: 13px; line-height: 1.7; color: var(--text-subtle); }

/* ============================================================
   PRUEBA SOCIAL (S7)
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 48px; }
.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px 20px;
}
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1; }
.stat p { font-size: 13.5px; line-height: 1.5; color: var(--text-muted); margin-top: 14px; }
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; }
.quote {
  background: rgba(245, 158, 11, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 16px;
  padding: 28px;
}
.quote__mark { font-family: var(--font-display); font-size: 46px; line-height: 0.4; color: var(--violet); opacity: 0.4; }
.quote blockquote { font-family: var(--font-display); font-style: italic; font-size: 16px; line-height: 1.55; color: var(--text-secondary); margin: 6px 0 18px; }
.quote cite { font-style: normal; display: block; font-size: 12.5px; line-height: 1.5; color: var(--text-muted); border-top: 1px solid rgba(255, 255, 255, 0.08); padding-top: 14px; }
.quote cite span { color: var(--text-subtle); }
.logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 30px; margin-top: 48px; opacity: 0.6;
}
.logos span { font-weight: 700; font-size: 16px; color: var(--text-muted); letter-spacing: 0.02em; }

/* ============================================================
   FAQ (S8)
   ============================================================ */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 22px 0;
  text-align: left;
  color: #fff;
}
.faq__q span { font-weight: 600; font-size: 16px; line-height: 1.4; }
.faq__sign { font-weight: 400; font-size: 26px; color: var(--magenta); flex: none; line-height: 1; width: 24px; text-align: center; transition: transform 0.3s; }
.faq__item[open] .faq__sign { transform: rotate(45deg); }
.faq__a { font-size: 14.5px; line-height: 1.72; color: var(--text-muted); padding: 0 0 24px; max-width: 720px; }

/* ============================================================
   CTA FINAL (S9)
   ============================================================ */
.cta-final {
  position: relative;
  padding: clamp(72px, 11vw, 140px) 24px;
  overflow: hidden;
  background: var(--bg-base);
}
.cta-final__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.cta-final__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(245, 158, 11, 0.18), transparent 60%), linear-gradient(180deg, rgba(11, 15, 26, 0.82), rgba(11, 15, 26, 0.92));
}
.cta-final__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.cta-final h2 { font-size: clamp(2rem, 4.6vw, 3.3rem); line-height: 1.1; }
.cta-final h2 span { background: linear-gradient(120deg, #F59E0B, #EC4899); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-final p.sub { font-size: 17px; line-height: 1.6; color: var(--text-muted); max-width: 560px; margin: 24px auto 0; }
.cta-final p.support { font-size: 14px; line-height: 1.55; color: var(--text-muted); margin-top: 22px; }
.reassure { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; margin-top: 28px; }
.reassure span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-secondary); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg-footer); padding: clamp(48px, 7vw, 72px) 24px 36px; border-top: 1px solid var(--border); }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; }
.footer__about { max-width: 320px; }
.footer__about p { font-size: 13px; line-height: 1.6; color: var(--text-subtle); margin-top: 16px; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col p.h { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #475569; margin-bottom: 14px; }
.footer__col .links { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: 13.5px; color: var(--text-muted); transition: color 0.25s; }
.footer__col a:hover { color: #fff; }
.socials { display: flex; gap: 14px; margin-top: 6px; }
.socials a { color: var(--text-muted); transition: color 0.25s; }
.socials a:hover { color: #fff; }
.footer__bottom {
  max-width: var(--maxw); margin: 36px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
}
.footer__bottom p { font-size: 12px; color: #475569; }
.footer__bottom .legal { display: flex; gap: 20px; }
.footer__bottom .legal a { font-size: 12px; color: #475569; transition: color 0.25s; }
.footer__bottom .legal a:hover { color: var(--text-muted); }

/* ============================================================
   COLORES DE ACENTO POR ELEMENTO
   ============================================================ */
.accent-teal { --accent: #14B8A6; }
.accent-violet { --accent: #A855F7; }
.accent-magenta { --accent: #EC4899; }
.accent-amber { --accent: #F59E0B; }
.icon-circle.teal { background: rgba(20,184,166,0.10); border-color: rgba(20,184,166,0.30); }
.icon-circle.violet { background: rgba(168,85,247,0.10); border-color: rgba(168,85,247,0.30); }
.badge.teal { color: var(--teal); background: rgba(20,184,166,0.10); border: 1px solid rgba(20,184,166,0.25); }
.badge.violet { color: var(--violet); background: rgba(168,85,247,0.10); border: 1px solid rgba(168,85,247,0.25); }
.badge.magenta { color: var(--magenta); background: rgba(236,72,153,0.10); border: 1px solid rgba(236,72,153,0.25); }
.stat__num.magenta { color: var(--magenta); }
.stat__num.amber { color: var(--amber); }
.stat__num.violet { color: var(--violet); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero__sub { grid-template-columns: 1fr; gap: 18px; max-width: 600px; }
  .pq-grid { grid-template-columns: 1fr; gap: 40px; }
  .pq-photo { max-width: 440px; margin: 0 auto; width: 100%; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav-cta { display: none; }
  .nav__toggle { display: inline-flex; }
}
@media (max-width: 680px) {
  .pkg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .container { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 2.35rem; line-height: 1.08; }
  .stat__num { font-size: 2.7rem; }
  .hero__sub p, .hero__actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 400px) {
  h1 { font-size: 2.05rem; }
}

/* Drawer móvil */
.nav__drawer-panel {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(80vw, 320px);
  background: rgba(11, 15, 26, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-left: 1px solid var(--border);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav__drawer-panel.open { transform: translateX(0); }
.nav__drawer-panel a { font-size: 17px; font-weight: 500; color: var(--text-secondary); padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
.nav__drawer-panel .nav-cta { display: inline-flex; margin-top: 18px; justify-content: center; }
.nav__drawer-close {
  position: absolute; top: 22px; right: 22px;
  background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; color: #fff;
}
.nav__backdrop {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav__backdrop.open { opacity: 1; pointer-events: auto; }

/* ── Botón flotante WhatsApp ── */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6), 0 2px 8px rgba(0, 0, 0, 0.4);
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 0 0 12px rgba(37, 211, 102, 0); }
}
@media (max-width: 560px) {
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__video { display: none; }
}
