@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/jetbrains-mono.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/jetbrains-mono.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink:      #0A1420;
  --ink-85:   rgba(10,20,32,.85);
  --ink-60:   rgba(10,20,32,.60);
  --ink-42:   rgba(10,20,32,.42);
  --ink-28:   rgba(10,20,32,.28);
  --line:     rgba(10,20,32,.10);
  --paper:    #FFFFFF;
  --warm:     #FAFAF9;
  --stone:    #F2ECE1;
  --fog:      #EEF1F2;

  --gold:      #B8862E;
  --gold-dk:   #93691F;
  --gold-soft: #D9B36B;
  --steel:      #3F5A76;
  --steel-dk:   #2C4054;
  --steel-soft: #7C97AF;
  --teal:      #0F6F66;
  --teal-dk:   #0B5750;
  --teal-soft: #4FA89C;

  --fb: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  --fm: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--fb);
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

a { color: inherit; }
:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ── reveal-on-load ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
body.is-loaded [data-reveal] {
  opacity: 1;
  transform: none;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0);
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 2.75rem;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
  box-shadow: 0 16px 32px -24px rgba(10,20,32,.35);
  padding: 1.05rem 2.75rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: height .4s var(--ease);
}
.nav.is-scrolled .nav-logo img {
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  list-style: none;
}
.nav-links-cta-item,
.nav-cta-mobile { display: none; }

/* ── Hamburger (oculto en desktop) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
}
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-links a {
  position: relative;
  font-family: var(--fb);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--ink-60);
  text-decoration: none;
  padding-bottom: .3rem;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--steel), var(--gold));
  transition: right .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fb);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #fff;
  background: var(--ink);
  padding: .72rem 1.4rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px -13px rgba(10,20,32,.5);
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.nav-cta svg { transition: transform .25s var(--ease); }
.nav-cta:hover {
  background: var(--gold-dk);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px -10px rgba(184,134,46,.55);
}
.nav-cta:hover svg { transform: translateX(3px); }

/* Con 7 enlaces, el nav horizontal queda apretado antes de llegar a mobile:
   pasamos a menú hamburguesa ya en tablets/laptops chicos, no solo en teléfonos. */
@media (max-width: 1080px) {
  .nav-toggle { display: flex; }
  .nav .nav-cta { display: none; }
  .nav-logo { position: relative; z-index: 60; }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
    z-index: 55;
  }
  .nav.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--ink);
    padding-bottom: 0;
  }
  .nav-links a::after { display: none; }
  .nav-links-cta-item { display: block; margin-top: 1rem; }
  .nav-links a.nav-cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--fb);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--ink);
    padding: .85rem 1.7rem;
    border-radius: 100px;
    text-decoration: none;
  }
}

@media (max-width: 680px) {
  .nav, .nav.is-scrolled { padding: 1rem 1.25rem; }
}

/* ══════════════ HERO ══════════════ */
.hero-center-layout {
  position: relative;
  background: var(--paper);
  padding: 1.5rem 2.5rem 3rem;
  overflow: hidden;
}

.hero-center-layout::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 550px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(63,90,118,.07), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.hero-center-inner {
  position: relative;
  width: 100%; /* AÑADIDO: Evita que se encoja por el flex del padre */
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── Marca (arriba, centrada): logo DAC.png reemplaza eyebrow + título ── */
.hero-brand-col {
  width: 100%; 
  display: flex;
  flex-direction: column;
  align-items: center; 
  text-align: center; 
}

.hero-brand-img {
  display: block;
  width: auto; /* CAMBIO: Respete su tamaño natural */
  max-width: 280px; /* CAMBIO: Reducido de 420px a 280px para evitar pixelación */
  height: auto;
  margin: 0 auto; 
}

.hero-divider {
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--steel), var(--gold));
  margin: 1.8rem auto;
  opacity: 0.45;
}

/* ── Imagen (protagonista, ocupa casi todo el ancho de pantalla, sin tarjeta) ── */
.hero-visual-col {
  width: 100%;
  margin-top: .5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.hero-visual-frame {
  position: relative;
  width: 94%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.hero-visual-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45%;
  height: 75%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(184,134,46,.22), transparent 65%);
  filter: blur(40px);
  opacity: 0.7;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 3;
  animation: pyramidGlow 5s ease-in-out infinite alternate;
}
@keyframes pyramidGlow {
  0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}

/* ── Mensaje: eyebrow + titular + spec-row + acciones (debajo del video, centrado) ── */
.hero-message-col {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--fm);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--fb);
  font-weight: 300;
  font-size: clamp(2.1rem, 3.6vw, 3.15rem);
  line-height: 1.22;
  letter-spacing: -.03em;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 3rem;
  text-wrap: balance;
}
.hero-headline em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-dk);
}

/* Fila de atributos: tres cualidades en paralelo, no una secuencia — de ahí la ficha técnica en vez de numeración */
.hero-facts {
  display: flex;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto 2.8rem;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-fact {
  flex: 1 1 0;
  padding: 0 1.6rem;
}
.hero-fact + .hero-fact {
  border-left: 1px solid var(--line);
}

.hero-fact-label {
  display: block;
  font-family: var(--fm);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: .6rem;
}

.hero-fact-desc {
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-60);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fb);
  font-size: .84rem;
  font-weight: 500;
  color: var(--ink-60);
  text-decoration: none;
  padding: .5rem .1rem;
  border-bottom: 1px solid transparent;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.hero-cta-secondary svg { transition: transform .3s var(--ease); }
.hero-cta-secondary:hover {
  color: var(--ink);
  border-color: var(--ink-28);
}
.hero-cta-secondary:hover svg { transform: translateY(2px); }

/* CTA */
.hero-cta--split {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--ink);
  color: #fff;
  font-family: var(--fb);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.05rem 2.3rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 14px 28px -16px rgba(10,20,32,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.hero-cta--split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--steel-dk), var(--gold-dk));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.hero-cta--split::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -100%;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.32), transparent);
  transition: left .6s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.hero-cta--split span,
.hero-cta--split svg { position: relative; z-index: 1; }
.hero-cta--split svg { transition: transform .3s var(--ease); }

.hero-cta--split:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px -16px rgba(10,20,32,.48);
}
.hero-cta--split:hover::before { opacity: 1; }
.hero-cta--split:hover::after { left: 140%; }
.hero-cta--split:hover svg { transform: translateX(4px); }

/* ── Responsive hero ── */
@media (max-width: 1023px) {
  .hero-center-layout { padding: 1.75rem 2rem 2rem; }
  .hero-brand-img { max-width: 260px; } /* Ajustado también aquí */
}

@media (max-width: 680px) {
  .hero-center-layout { padding: 1.5rem 1.25rem 1.5rem; }
  .hero-brand-img { max-width: 200px; }
  .hero-divider { margin: 1.4rem auto; }
  .hero-visual-col { margin: 1rem 0 1.4rem; }
  .hero-headline { margin-bottom: 2.2rem; }

  .hero-facts {
    flex-direction: column;
    gap: 1.4rem;
    padding: 1.5rem 0;
    margin-bottom: 2.2rem;
  }
  .hero-fact { padding: 0 .5rem; }
  .hero-fact + .hero-fact {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 1.4rem;
  }

  .hero-actions { gap: 1.4rem; flex-direction: column; }
}

/* ── Hero centrado: ajustes desktop (Unificado) ── */
@media (min-width: 1024px) {
  .hero-center-layout {
    padding: 1.75rem 4vw 3.5rem;
    display: flex;
    align-items: center;
  }

  .hero-message-col {
    padding-top: .5rem;
  }

  /* Truco para expandir la imagen a 1500px y centrarla sin usar 100vw */
  .hero-visual-col {
    width: 1500px;
    margin-left: calc(50% - 750px);
    margin-right: calc(50% - 750px);
  }
}

/* ══════════════ PARTNER SEPARATOR ══════════════ */
.partner-separator {
  position: relative;
  background: var(--warm);
  padding: 1.2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Línea sutil que une al hero */
.partner-separator::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

/* Glow inferior que se disipa hacia origin */
.partner-separator::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(184,134,46,.07), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.partner-separator-label {
  font-family: var(--fm);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-42);
  margin-bottom: .5rem;
}

.partner-separator-names {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem 1.2rem;
}

.partner-separator-names span {
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-85);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.partner-separator-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .82;
  transition: opacity .25s ease;
}

.partner-separator-logo-link:hover {
  opacity: 1;
}

.partner-separator-logo {
  display: block;
  height: 42px;
  width: auto;
  object-fit: contain;
}

.partner-separator-logo--insight {
  height: 50px;
  mix-blend-mode: multiply;
}

.partner-separator-glyph {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .45;
}

@media (max-width: 680px) {
  .partner-separator { padding: 1rem 1.25rem; }
  .partner-separator-names span { font-size: .88rem; }
  .partner-separator-logo { height: 32px; }
  .partner-separator-logo--insight { height: 38px; }
}

/* ── scroll-reveal ── */
.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════ EYEBROW (label compartido entre headers de sección) ══════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--fm);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.eyebrow-mark {
  width: 13px;
  height: 14px;
  flex-shrink: 0;
  background: #36B5B9;
  opacity: .9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='16.7 13.6 81.5 88.2'%3E%3Cpath d='M60.7,101.2c-2.8.9-4.5.7-7.1,0l-34.3-11.7c-1-.3-1.9-.5-2.3-1.2-.6-1.1-.2-2,.4-3.1l27.8-52.2,10.1-18.7c.5-1,3.7-.9,4.3,0l5.7,10.4,32.6,61.5c.7,1.4,0,2.6-1.2,3l-35.9,12.1h-.1ZM54.2,70l.2-32.8c0-2.3.3-4.6-.6-6.5l-11.9,44.5,12.3-5.2ZM72.7,75.1l-5.8-21.9c-2.2-7.5-3.5-14.9-6.6-22.7v39.6c0,0,12.3,4.9,12.3,4.9h.1ZM91.9,83.1l-16.8-32.1c-3.3-5.7-5.5-11.4-9.6-17.1l11.5,43.2s14.9,6,14.9,6ZM37.8,77l10.5-41.7-25.1,46.6c-.3.6.3,1.2.8,1,0,0,13.8-5.9,13.8-5.9ZM54.2,94.3v-19.9l-11.8,5,11.8,15h0ZM72.3,79.4l-12-5v20.6l12-15.6ZM49.8,95.7l-11.1-15.1-14.7,6.4s25.8,8.7,25.8,8.7ZM90.4,87.1l-14.6-6.3-10.9,15,25.5-8.7Z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='16.7 13.6 81.5 88.2'%3E%3Cpath d='M60.7,101.2c-2.8.9-4.5.7-7.1,0l-34.3-11.7c-1-.3-1.9-.5-2.3-1.2-.6-1.1-.2-2,.4-3.1l27.8-52.2,10.1-18.7c.5-1,3.7-.9,4.3,0l5.7,10.4,32.6,61.5c.7,1.4,0,2.6-1.2,3l-35.9,12.1h-.1ZM54.2,70l.2-32.8c0-2.3.3-4.6-.6-6.5l-11.9,44.5,12.3-5.2ZM72.7,75.1l-5.8-21.9c-2.2-7.5-3.5-14.9-6.6-22.7v39.6c0,0,12.3,4.9,12.3,4.9h.1ZM91.9,83.1l-16.8-32.1c-3.3-5.7-5.5-11.4-9.6-17.1l11.5,43.2s14.9,6,14.9,6ZM37.8,77l10.5-41.7-25.1,46.6c-.3.6.3,1.2.8,1,0,0,13.8-5.9,13.8-5.9ZM54.2,94.3v-19.9l-11.8,5,11.8,15h0ZM72.3,79.4l-12-5v20.6l12-15.6ZM49.8,95.7l-11.1-15.1-14.7,6.4s25.8,8.7,25.8,8.7ZM90.4,87.1l-14.6-6.3-10.9,15,25.5-8.7Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ══ ESCALA H2 — tres registros compartidos por las ocho cabeceras de sección ══ */
.h2-corto  { font-size: clamp(2.4rem, 4.4vw, 3.4rem); letter-spacing: -.04em; }
.h2-medio  { font-size: clamp(2.1rem, 3.8vw, 3.1rem); letter-spacing: -.03em; }
.h2-largo  { font-size: clamp(1.9rem, 3.2vw, 2.7rem); letter-spacing: -.02em; }

/* ══ FIRMA DE MARCA: el ícono facetado del logo (mismo path que LOGO_DAC.svg), único acento grande de la página ══ */
/* Textura, no ilustración: la firma se agranda, se atenúa y se descentra */
.closing-signature {
  position: absolute;
  top: -14%;
  right: -10%;
  width: 64%;
  max-width: 640px;
  min-width: 320px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.closing-signature.reveal-up {
  opacity: 0;
  transform: rotate(9deg) translateY(18px);
  transition: opacity 1.6s var(--ease), transform 1.6s var(--ease);
}
.closing-signature.reveal-up.is-visible {
  opacity: .1;
  transform: rotate(9deg);
}

/* ══════════════ ORIGIN ══════════════ */
.origin {
  position: relative;
  background: var(--stone);
  padding: 5.5rem 2.5rem;
  overflow: hidden;
}

.origin::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 50%;
  width: 1000px;
  height: 520px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 32% 50%, rgba(184,134,46,.11), transparent 62%),
    radial-gradient(ellipse at 68% 50%, rgba(15,111,102,.11), transparent 62%);
  filter: blur(50px);
  pointer-events: none;
}

.origin-head {
  position: relative;
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}
.origin-eyebrow { transition-delay: 0ms; }
.origin-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin: 1.1rem 0 1.4rem;
  text-wrap: balance;
  transition-delay: 120ms;
}
.origin-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-dk);
}
.origin-lede {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 520px;
  margin: 0 auto;
  transition-delay: 240ms;
}
.origin-lede strong {
  color: var(--ink-85);
  font-weight: 600;
}

.origin-stages {
  --circle: 152px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 1.5rem;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stage-circle {
  width: var(--circle);
  height: var(--circle);
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background:
    radial-gradient(circle at 50% 38%, var(--accent-tint), transparent 70%),
    var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.85rem;
  box-shadow: 0 22px 36px -26px var(--accent-shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.stage:hover .stage-circle {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px) scale(1.02);
  box-shadow: 0 26px 40px -22px var(--accent-shadow);
}

.stage-icon {
  width: 96px;
  height: 96px;
  color: var(--accent);
}

.stage-icon--logos {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.stage-arrow {
  height: var(--circle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-28);
}
.stage-arrow svg {
  width: 20px;
  height: 20px;
}

.stage-label {
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}
.stage-title {
  font-family: var(--fb);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: .7rem;
  max-width: 260px;
}
.stage-desc {
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink-60);
  line-height: 1.65;
  max-width: 250px;
}

.stage--gold { --accent: var(--gold); --accent-tint: rgba(184,134,46,.08); --accent-shadow: rgba(184,134,46,.3); }
.stage--ink  { --accent: var(--ink);  --accent-tint: rgba(10,20,32,.05);   --accent-shadow: rgba(10,20,32,.22); }
.stage--teal { --accent: var(--teal); --accent-tint: rgba(15,111,102,.08); --accent-shadow: rgba(15,111,102,.28); }
.stage--ink .stage-label { color: var(--ink-85); }

.origin-stages .stage:nth-child(1) { transition-delay: 0ms; }
.origin-stages .stage:nth-child(3) { transition-delay: 120ms; }
.origin-stages .stage:nth-child(5) { transition-delay: 240ms; }

@media (max-width: 900px) {
  .origin { padding: 4.25rem 2rem; }
  .origin-stages { --circle: 128px; gap: 0 1rem; }
  .stage-icon { width: 78px; height: 78px; }
  .stage-icon--logos { width: 104px; height: 104px; }
  .stage-title, .stage-desc { max-width: 210px; }
}

@media (max-width: 680px) {
  .nav, .nav.is-scrolled { padding: 1rem 1.25rem; }

  .origin { padding: 3.75rem 1.25rem; }
  .origin-head { margin-bottom: 1.75rem; }
  .origin-stages {
    grid-template-columns: 1fr;
    gap: 0;
    --circle: 116px;
  }
  .stage-icon { width: 66px; height: 66px; }
  .stage-icon--logos { width: 106px; height: 106px; }
  .stage-title, .stage-desc { max-width: 280px; }
  .stage-arrow {
    height: auto;
    padding: 1.4rem 0;
  }
  .stage-arrow svg { transform: rotate(90deg); }
}

/* ══════════════ METODOLOGÍA (section 3) ══════════════ */
#metodologia {
  --meth-navy:  var(--ink);
  --meth-teal:  var(--teal);
  --meth-gold:  var(--gold);
  --meth-text-2: var(--ink-60);
  --meth-border: var(--line);

  position: relative;
  background: var(--paper);
  padding: 8rem 2.5rem;
  overflow: hidden;
}

.meth-header {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}
.meth-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.22;
  color: var(--ink);
  margin: 1rem 0 0;
  text-wrap: balance;
  transition-delay: 120ms;
}
.meth-subtitle {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--meth-text-2);
  transition-delay: 240ms;
}

/* ── desktop / tablet: bridge view ── */
.meth-desktop { display: block; }

.bridge-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.bridge-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  width: 100%;
}

.bridge-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 820px;
  min-width: 0;
  max-width: 1040px;
}

.hotspot-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  width: 100%;
  margin-bottom: 2.25rem;
}

.eco-panel {
  flex: 0 0 148px;
  width: 148px;
}
.eco-panel h5 {
  font-family: var(--fm);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-42);
  margin-bottom: 1.1rem;
}
.eco-left h5 { text-align: right; }
.eco-panel ul {
  list-style: none;
}
.eco-panel li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 400;
  color: var(--meth-text-2);
  margin-bottom: .65rem;
  line-height: 1.3;
}
.eco-left li { flex-direction: row-reverse; text-align: right; }
.eco-icon { width: 15px; height: 15px; flex-shrink: 0; color: var(--ink-42); }
.eco-left .eco-icon { color: var(--steel); }
.eco-right .eco-icon { color: var(--meth-gold); }

/* Punto de anclaje de cada hilo: se ubica junto al ícono, del lado que mira al puente */
.eco-dot {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
  border-radius: 50%;
}
.eco-left .eco-dot { background: var(--steel); }
.eco-right .eco-dot { background: var(--meth-gold); }

.bridge-frame {
  position: relative;
  width: 100%;
}
.bridge-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Anclas donde la roca se une al tablero: punto de referencia para initBridgeWires + anillo de convergencia */
.bridge-anchor {
  position: absolute;
  top: 6%;
  width: 0;
  height: 0;
  pointer-events: none;
}
.bridge-anchor--left { left: 18%; }
.bridge-anchor--right { left: 82%; }
.bridge-anchor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid var(--steel);
  background: var(--paper);
  opacity: 0;
  transition: opacity .8s var(--ease) .3s;
}
.bridge-anchor--right::before { border-color: var(--meth-gold); }
.bridge-row.bridge-wires-visible .bridge-anchor::before { opacity: 1; }

/* ── Hilos que convergen en el puente ── */
.bridge-wires {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}
.bridge-wires path {
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
}
.bridge-wires .wire-left { stroke: var(--steel); opacity: .5; }
.bridge-wires .wire-right { stroke: var(--meth-gold); opacity: .55; }

/* Cometa de luz que recorre cada hilo (izq → puente → der); pausada hasta que #metodologia entra en viewport */
.bridge-wires .wire-flow {
  stroke-width: 2;
  opacity: .95;
  animation-name: bridge-flow-dash;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.bridge-wires.flow-active .wire-flow { animation-play-state: running; }

@keyframes bridge-flow-dash {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: var(--flow-shift); }
}

.pillar-icon-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin-bottom: 14px;
}
.pillar-icon {
  justify-self: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--pi-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -12px rgba(10,20,32,.3);
  transition: opacity 1.2s var(--ease), transform .5s var(--ease);
}
.pillar-icon:hover { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px) scale(1.08); }
.pillar-icon svg { width: 22px; height: 22px; color: var(--pi-accent); }
.pillar-icon:nth-child(1) { --pi-accent: var(--meth-navy); transition-delay: 0ms; }
.pillar-icon:nth-child(2) { --pi-accent: var(--meth-teal); transition-delay: 120ms; }
.pillar-icon:nth-child(3) { --pi-accent: var(--meth-navy); transition-delay: 240ms; }
.pillar-icon:nth-child(4) { --pi-accent: var(--meth-teal); transition-delay: 360ms; }

.hotspot {
  position: relative;
  background: var(--paper);
  border-radius: 10px;
  padding: .85rem .7rem 1.5rem;
  text-align: center;
  box-shadow: 0 14px 28px -18px rgba(10,20,32,.22);
  border: 1px solid rgba(10,20,32,.05);
  transition: opacity 1.2s var(--ease), transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.hotspot:hover {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(10,20,32,.25);
  border-color: rgba(10,20,32,.1);
}
.hotspot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, var(--hs-accent), transparent);
  transform: translateX(-50%);
}
.hotspot:nth-child(odd)  { --hs-accent: var(--meth-navy); }
.hotspot:nth-child(even) { --hs-accent: var(--meth-teal); }
.hotspot-row .hotspot:nth-child(1) { transition-delay: 0ms; }
.hotspot-row .hotspot:nth-child(2) { transition-delay: 120ms; }
.hotspot-row .hotspot:nth-child(3) { transition-delay: 240ms; }
.hotspot-row .hotspot:nth-child(4) { transition-delay: 360ms; }
.hotspot-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
  font-size: .72rem;
  font-weight: 600;
  color: #fff;
  background: var(--hs-accent);
  margin-bottom: .55rem;
}
.hotspot h4 {
  font-family: var(--fb);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .3rem;
}
.hotspot p {
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 400;
  color: var(--meth-text-2);
  line-height: 1.42;
}
.hotspot-small {
  font-family: var(--fm);
  font-size: .58rem !important;
  color: var(--ink-42) !important;
  margin-bottom: .3rem !important;
}

.patrimonio-center {
  position: relative;
  text-align: center;
  max-width: 480px;
  margin: 3.5rem auto 0;
}
.patrimonio-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto .9rem;
  border-radius: 50%;
  border: 2px solid var(--meth-gold);
  background: radial-gradient(circle at 50% 38%, rgba(184,134,46,.08), transparent 70%), var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 34px -24px rgba(184,134,46,.4);
}
.patrimonio-center h3 {
  font-family: var(--fm);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--meth-gold);
  margin-bottom: .55rem;
}
.patrimonio-center p {
  font-family: var(--fb);
  font-size: .92rem;
  color: var(--meth-text-2);
  line-height: 1.6;
}

.benefits-wrap {
  position: relative;
  max-width: 1000px;
  margin: 5rem auto 0;
  padding-top: 3.5rem;
}
.benefits-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--steel), var(--meth-gold), var(--meth-teal));
  opacity: .6;
}
.benefits-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.75rem;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .95rem;
}
.benefit-icon-circle {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--meth-gold);
  background: radial-gradient(circle at 50% 38%, rgba(184,134,46,.08), transparent 70%), var(--paper);
  box-shadow: 0 16px 26px -20px rgba(184,134,46,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.benefit-item:hover .benefit-icon-circle {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px) scale(1.06);
  box-shadow: 0 20px 30px -18px rgba(184,134,46,.6);
}
.benefit-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--meth-gold); }
.benefit-item span {
  font-family: var(--fb);
  font-size: .8rem;
  font-weight: 400;
  color: var(--ink-85);
  line-height: 1.45;
  max-width: 150px;
}

.benefits-bar .benefit-item:nth-child(1) { transition-delay: 0ms; }
.benefits-bar .benefit-item:nth-child(2) { transition-delay: 120ms; }
.benefits-bar .benefit-item:nth-child(3) { transition-delay: 240ms; }
.benefits-bar .benefit-item:nth-child(4) { transition-delay: 360ms; }
.benefits-bar .benefit-item:nth-child(5) { transition-delay: 480ms; }

.meth-mobile { display: none; }

/* ── Bloque digital ⇄ puente recortado ⇄ institucional (mobile) ──
   Misma composición de 3 columnas que la versión desktop: ecosistema digital
   a la izquierda, arco del puente al centro, ecosistema institucional a la
   derecha. La asociación entre columnas y puente la comunican los hilos SVG
   (initBridgeWiresMobile), igual que en desktop — sin barras divisorias. ── */
.bridge-mobile-wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: .5rem;
  background: var(--warm);
  border-radius: 14px;
  padding: 1.5rem .6rem;
  margin-bottom: 2.5rem;
}

/* .eco-panel se reutiliza tal cual (icono + color steel/gold), solo se angosta la columna */
.meth-mobile .eco-panel {
  flex: 0 0 88px;
  width: 88px;
  box-sizing: border-box;
}
.meth-mobile .eco-panel h5 {
  font-size: .5rem;
  letter-spacing: .06em;
  margin-bottom: .75rem;
}
.meth-mobile .eco-panel li {
  gap: .35rem;
  font-size: .58rem;
  margin-bottom: .55rem;
  line-height: 1.2;
}
.meth-mobile .eco-panel .eco-icon { width: 12px; height: 12px; }
.meth-mobile .eco-panel .eco-dot { width: 4px; height: 4px; }

.bridge-frame-mobile {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}
/* La columna se estira (align-items:stretch del wrap) para igualar la altura
   de las listas eco-panel, pero la imagen debe conservar su alto intrínseco:
   este wrapper no se estira y es la referencia real para posicionar las anclas,
   en vez del frame (que quedaría más alto que la imagen y las desplazaría). */
.bridge-frame-mobile-inner {
  position: relative;
  width: 100%;
}
.bridge-img-mobile {
  width: 100%;
  height: auto;
  display: block;
}

/* Anclas donde la roca se une al tablero: al inicio de la baranda, arriba de la imagen */
.bridge-anchor-mobile {
  position: absolute;
  top: 3%;
  width: 0;
  height: 0;
  pointer-events: none;
}
.bridge-anchor-mobile--left { left: 1%; }
.bridge-anchor-mobile--right { left: 99%; }
.bridge-anchor-mobile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.3px solid var(--steel);
  background: var(--paper);
  opacity: 0;
  transition: opacity .8s var(--ease) .3s;
}
.bridge-anchor-mobile--right::before { border-color: var(--meth-gold); }
.bridge-mobile-wrap.bridge-wires-visible .bridge-anchor-mobile::before { opacity: 1; }

/* ── Hilos que convergen en el puente (mobile) — mismo comportamiento que .bridge-wires ── */
.bridge-wires-mobile {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}
.bridge-wires-mobile path {
  fill: none;
  stroke-width: 1.1;
  stroke-linecap: round;
}
.bridge-wires-mobile .wire-left { stroke: var(--steel); opacity: .5; }
.bridge-wires-mobile .wire-right { stroke: var(--meth-gold); opacity: .55; }
.bridge-wires-mobile .wire-flow {
  stroke-width: 1.6;
  opacity: .95;
  animation-name: bridge-flow-dash;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}
.bridge-wires-mobile.flow-active .wire-flow { animation-play-state: running; }

.step-card {
  background: var(--paper);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid var(--meth-border);
  position: relative;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease), opacity 1.2s var(--ease);
  transition-delay: 60ms;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -14px rgba(10,20,32,.18);
  border-color: rgba(10,20,32,.12);
}
.step-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
}
.step-card--navy::before { background: var(--meth-navy); }
.step-card--teal::before { background: var(--meth-teal); }

.step-header { display: flex; align-items: flex-start; gap: .9rem; }
.step-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.step-card--navy .step-num { background: var(--meth-navy); }
.step-card--teal .step-num { background: var(--meth-teal); }
.step-header h4 {
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: .3rem;
}
.step-acronym {
  display: block;
  font-family: var(--fm);
  font-size: .64rem;
  font-weight: 500;
  color: var(--ink-42);
  margin-top: .15rem;
}
.step-desc {
  font-family: var(--fb);
  font-size: .84rem;
  color: var(--meth-text-2);
  line-height: 1.55;
  margin-top: .35rem;
}

.step-arrow { text-align: center; margin: .6rem 0; color: var(--ink-28); }
.step-arrow svg { width: 18px; height: 18px; }

.mobile-patrimonio {
  margin: 2rem 0;
  padding: 1.75rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--meth-gold);
  background: rgba(184,134,46,.04);
  text-align: center;
}
.mobile-patrimonio .patrimonio-icon { box-shadow: none; }
.mobile-patrimonio h3 { font-size: .74rem; color: var(--meth-gold); }
.mobile-patrimonio p { color: var(--meth-text-2); }

.benefits-mobile { display: grid; grid-template-columns: 1fr; gap: .65rem; margin-top: 1.5rem; }
.benefits-mobile .benefit-item {
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: .8rem;
  background: var(--paper);
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--meth-border);
}
.benefits-mobile .benefit-item span { max-width: none; }
.benefits-mobile .benefit-icon { color: var(--meth-navy); }

@media (max-width: 1024px) {
  .eco-panel { flex: 0 0 118px; width: 118px; }
  .eco-panel li { font-size: .68rem; }
  .eco-icon { width: 13px; height: 13px; }
  .hotspot { padding: .7rem .55rem 1.3rem; }
  .hotspot h4 { font-size: .68rem; }
  .hotspot p { font-size: .62rem; }
  .bridge-row { gap: 1.1rem; }
  .pillar-icon-row { margin-bottom: 10px; }
  .pillar-icon { width: 42px; height: 42px; }
  .pillar-icon svg { width: 18px; height: 18px; }
  .hotspot-row { gap: .6rem; }
  .benefits-bar { gap: 1rem; }
  .benefit-icon-circle { width: 44px; height: 44px; }
  .benefit-icon { width: 18px; height: 18px; }
  .benefit-item span { font-size: .72rem; max-width: 128px; }
}

@media (max-width: 900px) {
  #metodologia { padding: 4.25rem 2rem; }
}

@media (max-width: 767px) {
  #metodologia { padding: 3.75rem 1.25rem; }
  .meth-header { margin-bottom: 1.75rem; }
  .meth-desktop { display: none; }
  .meth-mobile { display: block; max-width: 480px; margin: 0 auto; }
}

/* ══════════════ SCROLL PROGRESS ══════════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--steel), var(--gold));
  transform-origin: 0 0;
  transform: scaleX(0);
  transition: transform .08s linear;
}

/* ══════════════ MAGNETIC BUTTONS ══════════════ */
.has-magnetic { display: inline-flex; position: relative; isolation: isolate; }
.magnetic-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: inherit;
  will-change: transform;
}

/* ══════════════ TILT (stages / hotspots) ══════════════ */
.has-tilt {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}

/* ══════════════ HERO CURSOR GLOW ══════════════ */
.hero-visual-frame {
  --mx: 50%;
  --my: 50%;
}
.hero-cursor-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(320px circle at var(--mx) var(--my), rgba(184,134,46,.16), transparent 60%);
  mix-blend-mode: soft-light;
  transition: opacity .5s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .hero-visual-frame:hover .hero-cursor-glow { opacity: 1; }
}

/* ══════════════ CIERRE / CONTACTO ══════════════ */
.closing {
  position: relative;
  background: var(--ink);
  padding: 10rem 2.5rem;
  overflow: hidden;
  text-align: center;
}
.closing::before {
  content: '';
  position: absolute;
  top: -220px;
  left: 50%;
  width: 1100px;
  height: 560px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,134,46,.16), transparent 62%),
    radial-gradient(ellipse at 70% 50%, rgba(15,111,102,.14), transparent 62%);
  filter: blur(70px);
  pointer-events: none;
}
.closing-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.closing-eyebrow { color: var(--gold-soft); margin-bottom: 1.6rem; }
.closing-title {
  font-family: var(--fb);
  font-weight: 200;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--fog);
  margin-bottom: 1.7rem;
  text-wrap: balance;
}
.closing-lede {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--fog);
  opacity: .72;
  margin-bottom: 3.2rem;
}
/* ── formulario de contacto: tarjeta elevada en limestone sobre el navy ── */
.contact-form-wrap {
  max-width: 520px;
  margin: 3.2rem auto 0;
  text-align: left;
  background: var(--stone);
  border-radius: 22px;
  border-top: 3px solid var(--gold);
  padding: 2.75rem 2.5rem;
  box-shadow:
    0 60px 110px -32px rgba(10,20,32,.55),
    0 20px 45px -22px rgba(10,20,32,.4);
}
.contact-hp { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  margin-bottom: .55rem;
  font-family: var(--fm);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--gold-dk) 78%, var(--ink) 22%);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--fb);
  font-size: .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-42); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,46,.2);
}

.contact-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: .4rem;
  background: var(--ink);
  color: var(--fog);
  font-family: var(--fb);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 1.05rem 2.3rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 14px 32px -14px rgba(10,20,32,.5);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), opacity .2s var(--ease);
}
.contact-submit svg { transition: transform .3s var(--ease); }
.contact-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -14px rgba(10,20,32,.6);
}
.contact-submit:hover:not(:disabled) svg { transform: translateX(4px); }
.contact-submit:disabled { opacity: .55; cursor: not-allowed; }

.contact-privacy {
  margin-top: 1rem;
  font-family: var(--fb);
  font-size: .72rem;
  line-height: 1.5;
  color: var(--ink-60);
  text-align: center;
}

.contact-feedback {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1.3rem;
  padding: .85rem 1.05rem;
  border-radius: 8px;
  font-family: var(--fb);
  font-size: .85rem;
  line-height: 1.5;
  text-align: left;
}
.contact-feedback[hidden] { display: none; }
.contact-feedback svg { flex-shrink: 0; width: 18px; height: 18px; margin-top: .1rem; }
.contact-feedback a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.contact-feedback--success { background: var(--teal-dk); color: var(--fog); }
.contact-feedback--error { background: var(--ink); color: #E8918C; }

/* ══════════════ FOOTER: mismo navy, más callado — línea de firma dorada lo separa del CTA ══════════════ */
.site-footer {
  position: relative;
  background: var(--ink);
  padding: 4.5rem 2.5rem 2.5rem;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dk) 15%, var(--gold) 50%, var(--gold-dk) 85%, transparent);
  opacity: .55;
}
.site-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr .9fr 1fr .9fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.site-footer-brand { max-width: 300px; }
.site-footer-logo { height: 34px; width: auto; opacity: .85; }
.site-footer-tagline {
  font-family: var(--fb);
  font-size: .8rem;
  line-height: 1.6;
  color: var(--fog);
  opacity: .5;
  margin-top: 1.1rem;
}

.site-footer-nav {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.site-footer-nav a {
  font-family: var(--fb);
  font-size: .8rem;
  color: color-mix(in srgb, var(--fog) 62%, var(--ink) 38%);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.site-footer-nav a:hover { color: var(--gold-soft); }

.site-footer-partners-label {
  display: block;
  font-family: var(--fm);
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fog);
  opacity: .4;
  margin-bottom: 1.1rem;
}
.site-footer-partners-logos {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.site-footer-partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem .9rem;
  background: rgba(255,255,255,.94);
  border-radius: 8px;
  opacity: .9;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.site-footer-partner-chip:hover { opacity: 1; transform: translateY(-1px); }
.site-footer-partner-logo { display: block; width: auto; }
.site-footer-partner-logo--insight { height: 26px; }
.site-footer-partner-logo--molina { height: 20px; }

.site-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
}
.site-footer-contact a {
  font-family: var(--fb);
  font-size: .8rem;
  color: color-mix(in srgb, var(--fog) 62%, var(--ink) 38%);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.site-footer-contact a:hover { color: var(--gold-soft); }
.site-footer-social {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.site-footer-social svg { width: 16px; height: 16px; }
.site-footer-social:hover { border-color: var(--gold-soft); }

.site-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer-copyright {
  font-family: var(--fb);
  font-size: .72rem;
  color: var(--fog);
  opacity: .58;
}
.site-footer-legal {
  display: flex;
  gap: 1.6rem;
}
.site-footer-legal a {
  font-family: var(--fb);
  font-size: .72rem;
  color: color-mix(in srgb, var(--fog) 58%, var(--ink) 42%);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.site-footer-legal a:hover { color: var(--gold-soft); }

@media (max-width: 900px) {
  .site-footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 2.5rem;
  }
  .site-footer-brand { max-width: none; grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .closing { padding: 6.5rem 2rem; }
}

@media (max-width: 680px) {
  .closing { padding: 5.5rem 1.25rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; border-radius: 16px; }
  .site-footer { padding: 3.75rem 1.25rem 2rem; }
  .site-footer-main { grid-template-columns: 1fr; gap: 2.25rem; text-align: center; }
  .site-footer-brand { grid-column: auto; max-width: none; }
  .site-footer-tagline { max-width: 320px; margin-left: auto; margin-right: auto; }
  .site-footer-nav { align-items: center; }
  .site-footer-partners { display: flex; flex-direction: column; align-items: center; }
  .site-footer-contact { align-items: center; }
  .site-footer-bottom { flex-direction: column; text-align: center; }
}
/* ══════════════ DIAGNÓSTICO ESTRATÉGICO ══════════════ */
.diagnostico {
  position: relative;
  background: var(--ink);
  padding: 7.5rem 2.5rem;
  overflow: visible;
}

.diagnostico .eyebrow { color: var(--gold-soft); }
.diagnostico .diag-title { color: #fff; }
.diagnostico .diag-lede { color: rgba(255,255,255,.7); }
.diagnostico .diag-desc { color: rgba(255,255,255,.65); }
.diagnostico .diag-list--fallback li { color: rgba(255,255,255,.85); }
@media (min-width: 681px) {
  .diagnostico .diag-benefit-item span { color: rgba(255,255,255,.85); }
}

/* Glow de transición desde metodología */
.diagnostico::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 35% 40%, rgba(63,90,118,.08), transparent 60%),
    radial-gradient(ellipse at 65% 40%, rgba(184,134,46,.09), transparent 60%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.diagnostico-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* ── Header ── */
.diag-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.diag-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin: 1rem 0 1.2rem;
  text-wrap: balance;
}

.diag-lede {
  font-family: var(--fb);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-60);
}

/* ═══ SHOWCASE: imagen protagonista + labels flotantes ═══ */
.diag-showcase {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
}

.diag-visual-frame {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

@media (min-width: 1440px) {
  .diag-visual-frame { max-width: 860px; }
}

.diag-visual-frame img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.diag-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 45%;
  height: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(15,111,102,.10), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* ── Labels flotantes con efecto premium ── */
.diag-annotation {
  position: absolute;
  font-family: var(--fb);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-85);
  line-height: 1.35;
  max-width: 190px;
  z-index: 2;
  
  /* Efecto glassmorphism sutil */
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 20, 32, 0.06);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  box-shadow: 0 8px 24px -10px rgba(10, 20, 32, 0.12);
  
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

/* Bullet dorado conector en el borde */
.diag-annotation::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  box-shadow: 0 0 0 3px rgba(184, 134, 46, 0.12);
}

/* ═══ POSICIONES: aire respecto a la imagen recortada ═══ */
.diag-annotation--tl {
  top: 8%;
  left: -135px;
  text-align: right;
}
.diag-annotation--tl::after { right: -9px; }

.diag-annotation--tr {
  top: 8%;
  right: -145px;
  text-align: left;
}
.diag-annotation--tr::after { left: -9px; }

.diag-annotation--ml {
  top: 30%;
  left: -220px;
  text-align: right;
}
.diag-annotation--ml::after { right: -9px; }

.diag-annotation--mr {
  top: 30%;
  right: -195px;
  text-align: left;
}
.diag-annotation--mr::after { left: -9px; }

.diag-annotation--bl {
  top: 60%;
  left: -165px;
  text-align: right;
}
.diag-annotation--bl::after { right: -9px; }

.diag-annotation--br {
  top: 60%;
  right: -145px;
  text-align: left;
}
.diag-annotation--br::after { left: -9px; }

/* ── Cuerpo textual debajo de la imagen ── */
.diag-body {
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
}

.diag-desc {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 2.2rem;
}

/* Lista fallback (visible en tablet/mobile) */
.diag-list--fallback {
  display: none;
  list-style: none;
  flex-direction: column;
  gap: .8rem;
  margin: 0 0 2.2rem;
  padding: 0;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.diag-list--fallback li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink-85);
  line-height: 1.4;
}

.diag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

/* Caja resultado */
.diag-result {
  position: relative;
  background: var(--warm);
  border-radius: 12px;
  padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--gold);
  text-align: left;
  display: inline-block;
  max-width: 520px;
  width: 100%;
}

.diag-result-label {
  display: block;
  font-family: var(--fm);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: .6rem;
}

.diag-result p {
  font-family: var(--fb);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}

/* ── Benefits grid ── */
.diag-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2.5rem;
  position: relative;
}

.diag-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--steel), var(--gold), var(--teal));
  opacity: .5;
}

.diag-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .9rem;
}

.diag-benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--steel-soft);
  background: radial-gradient(circle at 50% 38%, rgba(63,90,118,.06), transparent 70%), var(--paper);
  box-shadow: 0 14px 24px -18px rgba(63,90,118,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

.diag-benefit-item:hover .diag-benefit-icon {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--gold-soft);
  box-shadow: 0 18px 28px -16px rgba(184,134,46,.35);
}

.diag-benefit-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.diag-benefit-item span {
  font-family: var(--fb);
  font-size: .8rem;
  font-weight: 400;
  color: var(--ink-85);
  line-height: 1.45;
  max-width: 150px;
}

/* Delays escalonados */
.diag-benefits .diag-benefit-item:nth-child(1) { transition-delay: 0ms; }
.diag-benefits .diag-benefit-item:nth-child(2) { transition-delay: 100ms; }
.diag-benefits .diag-benefit-item:nth-child(3) { transition-delay: 200ms; }
.diag-benefits .diag-benefit-item:nth-child(4) { transition-delay: 300ms; }
.diag-benefits .diag-benefit-item:nth-child(5) { transition-delay: 400ms; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

/* Tablet: ocultar labels flotantes, mostrar lista */
@media (max-width: 1050px) {
  .diag-annotation { display: none; }
  .diag-list--fallback { display: flex; }
  .diag-showcase { margin-bottom: 3rem; }
  .diag-visual-frame { max-width: 560px; }
}

@media (max-width: 1024px) {
  .diagnostico { padding: 4.25rem 2rem; }
}

/* ── Grid de dimensiones para mobile (ícono + etiqueta, sin solape con la imagen) ── */
.diag-annot-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
  margin: 0 0 2.2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.diag-annot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
  padding: 1.1rem .8rem .95rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 12px;
}

.diag-annot-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--teal);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, .45);
}

.diag-annot-icon svg { width: 19px; height: 19px; }

.diag-annot-card span:last-child {
  font-family: var(--fb);
  font-size: .82rem;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, .85);
}

/* Mobile */
@media (max-width: 680px) {
  .diagnostico { padding: 3.75rem 1.25rem; }
  .diag-header { margin-bottom: 1.75rem; }
  .diag-showcase { padding: 0; margin-bottom: 2.5rem; }
  .diag-visual-frame { max-width: 100%; }
  .diag-glow { filter: blur(35px); }
  .diag-body { margin-bottom: 3rem; }
  .diag-result { padding: 1.3rem 1.4rem; }
  .diag-result p { font-size: .98rem; }
  .diag-benefits { grid-template-columns: 1fr; gap: 1rem; }
  .diag-benefit-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: .8rem;
    background: var(--warm);
    padding: .85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--line);
  }
  .diag-benefit-item span { max-width: none; }

  /* Dimensiones del diagnóstico en mobile: grid de tarjetas con ícono debajo
     de la imagen (las labels flotantes no caben sin tapar los íconos del gráfico) */
  .diag-list--fallback { display: none; }
  .diag-annot-grid { display: grid; }
}

/* ══════════════ OCAPS ══════════════ */
.ocaps {
  position: relative;
  background: var(--fog);
  padding: 5.5rem 2.5rem;
  overflow: visible;
}

/* Glow de transición desde diagnóstico */
.ocaps::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 35% 40%, rgba(15,111,102,.08), transparent 60%),
    radial-gradient(ellipse at 65% 40%, rgba(63,90,118,.07), transparent 60%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.ocaps-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* ── Grid principal ── */
.ocaps-grid {
  display: grid;
  grid-template-columns: 46% 50%;
  gap: 4%;
  align-items: start;
  margin-bottom: 5rem;
}

/* ═══ Columna texto ═══ */
.ocaps-text-col {
  position: relative;
  padding-top: 1rem;
}

.ocaps-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin: 1rem 0 .4rem;
}

.ocaps-subtitle {
  font-family: var(--fm);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-85);
  margin-bottom: 1.8rem;
}

.ocaps-desc {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  margin-bottom: 2rem;
  max-width: 480px;
}

/* Caja pregunta */
.ocaps-question {
  position: relative;
  background: var(--ink);
  border-radius: 12px;
  padding: 1.4rem 1.6rem 1.4rem 3.6rem;
  margin-bottom: 2rem;
  box-shadow: 0 16px 40px -18px rgba(10,20,32,.35);
}

.ocaps-q-mark {
  position: absolute;
  top: 1.35rem;
  left: 1.2rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-soft);
  color: var(--gold-soft);
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocaps-question p {
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin: 0;
}

/* Checklist */
.ocaps-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin: 0 0 2.2rem;
  padding: 0;
  max-width: 480px;
}

.ocaps-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink-85);
  line-height: 1.45;
}

.ocaps-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .12rem;
  border-radius: 50%;
  border: 1.5px solid var(--teal-soft);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230F6F66' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/68% no-repeat;
}

/* Proceso DAC */
.ocaps-proceso {
  position: relative;
  padding-left: 1.2rem;
  border-left: 2px solid var(--teal-soft);
}

.ocaps-proceso-label {
  display: block;
  font-family: var(--fm);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .4rem;
}

.ocaps-proceso p {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-60);
  margin: 0;
}

/* ═══ Columna imagen ═══ */
.ocaps-visual-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocaps-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

@media (min-width: 1440px) {
  .ocaps-frame { max-width: 640px; }
}

.ocaps-frame img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.ocaps-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  height: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(15,111,102,.12), transparent 65%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

/* ── Labels flotantes ── */
.ocaps-label {
  position: absolute;
  font-family: var(--fb);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-85);
  line-height: 1.3;
  max-width: 160px;
  z-index: 2;
  
  /* Glassmorphism sutil */
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 20, 32, 0.06);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 24px -10px rgba(10, 20, 32, 0.12);
  
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

/* Bullet conector */
.ocaps-label::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.6;
  box-shadow: 0 0 0 3px rgba(15, 111, 102, 0.1);
}

/* Posiciones ajustadas a la imagen frame_5.png */
.ocaps-label--blockchain {
  top: 2%;
  left: -110px;
  text-align: right;
}
.ocaps-label--blockchain::after { right: -8px; }

.ocaps-label--identity {
  top: 2%;
  right: -120px;
  text-align: left;
}
.ocaps-label--identity::after { left: -8px; }

.ocaps-label--proceso {
  top: 42%;
  right: -50px;
  text-align: left;
}
.ocaps-label--proceso::after { left: -8px; }

.ocaps-label--resultado {
  bottom: 18%;
  right: 10px;
  text-align: left;
}
.ocaps-label--resultado::after { left: -8px; }

/* ═══ Resultado destacado ═══ */
.ocaps-resultado {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 3rem;
}

.ocaps-resultado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--steel), var(--teal), var(--gold));
  opacity: .5;
}

.ocaps-resultado-inner {
  display: flex;
  justify-content: center;
}

.ocaps-resultado-text {
  text-align: center;
  max-width: 640px;
}

.ocaps-resultado-label {
  display: block;
  font-family: var(--fm);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .9rem;
}

.ocaps-resultado-title {
  font-family: var(--fb);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: .6rem;
}

.ocaps-resultado-desc {
  font-family: var(--fb);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-60);
  margin: 0;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
  .ocaps { padding: 4.25rem 2rem; }
  .ocaps-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ocaps-visual-col { order: -1; }
  .ocaps-frame { max-width: 420px; margin: 0 auto; }
  .ocaps-text-col { max-width: 600px; margin: 0 auto; }

  /* Mismas etiquetas flotantes que desktop, alrededor de la imagen: posiciones
     relativas al frame (por eso funcionan igual a 420px que a 76% del viewport),
     con offsets/tamaño reducidos para que quepan sin salirse de la columna. */
  .ocaps-label {
    font-size: .62rem;
    line-height: 1.25;
    max-width: 100px;
    padding: .4rem .55rem;
  }
  .ocaps-label--blockchain { top: 0%; left: -6px; }
  .ocaps-label--identity { top: 0%; right: -6px; }
  .ocaps-label--proceso { top: 42%; right: -6px; }
  .ocaps-label--resultado { bottom: 16%; right: 2px; }
  .ocaps-label--blockchain::after { right: -5px; }
  .ocaps-label--identity::after,
  .ocaps-label--proceso::after,
  .ocaps-label--resultado::after { left: -5px; }
}

@media (max-width: 680px) {
  .ocaps { padding: 3.75rem 1.25rem; }
  .ocaps-visual-col { order: 0; }
  .ocaps-frame { max-width: 76%; margin: 0 auto; }
  .ocaps-question { padding: 1.2rem 1.2rem 1.2rem 3.2rem; }
  .ocaps-q-mark { top: 1.15rem; left: 1rem; width: 24px; height: 24px; font-size: .85rem; }
  .ocaps-checklist li { font-size: .88rem; }
  .ocaps-resultado { padding-top: 2rem; }
  .ocaps-label { font-size: .6rem; max-width: 96px; }
}

/* ══════════════ ESTRUCTURACIÓN PATRIMONIAL ══════════════ */
.estructuracion {
  position: relative;
  background: var(--paper);
  padding: 6rem 2.5rem;
  overflow: visible;
}

.estructuracion::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 35% 40%, rgba(184,134,46,.08), transparent 60%),
    radial-gradient(ellipse at 65% 40%, rgba(15,111,102,.07), transparent 60%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.estructuracion-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* ── Header: título+lede a la izquierda, intro+bullets a la derecha (misma fila, sin masthead partido) ── */
.estructuracion-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 4rem;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto 4rem;
}

.estructuracion-header-left,
.estructuracion-header-right { text-align: left; }

.estructuracion-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin: 1rem 0 1.1rem;
  text-wrap: balance;
}

.estructuracion-lede {
  font-family: var(--fb);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-60);
  max-width: 420px;
}

.estructuracion-header-right { padding-top: 2.9rem; }

.estructuracion-intro-text {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 0 0 1.6rem;
}

.estructuracion-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 0;
  padding: 0;
}

.estructuracion-bullets li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink-85);
  line-height: 1.4;
}

.estructuracion-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .6;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .estructuracion-header {
    display: block;
    max-width: 560px;
    margin-bottom: 3rem;
  }
  .estructuracion-header-left,
  .estructuracion-header-right { text-align: center; }
  .estructuracion-lede { max-width: none; margin: 0 auto; }
  .estructuracion-header-right { padding-top: 2rem; }
  .estructuracion-bullets { align-items: center; }
  .estructuracion-bullets li { text-align: left; }
}

/* ── Imagen: cinco pilares con texto y números integrados en la propia foto,
   misma imagen en todos los tamaños — frame con tarjeta porque no tiene canal alpha ── */
.estructuracion-visual {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.estructuracion-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(10,20,32,.35);
}

.estructuracion-frame img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.estructuracion-glow {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 55%;
  height: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(184,134,46,.14), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 1440px) {
  .estructuracion-visual { max-width: 1220px; }
}

@media (max-width: 680px) {
  .estructuracion-frame { border-radius: 14px; }
}

/* ── Body textual ── */
.estructuracion-body {
  max-width: 640px;
  margin: 0 auto 3rem;
  text-align: center;
}

.estructuracion-desc {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
}

/* ── Benefits finales ── */
.estructuracion-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 2.5rem;
  position: relative;
}

.estructuracion-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--steel), var(--gold), var(--teal));
  opacity: .5;
}

.estructuracion-benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .9rem;
}

.estructuracion-benefit-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold-soft);
  background: radial-gradient(circle at 50% 38%, rgba(184,134,46,.08), transparent 70%), var(--paper);
  box-shadow: 0 14px 24px -18px rgba(184,134,46,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}

.estructuracion-benefit-item:hover .estructuracion-benefit-icon {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 18px 28px -16px rgba(184,134,46,.5);
}

.estructuracion-benefit-icon svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.estructuracion-benefit-item span {
  font-family: var(--fb);
  font-size: .8rem;
  font-weight: 400;
  color: var(--ink-85);
  line-height: 1.45;
  max-width: 150px;
}

/* Delays escalonados */
.estructuracion-benefits .estructuracion-benefit-item:nth-child(1) { transition-delay: 0ms; }
.estructuracion-benefits .estructuracion-benefit-item:nth-child(2) { transition-delay: 100ms; }
.estructuracion-benefits .estructuracion-benefit-item:nth-child(3) { transition-delay: 200ms; }
.estructuracion-benefits .estructuracion-benefit-item:nth-child(4) { transition-delay: 300ms; }
.estructuracion-benefits .estructuracion-benefit-item:nth-child(5) { transition-delay: 400ms; }

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */

@media (max-width: 1024px) {
  .estructuracion { padding: 4.25rem 2rem; }
}

@media (max-width: 900px) {
  .estructuracion-benefits { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .estructuracion-benefit-item span { max-width: 130px; }
}

@media (max-width: 680px) {
  .estructuracion { padding: 3.75rem 1.25rem; }
  .estructuracion-body { margin-bottom: 2.5rem; }
  .estructuracion-benefits { grid-template-columns: 1fr; gap: .85rem; }
  .estructuracion-benefit-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: .8rem;
    background: var(--warm);
    padding: .85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--line);
  }
  .estructuracion-benefit-item span { max-width: none; }
  .estructuracion-benefit-icon { width: 40px; height: 40px; }
  .estructuracion-benefit-icon svg { width: 16px; height: 16px; }
}

/* ══════════════ OCACS ══════════════ */
.ocacs {
  position: relative;
  background: var(--fog);
  padding: 5.5rem 2.5rem;
  overflow: visible;
}

/* Glow de transición desde estructuración */
.ocacs::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 35% 40%, rgba(184,134,46,.08), transparent 60%),
    radial-gradient(ellipse at 65% 40%, rgba(15,111,102,.08), transparent 60%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.ocacs-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

/* ── Header (mismo patrón centrado que .diag-header) ── */
.ocacs-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

.ocacs-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ink);
  margin: 1rem 0 .4rem;
}

.ocacs-subtitle {
  font-family: var(--fm);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-85);
  margin-bottom: 1.2rem;
}

.ocacs-lede {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink-60);
}

/* ── Intro ── */
.ocacs-intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}
.ocacs-intro-text {
  text-align: center;
  font-family: var(--fb);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  margin: 0;
}

/* ── Caja pregunta (mismo tratamiento que .ocaps-question) ── */
.ocacs-question {
  position: relative;
  background: var(--ink);
  border-radius: 12px;
  padding: 1.4rem 1.6rem 1.4rem 3.6rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  box-shadow: 0 16px 40px -18px rgba(10,20,32,.35);
}

.ocacs-q-mark {
  position: absolute;
  top: 1.35rem;
  left: 1.2rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-soft);
  color: var(--gold-soft);
  font-family: var(--fb);
  font-size: .95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocacs-question p {
  font-family: var(--fb);
  font-size: .98rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  margin: 0;
}

/* ── Checklist (mismo tratamiento que .ocaps-checklist) ── */
.ocacs-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  padding: 0;
  text-align: left;
}

.ocacs-checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-family: var(--fb);
  font-size: .92rem;
  font-weight: 400;
  color: var(--ink-85);
  line-height: 1.45;
}

.ocacs-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .12rem;
  border-radius: 50%;
  border: 1.5px solid var(--teal-soft);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230F6F66' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/68% no-repeat;
}

/* ── Tagline ── */
.ocacs-tagline {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}
.ocacs-tagline p {
  font-family: var(--fb);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.35;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 .5rem;
  text-wrap: balance;
}
.ocacs-tagline p:last-child { margin-bottom: 0; }
.ocacs-tagline strong {
  font-weight: 600;
  color: var(--teal-dk);
}

/* ── Imagen contenida: la foto es RGB sin canal alpha, así que va en frame con
     borde redondeado y sombra (no full-bleed) ── */
.ocacs-visual {
  max-width: 1040px;
  margin: 0 auto;
}
.ocacs-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(10,20,32,.4);
}
.ocacs-frame img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.ocacs-glow {
  position: absolute;
  top: 45%;
  left: 30%;
  width: 55%;
  height: 55%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(15,111,102,.16), transparent 65%);
  filter: blur(45px);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 1440px) {
  .ocacs-visual { max-width: 1160px; }
}

@media (max-width: 1024px) {
  .ocacs { padding: 4.25rem 2rem; }
}

@media (max-width: 680px) {
  .ocacs { padding: 3.75rem 1.25rem; }
  .ocacs-header { margin-bottom: 1.75rem; }
  .ocacs-intro { margin-bottom: 2rem; }
  .ocacs-question { padding: 1.2rem 1.2rem 1.2rem 3.2rem; }
  .ocacs-q-mark { top: 1.15rem; left: 1rem; width: 24px; height: 24px; font-size: .85rem; }
  .ocacs-checklist { margin-bottom: 2.25rem; }
  .ocacs-checklist li { font-size: .88rem; }
  .ocacs-tagline p { font-size: clamp(1.3rem, 6vw, 1.7rem); }
  .ocacs-frame { border-radius: 14px; }
}

/* ══════════════ SÍNTESIS: DAC ALLIANCE ══════════════ */
.synthesis {
  position: relative;
  background: var(--paper);
  padding: 6rem 2.5rem;
  overflow: visible;
  text-align: center;
}

.synthesis::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 900px;
  height: 400px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 35% 40%, rgba(15,111,102,.07), transparent 60%),
    radial-gradient(ellipse at 65% 40%, rgba(184,134,46,.08), transparent 60%);
  filter: blur(55px);
  pointer-events: none;
  z-index: 0;
}

.synthesis-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.synthesis-header { margin-bottom: 0; }

.synthesis-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin: 1rem 0 1.2rem;
  text-wrap: balance;
}
.synthesis-title em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-dk);
}

.synthesis-lede {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 640px;
  margin: 0 auto;
}

.synthesis-statement {
  max-width: 760px;
  margin: 0 auto 2.4rem;
}
.synthesis-statement p {
  font-family: var(--fb);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.synthesis-statement em {
  font-style: normal;
  font-weight: 500;
  color: var(--gold-dk);
}

.synthesis-tagline {
  font-family: var(--fb);
  font-weight: 500;
  font-size: clamp(.95rem, 1.15vw, 1.05rem);
  letter-spacing: .01em;
  color: var(--gold-dk);
  margin: 0 0 3.5rem;
}

.synthesis-visual {
  max-width: 900px;
  margin: 0 auto;
}
.synthesis-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(10,20,32,.35);
}
.synthesis-frame img {
  width: 100%;
  height: auto;
  display: block;
}
/* Logos de Insight Trust y Molina quemados en 8.jpg: mismas coordenadas en % que .logo-hotspot */
.synthesis-hotspot--insight { top: 7%; left: 22%; width: 22%; height: 11%; }
.synthesis-hotspot--molina  { top: 7%; left: 47%; width: 20%; height: 11%; }

@media (min-width: 1440px) {
  .synthesis-visual { max-width: 1000px; }
}

@media (max-width: 1024px) {
  .synthesis { padding: 4.25rem 2rem; }
}

@media (max-width: 680px) {
  .synthesis { padding: 3.75rem 1.25rem; }
  .synthesis-header { margin-bottom: 2.25rem; }
  .synthesis-tagline { margin-bottom: 2.5rem; }
  .synthesis-frame { border-radius: 14px; }
}

/* ══════════════ SOBRE NOSOTROS ══════════════ */
.about {
  position: relative;
  background: var(--paper);
  padding: 6.5rem 2.5rem 5.5rem;
  overflow: hidden;
}

.about-head {
  position: relative;
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.about-title {
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin: 1.1rem 0 1.4rem;
  text-wrap: balance;
}
.about-lede {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-60);
  max-width: 700px;
  margin: 0 auto;
}

.about-body {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Imagen: los logos de Insight Trust y Molina Law Boutique están
   quemados en el gráfico; los <a> se ubican en % para seguir calzando
   sobre cada logo aunque la imagen escale de forma responsive. */
.about-image-wrap {
  position: relative;
  display: block;
  line-height: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(10, 20, 32, .35);
}
.about-image {
  display: block;
  width: 100%;
  height: auto;
}
.logo-hotspot {
  position: absolute;
  display: block;
  background: transparent;
  border: none;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.logo-hotspot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.logo-hotspot--insight { top: 9%; left: 2%; width: 36%; height: 15%; }
.logo-hotspot--molina  { top: 9%; left: 61%; width: 36%; height: 15%; }

.highlight-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.6rem 2rem;
  margin-top: 2.5rem;
}
.highlight-box .icon-circle {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.highlight-box .divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}
.highlight-box p {
  color: var(--ink);
  font-family: var(--fb);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}
.highlight-box p strong {
  color: var(--teal);
  font-weight: 700;
}

@media (max-width: 900px) {
  .about { padding: 4.75rem 2rem; }
  .highlight-box { padding: 1.4rem 1.5rem; gap: 1.1rem; }
}

@media (max-width: 680px) {
  .about { padding: 3.75rem 1.25rem; }
  .about-head { margin-bottom: 2rem; }
  .about-image-wrap { border-radius: 14px; }
  .about-image { aspect-ratio: 768 / 1376; }
  .logo-hotspot--insight { top: 3.05%; left: 7.8%; width: 40.4%; height: 7.3%; }
  .logo-hotspot--molina  { top: 61.3%; left: 7.8%; width: 37.8%; height: 5.8%; }
  .highlight-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.4rem 1.4rem;
  }
  .highlight-box .divider { display: none; }
}

/* ── franja de confianza: coda clara de "Sobre nosotros", registro limestone ── */
.icon-bar {
  width: 100%;
  background: var(--stone);
  padding: 1.6rem 0;
}
.icon-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
}
.icon-bar-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex: 1;
  justify-content: center;
  position: relative;
  padding: 0 .5rem;
}
.icon-bar-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: var(--line);
}
.icon-bar-item svg {
  width: 24px;
  height: 24px;
  color: var(--ink-60);
  opacity: .85;
  flex-shrink: 0;
}
.icon-bar-item span {
  font-family: var(--fb);
  color: var(--ink-85);
  font-size: .72rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 500;
}

@media (max-width: 900px) {
  .icon-bar-inner { flex-wrap: wrap; gap: 1.5rem 0; padding: 0 1.5rem; }
  .icon-bar-item { flex: 1 1 33%; min-width: 150px; }
  .icon-bar-item:not(:last-child)::after { display: none; }
}

@media (max-width: 680px) {
  .icon-bar { padding: 2.25rem 0; }
  .icon-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: 2rem;
    padding: 0 1.75rem;
  }
  .icon-bar-item {
    flex-direction: column;
    justify-content: flex-start;
    width: auto;
    gap: .65rem;
    text-align: center;
  }
  .icon-bar-item:last-child { grid-column: 1 / -1; }
  .icon-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    flex-shrink: 0;
  }
  .icon-bar-item svg { width: 22px; height: 22px; }
  .icon-bar-item span:last-child {
    font-size: .76rem;
    line-height: 1.4;
    letter-spacing: .03em;
    font-weight: 600;
  }
}
