/* halo · landing page production styles
   General Sans loaded locally desde /fonts/. */

@font-face {
  font-family: 'General Sans';
  src: url('fonts/GeneralSans-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('fonts/GeneralSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'General Sans';
  src: url('fonts/GeneralSans-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --halo-charcoal: #233D4D;
  --halo-pumpkin:  #FE7F2D;
  --halo-bone:     #EDE4D3;

  --halo-charcoal-50:  #F2F5F7;
  --halo-charcoal-100: #DBE2E7;
  --halo-charcoal-200: #B5C3CC;
  --halo-charcoal-400: #5C7682;
  --halo-charcoal-600: #2E4E62;
  --halo-charcoal-800: #1A2C38;

  --halo-bone-50:  #FAF7F0;
  --halo-bone-100: #F4EFE3;
  --halo-bone-200: #E0D6C0;

  --halo-pumpkin-100: #FFE5D1;
  --halo-pumpkin-600: #E5651A;
  --halo-pumpkin-800: #B34910;

  --bg:        var(--halo-bone);
  --fg:        var(--halo-charcoal);
  --fg-muted:  var(--halo-charcoal-400);
  --line:      var(--halo-bone-200);
  --line-soft: rgba(35,61,77,0.08);
  --accent:    var(--halo-pumpkin);

  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur-fast: 120ms;
  --dur: 200ms;
  --dur-slow: 360ms;

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 14px;
  --r-xl: 20px;

  --container: 1180px;
  --pad-x: 32px;
  --section-y: 96px;

  --display-size: 76px;
}

[data-key="dark"] {
  --bg:        var(--halo-charcoal);
  --fg:        var(--halo-bone);
  --fg-muted:  var(--halo-charcoal-200);
  --line:      var(--halo-charcoal-600);
  --line-soft: rgba(237,228,211,0.08);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'General Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background var(--dur-slow) var(--ease), color var(--dur-slow) var(--ease);
}

/* type tokens */
.t-display {
  font-size: var(--display-size);
  line-height: 0.9;
  letter-spacing: -0.055em;
  font-weight: 500;
  margin: 0;
}
.t-h1 {
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin: 0;
}
.t-h2 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0;
}
.t-h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0;
}
.t-body-lg { font-size: 18px; line-height: 1.5; font-weight: 400; }
.t-body    { font-size: 16px; line-height: 1.6; font-weight: 400; }
.t-body-sm { font-size: 14px; line-height: 1.5; font-weight: 400; }
.t-micro {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
}

.muted { color: var(--fg-muted); }

/* layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* navbar */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background var(--dur-slow) var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--fg);
}
.nav-links {
  display: flex;
  gap: 32px;
  justify-self: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta-wrap { justify-self: end; }

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--halo-pumpkin);
  color: #fff;
}
.btn-primary:hover { background: var(--halo-pumpkin-600); }
.btn-primary:active { background: var(--halo-pumpkin-800); }

.btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn-secondary:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn-arrow { display: inline-block; transition: transform var(--dur) var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* hero */
.hero {
  padding-top: 64px;
  padding-bottom: var(--section-y);
  position: relative;
  overflow: hidden;
}
.hero-container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  color: var(--fg-muted);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--halo-pumpkin);
}
.hero-headline {
  margin-bottom: 28px;
  max-width: 13ch;
}
.hero-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* hero rotator (palabra que cicla — verbos del comerciante) */
.hero-rotator {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  height: 1em;
  line-height: inherit;
  white-space: nowrap;
  transition: width 0.45s var(--ease);
}
.hero-rotator .rotator-word {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(85%);
  transition: opacity 0.42s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
  font-style: inherit;
  color: inherit;
  font-weight: inherit;
}
.hero-rotator .rotator-word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-rotator .rotator-word.is-leaving {
  opacity: 0;
  transform: translateY(-85%);
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotator,
  .hero-rotator .rotator-word { transition: none; }
}
.hero-sub {
  max-width: 460px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--fg-muted);
}
.hero-meta-line {
  width: 32px;
  height: 1.5px;
  background: var(--accent);
}

/* hero ambient rings */
.ambient {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  left: -180px;
  top: 120px;
  width: 520px;
  height: 520px;
}

/* mockup pane — frameless, video integrates with hero */
.mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mockup-stage {
  position: absolute;
  inset: 0;
}
.rings-stage { display: grid; place-items: center; }

.hero-video {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}
[data-key="dark"] .hero-video { mix-blend-mode: screen; }

/* ============================================
   HERO ANIMATION — replaces hero.mp4
   5s loop, 5 phases:
   0-1s   : wordmark visible, no aura
   1-2s   : aura traces in (stroke-dashoffset)
   2-3.5s : aura rotates one full turn
   3.5-4.5s: pulse (scale 1 → 1.06 → 1)
   4.5-5s : aura fades, particles burst & orbit, fade out → loop
   ============================================ */

.hero-anim {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  overflow: visible;
}

/* wordmark — sits behind aura, always visible */
.hero-anim-wordmark {
  font-family: "General Sans", system-ui, sans-serif;
}

/* aura ellipse — perimeter ~ 870 (using approx P = π[3(a+b) − √((3a+b)(a+3b))]
   for rx=240 ry=34 it's ~870; we set dasharray to 900 to cover with margin */
.aura-trace {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: halo-aura-trace 5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* rotation wrapper */
.aura-rotate {
  transform-origin: 300px 200px;
  animation: halo-aura-rotate 5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

/* pulse wrapper */
.aura-pulse {
  transform-origin: 300px 200px;
  animation: halo-aura-pulse 5s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

/* particles container */
.particles {
  transform-origin: 300px 200px;
}
.particle {
  fill: var(--halo-pumpkin);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: halo-particle-burst 5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ----- keyframes ----- */

/* aura traces in (1-2s), holds visible while rotating + pulsing,
   then fades out during particle phase (4.5-5s) */
@keyframes halo-aura-trace {
  0%   { stroke-dashoffset: 900; opacity: 0; }
  18%  { stroke-dashoffset: 900; opacity: 0; }       /* 0-0.9s nothing */
  20%  { opacity: 1; }                               /* 1.0s pop in */
  40%  { stroke-dashoffset: 0;   opacity: 1; }       /* 2.0s fully drawn */
  88%  { stroke-dashoffset: 0;   opacity: 1; }       /* 4.4s still drawn */
  92%  { stroke-dashoffset: 0;   opacity: 0; }       /* 4.6s fade for particle phase */
  100% { stroke-dashoffset: 900; opacity: 0; }       /* 5.0s reset */
}

/* rotates 360° smoothly between 2s and 3.5s */
@keyframes halo-aura-rotate {
  0%, 40%   { transform: rotate(0deg); }             /* 0-2s held */
  70%       { transform: rotate(360deg); }           /* 2-3.5s rotate */
  100%      { transform: rotate(360deg); }           /* held until loop */
}

/* pulse once between 3.5s and 4.5s */
@keyframes halo-aura-pulse {
  0%, 70%  { transform: scale(1); }                  /* 0-3.5s nothing */
  80%      { transform: scale(1.06); }               /* 4.0s peak */
  88%      { transform: scale(1); }                  /* 4.4s settle */
  100%     { transform: scale(1); }
}

/* particle burst between 4.5s and 5s.
   Particles emerge from aura position, orbit ~120° outward, then fade.
   Each particle's --angle and --dist set its destination. */
@keyframes halo-particle-burst {
  0%, 88% {
    opacity: 0;
    transform: rotate(var(--angle)) translateX(0px) rotate(calc(var(--angle) * -1)) scale(0.4);
  }
  92% {
    opacity: 1;
    transform: rotate(var(--angle)) translateX(var(--dist)) rotate(calc(var(--angle) * -1)) scale(1);
  }
  98% {
    opacity: 1;
    transform: rotate(calc(var(--angle) + 60deg)) translateX(var(--dist)) rotate(calc((var(--angle) + 60deg) * -1)) scale(1);
  }
  100% {
    opacity: 0;
    transform: rotate(calc(var(--angle) + 90deg)) translateX(0px) rotate(calc((var(--angle) + 90deg) * -1)) scale(0.4);
  }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aura-trace,
  .aura-rotate,
  .aura-pulse,
  .particle {
    animation: none;
  }
  .aura-trace { stroke-dashoffset: 0; }
}

/* rings animation */
@keyframes halo-ring-expand {
  0%   { r: 40; opacity: 0; stroke-width: 2; }
  10%  { opacity: 0.85; }
  80%  { opacity: 0.34; }
  100% { r: 280; opacity: 0; stroke-width: 0.5; }
}
.halo-ring {
  fill: none;
  stroke: var(--halo-pumpkin);
  transform-origin: center;
  animation: halo-ring-expand 4s var(--ease) infinite;
}
.halo-ring.r2 { animation-delay: 1.33s; }
.halo-ring.r3 { animation-delay: 2.66s; }

/* mockup corner labels */
.corner {
  position: absolute;
  padding: 16px;
  z-index: 2;
  color: var(--fg-muted);
}
.corner-tl { top: 0; left: 0; }
.corner-br { bottom: 0; right: 0; }

/* sections */
section { padding: var(--section-y) 0; }
section.tight { padding: 64px 0; }
.casos-section { padding-top: 64px; }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.section-eyebrow .num { color: var(--accent); }

.section-title {
  max-width: 18ch;
  margin-bottom: 56px;
}

/* qué hacemos */
.qh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.qh-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color var(--dur) var(--ease);
  background: transparent;
}
.qh-card:hover { border-color: var(--halo-charcoal-200); }
.qh-card .num {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 64px;
  letter-spacing: 0.12em;
  font-weight: 500;
}
.qh-card h3 { margin-bottom: 12px; }
.qh-card p { color: var(--fg-muted); margin: 0; max-width: 28ch; }

/* casos */
.casos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.caso {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color var(--dur) var(--ease);
}
.caso:hover { border-color: var(--halo-charcoal-200); }
.caso-eyebrow {
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.caso-stat {
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 500;
}
.caso-stat .unit {
  font-size: 18px;
  letter-spacing: 0;
  color: var(--fg-muted);
  margin-left: 6px;
  font-weight: 400;
  vertical-align: middle;
}
.caso-desc { color: var(--fg-muted); margin: 0; }
.caso-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--fg-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* caso · variantes (real con link, placeholder honesto) */
a.caso {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.caso--real:hover {
  border-color: var(--halo-pumpkin);
  transform: translateY(-2px);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.caso--placeholder {
  border-style: dashed;
  background: transparent;
  opacity: 0.78;
}
.caso--placeholder:hover {
  opacity: 1;
  border-color: var(--halo-charcoal-200);
}
.caso-stat--placeholder {
  color: var(--halo-charcoal-200);
  letter-spacing: -0.05em;
}
.casos-intro {
  max-width: 720px;
  margin: 0 0 48px;
  color: var(--fg-muted);
}
.casos-footnote {
  margin: 32px 0 0;
  color: var(--fg-muted);
  text-align: center;
}
.casos-footnote a {
  color: var(--halo-pumpkin);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.casos-footnote a:hover {
  color: var(--halo-pumpkin-600);
}

/* manifesto */
.manifesto-section { padding-top: 32px; }
.manifesto-grid {
  border-top: 1px solid var(--line);
  padding-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: flex-start;
}
.manifesto-label { color: var(--fg-muted); margin-top: 12px; }
.manifesto-text {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-style: italic;
  margin: 0;
  max-width: 22ch;
}

/* CTA */
.cta {
  padding-top: 32px;
  padding-bottom: var(--section-y);
}
.cta-inner {
  border-top: 1px solid var(--line);
  padding-top: 96px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.cta-headline { max-width: 14ch; }
.cta-headline em { font-style: italic; color: var(--accent); font-weight: 500; }
.cta-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cta-side p { color: var(--fg-muted); max-width: 38ch; margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* footer */
footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--fg-muted);
  font-size: 13px;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
}

/* responsive */
@media (max-width: 880px) {
  :root { --display-size: 52px; --pad-x: 24px; --section-y: 72px; }

  /* navbar mobile: brand a la izquierda, qué hacemos a la derecha */
  .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-links { display: flex; gap: 0; }
  .nav-links a { display: none; }
  .nav-links a[href="#qh"] { display: inline-block; opacity: 1; }
  .nav-cta-wrap { display: none; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .qh-grid, .casos-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .t-h1 { font-size: 36px; }
  .t-h2 { font-size: 26px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 16px; }
  .manifesto-text { font-size: 22px; max-width: none; }
  .ambient { left: -260px; top: 60px; width: 420px; height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  .halo-ring { animation: none; opacity: 0.3; }
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}

/* ──────────────────────────────────────────────────
   AUDIENCE CALLOUT · entry point a /terapeutas
   bloque visual destacado entre hero y "qué hacemos"
   ────────────────────────────────────────────────── */

.callout-band {
  padding: 32px 0 64px;
}

.callout-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 56px;
  background: var(--halo-charcoal);
  color: var(--halo-bone);
  border-radius: var(--r-xl);
  box-shadow: 0 20px 50px rgba(35,61,77,0.20);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.callout-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 70px rgba(35,61,77,0.28);
}

.callout-glow {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,127,45,0.35) 0%, transparent 65%);
  pointer-events: none;
}

.callout-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.callout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 16px;
  background: var(--halo-pumpkin);
  color: var(--halo-charcoal);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
.callout-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--halo-charcoal);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.callout-headline {
  margin: 4px 0 0;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--halo-bone);
}
.callout-headline em {
  color: var(--halo-pumpkin);
  font-style: italic;
  font-weight: 500;
}

.callout-sub {
  color: var(--halo-charcoal-200);
  margin: 0;
  max-width: 540px;
}
.callout-sub strong {
  color: var(--halo-bone);
  font-weight: 500;
}

.callout-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 14px 24px;
  background: var(--halo-pumpkin);
  color: var(--halo-charcoal);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 8px;
  transition: background var(--dur) var(--ease), gap var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.callout-card:hover .callout-cta {
  background: var(--halo-bone);
  gap: 14px;
}
.callout-cta-arrow {
  display: inline-block;
  transition: transform var(--dur) var(--ease);
}
.callout-card:hover .callout-cta-arrow {
  transform: translateX(2px);
}

/* mini mockup visual */
.callout-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.callout-mini-mockup {
  width: 100%;
  max-width: 320px;
  background: var(--halo-charcoal);
  border: 1px solid rgba(237, 228, 211, 0.10);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 24px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(254, 127, 45, 0.08);
  transform: rotate(-2deg);
  transition: transform var(--dur-slow) var(--ease);
}
.callout-card:hover .callout-mini-mockup {
  transform: rotate(0deg) translateY(-4px);
}

.callout-mini-bar {
  display: flex;
  gap: 5px;
  padding: 8px 12px;
  background: var(--halo-charcoal-800);
}
.callout-mini-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--halo-charcoal-600);
}
.callout-mini-bar span:nth-child(1) { background: #FF5F57; opacity: 0.85; }
.callout-mini-bar span:nth-child(2) { background: #FEBC2E; opacity: 0.85; }
.callout-mini-bar span:nth-child(3) { background: #28C840; opacity: 0.85; }

.callout-mini-body {
  background: var(--halo-bone);
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 180px;
}

.callout-mini-logo {
  font-family: 'General Sans', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--halo-charcoal);
  letter-spacing: -0.02em;
}

.callout-mini-h {
  font-size: 18px;
  line-height: 1.1;
  font-style: italic;
  color: var(--halo-charcoal);
  letter-spacing: -0.03em;
  font-weight: 500;
}
.callout-mini-h em {
  color: var(--halo-pumpkin);
  font-style: italic;
  font-weight: 500;
}

.callout-mini-btn {
  display: inline-block;
  width: fit-content;
  padding: 6px 14px;
  font-size: 10px;
  color: var(--halo-bone);
  background: var(--halo-charcoal);
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: auto;
}

/* responsive */
@media (max-width: 900px) {
  .callout-band { padding: 16px 0 48px; }
  .callout-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .callout-visual {
    order: -1;
  }
  .callout-mini-mockup {
    max-width: 280px;
    transform: rotate(0deg);
  }
  .callout-glow {
    top: -60px;
    right: -80px;
    width: 220px;
    height: 220px;
  }
  .callout-eyebrow { padding: 7px 14px; letter-spacing: 0.1em; font-size: 10px; }
  .callout-headline { font-size: 26px; letter-spacing: -0.025em; line-height: 1.1; }
  .callout-sub { font-size: 15px; }
  .callout-cta { padding: 13px 22px; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .callout-card { padding: 28px 20px; }
  .callout-mini-mockup { max-width: 240px; }
  .callout-headline { font-size: 22px; }
  .callout-eyebrow { font-size: 9.5px; padding: 6px 12px; }
}

/* Safety net: nunca overflow horizontal */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; }
}

/* ──────────────────────────────────────────────────
   PLANES · 3 tiers compartido (index + terapeutas)
   ────────────────────────────────────────────────── */

.planes-section {
  padding: var(--section-y) 0;
}

.planes-intro {
  color: var(--fg-muted);
  max-width: 56ch;
  margin: -28px 0 56px;
}

.planes-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--halo-bone-50);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 36px 32px 32px;
  transition:
    transform var(--dur-slow) var(--ease),
    border-color var(--dur) var(--ease),
    box-shadow var(--dur-slow) var(--ease);
}
.plan-card:hover {
  transform: translateY(-2px);
  border-color: var(--halo-charcoal-200);
}

.plan-card-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 24px;
}

.plan-card-name {
  color: var(--fg-muted);
  letter-spacing: 0.18em;
}

.plan-card-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--fg);
  line-height: 1;
}
.plan-card-price-currency {
  font-size: 22px;
  font-weight: 500;
  align-self: flex-start;
  margin-top: 6px;
  color: var(--fg-muted);
}
.plan-card-price-amount {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan-card-price-unit {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-left: 6px;
}

.plan-card-tagline {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-muted);
  margin: 0;
  max-width: 30ch;
}

.plan-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.plan-card-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--fg);
}
.plan-card-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 500;
}

.plan-card-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.plan-card-btn { width: 100%; justify-content: center; }
.plan-card-meta {
  color: var(--fg-muted);
  text-align: center;
}

/* Featured · charcoal background */
.plan-card--featured {
  background: var(--halo-charcoal);
  color: var(--halo-bone);
  border-color: var(--halo-charcoal);
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(35, 61, 77, 0.18);
}
.plan-card--featured:hover {
  transform: translateY(-16px);
  border-color: var(--halo-charcoal);
  box-shadow: 0 28px 60px rgba(35, 61, 77, 0.28);
}
.plan-card--featured .plan-card-head {
  border-bottom-color: rgba(237, 228, 211, 0.12);
}
.plan-card--featured .plan-card-name { color: var(--halo-pumpkin); }
.plan-card--featured .plan-card-price { color: var(--halo-bone); }
.plan-card--featured .plan-card-price-currency { color: rgba(237, 228, 211, 0.6); }
.plan-card--featured .plan-card-price-unit { color: rgba(237, 228, 211, 0.6); }
.plan-card--featured .plan-card-tagline { color: rgba(237, 228, 211, 0.7); }
.plan-card--featured .plan-card-features li { color: var(--halo-bone); }
.plan-card--featured .plan-card-features li::before { color: var(--halo-pumpkin); }
.plan-card--featured .plan-card-foot { border-top-color: rgba(237, 228, 211, 0.12); }
.plan-card--featured .plan-card-meta { color: rgba(237, 228, 211, 0.6); }

.plan-card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--halo-pumpkin);
  color: var(--halo-charcoal);
  padding: 7px 16px;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.14em;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(254, 127, 45, 0.32);
}

.planes-footnote {
  color: var(--fg-muted);
  margin-top: 48px;
  text-align: center;
}

/* Responsive: tablet/mobile stacked, featured primero en mobile */
@media (max-width: 1000px) {
  .planes-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan-card { padding: 32px 24px 28px; }
  .plan-card--featured { transform: none; order: -1; }
  .plan-card--featured:hover { transform: translateY(-2px); }
  .plan-card-badge { top: -12px; }
}

@media (max-width: 600px) {
  .plan-card-price-amount { font-size: 44px; }
  .plan-card { padding: 28px 20px 24px; }
  .planes-intro { margin-top: -16px; margin-bottom: 40px; }
}
