:root {
  --gpo-navy: #062b55;
  --gpo-ink: #07192f;
  --gpo-blue: #0d5f9f;
  --gpo-green: #7fbd32;
  --gpo-soft: #f5f8fb;
  --gpo-line: #dbe4ee;
  --gpo-muted: #5f7085;
  --gpo-white: #ffffff;
  --gpo-shadow: 0 18px 50px rgba(7, 25, 47, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--gpo-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--gpo-white);
}

a {
  color: inherit;
  text-decoration: none;
}

.gpo-page {
  min-height: 100vh;
  overflow: hidden;
}

.gpo-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.gpo-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 238, 0.85);
  backdrop-filter: blur(14px);
}

.gpo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.gpo-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--gpo-navy);
  letter-spacing: 0;
}

.gpo-brand img {
  width: 146px;
  height: auto;
  display: block;
}

.gpo-brand span {
  font-size: 0.82rem;
  color: var(--gpo-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.gpo-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--gpo-muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.gpo-menu a:hover {
  color: var(--gpo-blue);
}

.gpo-lang {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--gpo-line);
  border-radius: 999px;
  background: var(--gpo-white);
}

.gpo-lang button {
  width: 44px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--gpo-muted);
  background: transparent;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
}

.gpo-lang button.is-active {
  color: var(--gpo-white);
  background: var(--gpo-navy);
}

.gpo-hero {
  position: relative;
  padding: 84px 0 52px;
  background:
    linear-gradient(110deg, rgba(6, 43, 85, 0.08), rgba(127, 189, 50, 0.08) 42%, transparent 74%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.gpo-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: 56px;
}

.gpo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gpo-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gpo-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gpo-green);
}

.gpo-hero h1 {
  max-width: 780px;
  margin: 0;
  color: var(--gpo-navy);
  font-size: clamp(2.45rem, 6vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.gpo-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--gpo-muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.gpo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.gpo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--gpo-navy);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.gpo-button.primary {
  color: var(--gpo-white);
  background: var(--gpo-navy);
}

.gpo-button.secondary {
  color: var(--gpo-navy);
  background: var(--gpo-white);
}

.gpo-button:hover {
  transform: translateY(-1px);
}

.gpo-identity {
  padding: 36px;
  border: 1px solid var(--gpo-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--gpo-shadow);
}

.gpo-identity img {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
}

.gpo-identity-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 420px;
}

.gpo-identity-photo > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-width: none;
  object-fit: cover;
}

.gpo-logo-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(240px, 58%);
  padding: 14px 16px;
  border: 1px solid rgba(219, 228, 238, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 25, 47, 0.15);
}

.gpo-logo-badge img {
  width: 100%;
  max-width: 210px;
}

.gpo-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--gpo-line);
  background: var(--gpo-line);
}

.gpo-proof div {
  min-height: 112px;
  padding: 24px;
  background: var(--gpo-white);
}

.gpo-proof strong {
  display: block;
  color: var(--gpo-navy);
  font-size: 1.72rem;
  line-height: 1;
}

.gpo-proof span {
  display: block;
  margin-top: 10px;
  color: var(--gpo-muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.gpo-section {
  padding: 82px 0;
}

.gpo-section.alt {
  background: var(--gpo-soft);
}

.gpo-method-section {
  color: var(--gpo-white);
  background:
    linear-gradient(135deg, rgba(6, 43, 85, 0.95), rgba(7, 25, 47, 0.96)),
    url("gpo-global-opportunities.png") center / cover;
}

.gpo-method-section .gpo-label,
.gpo-method-section h2 {
  color: var(--gpo-white);
}

.gpo-method-section .gpo-section-head p {
  color: rgba(255, 255, 255, 0.74);
}

.gpo-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.gpo-label {
  color: var(--gpo-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gpo-section h2 {
  margin: 8px 0 0;
  color: var(--gpo-navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.gpo-section-head p,
.gpo-lead {
  margin: 0;
  color: var(--gpo-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.gpo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gpo-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--gpo-line);
  border-radius: 8px;
  background: var(--gpo-white);
}

.gpo-card-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--gpo-white);
  background: linear-gradient(135deg, var(--gpo-blue), var(--gpo-green));
  font-weight: 900;
}

.gpo-card h3 {
  margin: 0;
  color: var(--gpo-navy);
  font-size: 1.12rem;
}

.gpo-card p {
  margin: 14px 0 0;
  color: var(--gpo-muted);
  line-height: 1.65;
}

.gpo-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.gpo-method-card {
  min-height: 276px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.gpo-method-card strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: var(--gpo-navy);
  background: var(--gpo-white);
  font-size: 1.6rem;
  font-weight: 900;
}

.gpo-method-card h3 {
  margin: 0;
  color: var(--gpo-white);
  font-size: 1.08rem;
  line-height: 1.22;
}

.gpo-method-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.gpo-visual-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 32px;
  align-items: center;
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--gpo-line);
  border-radius: 8px;
  background: var(--gpo-soft);
}

.gpo-visual-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.gpo-visual-strip h3 {
  margin: 8px 0 0;
  color: var(--gpo-navy);
  font-size: 1.65rem;
  line-height: 1.14;
}

.gpo-visual-strip p {
  margin: 14px 0 0;
  color: var(--gpo-muted);
  line-height: 1.65;
}

.gpo-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 50px;
  align-items: center;
}

.gpo-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.gpo-list div {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 13px;
  color: var(--gpo-muted);
  line-height: 1.6;
}

.gpo-check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: var(--gpo-white);
  background: var(--gpo-green);
  font-size: 0.85rem;
  font-weight: 900;
}

.gpo-panel {
  padding: 34px;
  border-radius: 8px;
  background: var(--gpo-navy);
  color: var(--gpo-white);
}

.gpo-panel h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.gpo-panel p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.gpo-section-photo {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  display: block;
  margin-bottom: 28px;
  border-radius: 8px;
  object-fit: cover;
}

.gpo-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
}

.gpo-contact-box {
  padding: 30px;
  border: 1px solid var(--gpo-line);
  border-radius: 8px;
  background: var(--gpo-white);
}

.gpo-contact-item {
  padding: 18px 0;
  border-bottom: 1px solid var(--gpo-line);
}

.gpo-contact-item:last-child {
  border-bottom: 0;
}

.gpo-contact-item span {
  display: block;
  color: var(--gpo-muted);
  font-size: 0.86rem;
  font-weight: 750;
  text-transform: uppercase;
}

.gpo-contact-item strong {
  display: block;
  margin-top: 6px;
  color: var(--gpo-navy);
  font-size: 1rem;
  line-height: 1.45;
}

.gpo-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--gpo-line);
  border-radius: 8px;
  background: var(--gpo-white);
  box-shadow: var(--gpo-shadow);
}

.gpo-form label {
  display: grid;
  gap: 8px;
  color: var(--gpo-navy);
  font-size: 0.92rem;
  font-weight: 750;
}

.gpo-form input,
.gpo-form textarea,
.gpo-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gpo-line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--gpo-ink);
  font: inherit;
  background: #fbfdff;
}

.gpo-form textarea {
  min-height: 118px;
  resize: vertical;
}

.gpo-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: var(--gpo-white);
  background: var(--gpo-navy);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.gpo-note {
  margin: 6px 0 0;
  color: var(--gpo-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.gpo-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--gpo-ink);
}

.gpo-footer .gpo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.gpo-footer strong {
  color: var(--gpo-white);
}

.gpo-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

[data-lang] {
  display: none;
}

html[data-language="es"] [data-lang="es"],
html[data-language="en"] [data-lang="en"] {
  display: revert;
}

@media (max-width: 900px) {
  .gpo-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .gpo-menu {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .gpo-hero-grid,
  .gpo-section-head,
  .gpo-split,
  .gpo-contact,
  .gpo-visual-strip {
    grid-template-columns: 1fr;
  }

  .gpo-hero {
    padding-top: 54px;
  }

  .gpo-identity {
    padding: 22px;
  }

  .gpo-proof,
  .gpo-grid-3,
  .gpo-method-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .gpo-container {
    width: min(100% - 28px, 1120px);
  }

  .gpo-brand {
    width: 100%;
    justify-content: space-between;
  }

  .gpo-brand img {
    width: 120px;
  }

  .gpo-menu a {
    white-space: nowrap;
  }

  .gpo-section {
    padding: 58px 0;
  }

  .gpo-card,
  .gpo-panel,
  .gpo-contact-box,
  .gpo-form {
    padding: 22px;
  }

  .gpo-identity-photo,
  .gpo-identity-photo > img {
    min-height: 320px;
  }

  .gpo-logo-badge {
    right: 14px;
    bottom: 14px;
  }
}
Scroll to Top