/* ═══════════════════════════════════════════════════════
   GRUPO ECOPORTÁTIL — Shared Stylesheet
   style.css · All pages
══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────── */
:root {
  --green:      #0A6E3C;
  --green-mid:  #0D8A4A;
  --lima:       #82BE3C;
  --black:      #060D07;
  --ink:        #0C1A0E;
  --soft:       #55665C;
  --muted:      #667A6F;
  --white:      #FFFFFF;
  --off:        #F4F8F5;
  --rule:       rgba(10,110,60,.12);
  --rule-dark:  rgba(255,255,255,.08);
  --r-nav:  72px;
  --r-side: 56px;
  --f-head: 'Sora', sans-serif;
  --f-body: 'Inter', sans-serif;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font: inherit; }
@media (hover: none) { body, button { cursor: auto; } }

/* ─────────────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────────────── */
#cursor {
  position: fixed; top: -20px; left: -20px;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform .15s ease, opacity .15s ease, background .2s;
  transform: translate(-50%, -50%);
  will-change: transform;
}
#cursor.hovered {
  transform: translate(-50%, -50%) scale(2.8);
  background: var(--lima);
  opacity: .7;
}
@media (hover: none) { #cursor { display: none; } }

/* ─────────────────────────────────────────
   SCROLL PROGRESS BAR
───────────────────────────────────────── */
#progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--lima);
  z-index: 201;
  transition: width .05s linear;
}

/* ─────────────────────────────────────────
   WHATSAPP FLOAT
───────────────────────────────────────── */
#wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  border-radius: 50px; padding: 14px 20px;
  font-family: var(--f-head); font-size: 13px; font-weight: 700;
  box-shadow: 0 8px 32px rgba(10,110,60,.35);
  cursor: none;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
#wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(10,110,60,.45); }
#wa-float svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
#wa-float span { white-space: nowrap; }
@media (max-width: 680px) {
  #wa-float { padding: 14px; border-radius: 50%; }
  #wa-float span { display: none; }
  #wa-float { bottom: 20px; right: 20px; }
}

/* ─────────────────────────────────────────
   TIPOGRAFÍA
───────────────────────────────────────── */
.label {
  font-family: var(--f-body);
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green);
  display: flex; align-items: center; gap: 10px;
}
.label::before { content: ''; width: 24px; height: 1px; background: var(--green); }
.label-dark { color: var(--lima); }
.label-dark::before { background: var(--lima); }

/* ─────────────────────────────────────────
   LANGUAGE TOGGLE
───────────────────────────────────────── */
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--f-head); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; color: var(--soft);
  padding: 7px 14px; border-radius: 6px;
  border: 1px solid var(--rule);
  transition: all .2s; cursor: none;
}
.lang-toggle:hover { border-color: var(--green); color: var(--green); }
.lang-toggle .lt-flag { font-size: 14px; line-height: 1; }

/* ─────────────────────────────────────────
   LOGO
───────────────────────────────────────── */
.nav-logo-img { height: 52px; width: auto; display: block; }
.footer-logo-wrap {
  background: #fff; border-radius: 8px; padding: 10px 18px;
  display: inline-block; margin-bottom: 20px;
}
.footer-logo-img { height: 42px; width: auto; display: block; }
@media (max-width: 680px) { .nav-logo-img { height: 40px; } }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.nav {
  position: fixed; top: 2px; left: 0; right: 0; z-index: 200;
  height: var(--r-nav);
  display: flex; align-items: center;
  padding: 0 var(--r-side);
  transition: background .35s, box-shadow .35s;
}
.nav.solid { background: var(--white); box-shadow: 0 1px 0 var(--rule); }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; margin: 0 auto; }
.nav-links a {
  font-size: 13px; font-weight: 400; color: rgba(12,26,14,.72);
  transition: color .2s; letter-spacing: .01em;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--green); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--green); color: #fff;
  padding: 9px 22px; border-radius: 6px;
  font-family: var(--f-head); font-size: 13px; font-weight: 700;
  letter-spacing: -.01em; transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--green-mid); transform: translateY(-1px); }
.nav-burger { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; min-width: 44px; min-height: 44px; }
.nav-burger span { width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: all .25s; }
.nav-mobile {
  display: none; position: fixed; inset: 0; top: var(--r-nav); z-index: 199;
  background: var(--white); padding: 32px var(--r-side);
  flex-direction: column; gap: 24px;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--f-head); font-size: 28px; font-weight: 800;
  color: var(--ink); letter-spacing: -.03em;
  border-bottom: 1px solid var(--rule); padding-bottom: 24px;
}
.nav-mobile a.active { color: var(--green); }
.mobile-cta {
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff !important;
  font-family: var(--f-head); font-size: 17px !important; font-weight: 700 !important;
  border-bottom: none !important; border-radius: 8px;
  padding: 16px !important; margin-top: 4px;
}
.nav-social { display: flex; gap: 2px; }
.ns-link {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px; color: var(--soft);
  transition: color .2s, background .2s;
}
.ns-link:hover { color: var(--green); background: var(--off); }
.ns-link svg { width: 16px; height: 16px; }
@media (max-width: 1024px) { .nav-social { display: none; } }

/* ─────────────────────────────────────────
   PAGE BANNER (interior pages)
───────────────────────────────────────── */
.page-banner {
  background: linear-gradient(150deg, #f2f7f4 0%, #f8fbf9 50%, #f0f6f3 100%);
  padding: calc(var(--r-nav) + 80px) var(--r-side) 80px;
  border-bottom: 1px solid var(--rule);
  position: relative; overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute; right: -60px; top: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(130,190,60,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner-inner { max-width: 700px; position: relative; z-index: 1; }
.page-banner h1 {
  font-family: var(--f-head);
  font-size: clamp(40px, 4.5vw, 68px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.04;
  color: var(--ink); margin: 16px 0 20px;
}
.page-banner h1 span { color: var(--green); }
.page-banner p { font-size: 17px; line-height: 1.8; color: var(--soft); max-width: 540px; }

/* ─────────────────────────────────────────
   HERO (homepage)
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: var(--r-nav);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 80px var(--r-side) 80px;
  background: var(--white); position: relative;
}
.hero-left::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 1px;
  background: var(--rule);
}
.hero-kicker { margin-bottom: 40px; }
.hero-kicker .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--lima);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.65); }
}
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(44px, 4.8vw, 76px);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.0; color: var(--ink);
  margin-bottom: 32px;
}
.hero-title em { font-style: normal; color: var(--green); }
.hero-body {
  font-size: 15px; line-height: 1.8; color: var(--soft);
  max-width: 400px; margin-bottom: 48px;
}
.hero-body strong { color: var(--ink); font-weight: 500; }
.hero-actions { display: flex; align-items: center; gap: 20px; }
.btn-green {
  background: var(--green); color: #fff;
  padding: 14px 28px; border-radius: 7px;
  font-family: var(--f-head); font-size: 14px; font-weight: 700;
  letter-spacing: -.01em; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(10,110,60,.25); }
.btn-green svg { width: 14px; height: 14px; }
.btn-text {
  font-size: 13px; font-weight: 500; color: var(--soft);
  display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.btn-text:hover { color: var(--ink); }
.hero-foot {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 40px;
}
.hf-item .hf-num {
  font-family: var(--f-head); font-size: 28px; font-weight: 900;
  letter-spacing: -.03em; color: var(--ink); line-height: 1;
}
.hf-item .hf-num span { color: var(--green); }
.hf-item .hf-label { font-size: 11px; color: var(--soft); margin-top: 4px; line-height: 1.4; }
.hero-right { position: relative; overflow: hidden; min-height: 560px; }
.hero-right img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,13,7,.12) 0%, transparent 60%);
}
.hero-dimar {
  position: absolute; bottom: 32px; left: 32px; z-index: 1;
  background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
  border-radius: 8px; padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.hd-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hd-text { font-size: 11px; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.hd-sub { font-size: 10px; color: var(--soft); margin-top: 1px; }

/* ─────────────────────────────────────────
   CLIENTES MARQUEE
───────────────────────────────────────── */
.clientes {
  background: var(--off); border-top: 1px solid var(--rule);
  padding: 36px var(--r-side);
  display: flex; align-items: center; gap: 48px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.clientes::-webkit-scrollbar { display: none; }
.clientes-label {
  font-size: 10px; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap; flex-shrink: 0;
}
.clientes-sep { width: 1px; height: 28px; background: var(--rule); flex-shrink: 0; }
.clientes-names { display: flex; align-items: center; gap: 48px; flex-wrap: nowrap; }
.cn {
  font-family: var(--f-head); font-size: 14px; font-weight: 700;
  color: var(--soft); white-space: nowrap; letter-spacing: -.01em; transition: color .2s;
}
.cn:hover { color: var(--green); }
.cn-logo { height: 22px; width: auto; object-fit: contain; opacity: .7; filter: grayscale(1); transition: opacity .2s, filter .2s; }
.cn-logo:hover { opacity: 1; filter: grayscale(0); }
.clientes-track {
  display: flex; align-items: center; gap: 48px;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.clientes-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SERVICIOS
───────────────────────────────────────── */
.servicios { padding: 120px var(--r-side); background: var(--white); }
.servicios-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: end; margin-bottom: 64px;
}
.servicios-header h2 {
  font-family: var(--f-head);
  font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06; color: var(--ink);
}
.servicios-header h2 span { color: var(--green); }
.servicios-header p { font-size: 15px; line-height: 1.8; color: var(--soft); max-width: 380px; }
.srv-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto; gap: 3px;
}
.srv-grid-even {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.srv-grid-even .srv-card { min-height: 420px; }
.srv-card {
  position: relative; overflow: hidden; background: var(--off);
  min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; cursor: none;
}
.srv-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,7,.88) 0%, rgba(6,13,7,.2) 60%, transparent 100%);
  z-index: 1; transition: opacity .4s;
}
.srv-card:hover::before { opacity: .92; }
.srv-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.srv-card:hover img { transform: scale(1.04); }
.srv-card-inner { position: relative; z-index: 2; color: #fff; }
.srv-card-inner .srv-num {
  font-family: var(--f-head); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; color: var(--lima); margin-bottom: 8px;
}
.srv-card-inner h3 {
  font-family: var(--f-head); font-size: 22px; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 8px; line-height: 1.15;
}
.srv-card-inner p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.6); }
.srv-card.featured { grid-row: span 2; min-height: 560px; }
.srv-card.featured .srv-card-inner h3 { font-size: 30px; }
.srv-bottom {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 3px; margin-top: 3px;
}
.srv-mini {
  background: var(--off); padding: 32px;
  border-top: 2px solid transparent;
  transition: border-color .25s, background .25s;
}
.srv-mini:hover { border-color: var(--green); background: var(--white); }
.srv-mini .srv-num {
  font-family: var(--f-head); font-size: 10px; font-weight: 700;
  letter-spacing: .12em; color: var(--green); margin-bottom: 14px;
}
.srv-mini h3 {
  font-family: var(--f-head); font-size: 16px; font-weight: 800;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 8px; line-height: 1.25;
}
.srv-mini p { font-size: 12.5px; line-height: 1.7; color: var(--soft); }
.srv-cta-row { margin-top: 48px; display: flex; align-items: center; gap: 20px; }
.link-arrow {
  font-family: var(--f-head); font-size: 13px; font-weight: 700;
  color: var(--green); display: flex; align-items: center; gap: 8px;
  transition: gap .2s;
}
.link-arrow:hover { gap: 14px; }
.link-arrow svg { width: 14px; height: 14px; stroke: var(--green); fill: none; }

/* Services full-page detail blocks */
.srv-detail {
  padding: 80px var(--r-side);
  border-top: 1px solid var(--rule);
}
.srv-detail:nth-child(even) { background: var(--off); }
.srv-detail-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; max-width: 1200px;
}
.srv-detail-inner.reverse .srv-detail-visual { order: -1; }
.srv-detail-num {
  font-family: var(--f-head); font-size: 72px; font-weight: 900;
  letter-spacing: -.05em; color: rgba(10,110,60,.06);
  line-height: 1; margin-bottom: -16px;
}
.srv-detail h2 {
  font-family: var(--f-head); font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06; color: var(--ink);
  margin: 16px 0 20px;
}
.srv-detail h2 span { color: var(--green); }
.srv-detail > .srv-detail-inner > .srv-detail-text > p {
  font-size: 15px; line-height: 1.8; color: var(--soft); margin-bottom: 32px;
}
.srv-features { display: flex; flex-direction: column; gap: 12px; }
.srv-feature {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px;
  background: var(--white); border: 1px solid var(--rule); border-radius: 8px;
}
.srv-detail:nth-child(even) .srv-feature { background: var(--white); }
.sf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0; margin-top: 5px;
}
.sf-body h3 {
  font-family: var(--f-head); font-size: 14px; font-weight: 800;
  color: var(--ink); margin-bottom: 3px; letter-spacing: -.01em;
}
.sf-body p { font-size: 12.5px; color: var(--soft); line-height: 1.65; }
.srv-detail-visual { border-radius: 8px; overflow: hidden; height: 460px; }
.srv-detail-visual img { width: 100%; height: 100%; object-fit: cover; }
.srv-dimar-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff;
  border-radius: 6px; padding: 10px 18px;
  font-family: var(--f-head); font-size: 12px; font-weight: 700;
  letter-spacing: .06em; margin-bottom: 24px;
}
.srv-dimar-badge svg { width: 14px; height: 14px; fill: #fff; }
.certs-strip {
  background: var(--off); border-top: 1px solid var(--rule);
  padding: 56px var(--r-side);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 32px; justify-content: center;
}
.certs-strip-badges { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.certs-strip .btn-green { margin-left: auto; }
@media (max-width: 680px) {
  .certs-strip .btn-green { margin-left: 0; width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────
   PROYECTOS
───────────────────────────────────────── */
.proyectos { background: var(--off); border-top: 1px solid var(--rule); padding: 120px 0; }
.proyectos-header {
  padding: 0 var(--r-side);
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px;
}
.proyectos-header h2 {
  font-family: var(--f-head); font-size: clamp(36px, 3.6vw, 52px);
  font-weight: 900; letter-spacing: -.04em;
}
.proyectos-header h2 span { color: var(--green); }
.proyectos-header p { font-size: 14px; color: var(--soft); max-width: 280px; text-align: right; line-height: 1.7; }
.proy-item { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--rule); }
.proy-item:last-child { border-bottom: 1px solid var(--rule); }
.proy-item.reverse { direction: rtl; }
.proy-item.reverse > * { direction: ltr; }
.proy-photo { overflow: hidden; height: 480px; position: relative; }
.proy-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.proy-item:hover .proy-photo img { transform: scale(1.04); }
.proy-text {
  padding: 64px var(--r-side);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.proy-index {
  font-family: var(--f-head); font-size: 72px; font-weight: 900;
  letter-spacing: -.05em; color: rgba(10,110,60,.07);
  line-height: 1; margin-bottom: -16px;
}
.proy-tag { margin-bottom: 16px; }
.proy-text h3 {
  font-family: var(--f-head); font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 900; letter-spacing: -.03em; color: var(--ink); margin-bottom: 16px; line-height: 1.1;
}
.proy-text p { font-size: 14px; line-height: 1.8; color: var(--soft); margin-bottom: 32px; }
.proy-text p strong { color: var(--green); font-weight: 700; }
.proy-stats { display: flex; gap: 32px; }
.ps-num {
  font-family: var(--f-head); font-size: 22px; font-weight: 900;
  letter-spacing: -.03em; color: var(--green);
}
.ps-label { font-size: 11px; color: var(--muted); margin-top: 2px; }
.proy-cta-row { padding: 0 var(--r-side); margin-top: 60px; }

/* ─────────────────────────────────────────
   GALERÍA HORIZONTAL
───────────────────────────────────────── */
.gallery-section { background: var(--black); padding: 80px 0 0; overflow: hidden; }
.gallery-header {
  padding: 0 var(--r-side) 56px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.gallery-header h2 {
  font-family: var(--f-head); font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 900; letter-spacing: -.04em; color: #fff; line-height: 1.05;
}
.gallery-header h2 span { color: var(--lima); }
.gallery-header p { font-size: 13px; color: rgba(255,255,255,.45); max-width: 220px; text-align: right; line-height: 1.7; }
.gallery-strip {
  display: flex; gap: 3px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  cursor: none;
}
.gallery-strip::-webkit-scrollbar { height: 2px; }
.gallery-strip::-webkit-scrollbar-track { background: rgba(255,255,255,.06); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--lima); border-radius: 1px; }
.gallery-item {
  flex-shrink: 0; width: 360px; height: 480px;
  position: relative; overflow: hidden;
  scroll-snap-align: start;
}
.gallery-item:first-child { width: 480px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,13,7,.6) 0%, transparent 50%);
}
.gallery-hint {
  padding: 20px var(--r-side) 32px;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3);
}
.gallery-hint svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.3); }

/* ─────────────────────────────────────────
   TRAYECTORIA
───────────────────────────────────────── */
.trayectoria {
  background: var(--black); color: #fff;
  padding: 120px var(--r-side);
  position: relative; overflow: hidden;
}
.tray-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
.tray-section-label { position: relative; z-index: 1; margin-bottom: 64px; }
.tray-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.tray-left h2 {
  font-family: var(--f-head);
  font-size: clamp(36px, 3.8vw, 54px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.04;
  margin-bottom: 24px;
}
.tray-left h2 span { color: var(--lima); }
.tray-left p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.45); max-width: 400px; }
.tray-stats { display: flex; flex-direction: column; gap: 0; }
.tray-stat {
  padding: 28px 0; border-bottom: 1px solid var(--rule-dark);
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
}
.tray-stat:first-child { border-top: 1px solid var(--rule-dark); }
.ts-num {
  font-family: var(--f-head); font-size: 52px; font-weight: 900;
  letter-spacing: -.05em; line-height: 1; color: #fff; min-width: 96px;
}
.ts-num sup { font-size: 24px; color: var(--lima); vertical-align: super; }
.ts-title { font-family: var(--f-head); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ts-desc { font-size: 12px; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ─────────────────────────────────────────
   VISIÓN
───────────────────────────────────────── */
.vision-section {
  background: var(--green); color: #fff;
  padding: 120px var(--r-side);
  position: relative; overflow: hidden;
}
.vision-inner {
  display: grid; grid-template-columns: auto 1fr; gap: 64px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.vision-year {
  font-family: var(--f-head); font-weight: 900; letter-spacing: -.05em;
  font-size: clamp(90px, 12vw, 180px); line-height: 1; color: var(--lima);
}
.vision-text h2 {
  font-family: var(--f-head);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.1;
  margin-bottom: 20px;
}
.vision-text h2 span { color: var(--lima); }
.vision-text p { font-size: 15px; line-height: 1.85; color: rgba(255,255,255,.75); max-width: 560px; }

/* ─────────────────────────────────────────
   EQUIPO
───────────────────────────────────────── */
.equipo-section { padding: 120px var(--r-side); background: var(--white); }
.equipo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.equipo-photo { border-radius: 4px; overflow: hidden; height: 520px; }
.equipo-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 75%; }
.equipo-text h2 {
  font-family: var(--f-head); font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06; color: var(--ink); margin: 24px 0;
}
.equipo-text h2 span { color: var(--green); }
.equipo-text p { font-size: 15px; line-height: 1.8; color: var(--soft); margin-bottom: 16px; }
.certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; }
.cert {
  background: var(--off); border: 1px solid var(--rule); border-radius: 4px; padding: 7px 14px;
  font-family: var(--f-head); font-size: 11px; font-weight: 700; color: var(--green); letter-spacing: .04em;
}

/* ─────────────────────────────────────────
   GRÚAS / ANTICORROSIÓN
───────────────────────────────────────── */
.gruas-section {
  background: var(--off); border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule); padding: 120px var(--r-side);
}
.gruas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gruas-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  border-radius: 6px; padding: 8px 16px;
  font-family: var(--f-head); font-size: 12px; font-weight: 700;
  letter-spacing: .04em; margin-bottom: 28px;
}
.gruas-tag svg { width: 14px; height: 14px; stroke: var(--lima); fill: none; }
.gruas-text h2 {
  font-family: var(--f-head); font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.08; color: var(--ink); margin-bottom: 20px;
}
.gruas-text h2 span { color: var(--green); }
.gruas-text > p { font-size: 15px; line-height: 1.8; color: var(--soft); margin-bottom: 40px; }
.gruas-features { display: flex; flex-direction: column; gap: 3px; }
.gf {
  display: flex; align-items: flex-start; gap: 0;
  background: var(--white); border: 1px solid var(--rule); border-radius: 6px;
  overflow: hidden;
}
.gf-accent { width: 4px; flex-shrink: 0; background: var(--green); align-self: stretch; }
.gf-body { padding: 18px 20px; }
.gf h4 {
  font-family: var(--f-head); font-size: 14px; font-weight: 800;
  color: var(--ink); margin-bottom: 4px; letter-spacing: -.01em;
}
.gf p { font-size: 12.5px; color: var(--soft); line-height: 1.65; }
.gruas-visual { display: flex; flex-direction: column; gap: 8px; }
.gruas-visual-main { height: 360px; overflow: hidden; border-radius: 4px; }
.gruas-visual-main img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s; }
.gruas-visual-main:hover img { transform: scale(1.04); }
.gruas-visual-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gruas-visual-pair-item { height: 200px; overflow: hidden; border-radius: 4px; }
.gruas-visual-pair-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s; }
.gruas-visual-pair-item:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────
   HISTORIA / TIMELINE  (3D card design)
───────────────────────────────────────── */
.historia-section {
  background: linear-gradient(150deg, #f2f7f4 0%, #f8fbf9 50%, #f0f6f3 100%);
  border-top: 1px solid var(--rule);
  padding: 120px var(--r-side);
}
.historia-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 96px; align-items: start; }
.historia-intro { position: sticky; top: 104px; }
.historia-intro h2 {
  font-family: var(--f-head); font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06; color: var(--ink); margin: 16px 0 20px;
}
.historia-intro h2 span {
  background: linear-gradient(135deg, var(--green) 10%, var(--lima) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.historia-intro p { font-size: 15px; line-height: 1.8; color: var(--soft); }
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--lima) 70%, rgba(10,110,60,.15));
}
.tl-item { position: relative; margin-bottom: 24px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: -40px; top: 28px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--green); z-index: 2;
  box-shadow: 0 0 0 4px var(--off);
}
.tl-item.tl-future::before { border-color: var(--lima); background: var(--lima); }
.tl-card {
  background: var(--white);
  border: 1px solid rgba(10,110,60,.08);
  border-radius: 16px;
  padding: 28px 36px 26px 36px;
  position: relative; overflow: hidden;
  box-shadow:
    0 1px 2px rgba(0,0,0,.03),
    0 4px 16px rgba(10,110,60,.05),
    0 12px 36px rgba(10,110,60,.04),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .4s cubic-bezier(.19,1,.22,1), box-shadow .4s ease;
}
.tl-card:hover {
  transform: perspective(700px) rotateX(1.5deg) rotateY(-1.5deg) translateY(-6px) translateX(5px);
  box-shadow:
    0 2px 6px rgba(0,0,0,.04),
    0 12px 40px rgba(10,110,60,.10),
    0 28px 60px rgba(10,110,60,.07),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.tl-card::before {
  content: attr(data-year);
  position: absolute; right: 18px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-head); font-size: 82px; font-weight: 900;
  letter-spacing: -.06em; line-height: 1;
  color: rgba(10,110,60,.045);
  pointer-events: none; user-select: none; z-index: 0;
}
.tl-card::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--green) 0%, var(--lima) 100%);
  border-radius: 16px 0 0 16px;
}
.tl-tag, .tl-year, .tl-card h3, .tl-card p { position: relative; z-index: 1; }
.tl-tag {
  display: inline-block;
  background: rgba(10,110,60,.06); border: 1px solid rgba(10,110,60,.12);
  border-radius: 5px; padding: 4px 12px;
  font-family: var(--f-head); font-size: 9px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--green);
  margin-bottom: 12px;
}
.tl-year {
  font-family: var(--f-head); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.tl-card h3 {
  font-family: var(--f-head); font-size: 17px; font-weight: 800;
  letter-spacing: -.025em; color: var(--ink); margin-bottom: 10px; line-height: 1.25;
}
.tl-card p { font-size: 13.5px; line-height: 1.82; color: var(--soft); }
.tl-item.tl-future .tl-card {
  background: var(--green); border-color: transparent;
  box-shadow: 0 8px 32px rgba(10,110,60,.3), 0 24px 56px rgba(10,110,60,.18),
              inset 0 1px 0 rgba(255,255,255,.08);
}
.tl-item.tl-future .tl-card:hover {
  box-shadow: 0 12px 48px rgba(10,110,60,.4), 0 36px 72px rgba(10,110,60,.22),
              inset 0 1px 0 rgba(255,255,255,.08);
}
.tl-item.tl-future .tl-card::before { color: rgba(255,255,255,.06); }
.tl-item.tl-future .tl-card::after { background: var(--lima); }
.tl-item.tl-future .tl-tag { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--lima); }
.tl-item.tl-future .tl-year { color: rgba(255,255,255,.5); }
.tl-item.tl-future .tl-card h3 { color: #fff; }
.tl-item.tl-future .tl-card p { color: rgba(255,255,255,.72); }

/* ─────────────────────────────────────────
   TESTIMONIOS
───────────────────────────────────────── */
.testimonios { background: var(--off); border-top: 1px solid var(--rule); padding: 120px var(--r-side); }
.testi-header { margin-bottom: 64px; }
.testi-header h2 {
  font-family: var(--f-head);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06; color: var(--ink);
  margin-top: 16px;
}
.testi-header h2 span { color: var(--green); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 14px; padding: 40px 36px 36px;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 8px 28px rgba(10,110,60,.05),
              inset 0 1px 0 rgba(255,255,255,.8);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform .4s cubic-bezier(.19,1,.22,1), box-shadow .4s ease;
}
.testi-card:hover {
  transform: perspective(700px) rotateX(1.5deg) rotateY(-1deg) translateY(-5px);
  box-shadow: 0 8px 24px rgba(10,110,60,.08), 0 24px 56px rgba(10,110,60,.1),
              inset 0 1px 0 rgba(255,255,255,.8);
}
.testi-q {
  position: absolute; top: 16px; right: 24px;
  font-family: var(--f-head); font-size: 80px; font-weight: 900;
  color: var(--lima); opacity: .25; line-height: 1; user-select: none;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.testi-stars svg { width: 14px; height: 14px; fill: var(--lima); }
.testi-text { font-size: 14.5px; line-height: 1.85; color: var(--soft); margin-bottom: 28px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-dot {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-dot svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.testi-name { font-family: var(--f-head); font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.testi-role { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ─────────────────────────────────────────
   VIDEO
───────────────────────────────────────── */
.video-section { background: var(--white); border-top: 1px solid var(--rule); padding: 120px var(--r-side); }
.video-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.video-text h2 {
  font-family: var(--f-head); font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.08; color: var(--ink); margin: 20px 0;
}
.video-text h2 span { color: var(--green); }
.video-text p { font-size: 14px; line-height: 1.8; color: var(--soft); margin-bottom: 28px; }
.video-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.vb {
  border: 1px solid var(--rule); border-radius: 4px; background: var(--off);
  padding: 6px 14px; font-size: 11px; font-weight: 600;
  color: var(--green); letter-spacing: .06em;
}
.video-facade {
  position: relative; border-radius: 8px; overflow: hidden;
  background: #111; cursor: pointer; aspect-ratio: 16/9;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: opacity .3s; }
.video-facade:hover img { opacity: .4; }
.video-coming {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: #fff; text-align: center; padding: 24px;
}
.video-play-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, transform .2s;
}
.video-facade:hover .video-play-ring { border-color: var(--lima); transform: scale(1.08); }
.video-play-ring svg { width: 28px; height: 28px; fill: #fff; margin-left: 4px; }
.video-coming-label {
  font-family: var(--f-head); font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--lima);
}
.video-coming-sub { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; max-width: 200px; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ─────────────────────────────────────────
   BANDA FOTOGRÁFICA
───────────────────────────────────────── */
.photo-band { position: relative; height: 480px; overflow: hidden; }
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.photo-band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(6,13,7,.88) 0%, rgba(6,13,7,.55) 50%, rgba(6,13,7,.2) 100%);
}
.photo-band-inner {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 var(--r-side); max-width: 640px;
}
.photo-band-inner blockquote {
  font-family: var(--f-head); font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 900; letter-spacing: -.03em; line-height: 1.12;
  color: #fff; margin-bottom: 24px;
}
.photo-band-inner blockquote em { font-style: normal; color: var(--lima); }
.photo-band-inner cite {
  font-size: 12px; font-style: normal; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ─────────────────────────────────────────
   CONTACTO / FORMULARIO
───────────────────────────────────────── */
.contacto { background: var(--white); padding: 120px var(--r-side); }
.contacto-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.contacto-text h2 {
  font-family: var(--f-head); font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.05; color: var(--ink); margin: 24px 0;
}
.contacto-text h2 span { color: var(--green); }
.contacto-text p { font-size: 15px; line-height: 1.8; color: var(--soft); margin-bottom: 40px; }
.contacto-datos { display: flex; flex-direction: column; gap: 0; }
.cd-item { display: flex; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.cd-item:first-child { border-top: 1px solid var(--rule); }
.cd-ico {
  width: 40px; height: 40px; border-radius: 8px;
  background: var(--off); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cd-ico svg { width: 16px; height: 16px; stroke: var(--green); }
.cd-label { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cd-val { font-family: var(--f-head); font-size: 15px; font-weight: 700; color: var(--ink); }
.cta-box {
  background: var(--green); border-radius: 12px; padding: 48px;
  color: #fff; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-box-inner { position: relative; z-index: 1; }
.cta-box h3 {
  font-family: var(--f-head); font-size: 28px; font-weight: 900;
  letter-spacing: -.03em; margin-bottom: 12px; line-height: 1.15;
}
.cta-box p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 32px; }
.btn-white {
  background: #fff; color: var(--ink);
  padding: 13px 24px; border-radius: 7px;
  font-family: var(--f-head); font-size: 14px; font-weight: 700;
  letter-spacing: -.01em; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.btn-white svg { width: 14px; height: 14px; }

/* Contact form */
.form-section { background: var(--off); border-top: 1px solid var(--rule); padding: 80px var(--r-side); }
.form-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.form-text h2 {
  font-family: var(--f-head); font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.06; color: var(--ink); margin: 16px 0 20px;
}
.form-text h2 span { color: var(--green); }
.form-text p { font-size: 15px; line-height: 1.8; color: var(--soft); margin-bottom: 32px; }
.form-promise { display: flex; flex-direction: column; gap: 14px; }
.fp-item { display: flex; align-items: flex-start; gap: 12px; }
.fp-icon {
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fp-icon svg { width: 14px; height: 14px; stroke: #fff; fill: none; }
.fp-body h4 { font-family: var(--f-head); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.fp-body p { font-size: 12px; color: var(--soft); line-height: 1.5; }
.contact-form {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 16px; padding: 48px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block; font-family: var(--f-head); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--off); border: 1px solid var(--rule);
  border-radius: 8px; font-family: var(--f-body); font-size: 16px; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(10,110,60,.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2355665C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--green); color: #fff;
  border: none; border-radius: 8px;
  font-family: var(--f-head); font-size: 15px; font-weight: 700;
  letter-spacing: -.01em; cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(10,110,60,.3); }
.form-submit svg { width: 16px; height: 16px; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.6; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-banner {
  display: none; align-items: center; gap: 10px;
  padding: 14px 18px; border-radius: 10px; margin-bottom: 20px;
  font-size: 13.5px; font-weight: 500; line-height: 1.5;
}
.form-banner.show { display: flex; }
.form-banner.ok { background: rgba(10,110,60,.08); border: 1px solid rgba(10,110,60,.25); color: var(--green); }
.form-banner.err { background: rgba(200,50,50,.08); border: 1px solid rgba(200,50,50,.25); color: #B8342F; }

/* ─────────────────────────────────────────
   UBICACIÓN
───────────────────────────────────────── */
.ubicacion { background: var(--white); border-top: 1px solid var(--rule); padding: 120px var(--r-side); }
.ubicacion-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: start; }
.ubicacion-text h2 {
  font-family: var(--f-head); font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.08; color: var(--ink); margin: 20px 0 24px;
}
.ubicacion-text h2 span { color: var(--green); }
.addr-cards { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.addr-card {
  background: var(--off); border: 1px solid var(--rule); border-radius: 8px;
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
}
.addr-ico {
  width: 40px; height: 40px; border-radius: 8px; background: var(--green);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.addr-ico svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.addr-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.addr-val { font-family: var(--f-head); font-size: 14px; font-weight: 700; color: var(--ink); }
.map-wrap { border-radius: 8px; overflow: hidden; border: 1px solid var(--rule); height: 460px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─────────────────────────────────────────
   BANDERAS
───────────────────────────────────────── */
.flag-strip { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
.flag-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  border-radius: 6px; padding: 7px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  font-family: var(--f-head); font-size: 10px; font-weight: 700;
  letter-spacing: .08em; color: var(--ink);
}
.flag-badge svg { border-radius: 2px; flex-shrink: 0; }
.flag-inline { display: flex; align-items: center; gap: 6px; }
.flag-inline svg { border-radius: 2px; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: var(--ink); color: #fff; padding: 72px var(--r-side) 40px; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-dark); margin-bottom: 32px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.75; max-width: 240px; margin-bottom: 20px; }
.footer-certs { display: flex; flex-wrap: wrap; gap: 6px; }
.fc-badge {
  border: 1px solid rgba(255,255,255,.12); border-radius: 4px;
  padding: 4px 10px; font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,.6); letter-spacing: .06em;
}
.footer-col h4 {
  font-family: var(--f-head); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.55); }
.footer-lima { color: var(--lima); font-weight: 600; }
.footer-social { display: flex; gap: 8px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: border-color .2s, color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--lima); color: var(--lima); background: rgba(130,190,60,.08); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.ctc-social { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.ctc-social a {
  display: flex; align-items: center; gap: 8px;
  background: var(--off); border: 1px solid var(--rule); border-radius: 8px;
  padding: 10px 16px; font-family: var(--f-head); font-size: 12px; font-weight: 700;
  color: var(--ink); letter-spacing: .01em; transition: border-color .2s, color .2s;
}
.ctc-social a:hover { border-color: var(--green); color: var(--green); }
.ctc-social svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }

/* ─────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --r-side: 32px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vw; min-height: 320px; }
  .hero-left { padding: 60px var(--r-side); }
  .servicios-header { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .srv-card.featured { grid-row: auto; }
  .srv-grid-even { grid-template-columns: 1fr; }
  .proy-item, .proy-item.reverse { grid-template-columns: 1fr; direction: ltr; }
  .proy-item.reverse .proy-text { order: -1; }
  .tray-inner { grid-template-columns: 1fr; gap: 48px; }
  .vision-inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .equipo-inner { grid-template-columns: 1fr; }
  .gruas-inner { grid-template-columns: 1fr; }
  .contacto-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proyectos-header { flex-direction: column; align-items: flex-start; }
  .proyectos-header p { text-align: left; max-width: 100%; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-header p { text-align: left; max-width: 100%; }
  .gallery-item { width: 280px; height: 360px; }
  .gallery-item:first-child { width: 340px; }
  .historia-inner { grid-template-columns: 1fr; }
  .historia-intro { position: static; }
  .form-inner { grid-template-columns: 1fr; }
  .srv-detail-inner { grid-template-columns: 1fr; }
  .srv-detail-inner.reverse .srv-detail-visual { order: 0; }
  .ubicacion-inner { grid-template-columns: 1fr; }
  .video-inner { grid-template-columns: 1fr; }
  .nav-social { display: none; }
}
@media (max-width: 680px) {
  :root { --r-side: 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-foot { flex-wrap: wrap; gap: 24px; }
  .srv-bottom { grid-template-columns: 1fr; }
  .clientes { gap: 28px; }
  .clientes-names { gap: 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .proy-stats { flex-wrap: wrap; gap: 20px; }
  .gruas-visual-pair { grid-template-columns: 1fr; }
  .photo-band { height: 360px; }
  .lang-toggle .lt-label { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .map-wrap { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}
@media (max-width: 1024px) and (min-width: 681px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
