@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TOKENS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  /* Superficie */
  --white:    #ffffff;
  --off:      #f5f6f8;
  --off2:     #eef0f4;
  --off3:     #e4e7ed;

  /* Bordes */
  --b1:       #dde1ea;
  --b2:       #c8cdd8;
  --b3:       #a8b0c2;

  /* Texto */
  --t1:       #0f1623;
  --t2:       #3a4560;
  --t3:       #6b7590;
  --t4:       #9da6bc;

  /* Marca — azul institucional */
  --blue:     #0050c8;
  --blue-h:   #0040a0;
  --blue-l:   #e8f0ff;
  --blue-m:   rgba(0,80,200,0.08);

  /* Acento secundario */
  --teal:     #0089a8;
  --teal-l:   #e5f6fa;

  /* Estado */
  --green:    #1a7a3c;
  --green-l:  #eaf5ee;

  --font:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --r:        6px;
  --rl:       10px;
  --shadow-s: 0 1px 3px rgba(15,22,35,0.08), 0 1px 2px rgba(15,22,35,0.06);
  --shadow-m: 0 4px 12px rgba(15,22,35,0.08), 0 2px 4px rgba(15,22,35,0.05);
  --shadow-l: 0 12px 32px rgba(15,22,35,0.1), 0 4px 8px rgba(15,22,35,0.06);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESET
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--t1);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--b2); border-radius: 4px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TYPOGRAPHY
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--t1);
}
.display { font-size: clamp(2.6rem, 5.5vw, 4.5rem); font-weight: 800; letter-spacing: -0.035em; }
.h1      { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.03em; }
.h2      { font-size: clamp(1.7rem, 3vw, 2.5rem);   font-weight: 700; }
.h3      { font-size: clamp(1.2rem, 2vw, 1.6rem);   font-weight: 700; }
.h4      { font-size: 1.1rem; font-weight: 600; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.body-lg { font-size: 1.1rem; color: var(--t2); line-height: 1.75; font-weight: 400; }
.body    { font-size: 0.95rem; color: var(--t2); line-height: 1.7; }
.caption { font-size: 0.8rem; color: var(--t3); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LAYOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.5rem, 4vw, 3rem); }
.section { padding: 6rem 0; }



/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAVIGATION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--b1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  transition: box-shadow 0.3s var(--ease);
}
#nav.elevated { box-shadow: var(--shadow-s); }

.nav-inner {
  display: flex; align-items: stretch; justify-content: space-between;
  height: 62px;
}

.logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--t1); cursor: pointer;
  padding: 0 1rem 0 0;
  transition: color 0.2s;
  border-right: 1px solid var(--b1);
  padding-right: 2rem;
}
.logo:hover { color: var(--blue); }
.logo-mark {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 16px; height: 16px; fill: #fff; }

.nav-links { display: flex; gap: 0; list-style: none; align-items: stretch; margin-left: 0.5rem; }
.nav-links li { display: flex; align-items: stretch; }
.nav-links li a {
  display: flex; align-items: center;
  font-size: 0.875rem; font-weight: 500; color: var(--t2);
  padding: 0 1.1rem;
  position: relative;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links li a:hover { color: var(--t1); background: var(--off); }
.nav-links li a.active { color: var(--blue); font-weight: 600; }
.nav-links li a.active::after, .nav-links li a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; padding-left: 1.5rem; border-left: 1px solid var(--b1); }
.nav-contact {
  font-size: 0.875rem; font-weight: 600; color: var(--t2);
  padding: 0.5rem 1rem; border-radius: var(--r);
  transition: color 0.2s, background 0.2s;
}
.nav-contact:hover { color: var(--t1); background: var(--off2); }
.nav-cta {
  font-size: 0.875rem; font-weight: 600; color: #fff;
  background: var(--blue);
  padding: 0.55rem 1.25rem; border-radius: var(--r);
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--blue-h); box-shadow: 0 2px 8px rgba(0,80,200,0.3); transform: translateY(-1px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BUTTONS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 600; border-radius: var(--r);
  padding: 0.7rem 1.6rem;
  transition: all 0.22s var(--ease); white-space: nowrap; cursor: pointer;
}
.btn-blue  { background: var(--blue); color: #fff; }
.btn-blue:hover  { background: var(--blue-h); box-shadow: 0 4px 14px rgba(0,80,200,0.28); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--blue); border: 1.5px solid var(--b1); }
.btn-white:hover { border-color: var(--blue); box-shadow: var(--shadow-s); }
.btn-ghost { background: transparent; color: var(--t2); border: 1.5px solid var(--b1); }
.btn-ghost:hover { border-color: var(--b2); color: var(--t1); background: var(--off); }
.btn-text  { background: transparent; color: var(--blue); font-size: 0.875rem; font-weight: 600; padding: 0; gap: 0.35rem; }
.btn-text:hover { color: var(--blue-h); gap: 0.55rem; }
.btn-text span { font-size: 1rem; transition: transform 0.2s; }
.btn-text:hover span { transform: translateX(3px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REVEAL
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.rv:nth-child(2) { transition-delay: .07s; }
.rv:nth-child(3) { transition-delay: .14s; }
.rv:nth-child(4) { transition-delay: .21s; }
.rv:nth-child(5) { transition-delay: .28s; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION HEADER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sh { margin-bottom: 3.5rem; }
.sh .eyebrow { display: block; margin-bottom: 0.75rem; }
.sh p { margin-top: 0.75rem; max-width: 580px; }
.sh.center { text-align: center; }
.sh.center p { margin-left: auto; margin-right: auto; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ▌ HOME — HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  padding: 8rem 0 6rem;
  margin-top: 62px;
  background: var(--white);
  border-bottom: 1px solid var(--b1);
  position: relative; overflow: hidden;
}
.hero-rule {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #4da6ff 50%, var(--teal) 100%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-left {}
.hero-pretitle {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--blue-l); border: 1px solid rgba(0,80,200,0.15);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  margin-bottom: 1.75rem;
}
.hero-pretitle span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); }
.hero-pretitle-dot { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }

.hero-left h1 { margin-bottom: 1.25rem; }
.hero-left h1 em { font-style: normal; color: var(--blue); }
.hero-left p { font-size: 1.05rem; color: var(--t2); line-height: 1.75; margin-bottom: 2.25rem; max-width: 500px; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-trust {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--b1);
}
.trust-item {}
.trust-n { font-size: 1.75rem; font-weight: 800; color: var(--t1); letter-spacing: -0.03em; line-height: 1; }
.trust-n em { font-style: normal; color: var(--blue); }
.trust-l { font-size: 0.78rem; color: var(--t3); margin-top: 0.2rem; font-weight: 500; }

/* Hero right — panel */
.hero-right {}
.hero-panel {
  background: var(--off);
  border: 1px solid var(--b1);
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}
.panel-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--b1);
  padding: 0.8rem 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.panel-dot { width: 10px; height: 10px; border-radius: 50%; }
.panel-dot.r { background: #ff5f57; }
.panel-dot.y { background: #febc2e; }
.panel-dot.g { background: #28c840; }
.panel-title { font-size: 0.78rem; color: var(--t3); margin-left: auto; margin-right: auto; font-weight: 500; }
.panel-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.panel-card {
  background: var(--white);
  border: 1px solid var(--b1);
  border-radius: var(--r);
  padding: 1.1rem 1.25rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}
.panel-card:hover { border-color: rgba(0,80,200,0.3); box-shadow: 0 2px 8px rgba(0,80,200,0.08); }
.panel-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.4rem; }
.panel-card h4 { font-size: 0.88rem; font-weight: 700; color: var(--t1); }
.panel-badge {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
  padding: 0.15rem 0.55rem; border-radius: 100px;
}
.badge-live { background: var(--green-l); color: var(--green); }
.badge-dev  { background: var(--blue-l);  color: var(--blue);  }
.panel-card p { font-size: 0.78rem; color: var(--t3); line-height: 1.5; margin-bottom: 0.65rem; }
.panel-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.ptag { font-size: 0.68rem; font-weight: 500; background: var(--off2); border: 1px solid var(--b1); padding: 0.15rem 0.5rem; border-radius: 4px; color: var(--t3); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BAND
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.band {
  background: var(--blue);
  padding: 1rem 0;
  overflow: hidden;
}
.band-inner { display: flex; align-items: center; gap: 3rem; white-space: nowrap; animation: marquee 24s linear infinite; }
.band-item {
  display: inline-flex; align-items: center; gap: 1rem; flex-shrink: 0;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.band-item::after { content: '|'; color: rgba(255,255,255,0.2); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.svc-sec { background: var(--off); border-bottom: 1px solid var(--b1); }
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; background: var(--b1); border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; }
.svc-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column;
  transition: background 0.25s;
  position: relative;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.svc-card:hover { background: var(--off); }
.svc-card:hover::before { transform: scaleX(1); }

.svc-number { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--t4); margin-bottom: 1.5rem; }
.svc-icon {
  width: 48px; height: 48px;
  background: var(--blue-l); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.25s;
}
.svc-card:hover .svc-icon { background: var(--blue); }
.svc-icon svg { width: 22px; height: 22px; fill: var(--blue); transition: fill 0.25s; }
.svc-card:hover .svc-icon svg { fill: #fff; }
.svc-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.svc-card p  { font-size: 0.875rem; color: var(--t2); line-height: 1.65; margin-bottom: 1.5rem; flex: 1; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.75rem; }
.svc-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--t2); line-height: 1.45; }
.svc-list li::before { content: '–'; color: var(--blue); flex-shrink: 0; font-weight: 700; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WORK SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.work-sec { background: var(--white); border-bottom: 1px solid var(--b1); }
.work-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--b1); border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; }
.work-card {
  background: var(--white); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 280px;
  transition: background 0.25s; cursor: pointer;
  position: relative;
}
.work-card:hover { background: var(--off); }
.work-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; }
.work-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.work-card p  { font-size: 0.875rem; color: var(--t2); line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.work-result {
  background: var(--green-l); border: 1px solid rgba(26,122,60,0.15);
  border-radius: var(--r); padding: 0.6rem 0.9rem;
  font-size: 0.8rem; color: var(--green); margin-bottom: 1.25rem; line-height: 1.45;
  font-weight: 500;
}
.work-foot { display: flex; align-items: center; justify-content: space-between; }
.work-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.wtag { font-size: 0.7rem; font-weight: 500; background: var(--off2); border: 1px solid var(--b1); padding: 0.2rem 0.55rem; border-radius: 4px; color: var(--t3); }
.work-arrow {
  width: 34px; height: 34px; border: 1px solid var(--b1); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--t3); font-size: 0.9rem; flex-shrink: 0;
  transition: all 0.25s;
}
.work-card:hover .work-arrow { border-color: var(--blue); color: var(--blue); background: var(--blue-l); transform: translateX(2px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   VALUE SECTION
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.val-sec { background: var(--off); border-bottom: 1px solid var(--b1); }
.val-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.val-left h2 { margin-bottom: 1.25rem; }
.val-left p  { color: var(--t2); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }
.val-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.val-pill {
  background: var(--white); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 1.25rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.val-pill:hover { border-color: rgba(0,80,200,0.25); box-shadow: var(--shadow-s); }
.pill-icon { width: 36px; height: 36px; background: var(--blue-l); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.pill-icon svg { width: 18px; height: 18px; fill: var(--blue); }
.val-pill h4 { font-size: 0.875rem; margin-bottom: 0.3rem; }
.val-pill p  { font-size: 0.78rem; color: var(--t3); line-height: 1.5; }

.val-right {}
.val-quote {
  background: var(--blue);
  border-radius: var(--rl); padding: 2.5rem;
  margin-bottom: 1.5rem;
}
.val-quote p {
  font-size: 1.3rem; font-weight: 700; color: #fff; line-height: 1.4; letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.val-quote cite { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-style: normal; font-weight: 500; }
.val-list { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--b1); border-radius: var(--r); overflow: hidden; }
.val-item {
  display: flex; gap: 1rem; align-items: center;
  padding: 0.95rem 1.25rem; background: var(--white);
  transition: background 0.2s, padding-left 0.25s;
}
.val-item:hover { background: var(--blue-l); padding-left: 1.6rem; }
.val-n { font-size: 0.68rem; font-weight: 700; color: var(--blue); min-width: 20px; letter-spacing: 0.05em; }
.val-item span { font-size: 0.85rem; color: var(--t2); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.proc-sec { background: var(--white); border-bottom: 1px solid var(--b1); }
.proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; }
.proc-step {
  padding: 2.25rem 1.75rem; border-right: 1px solid var(--b1);
  background: var(--white); position: relative;
  transition: background 0.25s;
}
.proc-step:last-child { border-right: none; }
.proc-step::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.proc-step:hover { background: var(--off); }
.proc-step:hover::after { transform: scaleX(1); }
.proc-n { font-size: 3.5rem; font-weight: 800; color: var(--off2); line-height: 1; margin-bottom: 1rem; letter-spacing: -0.04em; }
.proc-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.proc-step p  { font-size: 0.82rem; color: var(--t2); line-height: 1.65; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INDUSTRIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ind-sec { background: var(--off); border-bottom: 1px solid var(--b1); }
.ind-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.ind-card {
  background: var(--white); border: 1px solid var(--b1);
  border-radius: var(--r); padding: 1.75rem 1.4rem;
  transition: all 0.3s var(--ease);
}
.ind-card:hover { border-color: rgba(0,80,200,0.3); box-shadow: var(--shadow-m); transform: translateY(-3px); }
.ind-icon { width: 44px; height: 44px; background: var(--blue-l); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.2rem; }
.ind-card h4 { font-size: 0.9rem; margin-bottom: 0.4rem; }
.ind-card p  { font-size: 0.78rem; color: var(--t3); line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STACK
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.stk-sec { background: var(--white); border-bottom: 1px solid var(--b1); }
.stk-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px; background: var(--b1); border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; }
.stk-cat { background: var(--white); padding: 2rem; transition: background 0.25s; }
.stk-cat:hover { background: var(--off); }
.stk-lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; display: block; border-bottom: 1px solid var(--b1); padding-bottom: 0.75rem; }
.stk-items { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.stk-item { font-size: 0.78rem; font-weight: 500; background: var(--off2); border: 1px solid var(--b1); padding: 0.28rem 0.65rem; border-radius: 4px; color: var(--t2); transition: border-color 0.2s, color 0.2s; }
.stk-item:hover { border-color: rgba(0,80,200,0.3); color: var(--blue); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HOME CTA STRIP
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta-strip {
  background: var(--t1); padding: 5rem 0;
}
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; max-width: 560px; }
.cta-strip h2 em { font-style: normal; color: #7ab8ff; }
.cta-strip-actions { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (shared)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pg-hero {
  padding: 8rem 0 4rem;
  margin-top: 62px;
  background: var(--white);
  border-bottom: 1px solid var(--b1);
  position: relative;
}
.pg-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #4da6ff 50%, var(--teal) 100%);
}
.pg-hero .eyebrow { display: block; margin-bottom: 0.85rem; }
.pg-hero h1 { margin-bottom: 1.25rem; }
.pg-hero p  { max-width: 600px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICIOS — full
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fsvc-sec { background: var(--white); }
.fsvc-block {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
  padding: 4rem 0; border-bottom: 1px solid var(--b1);
}
.fsvc-block:last-child { border-bottom: none; }
.fsvc-block.rev { direction: rtl; }
.fsvc-block.rev > * { direction: ltr; }
.fb-num { font-size: 4.5rem; font-weight: 800; color: var(--off3); line-height: 1; margin-bottom: 0.75rem; letter-spacing: -0.04em; }
.fb-left .eyebrow { display: block; margin-bottom: 0.75rem; }
.fb-left h2 { margin-bottom: 1rem; }
.fb-left p  { font-size: 0.95rem; color: var(--t2); line-height: 1.75; margin-bottom: 1rem; }
.fb-feats { display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; }
.fb-feat {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.4rem; background: var(--white);
  transition: background 0.22s, padding-left 0.25s;
}
.fb-feat:hover { background: var(--off); padding-left: 1.8rem; }
.fb-feat-ic {
  width: 34px; height: 34px; background: var(--blue-l); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.fb-feat-t h4  { font-size: 0.875rem; color: var(--t1); margin-bottom: 0.2rem; }
.fb-feat-t p   { font-size: 0.78rem; color: var(--t3); line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRABAJO — full
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wf-sec { background: var(--off); }
.wf-list { display: flex; flex-direction: column; gap: 2rem; }
.case {
  background: var(--white); border: 1px solid var(--b1); border-radius: var(--rl);
  display: grid; grid-template-columns: 1.2fr 1fr;
  overflow: hidden; box-shadow: var(--shadow-s);
  transition: border-color 0.25s, box-shadow 0.3s;
}
.case:hover { border-color: rgba(0,80,200,0.25); box-shadow: var(--shadow-l); }
.case-l { padding: 2.75rem; }
.case-r { padding: 2.75rem; background: var(--off); border-left: 1px solid var(--b1); display: flex; flex-direction: column; justify-content: space-between; }
.case-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 1.25rem;
}
.case h2    { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 1rem; }
.case-pt    { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t4); margin-bottom: 0.4rem; }
.case-l p   { font-size: 0.9rem; color: var(--t2); line-height: 1.7; margin-bottom: 1.25rem; }
.case-out   { background: var(--green-l); border: 1px solid rgba(26,122,60,0.15); border-radius: var(--r); padding: 0.85rem 1.1rem; font-size: 0.83rem; color: var(--green); font-weight: 500; line-height: 1.5; }
.case-dt    { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--t4); margin-bottom: 0.65rem; display: block; }
.case-tags  { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem; }
.ctag       { font-size: 0.75rem; font-weight: 500; background: var(--white); border: 1px solid var(--b1); padding: 0.28rem 0.7rem; border-radius: 4px; color: var(--t2); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOSOTROS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ab-sec { background: var(--white); }
.ab-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.ab-card {
  background: var(--off); border: 1px solid var(--b1); border-radius: var(--rl);
  padding: 2.5rem; position: sticky; top: 5rem;
  box-shadow: var(--shadow-s);
}
.ab-av {
  width: 64px; height: 64px; background: var(--blue); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 1.25rem;
}
.ab-card h3  { font-size: 1.15rem; margin-bottom: 0.2rem; }
.ab-sub      { font-size: 0.8rem; color: var(--t3); margin-bottom: 1.25rem; font-weight: 500; }
.ab-card p   { font-size: 0.875rem; color: var(--t2); line-height: 1.7; }
.ab-metrics  { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.ab-met {
  background: var(--white); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 1rem; text-align: center;
}
.ab-met-n  { font-size: 1.75rem; font-weight: 800; color: var(--t1); letter-spacing: -0.03em; }
.ab-met-n em { font-style: normal; color: var(--blue); }
.ab-met p  { font-size: 0.72rem; color: var(--t3); margin-top: 0.15rem; }

.ab-right .eyebrow { display: block; margin-bottom: 0.8rem; }
.ab-right h2 { margin-bottom: 1.5rem; }
.ab-right > p { font-size: 0.95rem; color: var(--t2); line-height: 1.8; margin-bottom: 1rem; }
.ab-vals { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1px; border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; }
.av {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 1.5rem; background: var(--white);
  transition: background 0.22s, padding-left 0.25s;
}
.av:hover { background: var(--blue-l); padding-left: 1.85rem; }
.av-ic { width: 36px; height: 36px; background: var(--blue-l); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.av-t h4 { font-size: 0.875rem; margin-bottom: 0.2rem; }
.av-t p  { font-size: 0.78rem; color: var(--t3); line-height: 1.5; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.bl-sec { background: var(--off); }
.bl-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 1.5px; background: var(--b1); border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; margin-bottom: 1.5px; }
.bl-grid2 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5px; background: var(--b1); border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; }
.bl-card { background: var(--white); padding: 2rem; display: flex; flex-direction: column; justify-content: space-between; min-height: 260px; transition: background 0.25s; cursor: pointer; }
.bl-card:hover { background: var(--off); }
.bl-card.ft { min-height: 320px; }
.bl-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem; }
.bl-card h3 { font-size: clamp(0.95rem,1.4vw,1.2rem); margin-bottom: 0.65rem; flex: 1; line-height: 1.3; }
.bl-card.ft h3 { font-size: clamp(1.1rem,1.8vw,1.5rem); }
.bl-exc { font-size: 0.82rem; color: var(--t2); line-height: 1.65; margin-bottom: 1.25rem; }
.bl-meta { display: flex; align-items: center; justify-content: space-between; }
.bl-date { font-size: 0.75rem; color: var(--t4); }
.bl-rd   { font-size: 0.8rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s, color 0.2s; }
.bl-card:hover .bl-rd { gap: 0.5rem; color: var(--blue-h); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACTO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.ct-sec { background: var(--white); }
.ct-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start; }
.ct-left .eyebrow { display: block; margin-bottom: 0.8rem; }
.ct-left h2 { margin-bottom: 1.1rem; }
.ct-left > p { font-size: 1rem; color: var(--t2); line-height: 1.8; margin-bottom: 2.5rem; }
.ct-detail { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--b1); }
.ct-detail:first-of-type { border-top: 1px solid var(--b1); }
.ct-ic { width: 38px; height: 38px; background: var(--blue-l); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.ct-txt small { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t4); margin-bottom: 0.15rem; }
.ct-txt a, .ct-txt span { font-size: 0.88rem; color: var(--t1); font-weight: 500; transition: color 0.2s; }
.ct-txt a:hover { color: var(--blue); }

.ct-form { background: var(--off); border: 1px solid var(--b1); border-radius: var(--rl); padding: 2.5rem; box-shadow: var(--shadow-s); }
.form-title { font-size: 1rem; font-weight: 700; color: var(--t1); margin-bottom: 0.35rem; }
.form-sub   { font-size: 0.82rem; color: var(--t3); margin-bottom: 2rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.fg   { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.fg label { font-size: 0.78rem; font-weight: 600; color: var(--t2); letter-spacing: 0.02em; }
.fg input, .fg textarea, .fg select {
  background: var(--white); border: 1px solid var(--b1); border-radius: var(--r);
  padding: 0.72rem 0.9rem; color: var(--t1); font-family: var(--font); font-size: 0.875rem;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--t4); }
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,80,200,0.1);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg select { appearance: none; cursor: pointer; }
.btn-sub { width: 100%; justify-content: center; padding: 0.85rem; }

/* FAQ */
.faq-wrap { margin-top: 3rem; }
.faq-ttl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.25rem; border-bottom: 1px solid var(--b1); padding-bottom: 0.75rem; }
.fi { border-bottom: 1px solid var(--b1); }
.fi-q { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; cursor: pointer; transition: color 0.2s; }
.fi-q:hover h4 { color: var(--blue); }
.fi-q h4 { font-size: 0.9rem; font-weight: 600; color: var(--t1); line-height: 1.4; transition: color 0.2s; }
.fi-tog { width: 22px; height: 22px; border: 1px solid var(--b2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--t3); font-size: 0.9rem; flex-shrink: 0; transition: all 0.25s; }
.fi-q:hover .fi-tog { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
.fi-a { font-size: 0.85rem; color: var(--t2); line-height: 1.7; padding-bottom: 1rem; display: none; }
.fi.open .fi-a { display: block; }
.fi.open .fi-tog { transform: rotate(45deg); border-color: var(--blue); color: var(--blue); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
footer { background: var(--t1); padding: 4rem 0 2rem; }
.ft-main { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.ft-logo { display: flex; align-items: center; gap: 0.5rem; font-size: 1.15rem; font-weight: 800; letter-spacing: -0.03em; color: #fff; margin-bottom: 1rem; cursor: pointer; }
.ft-lmark { width: 26px; height: 26px; background: var(--blue); border-radius: 5px; display: flex; align-items: center; justify-content: center; }
.ft-lmark svg { width: 14px; height: 14px; fill: #fff; }
.ft-desc { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 260px; margin-bottom: 1.5rem; }
.ft-soc  { display: flex; gap: 0.6rem; }
.ft-sb { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); transition: all 0.25s; }
.ft-sb:hover { border-color: rgba(255,255,255,0.3); color: #fff; }
.ft-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.ft-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.ft-links a { font-size: 0.83rem; color: rgba(255,255,255,0.55); transition: color 0.2s; display: block; }
.ft-links a:hover { color: rgba(255,255,255,0.9); }
.ft-bot { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); gap: 1rem; flex-wrap: wrap; }
.ft-bot p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.ft-bot-lnks { display: flex; gap: 1.5rem; }
.ft-bot-lnks a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.ft-bot-lnks a:hover { color: rgba(255,255,255,0.7); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width:1024px) {
  .hero-inner, .val-inner, .ab-grid, .ct-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ab-card { position: static; }
  .svc-grid, .work-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; border-bottom: 1px solid var(--b1); }
  .svc-card:last-child { border-bottom: none; }
  .work-grid { background: none; border: none; border-radius: 0; gap: 1rem; }
  .work-card { border: 1px solid var(--b1); border-radius: var(--rl); }
  .proc-grid { grid-template-columns: repeat(2,1fr); }
  .proc-step:nth-child(2) { border-right: none; }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .stk-grid { grid-template-columns: repeat(2,1fr); }
  .bl-grid, .bl-grid2 { grid-template-columns: 1fr 1fr; }
  .ft-main { grid-template-columns: 1fr 1fr; }
  .fsvc-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .case { grid-template-columns: 1fr; }
  .case-r { border-left: none; border-top: 1px solid var(--b1); }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .val-pillars { grid-template-columns: 1fr; }
}
@media (max-width:768px) {
  .nav-links, .nav-contact { display: none; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .stk-grid { grid-template-columns: 1fr; }
  .bl-grid, .bl-grid2 { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .proc-step { border-right: none; border-bottom: 1px solid var(--b1); }
  .hero-trust { gap: 1.5rem; }
  .hero-panel { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NAV DROPDOWN
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav-dd { position: relative; }
.nav-dd-toggle { display: flex !important; align-items: center; gap: 0.3rem; }
.nav-dd-chevron { color: var(--t3); flex-shrink: 0; transition: transform 0.22s var(--ease), color 0.2s; }
.nav-dd.open .nav-dd-chevron { transform: rotate(180deg); color: var(--blue); }
.nav-dd-toggle:hover .nav-dd-chevron { color: var(--blue); }

.nav-dd-menu {
  position: absolute; top: calc(100% + 8px); left: -12px;
  width: 280px; background: #fff; border: 1px solid var(--b1);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15,22,35,0.13), 0 2px 8px rgba(15,22,35,0.06);
  padding: 0.5rem 0.5rem 0.4rem; z-index: 500;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.97); transform-origin: top left;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  pointer-events: none;
}
.nav-dd-menu::before {
  content: ''; position: absolute; top: 0; left: 1.25rem; right: 1.25rem;
  height: 2px; background: linear-gradient(90deg, var(--blue) 0%, #4da6ff 100%);
  border-radius: 0 0 2px 2px;
}
.nav-dd.open .nav-dd-menu { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }

.nav-dd-item {
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 0.75rem 0.95rem; border-radius: 8px;
  color: var(--t1); text-decoration: none; text-align: left;
  opacity: 0; transform: translateY(5px);
  transition: background 0.15s,
    transform 0.18s calc(var(--i,0) * 0.06s + 0.04s) var(--ease),
    opacity 0.18s calc(var(--i,0) * 0.06s + 0.04s) var(--ease);
}
.nav-dd.open .nav-dd-item { opacity: 1; transform: none; }
.nav-dd-item:hover { background: var(--off); }
.nav-dd-item strong { font-size: 0.875rem; font-weight: 700; color: var(--t1); display: block; text-align: left; }
.nav-dd-item span   { font-size: 0.73rem; color: var(--t3); display: block; text-align: left; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE PAGES — layout & components
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.5rem,4vw,3rem); }

/* Page hero — shared with .pg-hero but has grid */
.page-hero {
  padding: 7rem 0 4rem;
  margin-top: 62px;
  background: var(--white);
  border-bottom: 1px solid var(--b1);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, #4da6ff 50%, var(--teal, #0089a8) 100%);
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.service-breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--t3); margin-bottom: 1.1rem;
}
.service-breadcrumb a { color: var(--blue); font-weight: 600; }
.service-breadcrumb span { color: var(--t4); }

/* Pill / badge */
.service-pill {
  display: inline-flex; align-items: center;
  background: var(--blue-l); color: var(--blue);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 0.85rem;
  border-radius: 100px; margin-bottom: 1.1rem;
}

.page-hero h1 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; margin: 0 0 1rem; }
.service-lead  { font-size: 1.05rem; color: var(--t2); line-height: 1.75; margin: 0 0 0.75rem; max-width: 540px; }
.page-hero-text { font-size: 0.9rem; color: var(--t3); line-height: 1.7; margin: 0 0 1.75rem; max-width: 520px; }

/* Summary card (sidebar in hero) */
.service-summary-card {
  background: var(--off); border: 1px solid var(--b1);
  border-radius: var(--rl); padding: 1.5rem;
  box-shadow: var(--shadow-s);
  position: sticky; top: 5rem;
}
.service-summary-kicker {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1rem;
  border-bottom: 1px solid var(--b1); padding-bottom: 0.75rem;
}
.service-summary-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.service-summary-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--t2); line-height: 1.4;
}
.service-summary-list li::before { content: '–'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* Section header */
.section-header { margin-bottom: 2.5rem; }
.section-header.left-align { text-align: left; }
.section-header h2 { font-size: clamp(1.5rem,2.8vw,2.2rem); font-weight: 800; letter-spacing: -0.025em; margin: 0.5rem 0 0; }
.section-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 0.5rem;
}

/* Section background variant */
.section-gray { background: var(--off); }

/* Deliverables grid */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.deliverable-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--b1);
  border-radius: var(--rl); padding: 1.4rem;
  box-shadow: var(--shadow-s);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.deliverable-card:hover { border-color: rgba(0,80,200,0.25); box-shadow: var(--shadow-m); }
.deliverable-card .service-pill { margin: 0; flex-shrink: 0; }
.deliverable-copy h3 { font-size: 1rem; font-weight: 700; margin: 0 0 0.35rem; }
.deliverable-copy p  { font-size: 0.85rem; color: var(--t2); line-height: 1.6; margin: 0; }

/* Page content grid (2 cols: main + aside) */
.page-content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

/* Story / benefit card */
.service-story-card {
  background: #fff; border: 1px solid var(--b1);
  border-radius: var(--rl); padding: 2rem;
  box-shadow: var(--shadow-s);
}
.service-benefit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem; margin-top: 1.25rem;
}
.service-benefit-card {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 1rem; background: var(--off); border-radius: var(--r);
}
.service-benefit-mark { color: var(--blue); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.service-benefit-card p { font-size: 0.85rem; color: var(--t2); line-height: 1.5; margin: 0; }

/* Side stack */
.page-side-stack { display: flex; flex-direction: column; gap: 1rem; }
.side-card {
  background: #fff; border: 1px solid var(--b1);
  border-radius: var(--rl); padding: 1.4rem;
  box-shadow: var(--shadow-s);
}
.side-card h3 { font-size: 0.95rem; font-weight: 700; margin: 0 0 1rem; }
.mini-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.mini-list li { font-size: 0.85rem; color: var(--t2); display: flex; gap: 0.5rem; align-items: flex-start; }
.mini-list li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; font-size: 0.8rem; }

/* Final CTA strip */
.final-cta-strip { background: var(--t1); padding: 4rem 0; }
.compact-cta-box {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
}
.compact-cta-box .section-tag { color: rgba(255,255,255,0.45); }
.compact-cta-box h2 {
  font-size: clamp(1.3rem,2.5vw,2rem); color: #fff;
  margin: 0.4rem 0 0; font-weight: 800; letter-spacing: -0.025em;
}
.btn-primary {
  display: inline-flex; align-items: center; padding: 0.8rem 1.6rem;
  background: var(--blue); color: #fff; border-radius: var(--r);
  font-size: 0.9rem; font-weight: 700; border: none; cursor: pointer;
  white-space: nowrap; flex-shrink: 0; font-family: var(--font);
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--blue-h); box-shadow: 0 4px 14px rgba(0,80,200,0.3); }

/* Related services grid */
.related-services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem; margin-top: 1.5rem;
}
.related-service-card {
  background: #fff; border: 1px solid var(--b1); border-radius: var(--rl);
  padding: 1.4rem; box-shadow: var(--shadow-s);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.related-service-card:hover { border-color: rgba(0,80,200,0.25); box-shadow: var(--shadow-m); }
.related-service-title { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.related-service-copy  { display: block; font-size: 0.82rem; color: var(--t2); line-height: 1.55; }

/* ── Responsive ─────────────────── */
@media (max-width: 1024px) {
  .service-hero-grid   { grid-template-columns: 1fr; }
  .service-summary-card { position: static; }
  .page-content-grid   { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .deliverables-grid   { grid-template-columns: 1fr; }
  .service-benefit-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .compact-cta-box     { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-contact { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT FORM
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--t1); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; border: 1px solid var(--b1); background: #fff;
  border-radius: var(--r); padding: 0.78rem 0.9rem;
  font: inherit; font-size: 0.9rem; color: var(--t1);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,80,200,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--t4); }
.btn-full { width: 100%; justify-content: center; padding: 0.9rem; font-size: 0.95rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO & BLOG FILTERS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.pf-btn {
  display: inline-flex; align-items: center;
  padding: 0.45rem 1.1rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 600;
  background: #fff; color: var(--t2);
  border: 1px solid var(--b1);
  transition: all 0.18s var(--ease);
  text-decoration: none;
}
.pf-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-l); }
.pf-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   NOSOTROS — extra sections
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Process steps */
.ab-process { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--b1); border-radius: var(--rl); overflow: hidden; margin-top: 3rem; }
.ab-step { padding: 2rem 1.6rem; border-right: 1px solid var(--b1); background: #fff; position: relative; transition: background 0.22s; }
.ab-step:last-child { border-right: none; }
.ab-step::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.ab-step:hover { background: var(--off); }
.ab-step:hover::after { transform: scaleX(1); }
.ab-step-n { font-size: 3rem; font-weight: 800; color: var(--off3); line-height: 1; margin-bottom: 0.75rem; letter-spacing: -0.04em; }
.ab-step h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.4rem; }
.ab-step p  { font-size: 0.82rem; color: var(--t2); line-height: 1.6; margin: 0; }

/* Why-us strip */
.ab-why { background: var(--blue); padding: 4rem 0; margin-top: 0; }
.ab-why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.ab-why h2 { color: #fff; font-size: clamp(1.6rem,3vw,2.4rem); margin-bottom: 1rem; }
.ab-why p  { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.75; margin-bottom: 0.85rem; }
.ab-why-points { display: flex; flex-direction: column; gap: 1px; }
.ab-why-pt {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r);
  margin-bottom: 0.5rem;
  transition: background 0.2s;
}
.ab-why-pt:hover { background: rgba(255,255,255,0.1); }
.ab-why-pt-ic { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ab-why-pt strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 0.2rem; }
.ab-why-pt span   { color: rgba(255,255,255,0.65); font-size: 0.82rem; line-height: 1.5; }

/* Testimonial / trust bar */
.ab-trust { background: var(--off); border-top: 1px solid var(--b1); border-bottom: 1px solid var(--b1); padding: 3rem 0; }
.ab-trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.ab-trust-item { text-align: center; }
.ab-trust-n { font-size: 2.2rem; font-weight: 800; color: var(--t1); letter-spacing: -0.035em; line-height: 1; }
.ab-trust-n em { font-style: normal; color: var(--blue); }
.ab-trust-l { font-size: 0.78rem; color: var(--t3); margin-top: 0.3rem; font-weight: 500; }

/* CTA final nosotros */
.ab-cta { background: var(--t1); padding: 5rem 0; }
.ab-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.ab-cta h2 { color: #fff; font-size: clamp(1.5rem,3vw,2.2rem); max-width: 520px; }
.ab-cta h2 em { font-style: normal; color: #7ab8ff; }
.ab-cta-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .ab-process { grid-template-columns: 1fr 1fr; }
  .ab-step:nth-child(2) { border-right: none; }
  .ab-step { border-bottom: 1px solid var(--b1); }
  .ab-why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ab-trust-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .ab-process { grid-template-columns: 1fr; }
  .ab-step { border-right: none; }
  .ab-trust-grid { grid-template-columns: repeat(2,1fr); }
  .ab-cta-inner { flex-direction: column; text-align: center; }
  .ab-cta-actions { justify-content: center; }
}

/* Ghost button — inverted for dark backgrounds */
.btn-ghost-inv {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost-inv:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

/* Commercial blocks */
.brief-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-top:2rem}
.brief-card{background:linear-gradient(180deg,rgba(108,99,255,.09),rgba(255,255,255,.95));border:1px solid rgba(15,23,42,.08);border-radius:22px;padding:1.15rem 1.1rem 1rem;box-shadow:0 16px 34px rgba(15,23,42,.04)}
.brief-card strong{display:flex;align-items:center;gap:.55rem;margin-bottom:.55rem;font-size:.98rem}
.brief-card span{color:var(--t2);line-height:1.7;font-size:.93rem}
@media (max-width: 900px){.brief-grid{grid-template-columns:1fr}}
