/* ==========================================================================
   ASVELO — design tokens
   White page canvas; the hero is a single inset gradient card
   (deep navy → cobalt → bright glass highlight), cobalt = action,
   gold = value, used only inside that card.
   ========================================================================== */
:root {
  color-scheme: light;

  --paper: #FFFFFF;
  --ink: #0B1220;
  --muted: rgba(11, 18, 32, 0.6);
  --surface: #F2F5FC;
  --line: rgba(11, 18, 32, 0.1);
  --line-2: rgba(11, 18, 32, 0.18);

  /* Fallback before JS measures the real header height (main.js syncNavHeight) —
     kept in sync with .nav's actual rendered height, which varies with viewport
     width and with language (translated nav text wraps differently). */
  --nav-h: 96px;

  --cobalt: #3355E0;
  --cobalt-glow: rgba(51, 85, 224, 0.35);
  --gold: #F5B94D;
  --gold-glow: rgba(245, 185, 77, 0.45);

  --hero-deep: #0A1330;
  --hero-mid: #2450D6;
  --hero-bright: #6C93FF;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 28px;

  --container: 1200px;

  --font-display: 'Space Grotesk', 'DM Sans', sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; text-wrap: balance; }
p { margin: 0; }
a, button { color: inherit; text-decoration: none; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
svg { display: block; }

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

:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -48px; left: 12px;
  background: var(--cobalt);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

#top, #features, #diagnostico { scroll-margin-top: var(--nav-h); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.section-pad { padding: 120px 0; position: relative; }

.accent { color: var(--gold); }
.muted-lead { color: var(--muted); font-weight: 400; line-height: 1.7; max-width: 680px; font-size: 17px; }
.muted-lead.center { margin-left: auto; margin-right: auto; text-align: center; }

.h-lg { font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.03em; margin: 16px 0 20px; }
.h-lg.center { text-align: center; }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--cobalt);
}
.eyebrow.center { justify-content: center; width: 100%; }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 8px var(--cobalt-glow);
  flex: none;
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1);
  transition-delay: calc(var(--d, 0) * 0.1s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--cobalt);
  color: #fff;
  box-shadow: 0 8px 24px -10px var(--cobalt-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -10px var(--cobalt-glow), 0 0 0 1px var(--cobalt);
}
.btn-sm { padding: 10px 20px; font-size: 12.5px; }
.btn-lg { padding: 17px 34px; font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.btn-block { width: 100%; }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-right: auto;
}
.nav-logo svg { color: var(--cobalt); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  opacity: 0.65;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { opacity: 1; color: var(--cobalt); }
.lang-toggle {
  display: flex;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  padding: 3px;
  gap: 2px;
  flex: none;
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { background: var(--cobalt); color: #fff; }
.lang-btn.is-active:hover { color: #fff; }

.nav-row-break { display: none; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 18px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  flex: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.menu-toggle:hover { background: var(--surface); color: var(--cobalt); }
.menu-toggle svg { width: 18px; height: 18px; }

.menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 20px;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px -12px rgba(11, 18, 32, 0.18);
  padding: 8px;
  z-index: 110;
}
.menu-panel[hidden] { display: none; }
.menu-panel a {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.menu-panel a:hover { background: var(--surface); color: var(--cobalt); }

/* ==========================================================================
   HERO — the one inset gradient card on an otherwise white page
   ========================================================================== */
.hero {
  position: relative;
  margin-top: var(--nav-h);
  margin-right: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background:
    radial-gradient(circle at 82% 6%, rgba(255,255,255,0.35) 0%, transparent 40%),
    radial-gradient(circle at 88% 2%, var(--hero-bright) 0%, transparent 55%),
    radial-gradient(circle at 10% 105%, var(--hero-deep) 0%, transparent 60%),
    linear-gradient(135deg, var(--hero-deep) 0%, var(--hero-mid) 60%, var(--hero-bright) 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(40px); pointer-events: none; }
.hero-glow-deep {
  bottom: -20%; left: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(5,8,20,0.55) 0%, transparent 70%);
}
.hero-glow-bright {
  top: -15%; right: -10%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}
.hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero .eyebrow { color: #fff; }
.hero .eyebrow .dot { background: #fff; box-shadow: 0 0 8px rgba(255,255,255,0.6); }
.hero-title { font-size: clamp(38px, 5.5vw, 68px); font-weight: 700; letter-spacing: -0.04em; margin: 20px 0 24px; text-wrap: balance; color: #fff; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.8); max-width: 460px; line-height: 1.7; margin: 0 auto 40px; }
.hero-cta { display: flex; justify-content: center; }
.hero-cta .btn-primary {
  background: #fff;
  color: var(--hero-deep);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.35);
}
.hero-cta .btn-primary:hover {
  box-shadow: 0 16px 36px -8px rgba(0,0,0,0.4);
}
.hero-microcopy { font-size: 15px; color: rgba(255,255,255,0.75); margin: 12px 0 40px; }

/* ==========================================================================
   TRUST STRIP — compact proof/process line directly under the hero
   ========================================================================== */
.trust-strip { padding: 22px 24px; text-align: center; background: var(--surface); border-bottom: 1px solid var(--line); }
.trust-strip-inner { max-width: 640px; margin: 0 auto; }
.trust-strip-body { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.01em; color: var(--muted); margin: 0; }

.signature-line { width: 100%; max-width: 360px; margin: 0 auto; }
.signature-line svg { width: 100%; height: auto; overflow: visible; }
.signature-line path {
  stroke: var(--gold);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 0 6px var(--gold-glow));
  animation: draw-signature 1.6s 0.9s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes draw-signature { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .signature-line path { animation: none; stroke-dashoffset: 0; }
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.feature-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cobalt);
  margin-bottom: 8px;
}
.feature-block { padding: 72px 0; text-align: center; }
.feature-block:first-of-type { padding-top: 40px; }
.feature-block + .feature-block { border-top: 1px solid var(--line); }
.feature-block-text { max-width: 640px; margin: 0 auto 40px; }
.feature-block-text .btn { margin-top: 8px; }
.feature-media {
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   VSL HERO (reactivar.html — above the fold)
   ========================================================================== */
.vsl-hero { padding: 160px 24px 72px; text-align: center; }
.vsl-hero-inner { max-width: 720px; margin: 0 auto; }
.vsl-title {
  font-size: clamp(28px, 4vw, 42px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 16px 0 20px;
}
.vsl-sub { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; }

.vsl-video {
  position: relative;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--line-2);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}
.vsl-play {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cobalt);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -8px var(--cobalt-glow);
  flex: none;
}
.vsl-video-caption { font-family: var(--font-display); font-weight: 600; font-size: 17px; max-width: 440px; color: var(--ink); margin: 0; }
.vsl-video-tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

.vsl-microcopy { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; }

/* ==========================================================================
   QUALIFICATION RECAP + FAQ (reactivar.html)
   ========================================================================== */
.trust-section, .faq-section { padding: 64px 24px; text-align: center; border-top: 1px solid var(--line); }
.trust-list {
  list-style: none; margin: 28px auto 32px; padding: 0; max-width: 560px;
  text-align: left; display: flex; flex-direction: column; gap: 14px;
}
.trust-list li { font-size: 15px; color: var(--ink); padding-left: 26px; position: relative; line-height: 1.6; }
.trust-list li::before { content: "✓"; position: absolute; left: 0; color: var(--cobalt); font-weight: 600; }

.faq-list { max-width: 640px; margin: 28px auto 32px; text-align: left; display: flex; flex-direction: column; gap: 24px; }
.faq-list h3 { font-size: 17px; margin-bottom: 6px; }
.faq-list p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }

/* ==========================================================================
   DIAGNOSTIC QUIZ (reactivar.html)
   ========================================================================== */
.diagnostic-page { padding: 96px 24px 100px; display: flex; justify-content: center; }
.diag-container { max-width: 640px; width: 100%; margin: 0 auto; }
.diag-intro { text-align: center; margin-bottom: 32px; }
.diag-intro .eyebrow { justify-content: center; margin-bottom: 12px; }
.diag-intro .muted-lead { margin: 8px auto 0; }

.diag-progress-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.diag-back {
  display: flex; align-items: center; justify-content: center; flex: none;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line-2); color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.diag-back:hover { border-color: var(--cobalt); color: var(--cobalt); }
.diag-back[hidden] { display: none; }
.diag-progress-bar { flex: 1; height: 3px; border-radius: 2px; background: var(--line-2); overflow: hidden; }
.diag-progress-bar span { display: block; height: 100%; background: var(--cobalt); transition: width 0.4s ease; }
.diag-step-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); white-space: nowrap; }

.diag-card { background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 48px 40px; min-height: 320px; }
.diag-step { display: none; }
.diag-step.is-active { display: block; }
.diag-q { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 3vw, 28px); letter-spacing: -0.02em; margin-bottom: 28px; }
.diag-options { display: flex; flex-direction: column; gap: 10px; }
.diag-opt {
  text-align: left;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: var(--paper);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.diag-opt:hover { border-color: var(--cobalt); transform: translateX(4px); }
.diag-opt.is-selected { border-color: var(--cobalt); background: #fff; box-shadow: 0 0 0 1px var(--cobalt); }

.diag-form { display: flex; flex-direction: column; gap: 12px; }
.diag-field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.diag-field input::placeholder { color: var(--muted); }
.diag-field input:focus { border-color: var(--cobalt); }
.diag-form-privacy { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 4px; }

.diag-done .muted-lead { max-width: 100%; }
.diag-done .btn { margin-top: 24px; }
.diag-done .diag-reveal { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--line-2); }

.diag-reveal { text-align: center; }
.diag-reveal .eyebrow { justify-content: center; margin-bottom: 12px; }
.diag-reveal .diag-q { margin-bottom: 4px; }
.diag-reveal-number {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--cobalt);
  margin: 4px 0 14px;
}
.diag-reveal-number span { font-size: 15px; font-weight: 400; letter-spacing: 0; color: var(--muted); margin-left: 6px; }
.diag-reveal-note { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 440px; margin: 0 auto 28px; }
.diag-reveal .btn { margin: 0 auto; }

/* ==========================================================================
   PRICING (precios/index.html) — reuses .diag-* (progress bar, card, step,
   options) from the DIAGNOSTIC QUIZ block above for the estimator itself,
   and .trust-list for checkmark lists, so this page stays visually native
   instead of introducing a parallel component set.
   ========================================================================== */
.pricing-hero { padding: 160px 24px 56px; text-align: center; }
.pricing-hero-inner { max-width: 640px; margin: 0 auto; }
.pricing-hero .h-lg { margin: 16px 0 20px; }
.pricing-anchor { font-family: var(--font-mono); font-size: 13px; color: var(--cobalt); margin: 20px 0 0; }
.pricing-hero-reassurance { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

.pricing-philosophy { padding: 0 24px 80px; max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-philosophy .h-lg { margin: 16px 0 12px; }
.pricing-philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; text-align: left; }
.pricing-philosophy-item { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); }
.pricing-philosophy-item h3 { font-size: 15.5px; margin-bottom: 8px; }
.pricing-philosophy-item p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }
.pricing-philosophy-highlight { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); max-width: 480px; margin: 0 auto; }

.pricing-estimator { padding: 0 24px 96px; }
.pricing-estimator-inner { max-width: 640px; margin: 0 auto; }

.est-opt { text-align: left; }
.est-opt.is-multi::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px;
  margin-right: 10px;
  vertical-align: -2px;
  border: 1.5px solid var(--line-2);
  border-radius: 4px;
}
.est-opt.is-multi.is-selected::before { background: var(--cobalt); border-color: var(--cobalt); }
.est-allnote { font-size: 12.5px; color: var(--cobalt); margin-top: 4px; }

.est-controls { display: flex; gap: 12px; margin-top: 8px; }
.est-controls .btn { flex: 1; }
.btn[disabled] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

.est-result { text-align: center; }
.est-result-tier { font-family: var(--font-display); font-size: clamp(28px, 4vw, 36px); font-weight: 700; letter-spacing: -0.02em; margin: 8px 0 4px; }
.est-result-price { font-family: var(--font-display); font-size: 20px; color: var(--cobalt); margin-bottom: 4px; }
.est-result-badge { font-size: 12.5px; color: var(--muted); margin-bottom: 20px; }
.est-result-desc { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 480px; margin: 0 auto 28px; }

.est-why { text-align: left; background: var(--surface); border-radius: var(--radius-md); padding: 24px 28px; margin: 0 0 20px; }
.est-why h3 { font-size: 14px; margin-bottom: 12px; }

.est-trust {
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--cobalt);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 16px;
}
.est-disclaimer { font-size: 12.5px; color: var(--muted); line-height: 1.6; text-align: left; margin-bottom: 28px; }
.est-result-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.est-recalc { font-size: 13px; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; background: none; border: none; padding: 0; }
.est-recalc:hover { color: var(--cobalt); }

.pricing-included { padding: 0 24px 96px; max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-included .h-lg { margin: 16px 0 12px; }
.pricing-included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; text-align: left; }
.pricing-included-grid h3 { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 16px; }

.pricing-cta { text-align: center; padding: 64px 24px 96px; border-top: 1px solid var(--line); }
.pricing-cta .h-lg { margin: 0 0 12px; }
.pricing-cta-reassurance { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { padding-top: 48px; }
.footer-trust {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 40px;
  flex-wrap: wrap;
}
.footer-logo { font-size: 14px; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--cobalt); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 960px) {
  :root { --nav-h: 84px; }
  .container { padding: 0 28px; }
  .section-pad { padding: 80px 0; }

  /* Without a nav-cta, index/precios headers (logo + lang toggle + hamburger)
     fit on one row at any real phone width — no forced break needed, so
     .nav-row-break stays inert there and menu-toggle just takes its natural
     last-in-DOM position after the lang toggle, matching desktop's order.
     reactivar.html still has no hamburger, but does have .nav-links
     ("Volver al inicio"), whose translated length varies by language —
     .nav-row-break forces IT (+ the lang toggle, ordered to match) onto its
     own row 2 there so that page's header doesn't reshuffle on a language
     switch either. */
  .nav-inner { flex-wrap: wrap; height: auto; padding: 14px 0; row-gap: 12px; }
  .nav-row-break { display: block; order: 3; flex-basis: 100%; height: 0; }
  .nav-links, .lang-toggle { order: 4; margin-left: auto; }
  .menu-toggle { order: 5; }

  .hero { margin-top: var(--nav-h); margin-right: 12px; margin-bottom: 12px; margin-left: 12px; padding: 64px 20px; }

  .pricing-hero { padding: calc(var(--nav-h) + 24px) 20px 24px; }
  .pricing-philosophy-grid { grid-template-columns: 1fr; }
  .pricing-included-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px) {
  :root { --nav-h: 80px; }
  .container { padding: 0 20px; }
  .nav-inner { gap: 10px 16px; }
  .hero { margin-top: var(--nav-h); margin-right: 8px; margin-bottom: 8px; margin-left: 8px; border-radius: var(--radius-lg); }
  .hero-cta .btn { width: 100%; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
}
