/* =====================================================================
   PLAT CONSULTORA — style.css
   Entender. Resolver. Crecer.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. RESET
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, dl, dd, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }
svg { display: block; }

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

/* ---------------------------------------------------------------------
   2. VARIABLES
   --------------------------------------------------------------------- */
:root {
  /* Navy — base de marca */
  --navy-950: #060912;
  --navy-900: #0A1128;
  --navy-850: #0D1530;
  --navy-800: #101A3A;
  --navy-700: #16234F;
  --navy-600: #202F63;
  --navy-500: #2C3D7A;

  /* Acentos del isotipo */
  --c-orange: #F97316;
  --c-yellow: #FBBF24;
  --c-blue:   #3B82F6;
  --c-cyan:   #22D3EE;
  --c-violet: #A78BFA;

  /* Texto */
  --ink-100: #F8FAFC;
  --ink-300: #CBD5E1;
  --ink-500: #94A3B8;
  --ink-700: #64748B;

  /* Superficies */
  --surface-glass: rgba(255, 255, 255, 0.04);
  --surface-glass-border: rgba(255, 255, 255, 0.09);
  --surface-card: rgba(255, 255, 255, 0.035);

  /* Tipografía */
  --font-display: 'Sora', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Espaciado */
  --space-section: clamp(64px, 9vw, 128px);
  --container-w: 1200px;

  /* Radios */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Sombras */
  --shadow-glow: 0 20px 60px -20px rgba(59, 130, 246, 0.35);
  --shadow-card: 0 10px 40px -18px rgba(0, 0, 0, 0.55);

  /* Transiciones */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.2s;
  --t-med: 0.45s;
}

/* ---------------------------------------------------------------------
   3. BASE
   --------------------------------------------------------------------- */
body {
  background: var(--navy-950);
  color: var(--ink-300);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 900px 600px at 15% -10%, rgba(59, 130, 246, 0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(249, 115, 22, 0.08), transparent 55%),
    radial-gradient(ellipse 800px 700px at 50% 100%, rgba(34, 211, 238, 0.07), transparent 60%),
    var(--navy-950);
  pointer-events: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink-100);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); }

p { color: var(--ink-300); }

strong { color: var(--ink-100); font-weight: 600; }

.text-gradient {
  background: linear-gradient(100deg, var(--c-orange) 0%, var(--c-yellow) 35%, var(--c-cyan) 70%, var(--c-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 14px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--c-blue);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--c-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------
   4. LAYOUT
   --------------------------------------------------------------------- */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head--center { max-width: 680px; margin-left: auto; margin-right: auto; text-align: center; }
.section-head__lead { font-size: 1.05rem; color: var(--ink-500); margin-top: 14px; }

/* ---------------------------------------------------------------------
   5. REVEAL ON SCROLL
   --------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------
   6. BUTTONS
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(100deg, var(--c-orange), var(--c-yellow) 50%, var(--c-blue));
  color: var(--navy-950);
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 24px 70px -18px rgba(59, 130, 246, 0.5); }
.btn--ghost {
  background: var(--surface-glass);
  border: 1px solid var(--surface-glass-border);
  color: var(--ink-100);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--c-cyan); background: rgba(34, 211, 238, 0.08); transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn__spinner {
  display: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(6, 9, 18, 0.3);
  border-top-color: var(--navy-950);
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn__spinner { display: inline-block; }
.btn.is-loading .btn__label { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------------------------------------------------------------
   7. NAVBAR
   --------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: padding var(--t-fast) var(--ease), background var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  border-bottom: 1px solid transparent;
}
.navbar.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 9, 18, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--surface-glass-border);
}
.navbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.navbar__brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar__logo { border-radius: 10px; }
.navbar__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink-100);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.navbar__wordmark-sub {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--ink-500);
  margin-top: 3px;
}
.navbar__nav { display: flex; align-items: center; gap: 32px; }
.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-300);
  transition: color var(--t-fast);
  position: relative;
}
.navbar__link:hover { color: var(--ink-100); }
.navbar__actions { display: flex; align-items: center; gap: 16px; }
.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 6px 0;
}
.navbar__burger span { display: block; height: 2px; background: var(--ink-100); border-radius: 2px; transition: transform var(--t-fast), opacity var(--t-fast); }
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   8. HERO
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.45; }
.hero__glow--orange { width: 480px; height: 480px; background: var(--c-orange); top: -120px; right: -100px; }
.hero__glow--blue { width: 520px; height: 520px; background: var(--c-blue); bottom: -180px; left: -160px; }
.hero__orbits { position: absolute; top: 50%; right: -10%; width: 60vw; max-width: 800px; transform: translateY(-50%); opacity: 0.5; }
.orbit-ring { fill: none; stroke: rgba(148, 163, 184, 0.18); stroke-width: 1; }
.orbit-ring--1 { animation: spin-slow 60s linear infinite; }
.orbit-ring--2 { animation: spin-slow-rev 90s linear infinite; stroke-dasharray: 2 10; }
@keyframes spin-slow { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes spin-slow-rev { from { transform: rotate(360deg); } to { transform: rotate(0); } }
.orbit-node circle { fill: var(--c-cyan); }
.orbit-node--1 { transform: translate(400px, 140px); }
.orbit-node--1 circle { fill: var(--c-orange); }
.orbit-node--2 { transform: translate(620px, 300px); }
.orbit-node--3 { transform: translate(150px, 380px); }
.orbit-node--3 circle { fill: var(--c-yellow); }
.orbit-node--4 { transform: translate(500px, 560px); }
.orbit-node--4 circle { fill: var(--c-violet); }

.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__title { font-size: clamp(2.3rem, 5.2vw, 4rem); margin-bottom: 22px; }
.hero__subtitle { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--ink-300); max-width: 620px; margin-bottom: 28px; }

.hero__tagline {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 36px;
}
.hero__tagline-item--cyan { color: var(--c-cyan); }
.hero__tagline-item--orange { color: var(--c-orange); }
.hero__tagline-item--violet { color: var(--c-violet); }
.hero__tagline-dot { color: var(--ink-700); }

.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.hero__trust { font-size: 0.85rem; color: var(--ink-700); }

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid var(--surface-glass-border);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 8px;
  z-index: 1;
}
.hero__scroll span { width: 4px; height: 8px; background: var(--c-cyan); border-radius: 2px; animation: scroll-bounce 1.8s ease infinite; }
@keyframes scroll-bounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(10px); opacity: 0.3; } }

/* ---------------------------------------------------------------------
   9. REALIDAD (pain points)
   --------------------------------------------------------------------- */
.realidad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.realidad-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-md);
  padding: 28px 22px 22px;
  position: relative;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.realidad-card:hover { transform: translateY(-4px); border-color: rgba(34, 211, 238, 0.35); }
.realidad-card__quote {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--c-cyan);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.realidad-card p { color: var(--ink-100); font-size: 0.98rem; font-weight: 500; line-height: 1.5; }

/* ---------------------------------------------------------------------
   10. SISTEMA (síntoma → causa)
   --------------------------------------------------------------------- */
.sistema-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sistema-card {
  background: linear-gradient(160deg, var(--surface-card), transparent);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
}
.sistema-card__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.sistema-card__label--sintoma { background: rgba(148, 163, 184, 0.12); color: var(--ink-500); }
.sistema-card__label--causa { background: rgba(249, 115, 22, 0.14); color: var(--c-orange); }
.sistema-card__text { color: var(--ink-100); font-weight: 600; font-size: 1.05rem; margin-bottom: 14px; }
.sistema-card__text--causa { color: var(--ink-300); font-weight: 400; font-size: 0.95rem; margin-bottom: 0; }
.sistema-card__arrow { display: block; color: var(--ink-700); margin: 6px 0 14px; font-size: 1.2rem; }

/* ---------------------------------------------------------------------
   11. WHEEL — Mirada PLAT 360°
   --------------------------------------------------------------------- */
.wheel {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
.wheel__diagram {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
}
.wheel__svg { width: 100%; height: 100%; }
.wheel__ring { fill: none; stroke: rgba(148, 163, 184, 0.2); stroke-width: 1; stroke-dasharray: 3 7; }
.wheel__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 128px; height: 128px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--navy-600), var(--navy-850));
  border: 1px solid var(--surface-glass-border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px -10px rgba(59, 130, 246, 0.4);
}
.wheel__center-label { font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.05em; text-align: center; color: var(--ink-100); }

.wheel-node {
  cursor: pointer;
}
.wheel-node circle.wn-outer { fill: rgba(255,255,255,0.03); stroke: var(--node-color, var(--c-cyan)); stroke-width: 1.4; transition: fill var(--t-fast), r var(--t-fast); }
.wheel-node circle.wn-dot { fill: var(--node-color, var(--c-cyan)); }
.wheel-node text { fill: var(--ink-300); font-family: var(--font-body); font-size: 11px; font-weight: 600; text-anchor: middle; transition: fill var(--t-fast); }
.wheel-node:hover circle.wn-outer, .wheel-node.is-active circle.wn-outer { fill: rgba(255,255,255,0.08); r: 30; }
.wheel-node:hover text, .wheel-node.is-active text { fill: var(--ink-100); }

.wheel__panel { display: flex; flex-direction: column; gap: 12px; }
.wheel__item {
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-md);
  background: var(--surface-card);
  overflow: hidden;
  transition: border-color var(--t-fast);
}
.wheel__item:has(.wheel__item-trigger[aria-expanded="true"]) { border-color: var(--dim-color); }
.wheel__item-trigger {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  text-align: left;
}
.wheel__item-number { font-family: var(--font-display); font-weight: 800; font-size: 0.85rem; color: var(--dim-color); }
.wheel__item-title { font-family: var(--font-display); font-weight: 700; color: var(--ink-100); font-size: 1.02rem; flex: 1; }
.wheel__item-chevron {
  width: 10px; height: 10px;
  border-right: 2px solid var(--ink-500); border-bottom: 2px solid var(--ink-500);
  transform: rotate(45deg);
  transition: transform var(--t-fast);
}
.wheel__item-trigger[aria-expanded="true"] .wheel__item-chevron { transform: rotate(-135deg); }
.wheel__item-body { padding: 0 22px 24px; }
.wheel__item-resumen { color: var(--ink-100); font-weight: 500; margin-bottom: 16px; font-size: 0.98rem; }
.wheel__item-body dl { display: grid; gap: 14px; }
.wheel__item-body dt { font-family: var(--font-display); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim-color); margin-bottom: 4px; }
.wheel__item-body dd { font-size: 0.92rem; color: var(--ink-500); margin: 0; line-height: 1.55; }

.complementarias__label { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; color: var(--ink-500); text-align: center; margin-bottom: 24px; letter-spacing: 0.03em; }
.complementarias__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.complementarias__item {
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-md);
  padding: 20px;
  background: var(--surface-glass);
}
.complementarias__item h3 { font-size: 0.95rem; margin-bottom: 8px; color: var(--ink-100); }
.complementarias__item p { font-size: 0.85rem; color: var(--ink-500); }

/* ---------------------------------------------------------------------
   12. METODO PLAT
   --------------------------------------------------------------------- */
.metodo-timeline { position: relative; max-width: 780px; margin: 0 auto; }
.metodo-timeline::before {
  content: '';
  position: absolute; left: 27px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(var(--navy-500), transparent);
}
.metodo-step { display: flex; gap: 28px; padding-bottom: 56px; position: relative; }
.metodo-step:last-child { padding-bottom: 0; }
.metodo-step__marker {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy-850); border: 2px solid var(--mc);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 30px -6px var(--mc);
  position: relative; z-index: 1;
}
.metodo-step__marker span { font-family: var(--font-display); font-weight: 800; color: var(--mc); }
.metodo-step__content h3 { margin-bottom: 10px; color: var(--mc); }
.metodo-step__content p { max-width: 560px; margin-bottom: 16px; }
.metodo-step__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.metodo-step__tags li {
  font-size: 0.8rem; font-weight: 600; color: var(--ink-300);
  background: var(--surface-glass); border: 1px solid var(--surface-glass-border);
  padding: 6px 14px; border-radius: var(--r-pill);
}

/* ---------------------------------------------------------------------
   13. MAS QUE UNA CONSULTORIA
   --------------------------------------------------------------------- */
.comparativa {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto 64px;
}
.comparativa__title { font-family: var(--font-display); font-weight: 700; color: var(--ink-100); margin-bottom: 18px; font-size: 1rem; }
.comparativa__col--tradicional { opacity: 0.55; }
.comparativa__steps { display: flex; flex-direction: column; gap: 10px; }
.comparativa__steps li {
  padding: 12px 16px; border-radius: var(--r-sm);
  background: var(--surface-glass); border: 1px solid var(--surface-glass-border);
  font-size: 0.9rem; color: var(--ink-500);
}
.comparativa__steps--plat li {
  color: var(--ink-100); font-weight: 600;
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(90deg, rgba(59,130,246,0.08), transparent);
}
.comparativa__divider { display: flex; align-items: center; justify-content: center; height: 100%; padding-top: 40px; }
.comparativa__divider span {
  width: 1px; height: 100%; min-height: 180px;
  background: linear-gradient(var(--navy-500), transparent);
}

.diagnostico360 {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  background: linear-gradient(120deg, rgba(59,130,246,0.08), rgba(249,115,22,0.05));
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-lg);
  padding: 40px;
}
.diagnostico360__text h3 { margin-bottom: 10px; }
.diagnostico360__text > p { margin-bottom: 18px; max-width: 480px; }
.diagnostico360__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 24px; }
.diagnostico360__list li { font-size: 0.9rem; color: var(--ink-300); padding-left: 18px; position: relative; }
.diagnostico360__list li::before { content: '→'; position: absolute; left: 0; color: var(--c-cyan); }

/* ---------------------------------------------------------------------
   14. MOMENTOS
   --------------------------------------------------------------------- */
.momentos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.momento-chip {
  text-align: left;
  padding: 18px 20px;
  border-radius: var(--r-md);
  border: 1px solid var(--surface-glass-border);
  background: var(--surface-card);
  color: var(--ink-300);
  font-size: 0.92rem;
  transition: border-color var(--t-fast), transform var(--t-fast), color var(--t-fast);
}
.momento-chip:hover { border-color: var(--c-cyan); color: var(--ink-100); transform: translateY(-3px); }

/* ---------------------------------------------------------------------
   15. EXPERIENCIA
   --------------------------------------------------------------------- */
.experiencia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.experiencia-text h2 { margin-bottom: 20px; }
.experiencia-text p { margin-bottom: 14px; }
.especialistas-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-lg);
  padding: 36px;
}
.especialistas-card h3 { margin-bottom: 14px; color: var(--ink-100); }
.especialistas-card p { margin-bottom: 12px; font-size: 0.94rem; }

/* ---------------------------------------------------------------------
   16. FOUNDERS
   --------------------------------------------------------------------- */
.founders-converge { max-width: 600px; margin: 0 auto 24px; }
.founders-converge__svg { width: 100%; height: auto; }
.fc-line { fill: none; stroke-width: 1.5; opacity: 0.5; }
.fc-line--1, .fc-line--2 { stroke: var(--c-orange); }
.fc-line--3, .fc-line--4 { stroke: var(--c-blue); }
.fc-center { fill: var(--c-cyan); }

.founders-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.founder-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  text-align: center;
  transition: transform var(--t-fast) var(--ease), border-color var(--t-fast);
}
.founder-card:hover { transform: translateY(-5px); border-color: var(--fc); }
.founder-card__avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 18px; overflow: hidden;
  border: 2px solid var(--fc);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-800);
}
.founder-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__avatar-fallback {
  display: none;
  font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; color: var(--fc);
}
.founder-card__avatar--fallback .founder-card__avatar-fallback { display: block; }
.founder-card__avatar--sinfoto span, .founder-card__avatar--institucional span {
  font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--fc);
}
.founder-card__avatar--institucional { border-style: dashed; }
.founder-card__nombre { font-size: 1.1rem; margin-bottom: 4px; }
.founder-card__rol { font-size: 0.82rem; color: var(--fc); font-weight: 600; margin-bottom: 12px; }
.founder-card__bio { font-size: 0.87rem; color: var(--ink-500); line-height: 1.55; }

/* ---------------------------------------------------------------------
   17. CLIENTES
   --------------------------------------------------------------------- */
.clientes-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 48px; }
.clientes-item img { max-height: 48px; width: auto; opacity: 0.7; filter: grayscale(1); transition: opacity var(--t-fast), filter var(--t-fast); }
.clientes-item img:hover { opacity: 1; filter: grayscale(0); }

/* ---------------------------------------------------------------------
   18. ORIGEN
   --------------------------------------------------------------------- */
.origen-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.origen-text__lead { font-size: 1.15rem; color: var(--ink-100); font-weight: 600; margin-bottom: 16px; }
.origen-visual { position: relative; }
.origen-visual__svg { width: 100%; height: auto; }
.ov-line { stroke: var(--navy-500); stroke-width: 1.5; stroke-dasharray: 4 6; }
.ov-node--1 { fill: var(--c-cyan); }
.ov-node--2 { fill: var(--c-orange); }
.ov-node--3 { fill: var(--c-violet); }
.origen-visual__labels { position: relative; }
.ov-label {
  position: absolute;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
  color: var(--ink-300); white-space: nowrap;
}
.ov-label--1 { top: -78px; left: 12%; }
.ov-label--2 { top: -158px; left: 42%; }
.ov-label--3 { top: -228px; left: 76%; color: var(--c-violet); }

/* ---------------------------------------------------------------------
   19. CTA FINAL
   --------------------------------------------------------------------- */
.section--cta-final { padding: 80px 0; }
.cta-final {
  text-align: center;
  max-width: 700px; margin: 0 auto;
  padding: 64px 40px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(59,130,246,0.12));
  border: 1px solid var(--surface-glass-border);
}
.cta-final h2 { margin-bottom: 28px; }

/* ---------------------------------------------------------------------
   20. CONTACTO
   --------------------------------------------------------------------- */
.contacto-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.contacto-text h2 { margin-bottom: 16px; }
.contacto-text > p { margin-bottom: 28px; }
.contacto-alt { display: flex; flex-direction: column; gap: 14px; }
.contacto-alt__item { display: flex; align-items: center; gap: 12px; font-size: 0.94rem; color: var(--ink-300); transition: color var(--t-fast); }
a.contacto-alt__item:hover { color: var(--c-cyan); }
.contacto-alt__icon { width: 36px; height: 36px; border-radius: 50%; background: var(--surface-glass); border: 1px solid var(--surface-glass-border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.contacto-form {
  background: var(--surface-card);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 18px;
}
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--ink-300); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--navy-900);
  border: 1px solid var(--surface-glass-border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  color: var(--ink-100);
  transition: border-color var(--t-fast);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--c-cyan);
  outline: none;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

.form-feedback { font-size: 0.88rem; min-height: 1.2em; }
.form-feedback.is-success { color: var(--c-cyan); }
.form-feedback.is-error { color: var(--c-orange); }

/* ---------------------------------------------------------------------
   21. FOOTER
   --------------------------------------------------------------------- */
.footer { border-top: 1px solid var(--surface-glass-border); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__brand { display: flex; flex-direction: column; gap: 14px; }
.footer__tagline { font-family: var(--font-display); font-weight: 700; color: var(--ink-300); font-size: 0.92rem; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 4px; }
.footer__col a { font-size: 0.92rem; color: var(--ink-300); transition: color var(--t-fast); }
.footer__col a:hover { color: var(--c-cyan); }
.footer__address { font-size: 0.88rem; color: var(--ink-700); margin-top: 4px; }
.footer__bottom { border-top: 1px solid var(--surface-glass-border); padding: 22px 0; }
.footer__bottom p { font-size: 0.8rem; color: var(--ink-700); text-align: center; }

/* ---------------------------------------------------------------------
   22. WHATSAPP FLOTANTE
   --------------------------------------------------------------------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #08130a;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform var(--t-fast) var(--ease);
}
.wa-float:hover { transform: scale(1.08); }

/* ---------------------------------------------------------------------
   23. RESPONSIVE
   --------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .realidad-grid { grid-template-columns: repeat(2, 1fr); }
  .sistema-grid { grid-template-columns: 1fr; }
  .wheel { grid-template-columns: 1fr; }
  .wheel__diagram { margin: 0 auto; }
  .complementarias__grid { grid-template-columns: repeat(3, 1fr); }
  .experiencia-grid, .origen-grid, .contacto-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: repeat(2, 1fr); }
  .diagnostico360 { grid-template-columns: 1fr; text-align: left; }
  .comparativa { grid-template-columns: 1fr; }
  .comparativa__divider { display: none; }
  .comparativa__col--tradicional { opacity: 0.6; order: 2; }
  .momentos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .navbar__nav { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px);
    background: rgba(6,9,18,0.98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 28px;
    padding: 40px; transform: translateX(100%); transition: transform var(--t-med) var(--ease);
    border-left: 1px solid var(--surface-glass-border);
  }
  .navbar__nav.is-open { transform: translateX(0); }
  .navbar__link { font-size: 1.1rem; }
  .navbar__burger { display: flex; }
  .navbar__actions .btn--primary { display: none; }

  .hero { padding-top: 120px; min-height: auto; }
  .hero__orbits { display: none; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }

  .realidad-grid { grid-template-columns: 1fr; }
  .complementarias__grid { grid-template-columns: 1fr 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .momentos-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .origen-visual__labels { display: none; }
  .diagnostico360__list { grid-template-columns: 1fr; }
}
