@font-face {
  font-family: 'ManropeLocal';
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: 'SourceSerifLocal';
  src: url('../fonts/source-serif-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

:root {
  --font-sans: 'ManropeLocal', Arial, sans-serif;
  --font-serif: 'SourceSerifLocal', Georgia, serif;
}


:root {
  --navy: #08233f;
  --navy-2: #0d3358;
  --teal: #087d86;
  --teal-light: #dff1f1;
  --gold: #c18b2a;
  --ink: #172331;
  --muted: #5d6876;
  --line: #dbe2e8;
  --paper: #f5f7f8;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  width: min(1280px, calc(100% - 48px));
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1.15; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px 15px 5px 5px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}
.brand strong { display: block; color: var(--navy); font-size: 14px; letter-spacing: .09em; }
.brand small { display: block; margin-top: 4px; color: var(--muted); font-size: 10px; }

.site-header nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; }
.site-header nav a { color: #41505f; transition: color .2s ease; }
.site-header nav a:hover { color: var(--teal); }

.header-cta {
  padding: 11px 18px;
  color: var(--white);
  background: var(--navy);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 800;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 70px;
  padding-block: 74px 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #77d2d2; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--font-serif), Georgia, serif; letter-spacing: -.025em; }
h1 { margin-bottom: 24px; color: var(--navy); font-size: clamp(45px, 5.25vw, 72px); line-height: .99; }
h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(36px, 4vw, 52px); line-height: 1.08; }
h3 { color: var(--navy); line-height: 1.25; }

.hero-lead { max-width: 610px; margin-bottom: 32px; color: #485766; font-size: 19px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.button {
  min-height: 50px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--teal); box-shadow: 0 10px 30px rgba(8,125,134,.2); }
.button-primary:hover { background: #076d75; box-shadow: 0 14px 34px rgba(8,125,134,.28); }
.button-secondary { color: var(--navy); border: 1px solid #cfd8df; background: var(--white); }
.button-gold { width: 100%; margin-top: 20px; color: var(--navy); background: #e6b34e; }

.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-points li::before { content: "✓"; margin-right: 7px; color: var(--teal); font-weight: 900; }

.hero-visual { position: relative; padding: 18px; background: #eaf1f3; border: 1px solid #d4e0e4; border-radius: 18px 18px 18px 70px; box-shadow: 0 28px 70px rgba(8,35,63,.14); }
.hero-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; border-radius: 10px; box-shadow: 0 15px 35px rgba(8,35,63,.15); }
.visual-label { min-height: 32px; padding: 0 4px 12px; display: flex; justify-content: space-between; color: #5f7180; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.status-dot { color: #356958; }
.status-dot::before { content: ""; width: 7px; height: 7px; margin-right: 6px; display: inline-block; background: #55a37f; border-radius: 50%; }
.visual-caption { margin: 16px 8px 2px; display: flex; justify-content: space-between; gap: 18px; font-size: 12px; }
.visual-caption strong { color: var(--navy); }
.visual-caption span { color: var(--muted); text-align: right; }

.trust-bar {
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  color: var(--white);
  background: var(--navy);
}
.trust-bar div { padding-left: 22px; border-left: 2px solid var(--gold); }
.trust-bar strong { display: block; font-size: 14px; }
.trust-bar span { display: block; color: #b9c8d5; font-size: 11px; }

.problem-section { padding-block: 120px; }
.section-heading.narrow { max-width: 780px; margin-inline: auto; text-align: center; }
.section-heading > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.outcome-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.outcome-grid article { padding: 34px; background: var(--paper); border: 1px solid transparent; border-radius: 10px; transition: border .2s ease, transform .2s ease; }
.outcome-grid article:hover { transform: translateY(-4px); border-color: #bdd9db; }
.outcome-icon { width: 40px; height: 40px; margin-bottom: 28px; display: grid; place-items: center; color: var(--teal); background: var(--teal-light); border-radius: 50%; font-size: 11px; font-weight: 800; }
.outcome-grid h3 { margin-bottom: 10px; font-size: 20px; }
.outcome-grid p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.modules-section { padding-block: 110px; color: var(--white); background: var(--navy); }
.modules-section h2, .showcase-section h2, .implementation-section h2 { color: var(--white); }
.heading-row { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.heading-row > p { margin-bottom: 24px; color: #b5c6d4 !important; font-size: 15px !important; }
.module-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #36536c; border-left: 1px solid #36536c; }
.module-grid article { min-height: 235px; padding: 34px; border-right: 1px solid #36536c; border-bottom: 1px solid #36536c; }
.module-grid article > span { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.module-grid h3 { margin: 22px 0 11px; color: var(--white); font-size: 20px; }
.module-grid p { margin-bottom: 0; color: #b9c8d5; font-size: 13px; }

.workflow { padding-block: 120px; }
.workflow-list { margin: 66px 0 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; counter-reset: steps; }
.workflow-list li { position: relative; padding-right: 25px; }
.workflow-list li:not(:last-child)::after { content: ""; position: absolute; top: 20px; left: 48px; right: 12px; height: 1px; background: #cbd6dd; }
.workflow-list li > span { position: relative; z-index: 1; width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: var(--teal); border: 6px solid var(--white); outline: 1px solid #9dc9cc; border-radius: 50%; font-size: 10px; font-weight: 800; }
.workflow-list strong { display: block; margin: 22px 0 8px; color: var(--navy); font-size: 15px; }
.workflow-list p { margin: 0; color: var(--muted); font-size: 12px; }

.showcase-section { padding-block: 105px; background: var(--navy-2); }
.showcase-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.showcase-copy > p:not(.eyebrow) { color: #bdcad5; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; }
.check-list li { padding: 13px 0; color: var(--white); border-bottom: 1px solid #45617a; font-size: 13px; }
.check-list li::before { content: "✓"; margin-right: 10px; color: #79d2d1; }
.screenshot-card { margin: 0; padding: 14px; background: #edf3f4; border-radius: 10px; box-shadow: 0 24px 60px rgba(0,0,0,.22); }
.screenshot-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; border-radius: 5px; }
.screenshot-card figcaption { padding: 12px 5px 0; color: #64727f; font-size: 10px; }

.detail-gallery { padding-block: 120px; }
.gallery-grid { margin-top: 55px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-grid figure { margin: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.gallery-grid img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
.gallery-grid figcaption { padding: 22px; }
.gallery-grid strong, .gallery-grid span { display: block; }
.gallery-grid strong { margin-bottom: 5px; color: var(--navy); font-size: 15px; }
.gallery-grid span { color: var(--muted); font-size: 12px; }

.video-section { padding-block: 30px 120px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.video-copy > p:not(.eyebrow) { color: var(--muted); }
.text-link { color: var(--teal); font-size: 13px; font-weight: 800; }
.video-frame { padding: 12px; background: var(--navy); border-radius: 13px; box-shadow: 0 25px 60px rgba(8,35,63,.18); }
.video-frame video { width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 6px; }

.implementation-section { padding-block: 110px; color: var(--white); background: var(--teal); }
.implementation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.implementation-list { border-top: 1px solid rgba(255,255,255,.35); }
.implementation-list article { padding: 24px 0; display: grid; grid-template-columns: 48px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.35); }
.implementation-list article > strong { color: #d8b66f; font-size: 11px; }
.implementation-list h3 { margin-bottom: 4px; color: var(--white); font-size: 16px; }
.implementation-list p { margin: 0; color: #d3eeee; font-size: 13px; }

.faq-section { padding-block: 120px; }
.faq-list { max-width: 880px; margin: 55px auto 0; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 24px 4px; display: flex; justify-content: space-between; gap: 20px; color: var(--navy); cursor: pointer; font-size: 15px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--teal); font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 4px 24px; color: var(--muted); font-size: 14px; }

.final-cta { padding-block: 95px; color: var(--white); background: var(--navy); }
.final-cta-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: center; }
.final-cta h2 { color: var(--white); }
.final-cta-grid > div > p:not(.eyebrow) { max-width: 650px; color: #bdcad5; }
.contact-card { padding: 36px; background: var(--white); border-radius: 10px; color: var(--ink); }
.contact-card a { display: block; }
.contact-label { margin-bottom: 8px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-main { color: var(--navy); font-family: var(--font-serif), Georgia, serif; font-size: 32px; font-weight: 700; }
.contact-card > a:not(.contact-main):not(.button) { color: var(--teal); font-size: 13px; font-weight: 700; }
.contact-card small { display: block; margin-top: 12px; color: var(--muted); font-size: 10px; text-align: center; }

footer { padding-block: 48px; background: #f2f5f6; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.footer-grid > p { margin: 0; color: var(--muted); font-size: 11px; }
.footer-links { display: flex; gap: 18px; color: #4d5d6b; font-size: 11px; font-weight: 700; }

:focus-visible { outline: 3px solid rgba(193,139,42,.65); outline-offset: 3px; }

@media (max-width: 980px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 50px; }
  .hero-copy { max-width: 760px; }
  .heading-row, .showcase-grid, .video-section, .implementation-grid, .final-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-list { grid-template-columns: 1fr; gap: 0; max-width: 650px; margin-inline: auto; }
  .workflow-list li { min-height: 125px; display: grid; grid-template-columns: 64px 1fr; }
  .workflow-list li:not(:last-child)::after { top: 48px; left: 19px; right: auto; width: 1px; height: 64px; }
  .workflow-list strong { margin-top: 7px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .section-shell, .site-header { width: min(100% - 30px, 1180px); }
  .site-header { min-height: 76px; }
  .site-header .brand small, .header-cta { display: none; }
  .hero { min-height: auto; padding-block: 56px 70px; }
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-points { flex-direction: column; gap: 6px; }
  .hero-visual { padding: 10px; border-radius: 14px 14px 14px 42px; }
  .visual-caption { display: block; }
  .visual-caption span { margin-top: 3px; display: block; text-align: left; }
  .trust-bar { grid-template-columns: 1fr; gap: 18px; }
  .problem-section, .workflow, .detail-gallery, .faq-section { padding-block: 85px; }
  .outcome-grid, .module-grid, .gallery-grid { grid-template-columns: 1fr; }
  .modules-section, .showcase-section, .implementation-section { padding-block: 80px; }
  .module-grid article { min-height: 205px; }
  .video-section { padding-bottom: 85px; }
  .contact-card { padding: 26px; }
  .contact-main { font-size: 27px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}


.proposal {
  --navy: #08264a;
  --navy-deep: #041832;
  --blue: #0c5689;
  --orange: #ff9d22;
  --ink: #132238;
  --muted: #617084;
  --line: #dce2e8;
  --soft: #f3f5f7;
  min-height: 100vh;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-sans), Arial, sans-serif;
  line-height: 1.65;
}

.proposal * { box-sizing: border-box; }
.proposal a { color: inherit; text-decoration: none; }
.proposal h1, .proposal h2, .proposal h3, .proposal p { margin-top: 0; }
.proposal h1, .proposal h2, .proposal h3 { line-height: 1.06; }
.proposal h1 { margin-bottom: 26px; font-family: "Arial Narrow", "Bahnschrift Condensed", var(--font-sans), sans-serif; font-size: clamp(58px, 7vw, 104px); font-weight: 400; letter-spacing: -.045em; }
.proposal h2 { margin-bottom: 22px; font-family: "Arial Narrow", "Bahnschrift Condensed", var(--font-sans), sans-serif; font-size: clamp(42px, 4.7vw, 68px); font-weight: 500; letter-spacing: -.04em; }
.proposal h3 { font-size: 22px; }
.proposal .eyebrow { margin-bottom: 17px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.site-header {
  position: relative;
  z-index: 20;
  min-height: 112px;
  padding: 0 max(34px, calc((100vw - 1420px) / 2));
  display: grid;
  grid-template-columns: 360px 1fr auto;
  align-items: center;
  gap: 36px;
  background: white;
}
.brand { display: block; width: min(100%, 340px); line-height: 0; }
.brand img { width: 100%; height: auto; display: block; }
.site-header nav { display: flex; justify-content: flex-end; gap: 34px; }
.site-header nav a { color: #374255; font-size: 13px; font-weight: 700; }
.site-header nav a:hover { color: var(--blue); }
.header-cta, .button { min-height: 52px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 24px; border: 1px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .03em; }
.header-cta { color: white !important; background: var(--navy); }
.button-accent { color: #10213a !important; background: var(--orange); box-shadow: 0 14px 32px rgba(255,157,34,.18); }
.button-dark { color: white !important; background: var(--navy); }
.button-outline { color: white !important; border-color: rgba(255,255,255,.5); }
.button-glass { color: white !important; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.28); backdrop-filter: blur(10px); }
.text-link { display: inline-flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 800; }

.screen-shell { overflow: hidden; background: white; border: 1px solid rgba(8,38,74,.12); box-shadow: 0 32px 75px rgba(4,24,50,.2); }
.screen-image { overflow: hidden; }
.screen-shell img { width: 100%; height: auto; display: block; }
.screen-cropped .screen-image { aspect-ratio: 1365 / 718; }
.screen-cropped .screen-image img { width: 100%; max-width: none; }
.screen-menu-zoom .screen-image { position: relative; aspect-ratio: 16 / 9; background: #173d68; }
.screen-menu-zoom .screen-image img { width: 176.5%; max-width: none; transform: translate(-21.6%, -24.3%); }
.screen-bar { height: 38px; padding: 0 14px; display: flex; align-items: center; gap: 7px; color: #6e7b8c; background: #edf1f4; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.screen-bar i { width: 7px; height: 7px; background: #9ba6b1; border-radius: 50%; }
.screen-bar i:first-child { background: var(--orange); }
.screen-bar span { margin-left: auto; }

.hero { position: relative; overflow: hidden; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.hero-continuidad { min-height: 715px; display: grid; place-items: center; color: white; background: linear-gradient(90deg, rgba(5,39,79,.96) 0%, rgba(13,47,112,.86) 54%, rgba(10,17,66,.78) 100%), url("/wordpress/gn-productos-assets/brand/banner-noroeste.jpg") center/cover no-repeat; }
.hero-continuidad::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0 62%, rgba(4,15,50,.28)); }
.hero-continuidad .hero-inner { position: relative; z-index: 2; width: min(1220px, calc(100% - 64px)); text-align: center; }
.hero-continuidad h1 { max-width: 1320px; margin-inline: auto; color: white; font-size: clamp(58px, 6.5vw, 98px); text-transform: uppercase; }
.hero-continuidad .hero-inner > p:not(.eyebrow) { max-width: 760px; margin: 0 auto 34px; color: #e1ebf6; font-size: 18px; }
.hero-continuidad .hero-actions { justify-content: center; }
.hero-continuidad .text-link { color: white; }

.trust-strip { width: min(1360px, calc(100% - 64px)); margin: -45px auto 0; position: relative; z-index: 5; display: grid; grid-template-columns: repeat(3, 1fr); background: white; box-shadow: 0 24px 70px rgba(6,31,63,.14); }
.trust-strip div { min-height: 125px; padding: 28px 34px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border: 0; }
.trust-strip strong { color: var(--navy); font-size: 17px; }
.trust-strip span { color: var(--muted); font-size: 12px; }

.split-section { width: min(1260px, calc(100% - 64px)); margin: auto; padding: 125px 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; align-items: center; }
.split-section .split-copy > p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.split-copy ul { margin: 30px 0 0; padding: 0; list-style: none; }
.split-copy li { padding: 13px 0; color: #39495d; border-bottom: 1px solid var(--line); font-size: 13px; }
.split-copy li::before { content: ""; width: 7px; height: 7px; margin-right: 12px; display: inline-block; background: var(--orange); }
.experience { grid-template-columns: 1.2fr .8fr; }
.experience .button { margin-top: 18px; }

.functions { padding: 112px max(32px, calc((100vw - 1360px) / 2)); background: var(--navy); }
.section-heading { max-width: 890px; margin-bottom: 58px; }
.section-heading h2 { color: white; }
.section-heading > p:last-child { max-width: 720px; margin-bottom: 0; color: #bfcadb; }
.function-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.function-grid article { min-height: 330px; padding: 34px; display: flex; flex-direction: column; border-top: 1px solid #3c5877; border-right: 1px solid #3c5877; border-bottom: 1px solid #3c5877; }
.function-grid article:first-child { border-left: 1px solid #3c5877; }
.function-number { color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.function-grid h3 { margin: 47px 0 15px; color: white; }
.function-grid p { margin-bottom: 24px; color: #bbc8d8; font-size: 13px; }
.function-grid a { margin-top: auto; display: flex; justify-content: space-between; color: white; font-size: 11px; font-weight: 800; }
.function-grid a span { color: var(--orange); }

.contact { min-height: 585px; padding: 100px max(34px, calc((100vw - 1260px) / 2)); display: grid; grid-template-columns: 1.12fr .88fr; gap: 110px; align-items: center; color: white; background: linear-gradient(105deg, rgba(0,74,119,.96), rgba(24,19,91,.88)), url("/wordpress/gn-productos-assets/brand/it-services-04.jpg") center/cover no-repeat; }
.contact h2 { color: white; }
.contact-copy > p:last-child { max-width: 680px; color: #d9e5f2; }
.contact-card { padding: 38px; background: rgba(3,25,58,.83); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 25px 80px rgba(0,0,0,.24); backdrop-filter: blur(12px); }
.contact-card > span { margin-bottom: 16px; display: block; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-card > a:not(.button) { display: block; color: white; font-size: 13px; }
.contact-card .contact-phone { margin-bottom: 4px; font-size: 35px !important; font-weight: 700; }
.contact-card .button { margin-top: 28px; }

.site-footer { min-height: 145px; padding: 28px max(34px, calc((100vw - 1360px) / 2)); display: grid; grid-template-columns: 300px 1fr auto; align-items: center; gap: 45px; color: #6d7886; background: #f4f5f6; font-size: 11px; }
.site-footer .brand { width: 270px; }
.site-footer p { margin: 0; }
.site-footer > div { display: flex; gap: 24px; }

/* Propuesta 1 · evolución directa de la identidad actual */
.proposal-continuidad .site-header { border-bottom: 1px solid #e5e8eb; }
.proposal-continuidad .solution .screen-shell { transform: perspective(1400px) rotateY(-3deg); }
.proposal-continuidad .function-grid article:nth-child(2) { background: var(--orange); border-color: var(--orange); }
.proposal-continuidad .function-grid article:nth-child(2) * { color: #10213a; }
.proposal-continuidad .function-grid article:nth-child(3) { background: #f0f1f2; border-color: #f0f1f2; }
.proposal-continuidad .function-grid article:nth-child(3) h3, .proposal-continuidad .function-grid article:nth-child(3) a { color: var(--navy); }
.proposal-continuidad .function-grid article:nth-child(3) p { color: #617084; }

/* Propuesta 2 · institucional premium */
.proposal-institucional { --navy: #0a2949; --orange: #d69a32; --soft: #f2f0eb; }
.topline { min-height: 34px; padding: 0 max(34px, calc((100vw - 1420px) / 2)); display: flex; align-items: center; justify-content: space-between; color: #d2dbe5; background: #071d34; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.topline a { color: white; font-weight: 800; }
.proposal-institucional .site-header { min-height: 100px; }
.proposal-institucional .header-cta { background: transparent; color: var(--navy) !important; border-color: #9cacba; }
.hero-institucional { min-height: 720px; padding: 90px max(34px, calc((100vw - 1360px) / 2)); display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; color: white; background: linear-gradient(110deg, #082643, #0c385f); }
.hero-institucional::before { content: ""; position: absolute; inset: 0; opacity: .09; background-image: linear-gradient(rgba(255,255,255,.7) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.7) 1px, transparent 1px); background-size: 70px 70px; }
.hero-institucional > * { position: relative; z-index: 2; }
.hero-institucional h1 { color: white; font-family: var(--font-serif), Georgia, serif; font-size: clamp(48px, 5.5vw, 79px); font-weight: 500; letter-spacing: -.045em; }
.hero-institucional .hero-copy > p:not(.eyebrow) { max-width: 620px; margin-bottom: 32px; color: #cbd8e4; font-size: 16px; }
.hero-institucional .hero-screen { padding: 14px; background: #d6a74f; box-shadow: 25px 25px 0 rgba(3,17,31,.34); }
.hero-institucional .screen-shell { box-shadow: none; }
.hero-proof { margin-top: 52px; padding-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.hero-proof span { padding-right: 18px; color: #c5d1dc; font-size: 10px; }
.hero-proof b { margin-bottom: 7px; display: block; color: var(--orange); font-size: 10px; }
.institutional-intro { width: min(1120px, calc(100% - 64px)); margin: auto; padding: 125px 0; }
.institutional-intro h2 { max-width: 930px; font-family: var(--font-serif), Georgia, serif; }
.intro-columns { margin-top: 45px; display: grid; grid-template-columns: 1fr 1fr; gap: 75px; color: var(--muted); }
.proposal-institucional .functions { color: var(--ink); background: #f1efe9; }
.proposal-institucional .section-heading h2, .proposal-institucional .function-grid h3, .proposal-institucional .function-grid a { color: var(--navy); }
.proposal-institucional .section-heading > p:last-child, .proposal-institucional .function-grid p { color: var(--muted); }
.proposal-institucional .function-grid article, .proposal-institucional .function-grid article:first-child { border-color: #cec9bd; }
.proposal-institucional .function-grid article { min-height: 280px; }
.proposal-institucional .function-grid p { margin-bottom: 0; }
.all-features { padding: 125px max(34px, calc((100vw - 1180px) / 2)); background: white; }
.all-features-heading { max-width: 900px; margin-bottom: 70px; }
.all-features-heading h2 { font-family: var(--font-serif), Georgia, serif; }
.all-features-heading > p:last-child { max-width: 720px; color: var(--muted); font-size: 16px; }
.all-features-list { border-top: 1px solid #cfd5da; }
.all-features-list article { padding: 48px 0; display: grid; grid-template-columns: 120px 1fr; gap: 35px; border-bottom: 1px solid #cfd5da; }
.all-features-list article:nth-child(even) { background: linear-gradient(90deg, transparent, #f7f6f2 8%, #f7f6f2 92%, transparent); }
.detail-number { padding-top: 5px; color: var(--orange); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.all-features-list article > div { display: grid; grid-template-columns: .75fr 1.25fr; column-gap: 65px; align-items: start; }
.all-features-list h3 { margin: 0; color: var(--navy); font-family: var(--font-serif), Georgia, serif; font-size: 30px; }
.all-features-list article > div > p { margin: 0; color: var(--muted); font-size: 14px; }
.all-features-list ul { grid-column: 2; margin: 22px 0 0; padding: 0; list-style: none; }
.all-features-list li { padding: 9px 0; color: #37495b; border-top: 1px solid #e1e4e7; font-size: 12px; }
.all-features-list li::before { content: ""; width: 6px; height: 6px; margin-right: 11px; display: inline-block; background: var(--orange); }
.proposal-video { padding: 120px max(34px, calc((100vw - 1260px) / 2)); display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: center; background: #f1efe9; }
.proposal-video .video-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); }
.proposal-video .text-link { margin-top: 16px; color: var(--navy); }
.proposal-video-frame { padding: 12px; background: var(--navy); border: 1px solid #193d60; box-shadow: 25px 25px 0 #d6a74f; }
.proposal-video-frame video { width: 100%; aspect-ratio: 16 / 9; display: block; object-fit: cover; background: #06182d; }
.evidence { padding: 120px max(34px, calc((100vw - 1260px) / 2)); display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: center; background: var(--navy); }
.evidence-copy { color: white; }
.evidence-copy h2 { color: white; font-family: var(--font-serif), Georgia, serif; }
.evidence-copy > p:not(.eyebrow) { color: #c6d2dd; }
.evidence .text-link { margin-top: 18px; color: var(--orange); }
.anonymous-dashboard { overflow: hidden; color: #18304a; background: #dce7f0; border: 12px solid #d4a447; box-shadow: 25px 25px 0 rgba(2,17,31,.35); }
.anonymous-top { height: 42px; padding: 0 14px; display: flex; align-items: center; gap: 7px; color: #617184; background: #edf1f4; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.anonymous-top i { width: 7px; height: 7px; background: #9aa8b5; border-radius: 50%; }
.anonymous-top i:first-child { background: var(--orange); }
.anonymous-top span { margin-left: auto; }
.anonymous-title { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; color: white; background: #123b66; }
.anonymous-title strong { font-size: 15px; }
.anonymous-title span { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.anonymous-table { margin: 18px; overflow: hidden; border: 1px solid #aebdca; }
.anonymous-head, .anonymous-row { display: grid; grid-template-columns: .55fr 1.7fr .75fr .9fr 1fr; }
.anonymous-head { color: white; background: #24567f; font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.anonymous-head span, .anonymous-row span { min-width: 0; padding: 9px 10px; border-right: 1px solid rgba(154,174,190,.55); }
.anonymous-row { color: #40536a; background: #f8fafb; border-top: 1px solid #c7d2db; font-size: 9px; }
.anonymous-row:nth-child(odd) { background: #e9f0f5; }
.anonymous-row .status { color: #165d45; background: #d8ede4; font-weight: 900; }
.anonymous-row .status.pending { color: #82520b; background: #f6e8c7; }
.anonymous-footer { padding: 0 18px 17px; display: flex; justify-content: space-between; color: #607286; font-size: 8px; }
.proposal-institucional .contact-card { background: white; color: var(--ink); border-top: 5px solid var(--orange); }
.proposal-institucional .contact-card > a:not(.button), .proposal-institucional .contact-card .contact-phone { color: var(--navy); }

/* Propuesta 3 · producto tecnológico */
.proposal-producto { --navy: #071e3a; --blue: #1478b8; --orange: #ff9c24; background: #f7f8fa; }
.proposal-producto .site-header { position: absolute; left: 0; right: 0; background: white; }
.proposal-producto .header-cta { background: var(--orange); color: #142338; }
.hero-producto { min-height: 960px; padding: 245px max(34px, calc((100vw - 1260px) / 2)) 330px; color: white; background: linear-gradient(110deg, rgba(4,24,57,.98), rgba(6,43,92,.89) 60%, rgba(22,24,87,.82)), url("/wordpress/gn-productos-assets/brand/banner-noroeste.jpg") center/cover no-repeat; }
.proposal .hero-producto { display: block; }
.hero-producto .product-glow { position: absolute; top: 90px; right: -10%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(28,131,207,.55), transparent 68%); }
.hero-producto .hero-inner { position: relative; z-index: 2; max-width: 1180px; }
.hero-producto h1 { color: white; font-family: var(--font-sans), Arial, sans-serif; font-size: clamp(60px, 6.5vw, 96px); font-weight: 800; letter-spacing: -.065em; }
.hero-producto .hero-inner > p:not(.eyebrow) { max-width: 720px; margin-bottom: 36px; color: #d8e5f4; font-size: 19px; }
.floating-screen { position: absolute; z-index: 4; left: 50%; bottom: -380px; width: min(1120px, calc(100% - 64px)); transform: translateX(-50%); }
.floating-screen .screen-shell { padding: 10px; background: white; border-radius: 15px; box-shadow: 0 42px 100px rgba(0,12,34,.42); }
.floating-screen .screen-bar { border-radius: 8px 8px 0 0; }
.product-stats { width: min(1120px, calc(100% - 64px)); margin: 450px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.product-stats div { padding: 38px 34px; border-right: 1px solid var(--line); }
.product-stats div:last-child { border: 0; }
.product-stats strong { display: block; color: var(--blue); font-size: 44px; line-height: 1; }
.product-stats span { color: var(--muted); font-size: 12px; }
.product-story { width: min(1180px, calc(100% - 64px)); margin: auto; padding: 130px 0 100px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: end; }
.product-story > p { color: var(--muted); font-size: 17px; }
.proposal-producto .functions { margin: 0 24px; padding-inline: max(32px, calc((100vw - 1360px) / 2 - 24px)); border-radius: 30px; background: linear-gradient(120deg, #07264b, #075477); }
.proposal-producto .function-grid { gap: 14px; }
.proposal-producto .function-grid article, .proposal-producto .function-grid article:first-child { border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(255,255,255,.05); backdrop-filter: blur(10px); }
.product-showcase { width: min(1260px, calc(100% - 64px)); margin: auto; padding: 135px 0; display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: center; }
.showcase-copy > p:not(.eyebrow) { color: var(--muted); }
.showcase-copy .button { margin-top: 20px; }
.product-showcase .screen-shell { border-radius: 16px; transform: perspective(1600px) rotateY(-4deg); }
.proposal-producto .contact { margin: 0 24px 24px; padding-inline: max(34px, calc((100vw - 1260px) / 2 - 24px)); border-radius: 30px; }
.proposal-producto .contact-card { border-radius: 18px; }
.proposal-producto .button, .proposal-producto .header-cta { border-radius: 999px; }

/* Comparador interno */
.design-picker { min-height: 100vh; padding: 60px max(28px, calc((100vw - 1500px) / 2)); color: #18263a; background: #e9edf1; font-family: var(--font-sans), Arial, sans-serif; }
.design-picker > header { max-width: 980px; margin-bottom: 48px; }
.design-picker > header > p { margin-bottom: 12px; color: #a76100; font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.design-picker > header h1 { margin: 0 0 16px; color: #07284d; font-family: var(--font-serif), Georgia, serif; font-size: clamp(42px, 5vw, 66px); line-height: 1.03; letter-spacing: -.045em; }
.design-picker > header span { color: #5f6d7d; font-size: 15px; line-height: 1.6; }
.design-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.design-grid > article { position: relative; overflow: hidden; background: white; border: 1px solid #cfd7df; box-shadow: 0 22px 65px rgba(6,36,68,.12); }
.design-number { position: absolute; z-index: 5; top: 14px; left: 14px; width: 44px; height: 44px; display: grid; place-items: center; color: white; background: #07284d; border: 1px solid rgba(255,255,255,.4); font-size: 12px; font-weight: 900; }
.design-preview { height: 330px; overflow: hidden; background: #d8dfe5; border-bottom: 1px solid #d5dce3; }
.design-preview iframe { width: 1600px; height: 1120px; border: 0; pointer-events: none; transform: scale(.286); transform-origin: top left; }
.design-info { padding: 28px; }
.design-info > span { display: block; color: #a76100; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.design-info h2 { margin: 7px 0 10px; color: #07284d; font-family: var(--font-serif), Georgia, serif; font-size: 25px; }
.design-info p { min-height: 88px; margin: 0 0 20px; color: #607080; font-size: 12px; line-height: 1.6; }
.design-info a { display: flex; justify-content: space-between; color: #0a5d91; font-size: 12px; font-weight: 900; }
.picker-note { margin: 34px 0 0; padding: 20px 24px; color: #435365; background: white; border-left: 5px solid #ff9d22; font-size: 13px; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 300px 1fr; }
  .site-header nav { display: none; }
  .site-header .header-cta { justify-self: end; }
  .hero-institucional, .split-section, .experience, .evidence, .contact, .product-story, .product-showcase { grid-template-columns: 1fr; }
  .proposal-video { grid-template-columns: 1fr; }
  .function-grid { grid-template-columns: repeat(2, 1fr); }
  .design-grid { grid-template-columns: 1fr; }
  .design-preview { height: 600px; }
  .design-preview iframe { transform: scale(.52); }
  .design-info p { min-height: 0; }
}

@media (max-width: 720px) {
  .site-header { min-height: 82px; padding-inline: 18px; grid-template-columns: 1fr auto; }
  .site-header .brand { width: 235px; }
  .header-cta { min-height: 42px; padding: 9px 13px; font-size: 9px; }
  .topline { display: none; }
  .proposal h1 { font-size: 52px; }
  .proposal h2 { font-size: 39px; }
  .hero-continuidad { min-height: 650px; }
  .hero-continuidad .hero-inner { width: calc(100% - 34px); }
  .hero-continuidad h1 { font-size: 54px; }
  .trust-strip { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .trust-strip div { min-height: 95px; border-right: 0; border-bottom: 1px solid var(--line); }
  .split-section, .institutional-intro, .product-story, .product-showcase { width: calc(100% - 34px); padding: 82px 0; }
  .functions { padding: 78px 18px; }
  .function-grid { grid-template-columns: 1fr; }
  .function-grid article { min-height: 265px; }
  .contact { padding: 78px 18px; gap: 50px; }
  .site-footer { padding: 35px 18px; grid-template-columns: 1fr; gap: 18px; }
  .hero-institucional { padding: 70px 18px; grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: 1fr; gap: 15px; }
  .intro-columns { grid-template-columns: 1fr; gap: 18px; }
  .all-features { padding: 78px 18px; }
  .all-features-list article { grid-template-columns: 42px 1fr; gap: 15px; }
  .all-features-list article > div { grid-template-columns: 1fr; gap: 14px; }
  .all-features-list ul { grid-column: 1; margin-top: 8px; }
  .all-features-list h3 { font-size: 25px; }
  .proposal-video { padding: 78px 18px; gap: 45px; }
  .anonymous-head, .anonymous-row { grid-template-columns: .55fr 1.5fr .8fr 1fr; }
  .anonymous-head span:last-child, .anonymous-row span:last-child { display: none; }
  .hero-producto { min-height: 820px; padding: 180px 18px 250px; }
  .hero-producto h1 { font-size: 57px; }
  .floating-screen { bottom: -100px; width: calc(100% - 26px); }
  .product-stats { margin-top: 150px; width: calc(100% - 34px); grid-template-columns: 1fr; }
  .product-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proposal-producto .functions, .proposal-producto .contact { margin-inline: 8px; border-radius: 18px; }
  .design-picker { padding: 36px 16px; }
  .design-preview { height: 310px; }
  .design-preview iframe { transform: scale(.29); }
}

/* Integración visual con la web corporativa de Grupo Noroeste. */
.proposal-institucional .topline { display: none; }
.proposal-institucional .site-header {
  width: min(1460px, calc(100% - 64px));
  min-height: 124px;
  margin: 0 auto;
  padding: 0;
  grid-template-columns: minmax(290px, 390px) 1fr auto;
  gap: 42px;
  border-bottom: 1px solid #e4e9ee;
  background: #fff;
}
.proposal-institucional .brand { width: min(100%, 370px); }
.proposal-institucional .site-nav { gap: 34px; }
.proposal-institucional .site-nav a { font-size: 15px; }
.proposal-institucional .header-cta {
  min-height: 56px;
  padding: 0 26px;
  border: 1px solid #b9c6d1;
  background: #fff;
}
.proposal-institucional .site-footer {
  min-height: 190px;
  padding: 42px max(32px, calc((100% - 1460px) / 2));
  grid-template-columns: minmax(260px, 330px) 1fr auto;
  gap: 42px;
  background: #fff;
  border-top: 1px solid #e4e9ee;
}
.proposal-institucional .site-footer .brand { width: min(100%, 310px); }

@media (max-width: 1150px) {
  .proposal-institucional .site-header { grid-template-columns: 1fr auto; }
  .proposal-institucional .site-nav { display: none; }
}

@media (max-width: 720px) {
  .proposal-institucional .site-header { width: min(100% - 32px, 1460px); grid-template-columns: 1fr; }
  .proposal-institucional .header-cta { display: none; }
  .proposal-institucional .site-footer { grid-template-columns: 1fr; padding: 36px 24px; }
}
