*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #005A3C;
  --green-dark:   #003D29;
  --green-darker: #021F15;
  --green-bg:     #EAF2EE;
  --green-bg-2:   #D4E2DA;
  --text:         #1A1A1A;
  --text-2:       #4A4A44;
  --text-3:       #888882;
  --bg:           #FFFFFF;
  --bg-alt:       #F5F5F2;
  --bg-warm:      #FAFAF5;
  --border:       #E0E0D8;
  --border-soft:  #ECECE5;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --max: 1120px;
  --max-narrow: 880px;
  --pad: 64px;
  --radius-sm: 5px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --t-fast: 0.18s ease;
  --t-normal: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; transition: color var(--t-fast); }

h1, h2, h3, h4, h5 { letter-spacing: -0.02em; line-height: 1.13; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(36px, 4.8vw, 64px); letter-spacing: -0.025em; line-height: 1.07; }
h2 { font-size: clamp(26px, 3.2vw, 42px); }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
p { line-height: 1.72; color: var(--text-2); }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 76px; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-normal);
}
nav.scrolled { box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); }

.nav-left { display: flex; align-items: center; gap: 40px; }
.nav-logo { height: 52px; transition: opacity var(--t-fast); }
.nav-logo:hover { opacity: 0.82; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-2);
  transition: color var(--t-fast);
}
.nav-links a:hover { color: var(--green); }

.nav-cta {
  font-size: 13.5px; font-weight: 600; color: var(--green);
  padding: 9px 20px;
  border: 1.5px solid var(--green); border-radius: var(--radius-sm);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--green); color: #fff; }

.menu-toggle {
  display: none; background: none; border: none;
  width: 44px; height: 44px; cursor: pointer;
  align-items: center; justify-content: center;
}
.menu-toggle svg { width: 24px; height: 24px; stroke: var(--text); }

.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 56% 44%;
  position: relative;
  background: var(--green);
}
.hero-left {
  background: var(--green);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px var(--pad) 88px;
  position: relative; z-index: 1;
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 35%; display: block;
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0, 30, 18, 0.55) 0%, rgba(0, 30, 18, 0.12) 50%, transparent 100%);
  pointer-events: none;
}

.hero-inner { max-width: 600px; }
.hero-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.45);
  margin-bottom: 32px;
}
.hero h1 { color: #fff; margin-bottom: 28px; }
.hero h1 .muted { color: rgba(255, 255, 255, 0.38); }
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px); color: rgba(255, 255, 255, 0.72);
  max-width: 510px; line-height: 1.72; margin-bottom: 44px;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green);
  font-size: 14.5px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  transition: opacity var(--t-fast), transform var(--t-fast);
}
.btn-white:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-size: 14.5px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: all var(--t-fast);
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.7); }

.scroll-hint {
  position: absolute; bottom: 36px; left: var(--pad);
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
}
.scroll-hint span { display: block; width: 28px; height: 1px; background: rgba(255, 255, 255, 0.28); }

.section-pad { padding: 96px var(--pad); }
.inner { max-width: var(--max); margin: 0 auto; }
.inner-narrow { max-width: var(--max-narrow); margin: 0 auto; }

.eyebrow {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.eyebrow-white { color: rgba(255, 255, 255, 0.5); }
.eyebrow-muted { color: var(--text-3); }
.lead { font-size: 17px; color: var(--text-2); line-height: 1.72; max-width: 660px; }

.photo-strip {
  height: 320px; overflow: hidden; position: relative;
}
.photo-strip img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%; display: block;
}
.photo-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 40, 25, 0.1) 0%, rgba(0, 50, 30, 0.32) 100%);
  pointer-events: none;
}

.overview-section { background: var(--bg-alt); position: relative; overflow: hidden; }
.overview-head { margin-bottom: 56px; position: relative; max-width: 720px; }
.overview-symbol-bg {
  position: absolute; right: -40px; top: -40px;
  width: 220px; opacity: 0.05; pointer-events: none;
}

.overview-wrap {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; background: var(--bg); position: relative;
}
.overview-wrap::before {
  content: 'Caja de herramientas';
  position: absolute; top: -11px; left: 28px;
  padding: 0 12px; background: var(--bg-alt);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-3);
}

.overview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}

.ov-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border: 1.5px solid var(--green-dark);
  color: #fff;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 24px 28px 0;
  position: relative;
  overflow: hidden;
  min-height: 0;
}
.ov-card.featured::after {
  content: ''; position: absolute;
  width: 220px; height: 220px;
  background: url('../img/isotipo-gamu.png') center / contain no-repeat;
  right: -50px; top: -50px;
  opacity: 0.08; pointer-events: none;
}
.ov-card.featured:hover {
  border-color: var(--green-darker);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 90, 60, 0.24);
}
.ov-card.featured .ov-icon {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  width: 26px; height: 26px;
}
.ov-card.featured h3 {
  font-size: 20px; line-height: 1.22;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.014em;
}
.ov-card.featured p {
  font-size: 13.5px; color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-bottom: 16px;
}
.ov-card.featured .ov-featured-left {
  padding-bottom: 18px;
  position: relative; z-index: 1;
}
.ov-card.featured .ov-featured-right {
  display: flex; flex-direction: column;
  justify-content: center;
  padding-bottom: 18px;
  position: relative; z-index: 1;
}
.ov-card.featured .ov-featured-meta {
  display: grid; gap: 8px;
}
.ov-card.featured .ov-featured-meta-item {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  display: flex; gap: 8px; align-items: flex-start;
}
.ov-card.featured .ov-featured-meta-item svg {
  flex-shrink: 0; margin-top: 2px;
  color: #5BBF8A;
  width: 14px; height: 14px;
}
.ov-card.featured .ov-cta-btn {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-column: 1 / -1;
  margin: 0 -28px;
  padding: 13px 28px;
  font-size: 13px;
}
.ov-card.featured:hover .ov-cta-btn {
  background: #fff;
  color: var(--green);
}

.ov-card {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 28px 28px 0; display: flex;
  flex-direction: column;
  transition: border-color var(--t-normal), box-shadow var(--t-normal), transform var(--t-normal);
  background: var(--bg);
  overflow: hidden;
}
.ov-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 28px rgba(0, 90, 60, 0.12);
  transform: translateY(-3px);
}
.ov-card:hover .ov-cta-btn {
  background: var(--green); color: #fff;
}
.ov-num { display: none; }
.ov-icon { margin-bottom: 14px; color: var(--green); }
.ov-card h3 {
  font-size: 17px; font-weight: 700; line-height: 1.25;
  color: var(--text); margin-bottom: 8px;
}
.ov-card p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; margin-bottom: 22px; }

.ov-cta-btn {
  display: flex; align-items: center; justify-content: space-between;
  margin: 0 -28px;
  padding: 14px 28px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  font-size: 13px; font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
  transition: background var(--t-fast), color var(--t-fast);
}
.ov-cta-btn svg { transition: transform var(--t-fast); }
.ov-card:hover .ov-cta-btn svg { transform: translateX(3px); }

.services-header {
  background: var(--green-dark); padding: 80px var(--pad);
  display: flex; align-items: center; gap: 48px;
}
.services-header-iso {
  height: 80px; opacity: 0.92;
  filter: brightness(0) invert(1); flex-shrink: 0;
}
.services-header-text h2 { color: #fff; margin-bottom: 10px; }
.services-header-text p {
  font-size: 16px; color: rgba(255, 255, 255, 0.62);
  max-width: 600px; line-height: 1.7;
}

.svc { padding: 96px var(--pad); border-top: 1px solid var(--border); }
.svc.alt { background: var(--bg-alt); }
.svc.dark {
  background: var(--green-darker);
  border-color: transparent;
  position: relative; overflow: hidden;
}
.svc.dark::before {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: url('../img/isotipo-gamu.png') center / contain no-repeat;
  top: -100px; right: -100px;
  opacity: 0.025; pointer-events: none;
}

.svc-grid {
  display: grid; grid-template-columns: 1.3fr 0.8fr; gap: 60px;
  align-items: start; margin-top: 48px;
}
.svc-grid.flip { direction: rtl; }
.svc-grid.flip > * { direction: ltr; }

.svc-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.svc.dark .svc-num { color: rgba(255, 255, 255, 0.55); }
.svc h2 { margin-bottom: 12px; }
.svc.dark h2 { color: #fff; }
.svc-tagline {
  font-size: 15px; font-style: italic; color: var(--text-3);
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.svc.dark .svc-tagline {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.13);
}

.svc p { font-size: 15.5px; color: var(--text-2); line-height: 1.78; margin-bottom: 16px; }
.svc.dark p { color: rgba(255, 255, 255, 0.85); }
.svc p:last-of-type { margin-bottom: 0; }

.deliverables { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.svc.dark .deliverables { border-color: rgba(255, 255, 255, 0.13); }
.del-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
}
.svc.dark .del-label { color: rgba(255, 255, 255, 0.5); }
.del-list { list-style: none; }
.del-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13.5px; color: var(--text-2); padding: 9px 0;
  border-bottom: 1px solid var(--border-soft); line-height: 1.5;
}
.svc.dark .del-list li {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
}
.del-list li:last-child { border-bottom: none; }
.del-list li::before {
  content: ''; display: block; width: 5px; height: 5px;
  border-radius: 50%; background: var(--green);
  flex-shrink: 0; margin-top: 6px;
}
.svc.dark .del-list li::before { background: rgba(255, 255, 255, 0.5); }

.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 28px; font-size: 13.5px; font-weight: 600;
  color: var(--green);
}
.svc.dark .svc-link { color: #fff; }
.svc-link:hover { gap: 10px; }

.case-card {
  background: #13171E; border-radius: 10px;
  padding: 26px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  position: sticky; top: 100px;
}
.svc.dark .case-card {
  background: var(--bg-warm);
  box-shadow: 0 6px 36px rgba(0, 0, 0, 0.4);
}

.case-label-top {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: #5BBF8A;
  margin-bottom: 12px; display: block;
}
.svc.dark .case-card .case-label-top { color: var(--green); }
.case-sector {
  font-size: 12px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.42); display: block;
  margin-bottom: 16px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.svc.dark .case-card .case-sector { color: var(--text-3); border-color: var(--border-soft); }
.case-card p {
  font-size: 13.5px; color: rgba(255, 255, 255, 0.78);
  line-height: 1.72; margin-bottom: 12px;
}
.svc.dark .case-card p { color: var(--text-2); }
.case-card p:last-child { margin-bottom: 0; }
.case-card strong { color: rgba(255, 255, 255, 0.96); font-weight: 600; }
.svc.dark .case-card strong { color: var(--text); }

.case-disclaimer {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px; font-style: italic;
  color: rgba(255, 255, 255, 0.35); line-height: 1.5;
}
.svc.dark .case-card .case-disclaimer {
  color: var(--text-3); border-color: var(--border-soft);
}

.process-section {
  background: var(--bg-alt);
  padding: 96px var(--pad);
  border-top: 1px solid var(--border);
}
.process-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: start; margin-top: 56px;
}
.process-photo {
  border-radius: 12px; overflow: hidden;
  height: 540px; position: sticky; top: 100px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.14);
}
.process-photo::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0, 40, 25, 0.18); pointer-events: none;
}
.process-photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;
}
.process-steps { display: grid; gap: 0; }
.step {
  padding-bottom: 36px; border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.step-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.step h4 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step p { font-size: 14.5px; color: var(--text-2); line-height: 1.68; }

.institucional-section {
  padding: 96px var(--pad);
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
  position: relative;
}
.institucional-section::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 3px;
  background: var(--green);
}
.institucional-header {
  text-align: center; max-width: 720px; margin: 0 auto 56px;
}
.institucional-header h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 16px;
}
.institucional-header p {
  font-size: 16px; color: var(--text-2);
  line-height: 1.7;
}
.sellos {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 920px; margin: 0 auto;
}
.sello {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 36px 28px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--t-normal);
}
.sello:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 90, 60, 0.08);
}
.sello-mark {
  width: 100%; max-width: 140px; min-height: 64px;
  border: 2px solid var(--green);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: var(--green);
  letter-spacing: 0.14em;
  background: var(--bg);
  margin-bottom: 16px;
}
.sello-titulo {
  font-size: 15px; font-weight: 700; color: var(--text);
  margin-bottom: 6px; letter-spacing: -0.005em;
}
.sello-desc {
  font-size: 13px; color: var(--text-2);
  line-height: 1.55;
}
.sello-img {
  width: 100%; max-width: 116px; height: auto;
  margin-bottom: 16px;
}
.sello-link {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--green);
  transition: gap var(--t-fast);
}
.sello-link:hover { gap: 9px; }

.blog-preview { background: var(--bg-warm); }
.blog-preview-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; gap: 32px; flex-wrap: wrap;
}
.blog-preview-head .lead { margin-top: 4px; }
.blog-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.blog-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  background: var(--bg);
  transition: border-color var(--t-normal), transform var(--t-normal), box-shadow var(--t-normal);
}
.blog-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 90, 60, 0.08);
}
.blog-card-cover {
  aspect-ratio: 16 / 10;
  background: var(--green-bg);
  position: relative; overflow: hidden;
}
.blog-card-cover::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0, 40, 25, 0.15);
}
.blog-card-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body {
  padding: 22px 24px 22px;
  display: flex; flex-direction: column;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 12px;
}
.blog-card-cat { color: var(--green); }
.blog-card h4 {
  font-size: 17px; font-weight: 700; line-height: 1.3;
  color: var(--text); margin-bottom: 10px;
}
.blog-card p {
  font-size: 13.5px; color: var(--text-2);
  line-height: 1.6; margin: 0 0 16px;
}
.blog-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.blog-card-author {
  display: flex; align-items: center; gap: 10px;
  min-width: 0; flex: 1;
}
.blog-card-author-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  font-size: 10.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  border: 1.5px solid var(--green-bg-2);
}
.blog-card-author-info {
  display: flex; flex-direction: column;
  min-width: 0;
}
.blog-card-author-name {
  font-size: 12px; font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.blog-card-author-date {
  font-size: 11px; color: var(--text-3);
  line-height: 1.2;
}
.blog-card-readmore {
  font-size: 12px; font-weight: 600;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-section {
  background: var(--green-dark); text-align: center;
  padding: 96px var(--pad); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  width: 460px; height: 460px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: url('../img/isotipo-gamu.png') center / contain no-repeat;
  opacity: 0.04; pointer-events: none;
}
.cta-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.cta-iso {
  height: 64px; margin: 0 auto 22px;
  filter: brightness(0) invert(1); opacity: 0.85;
}
.cta-logo-name {
  display: block; font-size: 14px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); margin-bottom: 36px;
}
.cta-section h2 { color: #fff; margin-bottom: 18px; }
.cta-section p {
  font-size: 17px; color: rgba(255, 255, 255, 0.62);
  line-height: 1.72; margin-bottom: 44px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-form-section {
  background: var(--green-dark);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.contact-form-section::before {
  content: ''; position: absolute;
  width: 540px; height: 540px;
  background: url('../img/isotipo-gamu.png') center / contain no-repeat;
  left: -180px; bottom: -180px;
  opacity: 0.035; pointer-events: none;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  max-width: var(--max);
  margin: 0 auto;
  position: relative; z-index: 1;
  min-height: 580px;
}
.contact-form-left {
  padding: 88px var(--pad) 88px 0;
  color: #fff;
  display: flex; flex-direction: column;
  justify-content: center;
}
.contact-form-left .eyebrow {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}
.contact-form-left h2 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.contact-form-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.contact-form-meta {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  display: grid; gap: 14px;
}
.contact-form-meta-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}
.contact-form-meta-item svg {
  width: 16px; height: 16px;
  color: #5BBF8A;
  flex-shrink: 0;
}
.contact-form-meta-item a {
  color: inherit;
  border-bottom: 1px solid transparent;
}
.contact-form-meta-item a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-form-right {
  background: var(--bg);
  padding: 56px;
  border-radius: var(--radius-lg) 0 0 0;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative;
}

form.contact-form {
  display: grid;
  gap: 18px;
}
form.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
form.contact-form label {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
form.contact-form label .req {
  color: var(--green);
  font-weight: 700;
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
form.contact-form input:hover,
form.contact-form select:hover,
form.contact-form textarea:hover {
  border-color: #B8C5BC;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 90, 60, 0.1);
}
form.contact-form input::placeholder,
form.contact-form textarea::placeholder {
  color: var(--text-3);
  opacity: 0.85;
}
form.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
form.contact-form textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}
form.contact-form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
form.contact-form .form-privacy {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}
form.contact-form .form-privacy a {
  color: var(--green);
  border-bottom: 1px solid rgba(0, 90, 60, 0.3);
}
form.contact-form button[type="submit"] {
  background: var(--green);
  color: #fff;
  border: none;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--t-fast), transform var(--t-fast);
}
form.contact-form button[type="submit"]:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
form.contact-form button[type="submit"] svg {
  width: 14px; height: 14px;
}

.form-success {
  display: none;
  background: var(--green-bg);
  border-left: 4px solid var(--green);
  padding: 20px 22px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 18px;
}
.form-success.visible { display: block; }
.form-success strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}
.form-success p {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .contact-form-left {
    padding: 72px var(--pad) 48px;
  }
  .contact-form-right {
    padding: 48px var(--pad);
    border-radius: 0;
  }
  form.contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

footer {
  padding: 56px var(--pad) 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-warm);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 40px;
  max-width: var(--max); margin-left: auto; margin-right: auto;
}
.footer-brand img.footer-logo { height: 44px; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; color: var(--text-2); line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text); margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: var(--text-2); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--green); }

.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--max); margin: 0 auto;
  gap: 24px; flex-wrap: wrap;
}
.footer-bottom-left { display: flex; align-items: center; gap: 14px; }
.footer-iso { height: 36px; opacity: 0.28; }
.footer-copy { font-size: 12px; color: var(--text-3); }
.footer-rrss { display: flex; gap: 14px; }
.footer-rrss a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--text-2); transition: all var(--t-fast);
}
.footer-rrss a:hover { background: var(--green); border-color: var(--green); color: #fff; }


.faq-warning {
  background: #FFF8E6; border: 1px solid #F0D278;
  padding: 12px 18px; border-radius: 6px;
  font-size: 13px; color: #7A5A0A;
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 32px;
}

@media (max-width: 960px) {
  :root { --pad: 28px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 110px var(--pad) 64px; }
  .hero-right { height: 52vw; min-height: 280px; order: 2; }
  .hero-right::after {
    background: linear-gradient(to bottom, rgba(0, 35, 22, 0.5) 0%, transparent 60%);
  }
  .scroll-hint { display: none; }

  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .ov-card.featured {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 28px 0;
    min-height: auto;
  }
  .ov-card.featured h3 { font-size: 22px; }
  .ov-card.featured .ov-cta-btn {
    margin: 0 -28px;
    padding: 14px 28px;
  }
  .svc-grid, .svc-grid.flip { grid-template-columns: 1fr; direction: ltr; gap: 40px; }
  .case-card { position: static; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }

  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-photo { display: none; }

  .sellos { grid-template-columns: 1fr; gap: 14px; }
  .sello { padding: 28px 24px; }
  .blog-preview-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 580px) {
  .section-pad, .svc, .process-section, .institucional-section { padding-left: 24px; padding-right: 24px; }
  .overview-grid { grid-template-columns: 1fr; }
  .photo-strip { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
}
