/* ══════════════════════════════════════════
   NEXT DESARROLLO v2 — Deep Forest
   Sistema de color y diseño completo
══════════════════════════════════════════ */

:root {
  /* Forest palette */
  --forest-deep:   #0B1A14;
  --forest-mid:    #0D2218;
  --forest-light:  #1A2E24;
  --forest-muted:  #243D30;
  --green-bright:  #00C896;
  --green-pale:    #E8F5EF;
  --green-wash:    #D0EDE0;
  --green-dark:    #022E22;
  --green-mid:     #027A4D;
  --green-border:  #A8DCC4;

  /* Content palette */
  --white:      #FAFAF8;
  --ink:        #111111;
  --ink-light:  #2A2A2A;
  --gray-1:     #F2F2F0;
  --gray-2:     #E8E8E6;
  --gray-3:     #D0D0CE;
  --gray-4:     #A0A09E;
  --gray-5:     #666664;

  /* Typography */
  --font:  'DM Sans', system-ui, sans-serif;
  --mono:  'DM Mono', 'Menlo', monospace;

  /* Easing */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);

  --sp: 92px;
  --cw: 1240px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: var(--white); color: var(--ink); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img, svg { display: block; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  body { cursor: auto; }
}

/* ── CONTAINER ── */
.container { max-width: var(--cw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 80px); }



/* ── PARTICLES ── */
.particles-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.35;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 13px;
  letter-spacing: -0.01em; border-radius: 6px; cursor: pointer;
  border: none; white-space: nowrap; position: relative; overflow: hidden;
  transition: background 0.18s, transform 0.18s var(--ease), box-shadow 0.18s;
  text-decoration: none;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--nav { background: rgba(0,200,150,0.12); color: var(--green-bright); padding: 0 16px; height: 36px; font-size: 12px; border: 0.5px solid rgba(0,200,150,0.25); }
.btn--nav:hover { background: rgba(0,200,150,0.2); }

.btn--accent { background: var(--green-bright); color: var(--green-dark); font-weight: 700; padding: 0 28px; height: 48px; }
.btn--accent:hover { background: #00DAAA; box-shadow: 0 0 32px rgba(0,200,150,0.4); }

.btn--ghost { background: transparent; color: rgba(255,255,255,0.7); padding: 0 24px; height: 48px; border: 0.5px solid rgba(255,255,255,0.2); }
.btn--ghost:hover { border-color: rgba(0,200,150,0.5); color: var(--green-bright); }

.btn--lg { height: 52px; padding: 0 32px; font-size: 15px; }
.btn--xl { height: 58px; padding: 0 40px; font-size: 16px; font-weight: 700; }

.btn--glow:hover { box-shadow: 0 0 0 4px rgba(0,200,150,0.2), 0 8px 32px rgba(0,200,150,0.3); }

.btn--pulse { animation: btnPulse 2.5s ease-in-out infinite; }
@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,200,150,0.5); }
  50%      { box-shadow: 0 0 0 14px rgba(0,200,150,0); }
}

/* ── DELTA TRIANGLE ── */
.tri {
  display: inline-block; width: 0; height: 0;
  border-left: 4.5px solid transparent;
  border-right: 4.5px solid transparent;
  border-bottom: 8px solid var(--green-bright);
  flex-shrink: 0;
}
.tri--sm { border-left-width: 3px; border-right-width: 3px; border-bottom-width: 5.5px; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--green-bright);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; display: block; width: 20px; height: 1px; background: var(--green-bright); }
.eyebrow--light { color: rgba(0,200,150,0.7); }
.eyebrow--light::before { background: rgba(0,200,150,0.5); }

/* ── PILL ── */
.pill {
  display: inline-block; font-size: 12px; font-weight: 500; color: var(--green-mid);
  background: var(--green-pale); padding: 7px 14px; border-radius: 100px;
  border: 0.5px solid var(--green-border);
  transition: background 0.15s, border-color 0.15s, transform 0.15s var(--ease-bounce);
}
.pill:hover { background: var(--green-wash); border-color: var(--green-bright); transform: translateY(-2px); }

/* ── ANIMATION BASE ── */
[data-animate], .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
[data-animate].is-in, .reveal.is-in {
  opacity: 1; transform: translateY(0);
}

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 14px 20px;
  transition: padding 0.3s var(--ease);
}
.navbar.is-scrolled { padding: 10px 20px; }
.navbar__inner {
  max-width: var(--cw); margin-inline: auto;
  display: flex; align-items: center; gap: 8px;
  height: 54px; padding-inline: 22px;
  background: rgba(11, 26, 20, 0.85);
  border: 0.5px solid rgba(0,200,150,0.18);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(0,200,150,0.1);
  transition: box-shadow 0.3s, background 0.3s;
}
.navbar.is-scrolled .navbar__inner {
  background: rgba(11, 26, 20, 0.95);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(0,200,150,0.12);
}
.navbar__brand { display: flex; align-items: center; gap: 10px; margin-right: 24px; flex-shrink: 0; }
.navbar__logo-wrap {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,200,150,0.1); border-radius: 7px; border: 0.5px solid rgba(0,200,150,0.2);
  transition: background 0.2s;
}
.navbar__brand:hover .navbar__logo-wrap { background: rgba(0,200,150,0.2); }
.navbar__wordmark { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: -0.02em; }

.navbar__links { display: flex; gap: 2px; flex: 1; }
.navbar__link {
  font-size: 12px; color: rgba(255,255,255,0.55); padding: 6px 12px;
  border-radius: 6px; transition: background 0.15s, color 0.15s;
}
.navbar__link:hover { background: rgba(0,200,150,0.1); color: var(--green-bright); }

.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; padding: 8px; background: none; border: none; cursor: pointer;
}
.navbar__hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.6); border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.navbar__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__hamburger.is-open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  background: var(--forest-deep);
}
.hero__forest-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 0%, #0D3020 0%, var(--forest-deep) 70%);
}
.hero__glow {
  position: absolute; pointer-events: none; border-radius: 50%; filter: blur(80px);
}
.hero__glow--1 {
  width: 500px; height: 400px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(0,200,150,0.18) 0%, transparent 70%);
  animation: glowFloat 8s ease-in-out infinite;
}
.hero__glow--2 {
  width: 300px; height: 300px; bottom: 10%; left: -50px;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 70%);
  animation: glowFloat 12s ease-in-out infinite reverse;
}
@keyframes glowFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(30px,-20px) scale(1.05); }
  66%      { transform: translate(-20px,15px) scale(0.95); }
}
.hero__grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,200,150,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,150,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__delta {
  position: absolute; top: -60px; right: -80px;
  opacity: 1; pointer-events: none;
  animation: deltaRotate 30s linear infinite;
}
@keyframes deltaRotate {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(2deg) scale(1.02); }
  100% { transform: rotate(0deg) scale(1); }
}

.hero__content {
  position: relative; z-index: 1; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(120px,14vw,160px) clamp(20px,5vw,80px) 40px;
  max-width: var(--cw); margin-inline: auto; width: 100%;
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(0,200,150,0.7); margin-bottom: 24px;
}
.hero__eyebrow-line {
  display: inline-block; width: 0; height: 1px;
  background: rgba(0,200,150,0.7);
  transition: width 0.6s 0.5s var(--ease);
}
.hero__eyebrow.is-in .hero__eyebrow-line { width: 28px; }

.hero__h1 {
  font-size: clamp(42px, 7vw, 72px); font-weight: 800;
  line-height: 1.0; letter-spacing: -0.05em; color: #fff;
  margin-bottom: 24px; max-width: 680px;
}
.hero__h1-word { display: block; }
.hero__h1-accent { color: var(--green-bright); }

.hero__sub {
  font-size: clamp(15px,2vw,18px); color: rgba(255,255,255,0.55);
  line-height: 1.65; max-width: 480px; margin-bottom: 36px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__metrics {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: rgba(0,0,0,0.3);
  border-top: 0.5px solid rgba(0,200,150,0.2);
  backdrop-filter: blur(10px);
}
.hero__metric { padding: 20px clamp(16px,3vw,32px); }
.hero__metric--sep { border-left: 0.5px solid rgba(0,200,150,0.15); }
.hero__metric-num {
  font-family: var(--mono); font-size: clamp(24px,3.5vw,32px); font-weight: 700;
  color: #fff; letter-spacing: -0.04em; line-height: 1; margin-bottom: 6px;
}
.hero__metric-unit { font-size: 0.5em; color: rgba(255,255,255,0.4); font-weight: 400; }
.hero__metric-delta {
  display: flex; align-items: center; gap: 5px; margin-bottom: 4px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--green-bright);
}
.hero__metric-lbl { font-size: 11px; color: rgba(255,255,255,0.35); }

.hero__scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.4; animation: scrollBounce 2s ease-in-out infinite;
  z-index: 1;
}
.hero__scroll-line {
  display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(0,200,150,0.8), transparent);
}
.hero__scroll-text { font-family: var(--mono); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(0,200,150,0.7); }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════
   LOGOS STRIP
══════════════════════════════════════════ */
.logos-strip {
  background: var(--forest-deep); border-bottom: 0.5px solid rgba(0,200,150,0.12);
  padding: 22px 0; overflow: hidden;
}
.logos-strip__label {
  text-align: center; font-family: var(--mono); font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(0,200,150,0.4); margin-bottom: 16px;
}
.logos-strip__track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right,transparent 0%,black 12%,black 88%,transparent 100%);
  mask-image: linear-gradient(to right,transparent 0%,black 12%,black 88%,transparent 100%);
}
.logos-strip__track {
  display: flex; align-items: center; gap: 48px;
  width: max-content; animation: marquee 38s linear infinite; padding-left: 48px;
}
.logo-block {
  height: 22px; background: rgba(0,200,150,0.15);
  border-radius: 4px; border: 0.5px solid rgba(0,200,150,0.2);
  display: inline-block; flex-shrink: 0;
  transition: background 0.2s;
}
.logo-block:hover { background: rgba(0,200,150,0.28); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════
   PROBLEMA
══════════════════════════════════════════ */
.problema { padding: var(--sp) 0; background: var(--white); }
.problema__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start;
}
.problema__h2 {
  font-size: clamp(26px,4vw,38px); font-weight: 800; letter-spacing: -0.04em;
  line-height: 1.05; color: var(--ink); max-width: 480px; margin-bottom: 20px;
}
.problema__body { font-size: 16px; color: var(--gray-5); line-height: 1.7; max-width: 460px; margin-bottom: 28px; }
.problema__pills { display: flex; flex-wrap: wrap; gap: 8px; }

.problema__card {
  background: var(--forest-deep); border-radius: 14px;
  padding: 28px; border: 0.5px solid rgba(0,200,150,0.2);
  margin-bottom: 16px;
  box-shadow: 0 20px 60px rgba(11,26,20,0.15);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.problema__card:hover { transform: translateY(-4px); box-shadow: 0 28px 80px rgba(11,26,20,0.25), 0 0 0 1px rgba(0,200,150,0.3); }
.problema__card-icon { margin-bottom: 16px; }
.problema__card-quote { font-size: 16px; font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 16px; }
.problema__card-author { font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(0,200,150,0.6); }

.problema__stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.problema__stat {
  background: var(--green-pale); border-radius: 10px; padding: 20px;
  border: 0.5px solid var(--green-border);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
}
.problema__stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,200,150,0.15); }
.problema__stat-num { display: block; font-family: var(--mono); font-size: 28px; font-weight: 700; color: var(--forest-deep); letter-spacing: -0.04em; margin-bottom: 4px; }
.problema__stat-lbl { font-size: 12px; color: var(--green-mid); font-weight: 500; }

/* ══════════════════════════════════════════
   DARK METRICS
══════════════════════════════════════════ */
.dark-metrics {
  background: var(--forest-deep); padding: var(--sp) 0; position: relative; overflow: hidden;
}
.dark-metrics__glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.dark-metrics__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.dark-metrics__cell { padding: 0 clamp(16px,3vw,40px); }
.dark-metrics__cell:first-child { padding-left: 0; }
.dark-metrics__cell:last-child  { padding-right: 0; }
.dark-metrics__cell--sep { border-left: 0.5px solid rgba(0,200,150,0.15); }
.dark-metrics__num {
  font-family: var(--mono); font-size: clamp(40px,6vw,64px); font-weight: 800;
  color: #fff; letter-spacing: -0.05em; line-height: 1; margin-bottom: 12px;
}
.dark-metrics__unit { font-size: 0.35em; color: rgba(255,255,255,0.3); font-weight: 400; }
.dark-metrics__delta {
  display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
  font-family: var(--mono); font-size: 10px; font-weight: 600; color: var(--green-bright);
}
.dark-metrics__lbl { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ══════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════ */
.nosotros { padding: var(--sp) 0; background: var(--gray-1); }
.nosotros__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; }
.nosotros__h2 { font-size: clamp(26px,4vw,36px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.1; color: var(--ink); margin-bottom: 20px; }
.nosotros__body { font-size: 15px; color: var(--gray-5); line-height: 1.75; margin-bottom: 14px; }
.nosotros__values { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.nosotros__value { display: flex; gap: 14px; align-items: flex-start; }
.nosotros__value-icon {
  width: 36px; height: 36px; background: var(--green-pale); border-radius: 8px;
  border: 0.5px solid var(--green-border); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.2s, transform 0.2s var(--ease-bounce);
}
.nosotros__value:hover .nosotros__value-icon { background: var(--green-wash); transform: scale(1.08); }
.nosotros__value-title { font-size: 14px; font-weight: 600; color: var(--ink); display: block; margin-bottom: 3px; }
.nosotros__value-desc { font-size: 13px; color: var(--gray-5); line-height: 1.5; }

.nosotros__visual {
  position: relative; height: 360px;
  display: flex; align-items: center; justify-content: center;
}
.nosotros__center-logo {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--forest-deep); border-radius: 50%;
  width: 110px; height: 110px; display: flex; align-items: center; justify-content: center;
  border: 0.5px solid rgba(0,200,150,0.3);
  box-shadow: 0 0 60px rgba(0,200,150,0.15);
  animation: centerPulse 4s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,100% { box-shadow: 0 0 60px rgba(0,200,150,0.15); }
  50%      { box-shadow: 0 0 80px rgba(0,200,150,0.3), 0 0 0 8px rgba(0,200,150,0.05); }
}
.nosotros__badge {
  position: absolute; background: var(--forest-deep); border-radius: 12px;
  padding: 14px 18px; border: 0.5px solid rgba(0,200,150,0.3);
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.nosotros__badge:hover { transform: scale(1.05); box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,200,150,0.4); }
.nosotros__badge--1 { top: 20px; left: 20px; }
.nosotros__badge--2 { top: 20px; right: 20px; }
.nosotros__badge--3 { bottom: 20px; left: 50%; transform: translateX(-50%); }
.nosotros__badge--3:hover { transform: translateX(-50%) scale(1.05); }
.nosotros__badge-num { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--green-bright); flex-shrink: 0; }
.nosotros__badge-lbl { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.3; }

/* ══════════════════════════════════════════
   PROCESO
══════════════════════════════════════════ */
.proceso { padding: var(--sp) 0; background: var(--white); }
.proceso__h2 { font-size: clamp(24px,3.5vw,32px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 36px; }
.proceso__steps { border: 0.5px solid var(--gray-2); border-radius: 14px; overflow: hidden; }
.proceso__step {
  display: grid; grid-template-columns: 56px 1fr;
  border-bottom: 0.5px solid var(--gray-2);
  transition: background 0.2s;
}
.proceso__step:hover { background: rgba(0,200,150,0.03); }
.proceso__step:last-child { border-bottom: none; }
.proceso__step-num {
  padding: 24px 16px; font-family: var(--mono); font-size: 10px; font-weight: 600;
  color: var(--green-bright); letter-spacing: 0.08em;
  border-right: 0.5px solid var(--gray-2); background: rgba(0,200,150,0.02);
  display: flex; align-items: flex-start; justify-content: center;
}
.proceso__step-body { padding: 22px 26px; }
.proceso__step-title { font-size: 15px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 6px; }
.proceso__step-desc { font-size: 13px; color: var(--gray-5); line-height: 1.65; }
.proceso__tag {
  display: inline-flex; align-items: center; gap: 5px; margin-top: 10px;
  font-family: var(--mono); font-size: 10px; font-weight: 600;
  color: var(--green-bright); letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   CATÁLOGO
══════════════════════════════════════════ */
.catalogo {
  padding: var(--sp) 0; position: relative; overflow: hidden;
  background: var(--forest-deep);
}
.catalogo__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0,200,150,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,200,150,0.06) 0%, transparent 60%);
}
.catalogo__h2 { font-size: clamp(26px,4vw,38px); font-weight: 800; letter-spacing: -0.04em; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.catalogo__sub { font-size: 16px; color: rgba(255,255,255,0.45); margin-bottom: 48px; position: relative; z-index: 1; }
.catalogo__grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; position: relative; z-index: 1; }

.cat-card {
  background: rgba(255,255,255,0.03); border: 0.5px solid rgba(0,200,150,0.18);
  border-radius: 14px; padding: 28px; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  cursor: default;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,200,150,0.5);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,200,150,0.2);
}
.cat-card__glow {
  position: absolute; bottom: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
  pointer-events: none; transition: opacity 0.35s;
  opacity: 0;
}
.cat-card:hover .cat-card__glow { opacity: 1; }

.cat-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.cat-card__icon {
  width: 48px; height: 48px; background: rgba(0,200,150,0.1);
  border-radius: 10px; border: 0.5px solid rgba(0,200,150,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s var(--ease-bounce);
}
.cat-card:hover .cat-card__icon { background: rgba(0,200,150,0.18); transform: scale(1.05); }
.cat-card__num { font-family: var(--mono); font-size: 10px; font-weight: 600; color: rgba(0,200,150,0.4); letter-spacing: 0.1em; }
.cat-card__name { font-size: 18px; font-weight: 700; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; }
.cat-card__desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-bottom: 20px; }
.cat-card__items { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.cat-card__items li {
  font-size: 13px; color: rgba(255,255,255,0.6); padding-left: 18px; position: relative;
  transition: color 0.2s;
}
.cat-card:hover .cat-card__items li { color: rgba(255,255,255,0.75); }
.cat-card__items li::before {
  content: ''; position: absolute; left: 0; top: 7px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); opacity: 0.5;
}
.cat-card__footer { border-top: 0.5px solid rgba(0,200,150,0.12); padding-top: 18px; }
.cat-card__cta {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  color: var(--green-bright); letter-spacing: 0.04em;
  transition: gap 0.2s var(--ease);
}
.cat-card__cta:hover { gap: 9px; }

/* ══════════════════════════════════════════
   CASO
══════════════════════════════════════════ */
.caso { padding: var(--sp) 0; background: var(--white); }
.caso__h2 { font-size: clamp(24px,3.5vw,32px); font-weight: 700; letter-spacing: -0.03em; color: var(--ink); max-width: 500px; line-height: 1.1; margin-bottom: 32px; }
.caso__card {
  display: grid; grid-template-columns: 220px 1fr;
  border: 0.5px solid var(--gray-2); border-radius: 14px; overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.caso__card:hover { border-color: var(--forest-mid); box-shadow: 0 12px 40px rgba(11,26,20,0.12); }
.caso__left {
  background: var(--forest-deep); padding: 36px 28px;
  border-right: 0.5px solid rgba(0,200,150,0.15);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
}
.caso__badge {
  font-family: var(--mono); font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--green-bright); background: rgba(0,200,150,0.12);
  padding: 4px 10px; border-radius: 20px; border: 0.5px solid rgba(0,200,150,0.25); margin-bottom: 20px;
}
.caso__metric-big {
  font-family: var(--mono); font-size: clamp(44px,5vw,60px); font-weight: 800;
  color: #fff; letter-spacing: -0.05em; line-height: 1; margin-bottom: 10px;
}
.caso__metric-delta { display: flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; font-weight: 600; color: var(--green-bright); }
.caso__right { padding: 36px 32px; }
.caso__h3 { font-size: clamp(15px,2.2vw,18px); font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 14px; }
.caso__body { font-size: 13px; color: var(--gray-5); line-height: 1.75; margin-bottom: 20px; }
.caso__link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--forest-deep); transition: gap 0.2s var(--ease), color 0.2s; }
.caso__link:hover { gap: 10px; color: var(--green-mid); }

/* ══════════════════════════════════════════
   TESTIMONIO
══════════════════════════════════════════ */
.testimonio { padding: var(--sp) 0; background: var(--forest-deep); position: relative; overflow: hidden; }
.testimonio__inner { max-width: 780px; margin-inline: auto; text-align: center; position: relative; z-index: 1; padding-inline: clamp(20px,5vw,80px); }
.testimonio__mark {
  font-size: 160px; line-height: 1; color: rgba(0,200,150,0.08);
  font-family: Georgia, serif; position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  pointer-events: none; user-select: none;
}
.testimonio__quote {
  font-size: clamp(17px,2.5vw,22px); color: rgba(255,255,255,0.85);
  line-height: 1.65; font-style: italic; letter-spacing: -0.01em;
  margin-bottom: 28px; position: relative;
}
.testimonio__author { position: relative; }
.testimonio__cite {
  font-style: normal; font-family: var(--mono); font-size: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(0,200,150,0.5);
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-final {
  padding: clamp(80px,12vw,120px) clamp(20px,5vw,80px);
  background: var(--forest-mid); position: relative; overflow: hidden; text-align: center;
}
.cta-final__forest {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,60,30,0.8) 0%, var(--forest-mid) 70%);
}
.cta-final__glow {
  position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none;
}
.cta-final__glow--1 {
  width: 600px; height: 400px; top: -100px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,200,150,0.2) 0%, transparent 70%);
  animation: glowFloat 10s ease-in-out infinite;
}
.cta-final__glow--2 {
  width: 300px; height: 300px; bottom: -50px; right: 10%;
  background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 70%);
  animation: glowFloat 14s ease-in-out infinite reverse;
}
.cta-final__delta { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.cta-final__content { position: relative; z-index: 1; max-width: 580px; margin-inline: auto; }
.cta-final__h2 { font-size: clamp(30px,5.5vw,48px); font-weight: 800; color: #fff; letter-spacing: -0.045em; line-height: 1.05; margin-bottom: 18px; }
.cta-final__sub { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 36px; }
.cta-final__actions { margin-bottom: 20px; }
.cta-final__fine { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer { background: var(--forest-deep); border-top: 0.5px solid rgba(0,200,150,0.1); padding: 20px clamp(20px,5vw,80px); }
.footer__inner { max-width: var(--cw); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer__brand { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.25); }
.footer__links { display: flex; gap: 20px; }
.footer__link { font-size: 11px; color: rgba(255,255,255,0.2); transition: color 0.15s; }
.footer__link:hover { color: rgba(0,200,150,0.7); }

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET ≤900px
══════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --sp: 64px; }

  .problema__inner { grid-template-columns: 1fr; }
  .nosotros__inner { grid-template-columns: 1fr; }
  .nosotros__right { order: -1; }
  .nosotros__visual { height: 240px; }
  .dark-metrics__grid { grid-template-columns: 1fr; gap: 36px; }
  .dark-metrics__cell--sep { border-left: none; border-top: 0.5px solid rgba(0,200,150,0.12); padding-top: 36px; }
  .dark-metrics__cell { padding-inline: 0; }
  .catalogo__grid { grid-template-columns: 1fr; }
  .caso__card { grid-template-columns: 1fr; }
  .caso__left { border-right: none; border-bottom: 0.5px solid rgba(0,200,150,0.15); }
}

/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --sp: 52px; }
  .navbar__links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11,26,20,0.98); flex-direction: column; align-items: center;
    justify-content: center; gap: 8px; transform: translateX(-100%);
    transition: transform 0.35s var(--ease); z-index: 150; backdrop-filter: blur(20px);
  }
  .navbar__links.is-open { transform: translateX(0); }
  .navbar__link { font-size: 18px; padding: 14px 24px; color: rgba(255,255,255,0.7); border-radius: 10px; width: 220px; text-align: center; }
  .navbar__link:hover { background: rgba(0,200,150,0.1); color: var(--green-bright); }
  .btn--nav { display: none; }
  .navbar__hamburger { display: flex; z-index: 201; position: relative; }
  .hero__metrics { grid-template-columns: 1fr; }
  .hero__metric--sep { border-left: none; border-top: 0.5px solid rgba(0,200,150,0.15); }
  .hero__scroll-hint { display: none; }
  .nosotros__badge--1 { top: 10px; left: 10px; }
  .nosotros__badge--2 { top: 10px; right: 10px; }
  .cta-final__actions { display: flex; justify-content: center; }
  .btn--xl { width: 100%; max-width: 320px; justify-content: center; }
  .problema__stat-row { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .testimonio__mark { font-size: 100px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; width: 100%; }
  .btn--lg { width: 100%; justify-content: center; }
  .caso__left { padding: 24px 20px; }
  .caso__right { padding: 24px 20px; }
  .cat-card { padding: 22px 18px; }
}
