/* ============ TOKENS ============ */
:root {
  --navy-950: #060d18;
  --navy-900: #0a1626;
  --navy-800: #0e2038;
  --navy-700: #12314f;
  --navy-600: #17335b;
  --teal: #004369;
  --teal-light: #0a6a9c;
  --blue: #1638e0;
  --blue-light: #3f5cff;
  --silver: #c9d2de;
  --silver-dark: #7a879c;

  --bg: #f6f8fb;
  --bg-alt: #eef2f8;
  --surface: #ffffff;
  --surface-2: #f1f5fa;
  --ink: #0d1b2e;
  --ink-soft: #48576f;
  --ink-faint: #7c889b;
  --border: rgba(13, 27, 46, 0.1);
  --border-strong: rgba(13, 27, 46, 0.18);

  --shadow-sm: 0 2px 10px rgba(13, 27, 46, 0.06);
  --shadow-md: 0 12px 32px rgba(13, 27, 46, 0.1);
  --shadow-lg: 0 24px 64px rgba(13, 27, 46, 0.16);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --ff-display: 'Fraunces', serif;
  --ff-body: 'Manrope', sans-serif;

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

:root[data-theme="dark"] {
  --bg: #060d18;
  --bg-alt: #0a1524;
  --surface: #0e1c30;
  --surface-2: #101f36;
  --ink: #eef3fb;
  --ink-soft: #aeb9cc;
  --ink-faint: #7889a3;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .5s var(--ease), color .5s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue-light);
  box-shadow: 0 0 0 4px rgba(63, 92, 255, .18);
}

.text-accent {
  background: linear-gradient(100deg, var(--blue-light), var(--teal-light) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-top: 14px;
  letter-spacing: -.01em;
}
.section-head__desc {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-light) 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(22, 56, 224, .32);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(22, 56, 224, .42); }
.btn--ghost {
  border: 1.5px solid var(--border-strong);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--blue-light); color: var(--blue-light); transform: translateY(-3px); }
.btn--sm { padding: 10px 20px; font-size: .84rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============ GRAIN / CURSOR GLOW ============ */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 999; opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,56,224,.10) 0%, transparent 70%);
  pointer-events: none; z-index: 1; transform: translate(-50%, -50%); will-change: transform;
}

/* ============ LOGO MARK ============ */
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-mark .lm-top { fill: url(#lmSilver); }
.logo-mark .lm-bottom { fill: url(#lmBlue); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 3000; background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; }
.preloader__mark { width: 64px; height: 64px; margin: 0 auto 20px; animation: markPulse 1.7s ease-in-out infinite; }
@keyframes markPulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(4deg); }
}
.preloader__word {
  font-family: var(--ff-display); font-weight: 600; font-size: 1.6rem; letter-spacing: .02em;
  color: #eef3fb; margin-bottom: 20px;
}
.preloader__bar { width: 200px; height: 2px; background: rgba(255,255,255,.12); margin: 0 auto; border-radius: 2px; overflow: hidden; }
.preloader__bar-fill { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--teal-light), var(--blue-light)); transition: width .15s linear; }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  padding: 13px 0;
  background: rgba(246, 248, 251, .82);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
:root[data-theme="dark"] .header.is-scrolled { background: rgba(6, 13, 24, .78); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-family: var(--ff-display); font-weight: 700; font-size: 1.05rem; letter-spacing: .01em; }
.logo__tag { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav__link {
  position: relative; font-size: .92rem; font-weight: 600; color: var(--ink-soft);
  transition: color .3s;
  padding: 4px 0;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--teal-light));
  transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: border-color .3s, transform .4s var(--ease), background .3s;
}
.theme-toggle:hover { border-color: var(--blue-light); transform: rotate(18deg); }
.theme-toggle svg { width: 19px; height: 19px; }
.icon-moon { display: none; }
:root[data-theme="dark"] .icon-sun { display: none; }
:root[data-theme="dark"] .icon-moon { display: block; }

.menu-toggle { display: none; width: 42px; height: 42px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490; background: var(--surface);
  display: flex; flex-direction: column; justify-content: center; padding: 40px;
  transform: translateY(-100%); transition: transform .5s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu__link {
  display: flex; align-items: baseline; gap: 16px; font-family: var(--ff-display);
  font-size: 2rem; font-weight: 600; padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-menu__link span { font-family: var(--ff-body); font-size: .8rem; color: var(--ink-faint); font-weight: 700; }
.mobile-menu__footer { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; color: var(--ink-soft); }
.mobile-menu__footer a:hover { color: var(--blue-light); }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: 100px; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, rgba(6,13,24,.92) 20%, rgba(10,22,38,.72) 55%, rgba(6,13,24,.55) 100%),
    linear-gradient(0deg, rgba(6,13,24,.9), rgba(6,13,24,.4) 40%);
}
.hero__shapes { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.shape-fly { position: absolute; opacity: 0; }
.shape-fly svg { width: 100%; height: 100%; }

.hero__inner { position: relative; z-index: 2; padding-bottom: 60px; }
.hero__eyebrow { color: #a9c1ff; }
.hero__eyebrow .eyebrow__dot { background: #a9c1ff; box-shadow: 0 0 0 4px rgba(169,193,255,.2); }
.hero__title {
  font-family: var(--ff-display); font-weight: 600; color: #fdfefe;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.06; margin: 22px 0 26px; letter-spacing: -.01em;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__subtitle { max-width: 620px; font-size: 1.12rem; line-height: 1.7; color: rgba(238,243,251,.82); margin-bottom: 40px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 60px; }
.hero__actions .btn--ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.hero__actions .btn--ghost:hover { border-color: #fff; }

.hero__stats { display: grid; grid-template-columns: repeat(4, auto); gap: clamp(24px, 4vw, 56px); }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat-num-wrap { display: flex; align-items: baseline; gap: 2px; }
.hero__stat-num { font-family: var(--ff-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; color: #fff; }
.hero__stat-suffix { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 600; color: #a9c1ff; }
.hero__stat-label { font-size: .78rem; color: rgba(238,243,251,.62); margin-top: 4px; max-width: 130px; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(238,243,251,.6);
}
.hero__scroll span { width: 1px; height: 34px; background: linear-gradient(180deg, rgba(255,255,255,.7), transparent); animation: scrollLine 2s ease-in-out infinite; }
.hero__scroll p { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ NOTICIAS ============ */
.noticias { padding: clamp(70px, 9vw, 110px) 0 clamp(90px, 11vw, 130px); overflow: hidden; }
.noticias__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.noticias__arrows { display: flex; gap: 12px; flex-shrink: 0; }
.noticias__arrow {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: border-color .3s, background .3s, color .3s, transform .3s var(--ease);
}
.noticias__arrow svg { width: 20px; height: 20px; }
.noticias__arrow:hover { background: linear-gradient(120deg, var(--blue), var(--teal)); border-color: transparent; color: #fff; transform: scale(1.06); }
.noticias__arrow:disabled { opacity: .35; pointer-events: none; }

.noticias__viewport { overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 6px 0 10px; }
.noticias__viewport::-webkit-scrollbar { display: none; }
.noticias__track { display: flex; gap: 26px; padding: 0 24px; width: max-content; }
@media (min-width: 1240px) {
  .noticias__track { padding: 0 calc((100vw - 1240px) / 2 + 24px); }
}

.news-card {
  scroll-snap-align: start; flex: 0 0 clamp(280px, 32vw, 380px);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
}
.news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.news-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.news-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.news-card:hover .news-card__media img { transform: scale(1.08); }
.news-card__tag {
  position: absolute; top: 14px; left: 14px; background: rgba(6,13,24,.68); backdrop-filter: blur(8px);
  color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .03em; padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,.18);
}
.news-card__body { padding: 22px 24px 26px; }
.news-card__date { font-size: .78rem; font-weight: 700; color: var(--blue-light); letter-spacing: .04em; }
.news-card__body h3 { font-family: var(--ff-display); font-size: 1.18rem; font-weight: 600; line-height: 1.32; margin: 10px 0 10px; }
.news-card__body p { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.news-card__link { display: inline-flex; align-items: center; gap: 8px; font-size: .86rem; font-weight: 700; color: var(--teal-light); }
.news-card__link svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.news-card:hover .news-card__link svg { transform: translateX(4px); }

.noticias__dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.noticias__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border-strong); transition: all .35s var(--ease); }
.noticias__dot.is-active { width: 26px; background: linear-gradient(90deg, var(--blue-light), var(--teal-light)); }

/* ============ NEWS MODAL ============ */
.news-modal { position: fixed; inset: 0; z-index: 800; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s var(--ease); }
.news-modal.is-open { opacity: 1; visibility: visible; }
.news-modal__overlay { position: absolute; inset: 0; background: rgba(6,13,24,.72); backdrop-filter: blur(6px); }
.news-modal__panel {
  position: relative; background: var(--surface); border-radius: var(--radius-lg); max-width: 780px; width: 100%;
  max-height: 88vh; overflow-y: auto; box-shadow: var(--shadow-lg);
  transform: translateY(30px) scale(.97); opacity: 0; transition: transform .45s var(--ease), opacity .45s var(--ease);
}
.news-modal.is-open .news-modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.news-modal__close {
  position: absolute; top: 18px; right: 18px; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(6,13,24,.55); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 2;
  transition: background .3s, transform .3s var(--ease);
}
.news-modal__close:hover { background: rgba(6,13,24,.8); transform: rotate(90deg); }
.news-modal__close svg { width: 18px; height: 18px; }
.news-modal__media { aspect-ratio: 16/8; overflow: hidden; }
.news-modal__media img { width: 100%; height: 100%; object-fit: cover; }
.news-modal__content { padding: clamp(24px, 4vw, 44px); }
.news-modal__tag { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: #fff; background: linear-gradient(120deg, var(--blue), var(--teal)); padding: 6px 14px; border-radius: 100px; margin-right: 10px; }
.news-modal__date { font-size: .82rem; color: var(--ink-faint); font-weight: 600; }
.news-modal__content h3 { font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 600; margin: 16px 0 18px; line-height: 1.28; }
.news-modal__content p { color: var(--ink-soft); line-height: 1.8; font-size: 1rem; margin-bottom: 14px; }

@media (max-width: 640px) {
  .noticias__head { flex-direction: column; align-items: flex-start; gap: 18px; }
}

/* ============ MARQUEE ============ */
.marquee { background: var(--navy-600); overflow: hidden; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.marquee__track { display: flex; width: max-content; gap: 28px; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--ff-display); font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.72); white-space: nowrap; }
.marquee__track span.dot { color: var(--teal-light); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ REVEALS ============ */
[data-reveal], [data-reveal-side] { visibility: hidden; }

/* ============ SPLIT SECTION (Nosotros) ============ */
.split {
  padding: clamp(90px, 12vw, 150px) 0;
}
.split__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split__grid.is-reverse .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.split__media:hover img { transform: scale(1.05); }
.split__media-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px; background: rgba(6,13,24,.7); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); padding: 16px 20px; color: #fff;
}
.split__media-badge strong { font-family: var(--ff-display); font-size: 1.4rem; display: block; }
.split__media-badge span { font-size: .76rem; color: rgba(255,255,255,.7); }

.split__body p { color: var(--ink-soft); line-height: 1.8; margin-top: 18px; font-size: 1.02rem; }
.split__list { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.split__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink-soft); line-height: 1.6; }
.split__list li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue-light); margin-top: 2px; }

/* ============ MISION / VISION ============ */
.mv { padding: clamp(60px, 8vw, 100px) 0 clamp(90px, 12vw, 150px); background: var(--bg-alt); position: relative; }
.mv__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 48px);
  box-shadow: var(--shadow-md); border: 1px solid var(--border); position: relative; overflow: hidden;
}
.mv-card::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(22,56,224,.14), transparent 70%);
}
.mv-card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; margin-bottom: 22px;
}
.mv-card__icon svg { width: 28px; height: 28px; }
.mv-card h3 { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 14px; }
.mv-card p { color: var(--ink-soft); line-height: 1.75; font-size: .99rem; }

/* ============ OBJETIVOS ============ */
.objetivos { padding: clamp(90px, 12vw, 150px) 0; }
.objetivos__banner {
  background: linear-gradient(120deg, var(--navy-600), var(--teal) 120%);
  border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 56px); color: #fff; margin-bottom: 50px;
  position: relative; overflow: hidden;
}
.objetivos__banner::after {
  content: ''; position: absolute; inset: 0; background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60"%3E%3Cpath d="M30 6l14 8v20l-14 8-14-8V14z" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1.5"/%3E%3C/svg%3E'); opacity: .5;
}
.objetivos__banner-tag { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #a9c1ff; position: relative; }
.objetivos__banner p { position: relative; font-family: var(--ff-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.5; margin-top: 14px; max-width: 900px; font-weight: 500; }

.objetivos__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.obj-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; gap: 16px; align-items: flex-start; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
}
.obj-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.obj-card__num { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 600; color: var(--blue-light); flex-shrink: 0; }
.obj-card p { font-size: .92rem; line-height: 1.6; color: var(--ink-soft); }

/* ============ EQUIPO ============ */
.equipo { padding: clamp(90px, 12vw, 150px) 0; background: var(--bg-alt); position: relative; overflow: hidden; }
.equipo__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card {
  background: var(--surface); border-radius: var(--radius); padding: 30px 26px; border: 1px solid var(--border);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.team-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); }
.team-card__icon {
  width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--blue-light); margin-bottom: 20px; transition: background .4s, color .4s, transform .5s var(--ease);
}
.team-card:hover .team-card__icon { background: linear-gradient(135deg, var(--blue), var(--teal)); color: #fff; transform: rotate(-8deg) scale(1.08); }
.team-card__icon svg { width: 24px; height: 24px; }
.team-card h3 { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

/* ============ METODOLOGIA ============ */
.metodologia { padding: clamp(90px, 12vw, 150px) 0; }
.process__timeline { position: relative; max-width: 900px; margin: 0 auto; }
.process__line {
  position: absolute; left: 27px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(180deg, var(--blue-light), var(--teal-light));
  transform: scaleY(0);
}
.process__step { position: relative; display: flex; gap: 28px; padding-bottom: 56px; }
.process__step:last-child { padding-bottom: 0; }
.process__num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; background: var(--surface);
  border: 2px solid var(--border-strong); display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; color: var(--blue-light); z-index: 1;
  box-shadow: var(--shadow-sm);
}
.process__body { padding-top: 8px; }
.process__body h3 { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.process__body p { color: var(--ink-soft); line-height: 1.75; font-size: .98rem; max-width: 640px; }

/* ============ SERVICIOS ============ */
.servicios { padding: clamp(90px, 12vw, 150px) 0; background: var(--bg-alt); }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; padding: clamp(50px, 8vw, 90px) 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; padding-bottom: 0; }
.service-block:first-child { padding-top: 0; }
.service-block.is-reverse .service-block__media { order: 2; }
.service-block__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-lg); }
.service-block__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-block__media:hover img { transform: scale(1.06); }
.service-block__tag { position: absolute; top: 18px; left: 18px; background: rgba(6,13,24,.65); backdrop-filter: blur(8px); color: #fff; font-size: .78rem; font-weight: 700; padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.16); }
.service-block__num { font-family: var(--ff-display); font-size: 3.6rem; font-weight: 700; color: transparent; -webkit-text-stroke: 1.5px var(--border-strong); line-height: 1; margin-bottom: 6px; }
.service-block h3 { font-family: var(--ff-display); font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 600; margin-bottom: 18px; line-height: 1.2; }
.service-block p { color: var(--ink-soft); line-height: 1.8; font-size: 1rem; }
.service-block__points { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.service-block__points li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }
.service-block__points li svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--teal-light); margin-top: 2px; }

/* ============ CIFRAS BAND ============ */
.cifras { position: relative; padding: clamp(70px, 9vw, 110px) 0; background: var(--navy-950); overflow: hidden; }
.cifras__glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(22,56,224,.28), transparent 70%); top: -300px; right: -100px; }
.cifras__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.cifra__num { font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 600; color: #fff; }
.cifra__label { font-size: .84rem; color: rgba(238,243,251,.6); margin-top: 8px; }

/* ============ CARTA CEO ============ */
.carta { padding: clamp(90px, 12vw, 150px) 0; }
.carta__box {
  background: linear-gradient(135deg, var(--navy-600), var(--navy-950));
  border-radius: var(--radius-lg); padding: clamp(40px, 7vw, 80px); color: #fff; position: relative; overflow: hidden;
}
.carta__quote-icon { width: 46px; height: 46px; color: rgba(255,255,255,.25); margin-bottom: 20px; }
.carta__text { font-family: var(--ff-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.6; font-weight: 500; max-width: 900px; }
.carta__sign { margin-top: 40px; display: flex; align-items: center; gap: 18px; }
.carta__sign-name { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 600; }
.carta__sign-role { font-size: .82rem; color: rgba(238,243,251,.6); margin-top: 2px; }
.carta__avatar {
  width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-light), var(--teal-light));
  display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-weight: 700; font-size: 1.2rem; color: #fff;
}

/* ============ CONTACTO ============ */
.contacto { padding: clamp(90px, 12vw, 150px) 0; background: var(--bg-alt); }
.contacto__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 80px); }
.contacto__info { display: flex; flex-direction: column; gap: 18px; }
.info-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; display: flex; gap: 16px; align-items: center; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.info-card__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--surface-2); color: var(--blue-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-card__icon svg { width: 22px; height: 22px; }
.info-card strong { display: block; font-size: .96rem; margin-bottom: 2px; }
.info-card span, .info-card a { font-size: .88rem; color: var(--ink-soft); }
.info-card a:hover { color: var(--blue-light); }

.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 700; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--border); background: var(--bg);
  color: var(--ink); font-size: .94rem; transition: border-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-light); }
.field textarea { resize: vertical; min-height: 100px; }

/* ============ FOOTER ============ */
.footer { background: var(--navy-950); color: rgba(238,243,251,.7); padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding-bottom: 46px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__logo .logo__name, .footer__logo .logo__tag { color: #fff; }
.footer__logo .logo__tag { color: rgba(238,243,251,.5); }
.footer p.footer__desc { font-size: .92rem; line-height: 1.7; max-width: 320px; color: rgba(238,243,251,.55); }
.footer h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: .92rem; transition: color .3s, padding-left .3s; }
.footer__links a:hover { color: #fff; padding-left: 4px; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .82rem; color: rgba(238,243,251,.45); flex-wrap: wrap; gap: 12px; }

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 400; width: 58px; height: 58px; border-radius: 50%;
  background: #22c55e; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(34,197,94,.4); transition: transform .4s var(--ease);
}
.wa-float:hover { transform: scale(1.1) rotate(-6deg); }
.wa-float svg { width: 28px; height: 28px; }
.wa-float__ping { position: absolute; inset: 0; border-radius: 50%; background: #22c55e; animation: waPing 2.2s ease-out infinite; }
@keyframes waPing { 0% { opacity: .5; transform: scale(1); } 100% { opacity: 0; transform: scale(1.7); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .split__grid, .mv__grid, .contacto__grid { grid-template-columns: 1fr; }
  .split__grid.is-reverse .split__media { order: 0; }
  .equipo__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .cifras__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.is-reverse .service-block__media { order: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .equipo__grid { grid-template-columns: 1fr; }
  .objetivos__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .header__actions .btn--sm span { display: none; }
}
