:root {
  --navy-950: #001323;
  --navy-900: #001b31;
  --navy-850: #05233d;
  --navy-700: #0b3554;
  --ink: #101827;
  --muted: #d5dee7;
  --gold: #d89634;
  --gold-light: #e8ad52;
  --paper: #f7f7f5;
  --line: rgba(255, 255, 255, 0.24);
  --dark-line: rgba(13, 24, 42, 0.18);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0a1522;
  color: white;
  font-family: var(--sans);
}

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 710px;
  background:
    linear-gradient(90deg, rgba(0, 18, 34, 0.98) 0%, rgba(0, 18, 34, 0.88) 31%, rgba(0, 18, 34, 0.42) 55%, rgba(0, 18, 34, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 18, 34, 0.28) 0%, rgba(0, 18, 34, 0.12) 48%, rgba(0, 18, 34, 0.56) 100%),
    url("assets/hero-meeting.png") center right / cover no-repeat,
    linear-gradient(180deg, #061c30 0%, #031421 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 28px 26px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 66px;
  height: 66px;
  color: var(--gold);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.brand strong {
  display: block;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.15;
}

.nav,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle,
.menu-button {
  display: none;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  padding: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.lang-switch a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 28px;
  border-radius: 2px;
}

.lang-switch a.active {
  background: var(--gold);
  color: #fff;
}

.nav a,
.footer-nav a {
  position: relative;
  padding: 9px 0;
}

.nav a.active::after,
.footer-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
}

.footer-nav a.active::after {
  display: block;
  bottom: -2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 52px;
  border-radius: 3px;
  background: linear-gradient(135deg, #e0a54c, #c98425);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.button-small {
  min-width: 120px;
  min-height: 48px;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  min-height: 610px;
  padding: 30px 0 72px 52px;
}

.hero-copy {
  max-width: 590px;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.7vw, 58px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 440px;
  margin: 32px 0 0;
  color: #f2f6f8;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 36px;
}

.arrow-link {
  display: inline-flex;
  width: 48px;
  color: var(--gold);
}

.arrow-link svg {
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: radial-gradient(circle at 54% 0%, #073151, var(--navy-950) 70%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics article {
  display: grid;
  place-items: center;
  min-height: 142px;
  padding: 26px;
  text-align: center;
}

.metrics article + article {
  border-left: 1px solid var(--line);
}

.metrics strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 41px;
  font-weight: 400;
  line-height: 1;
}

.metrics span {
  max-width: 280px;
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.45;
  text-transform: uppercase;
}

.audiences,
.work {
  background: var(--paper);
  color: var(--ink);
}

.audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 34px 52px 44px;
}

.audiences article {
  min-height: 226px;
  padding: 0 44px;
  text-align: center;
}

.audiences article + article {
  border-left: 1px solid var(--dark-line);
}

.audiences h2 {
  margin: 16px 0 14px;
  font-size: 18px;
  text-transform: uppercase;
}

.audiences p {
  max-width: 230px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
}

.icon,
.work-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101827;
  line-height: 1;
}

.icon {
  width: 80px;
  height: 80px;
  font-size: 78px;
  font-weight: 400;
}

.work {
  padding: 0 52px 72px;
}

.anchor-target {
  display: block;
  position: relative;
  top: -24px;
  height: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading span {
  height: 1px;
  background: rgba(216, 150, 52, 0.55);
}

.section-heading h2 {
  margin: 0;
  font-size: 21px;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.work-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 128px;
  padding: 0 28px;
  text-align: center;
}

.work-grid article + article {
  border-left: 1px solid var(--dark-line);
}

.work-icon {
  width: 54px;
  height: 54px;
  color: var(--gold);
  font-size: 52px;
  font-weight: 400;
}

.work-grid p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

.quote-band {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 276px;
  background: #001327;
}

.quote {
  padding: 42px 42px 34px 86px;
}

.quote span {
  display: block;
  height: 44px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 90px;
  line-height: 0.8;
}

.quote p {
  max-width: 440px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.55;
}

.quote i {
  display: block;
  width: 144px;
  height: 3px;
  margin-top: 30px;
  background: var(--gold);
}

.world-map {
  position: relative;
  overflow: hidden;
  min-height: 276px;
  background:
    linear-gradient(90deg, #001327 0%, rgba(0, 19, 39, 0.32) 28%, rgba(0, 19, 39, 0) 100%),
    url("assets/world-map.png") center / cover no-repeat;
}

.aporte-home-quote .quote p {
  margin: 0;
}

.aporte-home-quote .quote .quote-emphasis {
  color: var(--gold);
}

.services-page {
  background: var(--paper);
  color: var(--ink);
}

.services-hero {
  overflow: hidden;
  min-height: 474px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 19, 39, 0) 0%, rgba(0, 19, 39, 0) 91%, #001327 100%),
    linear-gradient(90deg, rgba(0, 19, 39, 0.98) 0%, rgba(0, 19, 39, 0.92) 35%, rgba(0, 19, 39, 0.3) 70%, rgba(0, 19, 39, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 19, 39, 0.2), rgba(0, 19, 39, 0.5)),
    url("assets/services-hero.png") center right / cover no-repeat,
    #001327;
}

.services-hero-content {
  max-width: 450px;
  padding: 86px 0 70px 67px;
}

.services-hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: 0;
}

.services-hero-content p {
  margin: 27px 0 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.8;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 22px 43px 14px;
  background: linear-gradient(180deg, #fbfbfa, var(--paper));
}

.service-card {
  min-height: 326px;
  padding: 28px 25px 24px;
  border: 1px solid rgba(13, 24, 42, 0.07);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(10, 24, 38, 0.1);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  color: #bf7926;
}

.service-card-top span {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.service-card-top i {
  font-size: 42px;
  line-height: 1;
}

.service-card h2 {
  max-width: 265px;
  margin: 0;
  color: #0d1728;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.service-card p {
  max-width: 280px;
  margin: 16px 0 0;
  color: #111a2d;
  font-size: 15px;
  line-height: 1.6;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 19px;
  color: #bf7926;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card a i {
  font-size: 23px;
  font-weight: 400;
}

.network-advantage {
  display: grid;
  grid-template-columns: 38% 62%;
  align-items: center;
  min-height: 255px;
  padding: 20px 60px 22px;
  background: #fbfbfa;
  color: var(--ink);
}

.network-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.18;
}

.network-copy p {
  max-width: 360px;
  margin: 20px 0 16px;
  font-size: 15px;
  line-height: 1.55;
}

.network-copy strong {
  display: block;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.5;
}

.network-map {
  min-height: 230px;
  background: url("assets/riva-map-transparent.png") center / contain no-repeat;
}

.aporte-page {
  background: var(--paper);
  color: var(--ink);
}

.aporte-hero {
  min-height: 454px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 19, 39, 1) 0%, rgba(0, 19, 39, 0.94) 33%, rgba(0, 19, 39, 0.3) 68%, rgba(0, 19, 39, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 19, 39, 0.12), rgba(0, 19, 39, 0.48)),
    url("assets/hero-meeting.png") center right / cover no-repeat,
    #001327;
}

.aporte-hero-content {
  max-width: 470px;
  padding: 95px 0 62px 46px;
}

.aporte-hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
}

.aporte-hero-content p {
  max-width: 410px;
  margin: 26px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.68;
}

.aporte-list {
  max-width: 690px;
  margin: 0 auto;
  padding: 30px 0 25px;
  background: var(--paper);
}

.aporte-list h2 {
  margin: 0 0 14px;
  color: #bf7926;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.aporte-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 120px;
  border-bottom: 1px solid rgba(13, 24, 42, 0.18);
}

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

.aporte-icon {
  display: grid;
  place-items: center;
  min-height: 82px;
  border-right: 1px solid rgba(13, 24, 42, 0.16);
  color: #bf7926;
  font-size: 72px;
  line-height: 1;
}

.aporte-copy {
  padding: 18px 0;
}

.aporte-copy h3 {
  margin: 0 0 8px;
  color: #101827;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.aporte-copy p {
  max-width: 560px;
  margin: 0;
  color: #0f1829;
  font-size: 15px;
  line-height: 1.55;
}

.sectors-page {
  background: var(--paper);
  color: var(--ink);
}

.sectors-hero {
  min-height: 438px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 19, 39, 1) 0%, rgba(0, 19, 39, 0.96) 35%, rgba(0, 19, 39, 0.4) 66%, rgba(0, 19, 39, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 19, 39, 0.12), rgba(0, 19, 39, 0.42)),
    url("assets/sectors-hero.png") center right / cover no-repeat,
    #001327;
}

.sectors-hero-content {
  max-width: 490px;
  padding: 100px 0 66px 49px;
}

.sectors-hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 58px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.sectors-hero-content p {
  max-width: 440px;
  margin: 30px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.68;
}

.sectors-list {
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 0 14px;
  background: var(--paper);
}

.sector-row {
  display: grid;
  grid-template-columns: 286px 1fr 84px;
  gap: 58px;
  align-items: center;
  min-height: 162px;
  border-bottom: 1px solid rgba(13, 24, 42, 0.18);
}

.sector-row:last-child {
  border-bottom: 0;
}

.sector-row img {
  display: block;
  width: 286px;
  height: 118px;
  object-fit: cover;
}

.sector-copy h2 {
  margin: 0 0 14px;
  color: #101827;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.sector-copy p {
  max-width: 290px;
  margin: 0;
  color: #101827;
  font-size: 15px;
  line-height: 1.55;
}

.sector-row > i {
  justify-self: center;
  color: #101827;
  font-size: 54px;
  line-height: 1;
}

.sectors-quote {
  position: relative;
  grid-template-columns: 46% 54%;
  min-height: 76px;
  padding-top: 4%;
  padding-bottom: 4%;
}

.sectors-quote .quote {
  position: relative;
  z-index: 1;
  padding: 0 42px 0 62px;
}

.sectors-quote .quote span {
  height: 34px;
  font-size: 74px;
}

.sectors-quote .quote p {
  max-width: 470px;
  font-size: 28px;
  line-height: 1.28;
}

.sectors-quote .quote small {
  display: block;
  max-width: 470px;
  margin-top: 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
}

.sectors-quote .world-map {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  min-height: 0;
  background-position: center right;
}

.connect-page {
  background: var(--paper);
  color: var(--ink);
}

.connect-hero {
  min-height: 518px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 19, 39, 1) 0%, rgba(0, 19, 39, 0.95) 32%, rgba(0, 19, 39, 0.38) 62%, rgba(0, 19, 39, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 19, 39, 0.08), rgba(0, 19, 39, 0.36)),
    url("assets/conectando-hero.png") center right / cover no-repeat,
    #001327;
}

.connect-hero-content {
  max-width: 620px;
  padding: 62px 0 46px 45px;
}

.connect-hero-content span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.connect-hero-content h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3.7vw, 45px);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

.connect-hero-content p {
  max-width: 430px;
  margin: 28px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
}

.access-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--paper);
  color: var(--ink);
}

.access-card {
  min-height: 380px;
  padding: 38px 54px 36px;
}

.access-card + .access-card {
  border-left: 1px solid rgba(13, 24, 42, 0.16);
}

.access-heading {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  align-items: center;
}

.access-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 52px;
  line-height: 1;
}

.access-icon-gold {
  border: 2px solid var(--gold);
  color: var(--gold);
}

.access-icon-navy {
  background: #07182b;
  color: #fff;
}

.access-heading h2 {
  margin: 0;
  color: #101827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.26;
  text-transform: uppercase;
}

.access-heading > div > i {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 20px;
  background: var(--gold);
}

.access-card > p {
  max-width: 440px;
  margin: 34px 0 34px;
  color: #111a2d;
  font-size: 15px;
  line-height: 1.65;
}

.access-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.access-features div {
  min-height: 104px;
  padding: 0 12px;
  text-align: center;
}

.access-features div + div {
  border-left: 1px solid rgba(13, 24, 42, 0.16);
}

.access-features i {
  display: block;
  min-height: 38px;
  color: var(--gold);
  font-size: 36px;
  line-height: 1;
}

.access-card:nth-child(2) .access-features i {
  color: #101827;
}

.access-features span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.approach-section {
  padding: 30px 54px 52px;
  background: linear-gradient(180deg, #fbfbfa, var(--paper));
  color: var(--ink);
}

.approach-section h2 {
  margin: 0 0 26px;
  color: #101827;
  font-size: 23px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.approach-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.approach-grid article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #07182b;
  color: #fff;
  font-family: var(--serif);
  font-size: 20px;
}

.approach-grid article > i {
  position: absolute;
  top: 18px;
  right: -72px;
  width: 132px;
  height: 1px;
  background: rgba(216, 150, 52, 0.65);
}

.approach-grid article:last-child > i {
  display: none;
}

.approach-grid strong {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-top: 24px;
  color: var(--gold);
  font-size: 62px;
  font-weight: 400;
}

.approach-grid em {
  font-style: normal;
}

.approach-grid h3 {
  margin: 14px 0 8px;
  color: #101827;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.approach-grid p {
  max-width: 180px;
  margin: 0;
  color: #101827;
  font-size: 13px;
  line-height: 1.5;
}

.connect-cta {
  min-height: 276px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 19, 39, 1) 0%, rgba(0, 19, 39, 0.94) 34%, rgba(0, 19, 39, 0.4) 65%, rgba(0, 19, 39, 0.08) 100%),
    url("assets/conectando-cta.png") center right / cover no-repeat,
    #001327;
}

.connect-cta-copy {
  max-width: 570px;
  padding: 36px 0 34px 90px;
}

.connect-cta-copy span {
  display: block;
  height: 38px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 82px;
  line-height: 0.8;
}

.connect-cta-copy p {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.35;
}

.connect-cta-copy .quote-emphasis {
  color: var(--gold);
}

.connect-cta-copy > i {
  display: block;
  width: 118px;
  height: 3px;
  margin-top: 24px;
  background: var(--gold);
}

.connect-cta-copy .hero-actions {
  margin-top: 34px;
}

.contact-page {
  background: var(--paper);
  color: var(--ink);
}

.contact-hero {
  min-height: 690px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 19, 39, 1) 0%, rgba(0, 19, 39, 0.95) 42%, rgba(0, 19, 39, 0.52) 100%),
    radial-gradient(circle at 80% 20%, #0b3554 0%, #001327 62%);
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 460px);
  gap: 56px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 44px 90px;
}

.contact-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-copy h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 58px);
  font-weight: 400;
  line-height: 1.16;
}

.contact-copy p {
  max-width: 430px;
  margin: 28px 0 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.94);
  color: #101827;
  font: inherit;
  line-height: 1.4;
}

.contact-form input {
  height: 46px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 128px;
  padding: 12px 14px;
}

.contact-form .button {
  margin-top: 6px;
  border: 0;
  cursor: pointer;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 156px;
  padding: 28px 34px 44px;
  background: radial-gradient(circle at 68% 0%, #073151, var(--navy-950) 72%);
  color: #fff;
}

.footer .brand-mark {
  width: 66px;
  height: 66px;
}

.footer .brand strong {
  font-size: 34px;
}

.footer-nav {
  justify-content: center;
  margin-left: 0;
  gap: 32px;
}

.footer-nav a,
.social a {
  color: #fff;
}

.social {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.copyright {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1280px) {
  .topbar {
    flex-wrap: wrap;
    gap: 18px;
  }

  .menu-button {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
  }

  .menu-button span + span {
    margin-top: 5px;
  }

  .topbar .button-small {
    order: 3;
    margin-left: 0;
  }

  .lang-switch {
    order: 3;
  }

  .nav {
    order: 4;
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 14px 0 6px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 22px;
    white-space: normal;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }
}

@media (max-width: 1100px) {
  .topbar,
  .footer {
    flex-wrap: wrap;
  }

  .nav,
  .footer-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
    gap: 8px;
    overflow: visible;
    white-space: normal;
  }

  .hero-content {
    padding-left: 34px;
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
  }

  .work-grid article:nth-child(4) {
    border-left: 0;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-advantage {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .aporte-list {
    max-width: 720px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .sectors-list {
    max-width: 820px;
    padding-right: 30px;
    padding-left: 30px;
  }

  .sector-row {
    grid-template-columns: 240px 1fr 70px;
    gap: 34px;
  }

  .sector-row img {
    width: 240px;
  }

  .access-section {
    grid-template-columns: 1fr;
  }

  .access-card + .access-card {
    border-top: 1px solid rgba(13, 24, 42, 0.16);
    border-left: 0;
  }

  .approach-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }

  .approach-grid article > i {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 740px;
  }

  .topbar {
    gap: 18px;
    padding: 22px 18px 0;
  }

  .brand-mark,
  .footer .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand strong,
  .footer .brand strong {
    font-size: 26px;
  }

  .brand small {
    font-size: 12px;
  }

  .button-small {
    margin-left: auto;
    min-width: 104px;
    min-height: 42px;
  }

  .hero-content {
    align-items: flex-start;
    min-height: auto;
    padding: 90px 24px 170px;
  }

  .hero-copy h1 {
    font-size: 37px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .hero-scene {
    opacity: 0.55;
  }

  .metrics,
  .audiences,
  .quote-band {
    grid-template-columns: 1fr;
  }

  .metrics article + article,
  .audiences article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .audiences {
    padding: 34px 24px;
  }

  .work {
    padding: 0 24px 54px;
  }

  .section-heading {
    gap: 14px;
  }

  .section-heading h2 {
    font-size: 17px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-grid article,
  .work-grid article:nth-child(4) {
    border-left: 0;
  }

  .work-grid article:nth-child(even) {
    border-left: 1px solid var(--dark-line);
  }

  .quote {
    padding: 38px 28px;
  }

  .quote p {
    font-size: 24px;
  }

  .world-map {
    min-height: 210px;
  }

  .footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 26px 24px 64px;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
    gap: 8px;
    overflow: visible;
    white-space: normal;
  }

  .services-hero {
    min-height: 620px;
    background:
      linear-gradient(180deg, rgba(0, 19, 39, 0) 0%, rgba(0, 19, 39, 0) 91%, #001327 100%),
      linear-gradient(180deg, rgba(0, 19, 39, 0.96) 0%, rgba(0, 19, 39, 0.88) 42%, rgba(0, 19, 39, 0.5) 100%),
      url("assets/services-hero.png") center bottom / cover no-repeat,
      #001327;
  }

  .services-hero-content {
    max-width: none;
    padding: 78px 24px 230px;
  }

  .services-hero-content h1 {
    font-size: 38px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    padding: 22px 24px 14px;
  }

  .service-card {
    min-height: auto;
  }

  .network-advantage {
    padding: 30px 24px 36px;
  }

  .network-copy h2 {
    font-size: 30px;
  }

  .network-map {
    min-height: 190px;
  }

  .aporte-hero {
    min-height: 650px;
    background:
      linear-gradient(180deg, rgba(0, 19, 39, 0.98) 0%, rgba(0, 19, 39, 0.9) 45%, rgba(0, 19, 39, 0.5) 100%),
      url("assets/hero-meeting.png") center bottom / cover no-repeat,
      #001327;
  }

  .aporte-hero-content {
    max-width: none;
    padding: 84px 24px 245px;
  }

  .aporte-hero-content h1 {
    font-size: 38px;
  }

  .aporte-list {
    padding-top: 28px;
  }

  .aporte-list h2 {
    font-size: 18px;
  }

  .aporte-item {
    grid-template-columns: 76px 1fr;
    gap: 18px;
    min-height: 112px;
  }

  .aporte-icon {
    font-size: 52px;
  }

  .aporte-copy p {
    font-size: 14px;
  }

  .sectors-hero {
    min-height: 640px;
    background:
      linear-gradient(180deg, rgba(0, 19, 39, 0.98) 0%, rgba(0, 19, 39, 0.88) 43%, rgba(0, 19, 39, 0.42) 100%),
      url("assets/sectors-hero.png") center bottom / cover no-repeat,
      #001327;
  }

  .sectors-hero-content {
    max-width: none;
    padding: 82px 24px 240px;
  }

  .sectors-hero-content h1 {
    font-size: 38px;
  }

  .sectors-list {
    padding: 22px 24px 10px;
  }

  .sector-row {
    grid-template-columns: 132px 1fr 42px;
    gap: 16px;
    min-height: 144px;
  }

  .sector-row img {
    width: 132px;
    height: 92px;
  }

  .sector-copy h2 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .sector-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .sector-row > i {
    font-size: 36px;
  }

  .sectors-quote {
    grid-template-columns: 1fr;
  }

  .sectors-quote .quote {
    padding: 34px 28px 28px;
  }

  .sectors-quote .world-map {
    position: relative;
    width: 100%;
    min-height: 210px;
  }

  .sectors-quote .quote p {
    font-size: 24px;
  }

  .sectors-quote .quote small {
    font-size: 17px;
  }

  .connect-hero {
    min-height: 660px;
    background:
      linear-gradient(180deg, rgba(0, 19, 39, 0.98) 0%, rgba(0, 19, 39, 0.88) 42%, rgba(0, 19, 39, 0.5) 100%),
      url("assets/conectando-hero.png") center bottom / cover no-repeat,
      #001327;
  }

  .connect-hero-content {
    max-width: none;
    padding: 76px 24px 250px;
  }

  .connect-hero-content h1 {
    font-size: 37px;
  }

  .access-card {
    padding: 34px 24px;
  }

  .access-heading {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }

  .access-icon {
    width: 66px;
    height: 66px;
    font-size: 42px;
  }

  .access-heading h2 {
    font-size: 20px;
  }

  .access-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
  }

  .access-features div:nth-child(3) {
    border-left: 0;
  }

  .approach-section {
    padding: 30px 24px 42px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-grid p {
    max-width: 260px;
  }

  .connect-cta {
    min-height: 460px;
    background:
      linear-gradient(180deg, rgba(0, 19, 39, 0.98) 0%, rgba(0, 19, 39, 0.9) 48%, rgba(0, 19, 39, 0.54) 100%),
      url("assets/conectando-cta.png") center bottom / cover no-repeat,
      #001327;
  }

  .connect-cta-copy {
    max-width: none;
    padding: 34px 28px 220px;
  }

  .connect-cta-copy p {
    font-size: 25px;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 72px 24px 54px;
  }

  .contact-form {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  .nav,
  .footer-nav {
    justify-content: flex-start;
    font-size: 11px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-actions {
    gap: 24px;
  }

  .button {
    min-width: 142px;
  }

  .topbar .button-small {
    display: none;
  }

  .lang-switch {
    margin-left: 0;
  }

  .menu-button {
    margin-left: auto;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-grid article:nth-child(even) {
    border-left: 0;
  }

  .aporte-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 0;
  }

  .aporte-icon {
    justify-content: start;
    min-height: auto;
    border-right: 0;
  }

  .aporte-copy {
    padding: 12px 0 0;
  }

  .sector-row {
    grid-template-columns: 1fr 42px;
    gap: 14px;
    padding: 20px 0;
  }

  .sector-row img {
    grid-column: 1 / -1;
    width: 100%;
    height: 148px;
  }
}
