/* ================================================================
   BrinkFlow — Sistema Editorial v5.1
   Mediterráneo premium · proporciones corregidas
   ================================================================ */

/* ── 01. VARIABLES ──────────────────────────────────────────────── */
:root {
  --orange:      #D45B18;
  --orange-dk:   #B44810;
  --orange-lt:   #E8692A;
  --orange-pale: #FBF0E8;

  --cream:       #F7F2E7;
  --ivory:       #FAF7F0;
  --paper:       #F2EDE0;
  --stone:       #E5DDD0;
  --white-warm:  #FDFAF5;

  --ink:         #1A1410;
  --ink-mid:     #3C2E24;
  --ink-lt:      rgba(26,20,16,0.50);
  --ink-faint:   rgba(26,20,16,0.28);

  --navy:        #1C1815;
  --navy-mid:    #231F1B;

  /* Aliases compat */
  --terra:       var(--orange);
  --terra-dk:    var(--orange-dk);
  --terra-alt:   var(--orange-lt);
  --terra-lt:    #EDD8CC;
  --terra-pale:  var(--orange-pale);
  --beige:       var(--cream);
  --beige-warm:  var(--paper);
  --beige-deep:  var(--stone);
  --white:       var(--white-warm);
  --navy-lt:     var(--navy-mid);
  --terra-bg:    var(--orange-pale);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font:         'Inter', system-ui, -apple-system, sans-serif;

  /* Espaciado — corregido, sin excesos */
  --section-py:  clamp(44px, 5.5vw, 68px);
  --space-xl:    clamp(40px, 6vw, 72px);
  --space-lg:    clamp(28px, 4.5vw, 52px);
  --space-md:    clamp(20px, 3vw, 36px);
  --space-sm:    clamp(12px, 2vw, 24px);
  --space-xxl:   var(--section-py);

  --nav-h:        60px;
  --w-container:  1300px;
  --w-narrow:     700px;
  --px:           clamp(20px, 5vw, 80px);

  --line:          rgba(42,28,18,0.07);
  --line-lt:       rgba(42,28,18,0.045);
  --line-white:    rgba(255,255,255,0.07);
  --line-white-lt: rgba(255,255,255,0.04);
  --line-ink:      var(--line);
  --line-ink-lt:   var(--line-lt);

  --radius-sm: 1px;
  --radius:    2px;
  --radius-lg: 4px;

  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.08, 1);
  --t-fast:   0.28s;
  --t:        0.48s;
  --t-slow:   0.80s;

  --shadow-sm: 0 2px 12px rgba(26,20,16,0.05);
  --shadow:    0 6px 30px rgba(26,20,16,0.07);
  --shadow-md: 0 16px 48px rgba(26,20,16,0.08);
}

/* ── 02. RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.70;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; border: none; outline: none; background: none; }

/* ── 03. TIPOGRAFÍA — sin itálica, escala controlada ───────────── */
h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.00;
  letter-spacing: -0.026em;
}
h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
}
h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  line-height: 1.22;
  letter-spacing: -0.008em;
}
p {
  font-size: 0.90rem;
  line-height: 1.84;
  color: var(--ink-lt);
}
strong { font-weight: 500; color: var(--ink); }

/* ── 04. LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: var(--w-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}
.container--narrow { max-width: var(--w-narrow); }
.container--legal  { max-width: 960px; }

.section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
}

/* Fondos semánticos */
.section--ivory  { background: var(--ivory); }
.section--light  { background: var(--white-warm); }
.section--sand   { background: var(--paper); }
.section--navy   { background: var(--navy); }
.section--dark   { background: var(--ink); }

.bg-beige      { background: var(--cream); }
.bg-beige-warm { background: var(--paper); }
.bg-white-warm { background: var(--white-warm); }
.bg-navy       { background: var(--navy); }
.bg-ink        { background: var(--ink); }
.bg-terra-soft { background: var(--orange-pale); }
.bg-white      { background: var(--white-warm); }
.bg-beige      { background: var(--cream); }

.section--cta-band {
  background: var(--orange-pale);
  border-top: 1px solid rgba(212,91,24,0.10);
  border-bottom: 1px solid rgba(212,91,24,0.10);
  padding-top:    clamp(48px, 7vw, 80px);
  padding-bottom: clamp(48px, 7vw, 80px);
}

/* ── 05. EYEBROW ────────────────────────────────────────────────── */
.ed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font);
  font-size: 0.54rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
.ed-eyebrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: currentColor;
  opacity: 0.50;
  flex-shrink: 0;
}
.ed-eyebrow.light { color: rgba(255,255,255,0.32); }
.ed-eyebrow.light::before { background: rgba(255,255,255,0.22); }

/* ── 06. TÍTULOS DE SECCIÓN ─────────────────────────────────────── */
.ed-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 0;
}
.ed-title.light { color: var(--white-warm); }
.ed-header { margin-bottom: var(--space-lg); }
.ed-header--center { text-align: center; }

/* ── 07. CABECERAS DE SECCIÓN ───────────────────────────────────── */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  margin-bottom: var(--space-lg);
}
.section-header--centered {
  display: block;
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-lg);
}
.section-intro {
  font-family: var(--font);
  font-size: 0.90rem;
  line-height: 1.84;
  color: var(--ink-lt);
}
.section-intro--center { margin-top: 1rem; }

/* ── 08. BOTONES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font);
  font-size: 0.60rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.95rem 2.1rem;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--t) var(--ease),
    color var(--t) var(--ease),
    border-color var(--t) var(--ease);
}
.btn--lg   { padding: 1.1rem 2.75rem; }
.btn--sm   { padding: 0.55rem 1.3rem; font-size: 0.57rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary { background: var(--orange); color: var(--white-warm); border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

.btn--outline { background: transparent; color: var(--ink); border-color: rgba(26,20,16,0.18); }
.btn--outline:hover { background: var(--ink); border-color: var(--ink); color: var(--white-warm); }

.btn--ghost-ink {
  background: transparent;
  color: rgba(255,255,255,0.70);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 0.60rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.95rem 2.1rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.btn--ghost-ink.btn--lg { padding: 1.1rem 2.75rem; }
.btn--ghost-ink:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.32); }

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.16);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 0.60rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; line-height: 1;
  padding: 0.95rem 2.1rem; border-radius: 1px; cursor: pointer; white-space: nowrap;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.btn--ghost.btn--lg { padding: 1.1rem 2.75rem; }
.btn--ghost.btn--sm { padding: 0.55rem 1.3rem; font-size: 0.57rem; }
.btn--ghost:hover { background: rgba(255,255,255,0.07); color: #fff; border-color: rgba(255,255,255,0.28); }

.btn--nav {
  font-size: 0.57rem; letter-spacing: 0.16em; padding: 0.50rem 1.25rem;
  background: var(--orange); color: var(--white-warm); border-color: var(--orange); border-radius: 1px;
}
.btn--nav:hover { background: var(--orange-dk); border-color: var(--orange-dk); }

.btn--outline-dark {
  background: transparent; border: 1px solid rgba(26,20,16,0.20); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 0.60rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; line-height: 1;
  padding: 0.95rem 2.1rem; border-radius: 1px; cursor: pointer; white-space: nowrap;
  transition: background var(--t) var(--ease), color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.btn--outline-dark.btn--lg { padding: 1.1rem 2.75rem; }
.btn--outline-dark:hover { background: var(--ink); border-color: var(--ink); color: var(--white-warm); }

.bg-navy .btn--outline,
.bg-ink  .btn--outline,
.section--navy .btn--outline,
.section--dark .btn--outline {
  color: rgba(255,255,255,0.58); border-color: rgba(255,255,255,0.13);
}
.bg-navy .btn--outline:hover,
.bg-ink  .btn--outline:hover,
.section--navy .btn--outline:hover,
.section--dark .btn--outline:hover {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.32); color: #fff;
}

.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* ── 09. HEADER / NAV — siempre dark navy ───────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: box-shadow var(--t) var(--ease);
}
.header.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.28); }

.nav { display: flex; align-items: center; height: 100%; gap: 2rem; }

.nav__logo-img {
  display: block; height: 28px; width: auto; flex-shrink: 0; min-width: 70px;
  opacity: 1;
}

.nav__links { display: flex; align-items: center; gap: 0; margin-left: auto; }

.nav__link {
  font-family: var(--font); font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.40); padding: 0.4rem 0.85rem;
  transition: color var(--t) var(--ease);
}
.nav__link:hover     { color: rgba(255,255,255,0.80); }
.nav__link.is-active { color: rgba(255,255,255,0.90); }
.nav__links li:last-child { margin-left: 0.4rem; }

/* Hamburger */
.nav__toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px; margin-left: auto;
  border-radius: 1px; transition: background var(--t-fast);
}
.nav__toggle:hover { background: rgba(255,255,255,0.07); }
.nav__toggle span {
  display: block; width: 100%; height: 1px; background: rgba(255,255,255,0.70);
  transform-origin: center;
  transition: transform var(--t) var(--ease), opacity var(--t-fast);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0.2); }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.04);
  z-index: 199; opacity: 0; pointer-events: none;
  transition: opacity var(--t) var(--ease);
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu__inner  { padding: 2rem var(--px); }
.mobile-menu ul      { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block; padding: 1.1rem 0; font-size: 1rem;
  font-family: var(--font-display); font-weight: 300;
  color: rgba(255,255,255,0.42); border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--t-fast), padding-left var(--t) var(--ease);
}
.mobile-menu a:hover { color: #fff; padding-left: 8px; }
.mobile-menu li:last-child a { border-bottom: none; color: var(--orange); }

/* ── 10. HERO — editorial de texto, sin video ───────────────────── */
.hero {
  background: var(--cream);
  padding-top: calc(var(--nav-h) + clamp(44px, 7vh, 80px));
  padding-bottom: clamp(44px, 6vh, 72px);
  position: relative;
  overflow: hidden;
}

/* Textura cálida sutil sobre el hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--px); right: var(--px);
  height: 1px; background: var(--line);
}
.hero::before { display: none; }

.hero .container { display: block; }

/* Elementos del video hero (se ocultan — el video fue movido a #exprimi) */
.hero__bg, .hero__veil, .hero__content, .hero__spine, .hero__body { display: none; }

/* Layout editorial: título a la izquierda, lead+CTA a la derecha */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: end;
}

.hero__primary { display: flex; flex-direction: column; }

.hero__label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 1.5rem;
}
.hero__label::before {
  content: ''; display: block; width: 10px; height: 1px;
  background: var(--orange); flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.00; letter-spacing: -0.026em;
  color: var(--ink);
}

.hero__secondary {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 0.25rem;
}

.hero__lead {
  font-size: 0.90rem; line-height: 1.84; color: var(--ink-lt);
  margin-bottom: 1.875rem;
}

.hero__cta-group {
  display: flex; flex-direction: column; gap: 0.75rem;
}

/* Compatibilidad: elementos del hero anterior que podrían existir en el DOM */
.hero__foot {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 5rem); align-items: center;
  border-top: 1px solid var(--line); padding-top: 1.5rem;
  margin-top: 2.5rem;
}

/* ── 11. SERVICIOS — 5 cards editoriales premium ─────────────────
 * Misma lógica que el método: cards cálidas, sin líneas divisoras.
 * Fondo crema diferenciado del white-warm del section.
 * Numeral ghosteado como textura tipográfica de fondo.
 */
.ed-services {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.875rem;
  align-items: stretch;
}

.ed-service {
  background: var(--cream);
  border: 1px solid rgba(42,28,18,0.048);
  border-radius: 6px;
  box-shadow:
    0 1px 3px rgba(42,28,18,0.028),
    0 4px 18px rgba(42,28,18,0.032);
  padding: 1.875rem 1.5rem 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Línea naranja superior — acento editorial, idéntico al proceso */
.ed-service::before {
  content: '';
  position: absolute;
  top: 0; left: 1.5rem;
  width: 20px; height: 1.5px;
  background: var(--orange);
  opacity: 0.48;
}

.ed-service__num {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.5vw, 7rem);
  font-weight: 200; letter-spacing: -0.04em;
  color: var(--ink); opacity: 0.045;
  margin-bottom: 1.375rem; display: block; line-height: 1;
  user-select: none;
}

.ed-service__content { flex: 1; display: flex; flex-direction: column; }

.ed-service__title {
  font-family: var(--font-display);
  font-size: clamp(0.96rem, 1.3vw, 1.28rem);
  font-weight: 400; color: var(--ink);
  letter-spacing: -0.006em; line-height: 1.24;
  margin-bottom: 0.75rem;
}

.ed-service__desc {
  font-family: var(--font); font-size: 0.78rem;
  line-height: 1.86; color: var(--ink-lt);
  margin-top: auto;
}

/* ── 12. VÍDEO "EXPRIMÍ" — editorial, 62 vh, NO fullscreen ─────── */
.section--video {
  background: var(--navy);
  overflow: hidden; position: relative;
  padding: 0;
  height: 62vh;
  min-height: 340px;
  max-height: 700px;
}

.vid-layout {
  position: relative; z-index: 2;
  height: 100%; display: flex;
  align-items: flex-end;
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(56px, 9vh, 100px);
}

.vid-text { max-width: 520px; padding: 0 var(--px); }

.vid-text .ed-eyebrow { color: rgba(255,255,255,0.30); }
.vid-text .ed-eyebrow::before { background: rgba(255,255,255,0.20); }

.vid-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300; color: var(--white-warm);
  line-height: 1.08; letter-spacing: -0.020em; margin-bottom: 1.5rem;
}

.vid-body {
  font-size: 0.84rem; line-height: 1.86;
  color: rgba(255,255,255,0.34); max-width: 48ch;
}
.vid-body--mt { margin-top: 0.875rem; }

.vid-frame { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.vid-frame video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.46) contrast(1.10) saturate(0.68);
}
.vid-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top,
      rgba(22,12,6,0.94) 0%,
      rgba(22,12,6,0.72) 25%,
      rgba(22,12,6,0.25) 55%,
      transparent 75%),
    linear-gradient(to right,
      rgba(22,12,6,0.82) 0%,
      rgba(22,12,6,0.35) 35%,
      transparent 62%),
    linear-gradient(to bottom, rgba(22,12,6,0.45) 0%, transparent 20%);
}

/* ── 13. DIFERENCIAL — manifiesto tipográfico controlado ─────────*/
.diferencial__inner { position: relative; }

.section:has(.diferencial__inner) {
  padding-top:    calc(var(--section-py) * 1.2);
  padding-bottom: calc(var(--section-py) * 1.2);
}

.diferencial__prefix {
  font-family: var(--font); font-size: 0.54rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 14px; opacity: 0.88;
}
.diferencial__prefix::before {
  content: ''; display: block; width: 12px; height: 1px;
  background: currentColor; opacity: 0.48;
}

/* Quote: tamaño editorial controlado — lectura elegante, no hero gigante */
.diferencial__quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.0vw, 2.2rem);
  font-weight: 300; line-height: 1.26; letter-spacing: -0.018em;
  color: var(--ink); margin-bottom: 3rem;
  max-width: 44rem;
}

.diferencial__divider {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  opacity: 0.28; margin-bottom: 2rem;
}

.diferencial__body {
  font-family: var(--font); font-size: 0.90rem;
  line-height: 1.88; color: var(--ink-lt); max-width: 54ch;
}

.diferencial__inner::before {
  content: ''; position: absolute; right: 4%; top: 8%;
  width: 9px; height: 14px; pointer-events: none; z-index: 1;
  border-radius: 48% 52% 50% 50% / 60% 60% 38% 42%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,200,110,0.48) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 55%, rgba(212,91,24,0.28) 0%, rgba(150,60,18,0.14) 65%, transparent 100%);
  box-shadow: inset 0 0 0 0.5px rgba(212,91,24,0.16), inset 1px 1px 2px rgba(255,190,100,0.12);
  opacity: 0.48; animation: liquidDrift 22s ease-in-out infinite; animation-delay: -8s;
}
.diferencial__inner::after {
  content: ''; position: absolute; right: 9%; bottom: 18%;
  width: 5px; height: 8px; pointer-events: none; z-index: 1;
  border-radius: 48% 52% 50% 50% / 60% 60% 38% 42%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,200,110,0.38) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 55%, rgba(212,91,24,0.20) 0%, transparent 70%);
  box-shadow: inset 0 0 0 0.5px rgba(212,91,24,0.10);
  opacity: 0.38; animation: liquidDrift 15s ease-in-out infinite; animation-delay: -4s;
}

/* ── 14. MÉTODO — cards editoriales premium ─────────────────────
 * 4 cards horizontales. Sin líneas divisoras.
 * Fondo apenas diferenciado. Sombra cálida ultra suave.
 * Numeral ghosteado de fondo — escultura tipográfica.
 */
.ed-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.ed-step {
  background: var(--cream);
  border: 1px solid rgba(42,28,18,0.048);
  border-radius: 6px;
  box-shadow:
    0 1px 3px rgba(42,28,18,0.028),
    0 4px 18px rgba(42,28,18,0.032);
  padding: 1.875rem 1.625rem 1.75rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Línea naranja superior — acento editorial discreto */
.ed-step::before {
  content: '';
  position: absolute;
  top: 0; left: 1.625rem;
  width: 20px; height: 1.5px;
  background: var(--orange);
  opacity: 0.48;
}

/* Numeral: absolutamente posicionado en el fondo de la card */
.ed-step__num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0.045;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  user-select: none;
}

.ed-step__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.008em;
  line-height: 1.22;
  margin-bottom: 0.75rem;
}

.ed-step__desc {
  font-family: var(--font);
  font-size: 0.80rem;
  line-height: 1.86;
  color: var(--ink-lt);
  margin-top: auto;
}

/* ── 15. BANDA CTA ──────────────────────────────────────────────── */
.cta-band {
  display: grid; grid-template-columns: 1fr auto;
  gap: clamp(2rem, 4vw, 5rem); align-items: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.12; letter-spacing: -0.018em; margin-bottom: 0.75rem;
}
.cta-band__desc {
  font-size: 0.88rem; color: var(--ink-lt);
  line-height: 1.82; max-width: 50ch;
}

/* ── 16. PLANES — 4 cards igual altura ──────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch; gap: 1rem;
}

.plan-card {
  display: flex; flex-direction: column;
  padding: 1.625rem 1.5rem 1.375rem;
  background: var(--white-warm);
  border: 1px solid rgba(26,20,16,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 4px rgba(26,20,16,0.04), 0 3px 14px rgba(26,20,16,0.03);
  position: relative; word-break: break-word;
  transition: box-shadow 0.38s var(--ease);
}
.plan-card:hover {
  box-shadow: 0 2px 8px rgba(26,20,16,0.05), 0 6px 24px rgba(26,20,16,0.05);
}
.plan-card--featured {
  border-top: 2px solid var(--orange);
  box-shadow: 0 2px 8px rgba(26,20,16,0.05), 0 6px 22px rgba(26,20,16,0.05);
}
.plan-card--featured::before { display: none; }

.plan-card__badge {
  display: block; font-family: var(--font); font-size: 0.48rem;
  font-weight: 400; text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--orange); margin-bottom: 0.5rem;
}
.plan-card__name {
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--ink-faint); margin-bottom: 0.4rem;
}
.plan-card__price {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 300; color: var(--ink);
  line-height: 1; letter-spacing: -0.020em; margin-bottom: 0.375rem;
}
.plan-card__price span {
  font-family: var(--font); font-size: 0.66rem;
  font-weight: 400; color: var(--ink-faint); letter-spacing: 0;
}
.plan-card__price--text {
  font-family: var(--font); font-size: 0.80rem;
  font-weight: 400; line-height: 1.44; letter-spacing: 0;
  color: var(--ink); margin-bottom: 0.375rem;
}
.plan-card__tagline {
  font-size: 0.73rem; color: var(--ink-lt);
  line-height: 1.54; margin-bottom: 0.625rem;
  padding-bottom: 0.625rem; border-bottom: 1px solid rgba(26,20,16,0.06);
}
.plan-card__context {
  font-size: 0.73rem; color: var(--ink-lt);
  line-height: 1.58; margin-bottom: 0.625rem;
}
.plan-card__list {
  display: flex; flex-direction: column;
  gap: 0.30rem; margin-bottom: 0.75rem;
}
.plan-card__list li {
  display: flex; align-items: flex-start;
  gap: 0.56rem; font-size: 0.72rem;
  color: rgba(26,20,16,0.54); line-height: 1.42;
}
.plan-card__list li::before {
  content: ''; display: inline-block; width: 3px; height: 3px;
  min-width: 3px; border-radius: 50%;
  background: var(--orange); opacity: 0.50;
  margin-top: 6px; flex-shrink: 0;
}
.plan-card__alcance {
  font-size: 0.64rem; color: var(--ink-faint);
  line-height: 1.54; margin-bottom: 0.75rem;
  padding-top: 0.5rem; border-top: 1px solid rgba(26,20,16,0.04);
}
.plan-card .btn { margin-top: auto; }
.plans-note {
  margin-top: 1rem; text-align: center;
  font-size: 0.64rem; color: var(--ink-faint); letter-spacing: 0.04em;
}

/* ── 17. EMAIL PLAN ─────────────────────────────────────────────── */
.email-plan {
  margin-top: 0; background: transparent;
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 5vh, 4rem) 0 0;
}
.email-plan__eyebrow {
  display: inline-block; font-family: var(--font);
  font-size: 0.52rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--orange); margin-bottom: 1.5rem;
}
.email-plan__inner {
  display: grid; grid-template-columns: 1fr 220px;
  gap: 4rem; align-items: start;
}
.email-plan__name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.4rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.08; letter-spacing: -0.018em; margin-bottom: 0.35rem;
}
.email-plan__descriptor {
  font-family: var(--font); font-size: 0.54rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.20em;
  color: var(--ink-lt); margin-bottom: 1.5rem;
}
.email-plan__problem {
  font-size: 0.90rem; font-weight: 400;
  color: var(--ink); line-height: 1.72; margin-bottom: 0.75rem;
}
.email-plan__context {
  font-size: 0.84rem; color: var(--ink-lt);
  line-height: 1.82; margin-bottom: 1.375rem;
}
.email-plan__list {
  display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem;
}
.email-plan__list li {
  display: flex; align-items: baseline;
  gap: 0.65rem; font-size: 0.80rem;
  color: rgba(26,20,16,0.56); line-height: 1.52;
}
.email-plan__list li::before { content: '→'; color: var(--orange); font-size: 0.68rem; flex-shrink: 0; }
.email-plan__alcance {
  font-size: 0.68rem; color: var(--ink-faint);
  line-height: 1.58; margin-bottom: 1.375rem;
  padding-top: 0.75rem; border-top: 1px solid var(--line-lt);
}
.email-plan__close {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 400; color: var(--ink);
  line-height: 1.44; letter-spacing: -0.006em;
}
.email-plan__right {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 1.1rem; position: sticky; top: calc(var(--nav-h) + 2rem);
}
.email-plan__price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300; color: var(--ink); line-height: 1; letter-spacing: -0.030em;
}
.email-plan__price span { font-family: var(--font); font-size: 0.72rem; font-weight: 400; color: var(--ink-lt); }
.email-plan__tagline { font-size: 0.74rem; color: var(--ink-lt); line-height: 1.58; }

/* ── 18. NOSOTROS — stats con peso ───────────────────────────────*/
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.about-left .ed-title { color: var(--white-warm); margin-bottom: 2rem; }
.about-left > p {
  color: rgba(255,255,255,0.32); font-size: 0.86rem;
  line-height: 1.88; margin-bottom: 1rem;
}
.about-pillars { display: flex; flex-direction: column; margin-top: 2.5rem; }
.about-pillar {
  display: flex; align-items: center; gap: 0.875rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.about-pillar__dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--orange); opacity: 0.68; flex-shrink: 0;
}
.about-pillar p { font-size: 0.80rem; color: rgba(255,255,255,0.38); margin: 0; line-height: 1.58; }
.about-pillar p strong { color: rgba(255,255,255,0.76); }
.about-right { display: flex; flex-direction: column; gap: 0; }
.about-stat { padding: 1.875rem 1.75rem; border-left: 1px solid rgba(255,255,255,0.06); margin-bottom: 1rem; }
.about-stat__value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7.5rem);
  font-weight: 200; color: rgba(255,255,255,0.88);
  line-height: 1; letter-spacing: -0.040em; margin-bottom: 0.35rem;
}
.about-stat__label { font-size: 0.72rem; color: rgba(255,255,255,0.22); line-height: 1.62; letter-spacing: 0.01em; }
.about-quote {
  padding: 1.625rem 1.75rem;
  border-left: 1px solid rgba(212,91,24,0.18);
  background: rgba(212,91,24,0.04);
}
.about-quote__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 400; color: rgba(255,255,255,0.80);
  line-height: 1.46; letter-spacing: -0.006em; margin-bottom: 0.625rem;
}
.about-quote__attr {
  font-size: 0.52rem; font-weight: 400;
  color: rgba(255,255,255,0.18); text-transform: uppercase; letter-spacing: 0.22em;
}

/* ── 19. FAQ — espaciado elegante, no excesivo ───────────────────*/
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-list .faq-item:first-child { border-top: 1px solid var(--line); }
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__q {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1.75rem;
  padding: 1.375rem 0;                      /* ← reducido de 2.75rem */
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.2vw, 1.1rem); /* ← reducido de 1.45rem */
  font-weight: 400; color: var(--ink);
  cursor: pointer; line-height: 1.36; letter-spacing: -0.006em;
  transition: color var(--t) var(--ease);
}
.faq-item__q::after {
  content: '+'; font-family: var(--font); font-size: 1rem; font-weight: 200;
  color: var(--orange); flex-shrink: 0; line-height: 1; opacity: 0.65;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.faq-item[open] .faq-item__q::after { transform: rotate(45deg); opacity: 1; }
.faq-item__q:hover { color: var(--orange); }

.faq-item__a { padding: 0 0 1.375rem; max-width: 62ch; } /* ← reducido */
.faq-item__a p { font-size: 0.87rem; color: var(--ink-lt); line-height: 1.88; }
.faq-item__a a { color: var(--orange); text-decoration: underline; }

/* ── 20. CTA FINAL — split editorial/naranja ─────────────────────*/
.cta-final {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: clamp(360px, 48vh, 560px);
  overflow: hidden; position: relative;
}
.cta-final::after { display: none; }

.cta-final__left {
  background: var(--ivory);
  padding: clamp(60px, 9vh, 104px) clamp(40px, 6vw, 80px);
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
}

.cta-final__right {
  background: var(--orange); position: relative;
  overflow: hidden; display: flex;
  align-items: center; justify-content: center;
}


.cta-final__grid-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px,
      transparent 1px, transparent 56px),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px,
      transparent 1px, transparent 56px);
}

.cta-final__deco-logo {
  width: clamp(110px, 17vw, 200px); position: relative; z-index: 2;
  filter: brightness(0) invert(1); opacity: 0.78;
}

.cta-final__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.25rem;
}
.cta-final__eyebrow::before {
  content: ''; display: block; width: 12px; height: 1px;
  background: currentColor; flex-shrink: 0;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.08; letter-spacing: -0.020em;
  max-width: 16ch; margin-bottom: 2.5rem;
}

.cta-final__actions { display: flex; gap: 0.875rem; flex-wrap: wrap; }

/* Clases legacy del CTA anterior */
.cta-final__eyebrow-old,
.section--navy .cta-final__title { color: var(--white-warm); }

/* ── 21. CONTACTO ───────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: start;
}
.contact-eyebrow {
  display: block; font-family: var(--font); font-size: 0.52rem;
  font-weight: 400; text-transform: uppercase; letter-spacing: 0.26em;
  color: var(--orange); margin-bottom: 0.75rem;
}
.contact-left .ed-title { color: var(--white-warm); margin-bottom: 1.625rem; }
.contact-left > p {
  color: rgba(255,255,255,0.30); font-size: 0.86rem;
  line-height: 1.86; margin-bottom: 2.25rem;
}
.contact-details { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-details li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.84rem; }
.contact-details svg  { color: var(--orange); flex-shrink: 0; }
.contact-details a    { color: rgba(255,255,255,0.46); transition: color var(--t-fast); }
.contact-details a:hover { color: var(--orange); }
.contact-details span { color: rgba(255,255,255,0.26); }

.contact-form {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 2.25rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
.form-group { margin-bottom: 0.75rem; }
.form-group label {
  display: block; font-size: 0.52rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(255,255,255,0.20); margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07); border-radius: 1px;
  padding: 0.80rem 0.90rem; color: #fff; font-size: 0.84rem;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.14); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(212,91,24,0.40); background: rgba(255,255,255,0.04); outline: none;
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-note { margin-top: 0.75rem; font-size: 0.70rem; color: rgba(255,255,255,0.15); text-align: center; }
.form-success {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(212,91,24,0.08); border: 1px solid rgba(212,91,24,0.20);
  border-radius: var(--radius); padding: 0.875rem 1rem; margin-top: 0.875rem;
}
.form-success strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 0.15rem; }
.form-success p { color: rgba(255,255,255,0.36); font-size: 0.78rem; margin: 0; }
.contact-form input.is-error,
.contact-form textarea.is-error { border-color: #f87171 !important; }
.form-group--consent { margin-top: 0.15rem; margin-bottom: 1rem; }
.form-consent { display: flex; align-items: flex-start; gap: 0.55rem; cursor: pointer; user-select: none; }
.form-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; flex-shrink: 0;
  width: 16px; height: 16px; border: 1px solid rgba(255,255,255,0.16);
  border-radius: 2px; background: rgba(255,255,255,0.03);
  cursor: pointer; margin-top: 1px; position: relative;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.form-consent input[type="checkbox"]:checked { background: var(--orange); border-color: var(--orange); }
.form-consent input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 3px; top: 1px;
  width: 6px; height: 9px; border: 2px solid #fff;
  border-top: none; border-left: none; transform: rotate(45deg);
}
.form-consent__text { font-size: 0.74rem; color: rgba(255,255,255,0.32); line-height: 1.5; }
.form-consent__text a { color: rgba(255,255,255,0.52); text-decoration: underline; }
.form-consent__text a:hover { color: var(--orange); }
.form-group--consent.is-error .form-consent input[type="checkbox"] { border-color: #f87171; }
.form-group--consent.is-error::after {
  content: 'Debes aceptar la política de privacidad para continuar.';
  display: block; font-size: 0.68rem; color: #f87171; margin-top: 0.25rem;
}
.form-error {
  background: rgba(248,113,113,0.08); border: 1px solid rgba(248,113,113,0.22);
  border-radius: 1px; padding: 0.65rem 0.875rem; margin-top: 0.625rem;
  font-size: 0.76rem; color: #fca5a5; text-align: center;
}
.form-group--honeypot {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none;
}

/* ── 22. FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy); padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__top {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.footer__logo span {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 400;
  letter-spacing: -0.01em; color: rgba(255,255,255,0.88);
}
.footer__logo-img {
  display: block; height: 24px; width: auto;
  opacity: 0.88;
}
.footer__brand > p {
  font-size: 0.78rem; color: rgba(255,255,255,0.18);
  line-height: 1.78; max-width: 240px; margin-bottom: 1.25rem;
}
.footer__social { display: flex; gap: 0.4rem; }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1px; color: rgba(255,255,255,0.24);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.social-link:hover { border-color: var(--orange); color: var(--orange); }
.footer__col h4, .footer__col-h4-secondary {
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.20em;
  color: rgba(255,255,255,0.17); margin-bottom: 1rem;
}
.footer__col-h4-secondary { margin-top: 1.75rem; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__col a, .footer__col span, .footer__schedule {
  font-size: 0.77rem; color: rgba(255,255,255,0.28);
  transition: color var(--t-fast); display: block;
}
.footer__col a:hover { color: rgba(255,255,255,0.62); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; flex-wrap: wrap; gap: 0.75rem;
}
.footer__bottom > p { font-size: 0.64rem; color: rgba(255,255,255,0.12); letter-spacing: 0.02em; }
.footer__legal { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer__legal a {
  font-size: 0.64rem; color: rgba(255,255,255,0.12);
  letter-spacing: 0.02em; transition: color var(--t-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.42); }

/* ── 23. COOKIES ────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 -6px 40px rgba(0,0,0,0.36); padding: 1.25rem var(--px);
  transform: translateY(100%); transition: transform 0.48s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--w-container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 220px; }
.cookie-banner__text p { font-size: 0.80rem; color: rgba(255,255,255,0.36); margin: 0; }
.cookie-banner__text a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.625rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-modal {
  position: fixed; inset: 0; z-index: 10001;
  display: none; align-items: flex-end; justify-content: center; padding: 0;
}
.cookie-modal.is-open { display: flex; }
@media (min-width: 560px) { .cookie-modal { align-items: center; padding: 1.25rem; } }
.cookie-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(22,12,6,0.80);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); cursor: pointer;
}
.cookie-modal__panel {
  position: relative; z-index: 1; background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 2px 2px 0 0; width: 100%; max-width: 540px;
  max-height: 90dvh; overflow-y: auto; padding: 1.875rem;
  animation: cookieSlideUp 0.36s var(--ease); overscroll-behavior: contain;
}
@media (min-width: 560px) { .cookie-modal__panel { border-radius: 2px; } }
@keyframes cookieSlideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.cookie-modal__title { font-size: 0.96rem; font-weight: 500; color: #fff; }
.cookie-modal__close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 1px; color: rgba(255,255,255,0.34);
  transition: background var(--t-fast), color var(--t-fast);
}
.cookie-modal__close:hover { background: rgba(255,255,255,0.07); color: #fff; }
.cookie-modal__desc { font-size: 0.80rem; color: rgba(255,255,255,0.34); line-height: 1.62; margin-bottom: 0.375rem; }
.cookie-category { border-top: 1px solid rgba(255,255,255,0.04); padding: 0.75rem 0; }
.cookie-category__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.cookie-category__info { flex: 1; }
.cookie-category__info strong { display: block; font-size: 0.84rem; color: #fff; margin-bottom: 0.18rem; }
.cookie-category__info p { font-size: 0.74rem; color: rgba(255,255,255,0.26); margin: 0; }
.cookie-toggle__always-on { font-size: 0.56rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); flex-shrink: 0; padding-top: 2px; }
.cookie-toggle__switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; cursor: pointer; }
.cookie-toggle__switch input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle__track { position: absolute; inset: 0; background: rgba(255,255,255,0.09); border-radius: 100px; transition: background var(--t) var(--ease); }
.cookie-toggle__track::after { content: ''; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: rgba(255,255,255,0.32); border-radius: 50%; transition: transform var(--t) var(--ease), background var(--t) var(--ease); }
.cookie-toggle__switch input:checked + .cookie-toggle__track { background: var(--orange); }
.cookie-toggle__switch input:checked + .cookie-toggle__track::after { transform: translateX(20px); background: #fff; }
.cookie-modal__footer { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.04); }

/* ── 24. WHATSAPP ───────────────────────────────────────────────── */
.whatsapp-bubble {
  position: fixed; bottom: 1.625rem; right: 1.625rem; z-index: 998;
  width: 50px; height: 50px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.28), 0 2px 6px rgba(0,0,0,0.10);
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.whatsapp-bubble:hover { transform: scale(1.08); box-shadow: 0 7px 26px rgba(37,211,102,0.38), 0 2px 10px rgba(0,0,0,0.13); }
.whatsapp-bubble__tooltip {
  position: absolute; right: calc(100% + 12px); bottom: 50%;
  transform: translateY(50%) translateX(6px); background: var(--navy); color: #fff;
  font-size: 0.76rem; line-height: 1.52; padding: 0.6rem 0.875rem; border-radius: 2px;
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease; box-shadow: var(--shadow);
}
.whatsapp-bubble__tooltip::after {
  content: ''; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-right: none; border-left-color: var(--navy);
}
.whatsapp-bubble:hover .whatsapp-bubble__tooltip { opacity: 1; transform: translateY(50%) translateX(0); }

/* ── 25. ANIMACIONES SCROLL ─────────────────────────────────────── */
[data-animate] {
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.95s var(--ease-out), transform 0.95s var(--ease-out);
}
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
.ed-services [data-animate]:nth-child(1) { transition-delay: 0.04s; }
.ed-services [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.ed-services [data-animate]:nth-child(3) { transition-delay: 0.13s; }
.ed-services [data-animate]:nth-child(4) { transition-delay: 0.18s; }
.ed-services [data-animate]:nth-child(5) { transition-delay: 0.23s; }
.ed-steps   [data-animate]:nth-child(1)  { transition-delay: 0.04s; }
.ed-steps   [data-animate]:nth-child(2)  { transition-delay: 0.10s; }
.ed-steps   [data-animate]:nth-child(3)  { transition-delay: 0.16s; }
.ed-steps   [data-animate]:nth-child(4)  { transition-delay: 0.22s; }
.plans-grid [data-animate]:nth-child(1)  { transition-delay: 0.04s; }
.plans-grid [data-animate]:nth-child(2)  { transition-delay: 0.09s; }
.plans-grid [data-animate]:nth-child(3)  { transition-delay: 0.14s; }
.plans-grid [data-animate]:nth-child(4)  { transition-delay: 0.19s; }
.text-center { text-align: center; }
.text-white  { color: #fff !important; }
.text-terra  { color: var(--orange) !important; }

/* ── 26. SKIP LINK ──────────────────────────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0.75rem;
  background: var(--orange); color: #fff; padding: 0.45rem 1.1rem;
  border-radius: 1px; font-size: 0.80rem; font-weight: 400;
  z-index: 10000; text-decoration: none; white-space: nowrap;
}
.skip-link:focus { left: 0.75rem; }

/* ── 27. GOTAS LÍQUIDAS ─────────────────────────────────────────── */
@keyframes liquidDrift {
  0%   { transform: translateY(0px)  rotate(-5deg) scaleY(1.00); }
  40%  { transform: translateY(4px)  rotate(-3deg) scaleY(0.97); }
  100% { transform: translateY(0px)  rotate(-5deg) scaleY(1.00); }
}
#planes::before {
  content: ''; position: absolute; top: 44%; right: 2%;
  width: 8px; height: 12px; pointer-events: none; z-index: 1;
  border-radius: 48% 52% 50% 50% / 60% 60% 38% 42%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,200,110,0.46) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 55%, rgba(212,91,24,0.26) 0%, rgba(150,60,18,0.13) 65%, transparent 100%);
  box-shadow: inset 0 0 0 0.5px rgba(212,91,24,0.14), inset 1px 1px 2px rgba(255,190,100,0.10);
  opacity: 0.45; animation: liquidDrift 20s ease-in-out infinite; animation-delay: -6s;
}
#nosotros::before {
  content: ''; position: absolute; bottom: 28%; right: 3%;
  width: 5px; height: 9px; pointer-events: none; z-index: 1;
  border-radius: 48% 52% 50% 50% / 60% 60% 38% 42%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,200,110,0.34) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 55%, rgba(212,91,24,0.18) 0%, transparent 70%);
  box-shadow: inset 0 0 0 0.5px rgba(212,91,24,0.09);
  opacity: 0.32; animation: liquidDrift 26s ease-in-out infinite; animation-delay: -15s;
}

/* ── 28. SECTORES — sistema editorial integrado ──────────────────
 * Usa exactamente el mismo lenguaje visual que la home.
 * Hero 2 columnas. Cards idénticas a servicios/proceso.
 */

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font); font-size: 0.54rem; font-weight: 400;
  letter-spacing: 0.08em; color: var(--ink-faint);
  margin-bottom: 1.875rem;
}
.breadcrumb a { color: var(--ink-faint); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { opacity: 0.38; }
.breadcrumb__current { color: var(--orange); }

/* Hero sectores — 2 columnas, idéntico al hero de home */
.sector-hero {
  background: var(--cream);
  padding-top: calc(var(--nav-h) + clamp(36px, 5.5vh, 64px));
  padding-bottom: clamp(36px, 5vh, 56px);
  border-bottom: 1px solid var(--line);
}

.sector-hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: end;
}

.sector-hero__primary { display: flex; flex-direction: column; }

.sector-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.26em;
  color: var(--ink-faint); margin-bottom: 1.375rem;
}
.sector-hero__eyebrow::before {
  content: ''; display: block; width: 10px; height: 1px;
  background: var(--orange); flex-shrink: 0;
}

.sector-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.00; letter-spacing: -0.026em;
  margin-bottom: 0;
}

.sector-hero__secondary {
  display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 0.25rem;
}

.sector-hero__lead {
  font-size: 0.90rem; line-height: 1.84; color: var(--ink-lt);
  margin-bottom: 1.875rem;
}

.sector-hero__cta { display: flex; flex-direction: column; gap: 0.75rem; }

/* Eyebrow y títulos internos — misma escala que la home */
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.26em;
  color: var(--orange); margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: ''; display: block; width: 10px; height: 1px;
  background: currentColor; opacity: 0.50; flex-shrink: 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.06; letter-spacing: -0.022em; margin-bottom: 0;
}

.section__lead {
  font-size: 0.90rem; line-height: 1.84; color: var(--ink-lt);
  margin-top: 1rem;
}

.section__header { margin-bottom: var(--space-lg); }
.section__header.text-center {
  text-align: center; max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* Intro — 2 columnas editorial */
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem); align-items: end;
  margin-bottom: clamp(1.75rem, 3.5vh, 2.875rem);
}

/* Cita editorial */
.sector-insight {
  background: var(--orange-pale);
  border-left: 2px solid var(--orange);
  padding: 1.375rem 1.75rem;
}
.sector-insight p {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 400; color: var(--ink-mid);
  line-height: 1.52; letter-spacing: -0.006em;
  margin: 0;
}

/* Grid de 6 sectores — 3×2, mismo card system */
.clusters-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  align-items: stretch;
  margin-top: var(--space-md);
}

.cluster-card {
  display: flex; flex-direction: column;
  background: var(--white-warm);
  border: 1px solid rgba(42,28,18,0.048);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(42,28,18,0.028), 0 4px 18px rgba(42,28,18,0.032);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative; overflow: hidden;
  color: var(--ink);
  transition: box-shadow 0.34s var(--ease), transform 0.34s var(--ease);
}
.cluster-card::before {
  content: ''; position: absolute; top: 0; left: 1.5rem;
  width: 20px; height: 1.5px;
  background: var(--orange); opacity: 0.48;
}
.cluster-card:hover {
  box-shadow: 0 2px 8px rgba(42,28,18,0.06), 0 8px 32px rgba(42,28,18,0.06);
  transform: translateY(-2px);
}

.cluster-card__eyebrow {
  font-family: var(--font); font-size: 0.50rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--orange); margin-bottom: 0.5rem;
}

.cluster-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 300; color: var(--ink);
  letter-spacing: -0.012em; line-height: 1.12;
  margin-bottom: 0.75rem;
}

.cluster-card__desc {
  font-size: 0.79rem; color: var(--ink-lt);
  line-height: 1.84; flex: 1; margin-bottom: 1.125rem;
}

.cluster-card__tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: auto; }

.cluster-tag {
  font-family: var(--font); font-size: 0.48rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--ink-faint); background: var(--stone);
  padding: 0.28rem 0.56rem; border-radius: 1px;
}

/* 4 pilares — cards editorial idénticas al proceso */
.process-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem); align-items: end;
  margin-bottom: var(--space-lg);
}
.process-header__left,
.process-header__right { display: flex; flex-direction: column; }

.sector-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
  align-items: stretch;
}

.sector-service {
  background: var(--cream);
  border: 1px solid rgba(42,28,18,0.048);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(42,28,18,0.028), 0 4px 18px rgba(42,28,18,0.032);
  padding: 1.75rem 1.5rem 1.625rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.sector-service::before {
  content: ''; position: absolute; top: 0; left: 1.5rem;
  width: 20px; height: 1.5px;
  background: var(--orange); opacity: 0.48;
}

.sector-service h3 {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 400; color: var(--ink);
  letter-spacing: -0.008em; line-height: 1.22;
  margin-bottom: 0.625rem;
}

.sector-service p {
  font-size: 0.80rem; color: var(--ink-lt);
  line-height: 1.84; margin: 0; margin-top: auto;
}

/* CTA sectores — dos variantes:
 * 1) Navy centrado (páginas de detalle de sector)
 * 2) Split ivory/naranja (sectores/index.html con .sector-cta__left)
 */
.sector-cta {
  background: var(--navy);
  text-align: center;
  padding: clamp(44px, 7vh, 68px) var(--px);
}

/* Split: solo cuando tiene paneles izquierdo/derecho */
.sector-cta:has(.sector-cta__left) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: clamp(280px, 38vh, 440px);
  padding: 0;
  background: transparent;
  text-align: left;
  overflow: hidden;
}

/* Panel izquierdo (split) */
.sector-cta__left {
  background: var(--ivory);
  padding: clamp(40px, 7vh, 72px) clamp(36px, 5.5vw, 72px);
  display: flex; flex-direction: column; justify-content: center;
}

/* Panel naranja (split) */
.sector-cta__right {
  background: var(--orange);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.sector-cta__right-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
      transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px,
      transparent 1px, transparent 48px);
}

.sector-cta__logo {
  width: clamp(130px, 20vw, 160px);
  position: relative; z-index: 2;
  filter: brightness(0) invert(1); opacity: 0.88;
}

/* Eyebrow (en split, sobre ivory) */
.sector-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.1rem;
}
.sector-cta__eyebrow::before {
  content: ''; display: block; width: 10px; height: 1px;
  background: currentColor; flex-shrink: 0;
}

/* Título — dos contextos: navy (blanco) y split (ink) */
.sector-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  font-weight: 300; color: var(--white-warm);
  line-height: 1.08; letter-spacing: -0.020em;
  margin-bottom: 1rem;
}
.sector-cta:has(.sector-cta__left) .sector-cta__title {
  color: var(--ink);
  max-width: 16ch;
  margin-bottom: 1.5rem;
}

.sector-cta__lead {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.82; max-width: 52ch;
  margin: 0 auto 1.75rem;
}
.sector-cta:has(.sector-cta__left) .sector-cta__lead {
  color: var(--ink-lt);
  margin-left: 0;
  max-width: 46ch;
}

.sector-cta__actions {
  display: flex; gap: 0.875rem; flex-wrap: wrap;
  justify-content: center;
}
.sector-cta:has(.sector-cta__left) .sector-cta__actions {
  justify-content: flex-start;
}

/* ── CLASES ESPECÍFICAS DE PÁGINAS DE DETALLE ────────────────────
 * problem-layout, rubros-grid, rubro-card, related-sectors
 */

/* Layout problema/mercado — 2 columnas con panel decorativo */
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: start;
}
.problem-left { display: flex; flex-direction: column; gap: 1.25rem; }

.problem-visual {
  background: var(--cream);
  border: 1px solid rgba(42,28,18,0.048);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(42,28,18,0.028), 0 4px 18px rgba(42,28,18,0.032);
  padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  min-height: 260px;
}
.problem-visual::before {
  content: ''; position: absolute; top: 0; left: 2rem;
  width: 20px; height: 1.5px;
  background: var(--orange); opacity: 0.48;
}

.problem-visual__quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 300; color: var(--ink);
  line-height: 1.42; letter-spacing: -0.012em;
  margin: 0 0 1rem;
}
.problem-visual__attr {
  font-family: var(--font); font-size: 0.52rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--orange); margin: 0;
}

/* Grid de sub-especialidades — rubros */
.rubros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  align-items: stretch;
  margin-top: var(--space-md);
}

/* Rubro card — mismo sistema que cluster-card / ed-step */
.rubro-card {
  background: var(--white-warm);
  border: 1px solid rgba(42,28,18,0.048);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(42,28,18,0.028), 0 4px 18px rgba(42,28,18,0.032);
  padding: 1.625rem 1.5rem 1.5rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.rubro-card::before {
  content: ''; position: absolute; top: 0; left: 1.5rem;
  width: 20px; height: 1.5px;
  background: var(--orange); opacity: 0.48;
}

.rubro-card__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 200; color: var(--ink); opacity: 0.05;
  line-height: 1; margin-bottom: 1rem;
  letter-spacing: -0.03em; user-select: none;
}

.rubro-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.96rem, 1.3vw, 1.25rem);
  font-weight: 400; color: var(--ink);
  letter-spacing: -0.006em; line-height: 1.22;
  margin-bottom: 0.625rem;
}

.rubro-card__desc {
  font-size: 0.78rem; color: var(--ink-lt);
  line-height: 1.82; margin-top: auto;
}

/* Sectores relacionados */
.related-sectors {
  padding: clamp(24px, 3vh, 36px) 0;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem;
}

.related-sector-link {
  display: inline-block;
  font-family: var(--font); font-size: 0.58rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-faint); background: var(--stone);
  border: 1px solid rgba(42,28,18,0.06); border-radius: 1px;
  padding: 0.38rem 0.75rem;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.related-sector-link:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* FAQ header en páginas de sector */
.faq-header { margin-bottom: var(--space-lg); }

/* Responsive para páginas de detalle */
@media (max-width: 1024px) {
  .problem-layout { grid-template-columns: 1fr; }
  .problem-visual { display: none; }
  .rubros-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-cta:has(.sector-cta__left) { grid-template-columns: 1fr; }
  .sector-cta:has(.sector-cta__left) .sector-cta__right { min-height: 160px; }
}

@media (max-width: 768px) {
  .rubros-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

@media (max-width: 560px) {
  .rubros-grid { grid-template-columns: 1fr; gap: 0.625rem; }
  .sector-cta:has(.sector-cta__left) .sector-cta__title {
    font-size: clamp(1.4rem, 7vw, 2.2rem);
  }
}

/* Responsive sectores */
@media (max-width: 1024px) {
  .sector-hero__layout { grid-template-columns: 1fr; gap: 2rem; }
  .sector-hero__secondary { padding-bottom: 0; }
  .clusters-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-services { grid-template-columns: repeat(2, 1fr); }
  .process-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .sector-cta { grid-template-columns: 1fr; }
  .sector-cta__right { min-height: 160px; }
}

@media (max-width: 768px) {
  .sector-hero__cta { flex-direction: column; }
  .sector-hero__cta .btn { width: 100%; justify-content: center; }
  .clusters-grid { grid-template-columns: 1fr; gap: 0.625rem; }
  .sector-services { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 560px) {
  .sector-services { grid-template-columns: 1fr; gap: 0.625rem; }
  .sector-cta__title { font-size: clamp(1.4rem, 7vw, 2.2rem); }
}

/* ── 29. RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --px: clamp(20px, 4.5vw, 60px); }
}

@media (max-width: 1024px) {
  :root { --section-py: clamp(38px, 5vw, 56px); }

  .hero__layout { grid-template-columns: 1fr; gap: 2rem; }
  .hero__secondary { padding-bottom: 0; }

  .ed-services { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.875rem; }

  .ed-steps { grid-template-columns: 1fr 1fr; gap: 0.875rem; }
  .ed-step  { padding: 1.625rem 1.375rem 1.5rem; }

  .plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.875rem; }

  .about-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__top    { grid-template-columns: 1fr 1fr; }
  .footer__brand  { grid-column: 1 / -1; }
  .section-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-band { grid-template-columns: 1fr; gap: 2rem; }
  .email-plan__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .email-plan__right { position: static; }
  .cta-final { grid-template-columns: 1fr; }
  .cta-final__right { min-height: 110px; }

  /* Sectores */
  .clusters-grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --section-py: clamp(32px, 5vw, 48px); --nav-h: 56px; }

  .nav__logo-img { height: 24px; }
  .nav__links    { display: none; }
  .nav__toggle   { display: flex; }
  .mobile-menu   { display: block; }

  .hero__title { font-size: clamp(2rem, 7.5vw, 3.2rem); }
  .hero__cta-group { flex-direction: column; }
  .hero__cta-group .btn { width: 100%; justify-content: center; }

  .ed-services { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
  .ed-service  { padding: 1.625rem 1.375rem 1.5rem; }

  .ed-steps { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .ed-step  { padding: 1.5rem 1.25rem 1.375rem; }

  .plans-grid { grid-template-columns: minmax(0, 1fr); max-width: 420px; margin: 0 auto; gap: 0.75rem; }

  .form-row    { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal  { justify-content: center; }
  .about-right    { flex-direction: column; }

  .section--video { height: auto; min-height: 480px; max-height: none; overflow: visible; }
  .vid-layout     { height: auto; padding-top: clamp(64px, 10svh, 96px); padding-bottom: clamp(100px, 17svh, 148px); }
  .vid-title      { font-size: clamp(1.4rem, 5.5vw, 2.1rem); margin-bottom: 1.75rem; }
  .vid-text       { max-width: 100%; }
  .vid-body       { line-height: 1.65; max-width: 100%; overflow-wrap: break-word; }

  .clusters-grid { grid-template-columns: 1fr; }

  .cta-band { grid-template-columns: 1fr; }
  .cta-final { grid-template-columns: 1fr; }
  .cta-final__right { min-height: 88px; }
  .cta-final__title { font-size: clamp(1.5rem, 6vw, 2.4rem); }
}

@media (max-width: 560px) {
  :root { --section-py: clamp(28px, 5.5vw, 44px); }

  .ed-services { grid-template-columns: 1fr; gap: 0.625rem; }
  .ed-service  { padding: 1.5rem 1.25rem 1.375rem; }
  .ed-service__num { font-size: clamp(3rem, 10vw, 5rem); margin-bottom: 1rem; }

  .ed-steps { grid-template-columns: 1fr; gap: 0.625rem; }
  .ed-step  { padding: 1.375rem 1.25rem 1.25rem; }
  .ed-step__num { font-size: clamp(3rem, 10vw, 5rem); margin-bottom: 1rem; }

  .contact-form { padding: 1.5rem; }
  .email-plan   { padding-top: 2rem; }

  .diferencial__quote { font-size: clamp(1.6rem, 7vw, 2.8rem); }
  .cta-final__title  { font-size: clamp(1.4rem, 7vw, 2.2rem); }

  .cookie-banner { padding: 1rem var(--px); }
  .cookie-banner__inner { flex-direction: column; gap: 0.75rem; align-items: stretch; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .btn { flex: 1; }

  .whatsapp-bubble { bottom: 1rem; right: 1rem; width: 46px; height: 46px; }
  .whatsapp-bubble__tooltip { display: none; }
}

@media (max-width: 400px) {
  :root { --section-py: clamp(24px, 5.5vw, 38px); }
  .hero__title { font-size: clamp(1.9rem, 11vw, 3rem); }
  .btn--lg, .btn--ghost-ink.btn--lg { padding: 0.90rem 1.75rem; }
  .plans-grid { max-width: 100%; }
  .footer__legal { flex-direction: column; align-items: center; gap: 0.5rem; }
}

.footer-contact-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.footer-contact-link:hover { opacity: 0.72; }

/* ── 30. REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-animate] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .cookie-modal__panel { animation: none; }
  .diferencial__inner::before, .diferencial__inner::after,
  #planes::before, #nosotros::before { animation: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
