@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --green: #45d969;
  --green-strong: #2abf4e;
  --frost: #f5faf9;
  --mist: #dde6e5;
  --silver: #b6c2c1;
  --sage: #889b95;
  --moss: #5c7366;
  --deep-moss: #42564b;
  --graphite: #404040;
  --charcoal: #262626;
  --black: #000;
  --white: #fff;
  --container: 1204px;
  --desktop-gutter: max(32px, calc((100vw - var(--container)) / 2));
  --motion-fast: 180ms;
  --motion-ui: 300ms;
  --motion-reveal: 650ms;
  --motion-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --dropdown-open-dur: 320ms;
  --dropdown-close-dur: 180ms;
  --dropdown-open-scale: 0.96;
  --dropdown-close-scale: 0.985;
  --dropdown-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --stagger-dur: 650ms;
  --stagger-distance: 20px;
  --stagger-stagger: 60ms;
  --stagger-blur: 4px;
  --stagger-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --avatar-lift: -7px;
  --avatar-dur: 420ms;
  --avatar-scale: 1.07;
  --avatar-falloff: 0.42;
  --avatar-ease-in: cubic-bezier(0.22, 1, 0.36, 1);
  --avatar-ease-out: cubic-bezier(0.34, 3.85, 0.64, 1);
  --panel-open-dur: 600ms;
  --panel-close-dur: 350ms;
  --panel-translate-y: 64px;
  --panel-blur: 4px;
  --panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(136, 155, 149, 0.68) transparent;
}

.gbrasil-link {
  color: inherit;
  text-decoration: none;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  min-height: 40px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(136, 155, 149, 0.68);
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: var(--green);
}

*::-webkit-scrollbar-thumb:active {
  background-color: var(--green-strong);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

@media (forced-colors: active) {
  * {
    scrollbar-color: auto;
  }
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--white);
  color: var(--black);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.services-menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h2 {
  font-size: 36px;
  line-height: 1.4;
  font-weight: 700;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li,
small {
  text-wrap: pretty;
}

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  translate: 0 -160%;
  padding: 10px 14px;
  background: var(--green);
  color: var(--black);
  font-weight: 700;
}

.skip-link:focus {
  translate: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  --header-surface: rgba(0, 0, 0, 0.72);
  position: fixed;
  z-index: 100;
  isolation: isolate;
  inset: 0 0 auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  background: transparent;
  border: 0;
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--header-surface);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  transition: background-color var(--motion-ui) var(--motion-ease-out);
}

.site-header__brand {
  width: 270px;
  display: inline-flex;
}

.site-header__brand img {
  width: 270px;
  height: 34px;
  object-fit: contain;
  object-position: left center;
  transition: filter var(--motion-ui) var(--motion-ease-out);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  color: var(--silver);
  font-size: 16px;
}

.site-nav > a {
  transition: color var(--motion-fast) var(--motion-ease-out);
}

.site-nav > a:hover {
  color: var(--frost);
}

.site-nav__services {
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  line-height: 1;
  cursor: pointer;
  transition: color var(--motion-fast) var(--motion-ease-out);
}

.site-nav__services:hover,
.site-nav__services[aria-expanded="true"] {
  color: var(--frost);
}

.site-nav__services img {
  width: 20px;
  height: 20px;
  padding: 6px 4px;
  object-fit: contain;
  overflow: visible;
  transition: rotate var(--motion-ui) var(--motion-ease-out);
}

.site-nav__services[aria-expanded="true"] img {
  rotate: 180deg;
}

.services-menu-open .site-header {
  --header-surface: rgba(0, 0, 0, 0.82);
}

.mega-menu {
  position: fixed;
  z-index: 90;
  inset: 62px 0 0;
  color: var(--frost);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--dropdown-close-dur) var(--dropdown-ease),
    visibility 0s linear var(--dropdown-close-dur);
}

.mega-menu[hidden] {
  display: none;
}

.services-menu-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity var(--dropdown-open-dur) var(--dropdown-ease),
    visibility 0s linear;
}

.mega-menu__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: default;
}

.mega-menu__panel {
  position: relative;
  z-index: 1;
  min-height: 350px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  background: var(--black);
}

.mega-menu__column {
  min-width: 0;
  padding: 16px 16px 20px;
  border: 0;
}

.mega-menu__title {
  color: var(--silver);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.mega-menu__items {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.mega-menu__item {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--frost);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  transition:
    background-color var(--motion-fast) var(--motion-ease-out),
    color var(--motion-fast) var(--motion-ease-out);
}

.mega-menu__item:hover,
.mega-menu__item:focus-visible,
.mega-menu__item.is-active {
  background: rgba(38, 38, 38, 0.6);
}

.mega-menu__item.is-active {
  color: var(--green);
}

.mega-menu__icon {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  background: rgba(38, 38, 38, 0.3);
}

.mega-menu__item.is-active .mega-menu__icon {
  background: transparent;
}

.mega-menu__icon img,
.mega-menu__icon .brand-icon {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.mega-menu__icon .brand-icon {
  background: var(--silver);
  transition:
    background-color var(--motion-fast) var(--motion-ease-out),
    transform var(--motion-ui) var(--motion-ease-out);
}

.mega-menu__item:hover .mega-menu__icon .brand-icon,
.mega-menu__item:focus-visible .mega-menu__icon .brand-icon {
  background: var(--green);
}

.mega-menu__item:focus-visible,
.site-nav__services:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: -2px;
}

.site-nav .site-nav__contact {
  padding: 10px 14px;
  background: var(--mist);
  color: var(--black);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background-color var(--motion-fast) var(--motion-ease-out),
    color var(--motion-fast) var(--motion-ease-out);
}

.site-nav .site-nav__contact:hover,
.site-nav .site-nav__contact:focus-visible {
  background: var(--green);
  color: var(--black);
  outline: 0;
}

.site-header.is-on-light {
  --header-surface: rgba(245, 250, 249, 0.82);
}

.site-header.is-on-light .site-header__brand img {
  filter: brightness(0);
}

.site-header.is-on-light .site-nav {
  color: var(--graphite);
}

.site-header.is-on-light .site-nav > a:hover,
.site-header.is-on-light .site-nav__services:hover,
.site-header.is-on-light .site-nav__services[aria-expanded="true"] {
  color: var(--black);
}

.site-header.is-on-light .site-nav .site-nav__contact {
  background: var(--black);
  color: var(--frost);
}

.site-header.is-on-light .site-nav .site-nav__contact:hover,
.site-header.is-on-light .site-nav .site-nav__contact:focus-visible {
  background: var(--green);
  color: var(--black);
}

body.menu-open .site-header,
body.services-menu-open .site-header {
  --header-surface: rgba(0, 0, 0, 0.82);
}

body.menu-open .site-header .site-header__brand img,
body.services-menu-open .site-header .site-header__brand img {
  filter: none;
}

body.menu-open .site-header .site-nav,
body.services-menu-open .site-header .site-nav {
  color: var(--silver);
}

body.menu-open .site-header.is-on-light .site-nav > a:hover,
body.menu-open .site-header.is-on-light .site-nav__services:hover,
body.menu-open .site-header.is-on-light .site-nav__services[aria-expanded="true"],
body.services-menu-open .site-header.is-on-light .site-nav > a:hover,
body.services-menu-open .site-header.is-on-light .site-nav__services:hover,
body.services-menu-open .site-header.is-on-light .site-nav__services[aria-expanded="true"] {
  color: var(--frost);
}

body.menu-open .site-header.is-on-light .site-nav .site-nav__contact,
body.services-menu-open .site-header.is-on-light .site-nav .site-nav__contact {
  background: var(--mist);
  color: var(--black);
}

body.menu-open .site-header.is-on-light .site-nav .site-nav__contact:hover,
body.menu-open .site-header.is-on-light .site-nav .site-nav__contact:focus-visible,
body.services-menu-open .site-header.is-on-light .site-nav .site-nav__contact:hover,
body.services-menu-open .site-header.is-on-light .site-nav .site-nav__contact:focus-visible {
  background: var(--green);
  color: var(--black);
}

.menu-toggle {
  width: 56px;
  height: 56px;
  display: none;
  place-content: center;
  gap: 4px;
  border: 0;
  background: transparent;
  transition: background-color var(--motion-ui) var(--motion-ease-out);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--green);
  transition:
    rotate var(--motion-ui) var(--motion-ease-out),
    translate var(--motion-ui) var(--motion-ease-out),
    opacity var(--motion-fast) var(--motion-ease-out);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 6px 6px 6px 24px;
  border: 0;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateY(0) scale(1);
  transition:
    transform var(--motion-ui) var(--motion-ease-out),
    background-color var(--motion-fast) var(--motion-ease-out),
    color var(--motion-fast) var(--motion-ease-out);
}

.button:active {
  transform: translateY(0) scale(0.96);
}

.button--primary {
  background: var(--green);
  color: var(--black);
}

.button--primary:hover {
  background: #66f288;
}

.button--secondary {
  background: var(--mist);
  color: var(--black);
}

.button__arrow,
.contact-art__arrow {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  background-color: var(--frost);
}

.contact-art__arrow {
  background-image: url("assets/icon-arrow.svg");
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
}

.button__arrow {
  position: relative;
}

.button__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/icon-arrow.svg") center / 20px no-repeat;
  transition: transform var(--motion-ui) var(--motion-ease-out);
}

.button__arrow--muted {
  background-color: var(--sage);
}

.button__arrow--muted::before {
  background-image: url("assets/icon-arrow-light.svg");
}

.text-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--frost);
}

.text-link__icon {
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  display: block;
  object-fit: contain;
  translate: 0 0.5px;
  transition: transform var(--motion-ui) var(--motion-ease-out);
}

.eyebrow,
.section-rule,
.solution-block__eyebrow {
  color: var(--sage);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.corner-tag {
  width: max-content;
  position: relative;
  margin-inline: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sage);
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0.84px;
  text-transform: uppercase;
}

.corner-tag::before,
.corner-tag::after {
  content: "";
  width: 6px;
  height: 28px;
  flex: 0 0 6px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.corner-tag::before {
  background-image: url("assets/figma/Left-tag.svg");
}

.corner-tag::after {
  background-image: url("assets/figma/Right-tag.svg");
}

.corner-tag--dark {
  color: #B6C2C1;
}

.corner-tag--dark::before,
.corner-tag--dark::after {
  background-image: none !important;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.corner-tag--dark::before {
  mask-image: url("assets/figma/Left-tag.svg");
  -webkit-mask-image: url("assets/figma/Left-tag.svg");
}

.corner-tag--dark::after {
  mask-image: url("assets/figma/Right-tag.svg");
  -webkit-mask-image: url("assets/figma/Right-tag.svg");
}

.section-rule {
  height: 38px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--silver);
}

.section-rule--light {
  color: rgba(245, 250, 249, 0.8);
  border-color: rgba(245, 250, 249, 0.45);
}

.brand-icon {
  --icon: url("assets/official/Iconografia/M/Foco-light.svg");
  width: 26px;
  height: 26px;
  display: inline-block;
  flex: 0 0 26px;
  background: var(--green);
  -webkit-mask-image: var(--icon);
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: var(--icon);
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}

.icon-shield { --icon: url("assets/official/Iconografia/M/Escudo-light.svg"); }
.icon-clipboard { --icon: url("assets/official/Iconografia/M/Prancheta-light.svg"); }
.icon-bars { --icon: url("assets/official/Iconografia/M/Grafico_barras-light.svg"); }
.icon-growth { --icon: url("assets/official/Iconografia/M/Grafico_crescimento-light.svg"); }
.icon-check { --icon: url("assets/official/Iconografia/M/Check-light.svg"); }
.icon-seal { --icon: url("assets/official/Iconografia/M/Selo-light.svg"); }
.icon-industry { --icon: url("assets/official/Iconografia/M/Industria-light.svg"); }
.icon-location { --icon: url("assets/official/Iconografia/M/Local-light.svg"); }
.icon-user { --icon: url("assets/official/Iconografia/M/Usuario-light.svg"); }
.icon-building { --icon: url("assets/official/Iconografia/M/Predio-light.svg"); }
.icon-sliders { --icon: url("assets/official/Iconografia/M/Customizacao-light.svg"); }
.icon-compass { --icon: url("assets/figma/icon-bussula-g.svg"); }
.icon-bell { --icon: url("assets/official/Iconografia/M/Sino-light.svg"); }
.icon-email { --icon: url("assets/official/Iconografia/P/Email-light.svg"); }
.icon-whatsapp { --icon: url("assets/official/Iconografia/P/Whatsapp-light.svg"); }
.icon-phone { --icon: url("assets/official/Iconografia/P/Telefone-light.svg"); }

.hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: var(--black);
  color: var(--frost);
}

.hero__background {
  position: absolute;
  inset: 0;
  background: url("assets/figma/BG header.webp") center / cover no-repeat;
  opacity: 1;
}

.hero__intro {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 64px));
  height: calc(100% - 440px);
  margin-inline: auto;
  padding-top: 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__intro h1 {
  margin-top: 20px;
  font-size: 56px;
  line-height: 81.6px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.hero__description {
  width: min(730px, 100%);
  margin-top: 12px;
  color: rgba(245, 250, 249, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 60px;
}

.hero-showcase {
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 440px;
  display: grid;
  grid-template-columns: 334px minmax(0, 1fr) 334px;
  gap: 20px;
  padding: 20px;
  background-color: transparent;
  backdrop-filter: blur(12px);
  transition: background-color 500ms var(--motion-ease-out) 180ms;
}

.hero-showcase.is-shown {
  background-color: rgba(255, 255, 255, 0.08);
}

.hero-stat {
  --hero-stat-surface: #161616;
  background: var(--hero-stat-surface);
}

.hero-stat--years {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.hero-stat__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #2a2a2a;
}

.hero-stat strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1.5px;
}

.hero-stat p {
  margin-top: 16px;
  color: rgba(245, 250, 249, 0.8);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-stat p b {
  color: var(--frost);
  font-weight: 700;
}

.hero-showcase__photo {
  min-width: 0;
  overflow: hidden;
}

.hero-showcase__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat--rating {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 16px 16px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 42px;
  height: 42px;
  margin-right: -14px;
  border: 3px solid var(--hero-stat-surface);
  border-radius: 50%;
  object-fit: cover;
}

.hero-stat__rating-box {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: rgba(217, 217, 217, 0.1);
}

.hero-stat__rating-box p {
  margin-top: 12px;
  line-height: 1.4;
}

.about-section {
  height: 840px;
  padding-top: 80px;
  background:
    radial-gradient(circle at 75% -20%, rgba(255,255,255,.92), transparent 38%),
    linear-gradient(180deg, var(--mist) 0 73.57%, var(--white) 73.57%);
}

.section-copy--center {
  width: 730px;
  max-width: 100%;
  margin: 60px auto 0;
  text-align: center;
}

.section-copy--center h2 {
  font-size: 36px;
  line-height: 1.4;
}

.section-copy--center p {
  margin-top: 20px;
  color: var(--graphite);
}

.process-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 60px auto 0;
}

.process-card {
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--frost);
  box-shadow: 0 63px 19px rgba(110,110,110,.05), 0 28px 14px rgba(110,110,110,.09), 0 7px 8px rgba(110,110,110,.1);
}

.process-card__body {
  padding: 16px;
}

.process-card__number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mist);
  color: var(--sage);
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.process-card__number i {
  width: 13px;
  height: 18px;
  background: url("assets/figma/icon-pce.svg") center / contain no-repeat;
}

.process-card h3 {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.4;
}

.process-card p {
  margin-top: 12px;
  color: var(--graphite);
}

.process-card__footer,
.number-card footer,
.ecosystem-cards footer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  overflow: hidden;
  background: var(--charcoal);
}

.process-card__footer {
  padding-left: 10px;
}

.process-card__footer .brand-icon {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.process-card__footer i,
.number-card footer i,
.ecosystem-cards footer i,
.footer-contact__gbrasil i {
  width: 152px;
  height: 60px;
  flex: 0 0 152px;
  background: url("assets/figma/Pattern-rodape-card-1.svg") right center / 152px 60px no-repeat;
  opacity: 1;
}

.numbers-section {
  position: relative;
  height: 871px;
  overflow: hidden;
  background: var(--white) url("assets/figma/BG-Numeros_desktop.webp") center / cover no-repeat;
  padding-top: 80px;
}

.numbers-section .corner-tag {
  display: flex;
}

.numbers-section__dots {
  display: none;
}

.numbers-section__dots,
.clients-section__dots {
  position: absolute;
  inset: 260px 50% 0 auto;
  width: 960px;
  translate: 50% 0;
  background-image: radial-gradient(var(--silver) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
  -webkit-mask-image: radial-gradient(ellipse, black 28%, transparent 73%);
  mask-image: radial-gradient(ellipse, black 28%, transparent 73%);
}

.numbers-section h2 {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  color: #d8e1df;
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
}

.numbers-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 85px;
}

.number-card {
  width: 204px;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(221, 230, 229, 0.93);
  box-shadow: 0 28px 14px rgba(110,110,110,.08), 0 7px 8px rgba(110,110,110,.08);
}

.number-card--low {
  margin-top: 60px;
}

.number-card > div {
  padding: 20px;
}

.number-card strong {
  display: block;
  color: var(--charcoal);
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.92px;
}

.number-card .number-card__word {
  letter-spacing: -2.4px;
}

.number-card p {
  margin-top: 16px;
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.5;
}

.number-card footer .brand-icon,
.ecosystem-cards footer .brand-icon,
.card-footer-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.card-footer-icon--gbrasil {
  width: 35px;
  height: 37px;
  flex-basis: 35px;
  margin-left: 1.5px;
  object-fit: none;
  filter: none;
}

.number-card footer {
  position: relative;
  padding-left: 10px;
}

.number-card footer .card-footer-icon,
.number-card footer .brand-icon {
  position: relative;
  z-index: 1;
}

.number-card footer i {
  width: 128px;
  flex-basis: 128px;
  position: absolute;
  inset: 0 0 0 auto;
  background-image: url("assets/figma/Pattern-rodape-card-2.svg");
  background-size: 128px 60px;
}

.solutions-section {
  position: relative;
  height: 2532px;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--black) url("assets/figma/solucoes-bg-desktop.webp") center bottom / 100% 100% no-repeat;
  color: var(--frost);
}

.solutions-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.6);
}

.solutions-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 21.669%, rgba(0, 0, 0, 0.2) 100%);
}

.solutions-section > .container {
  position: relative;
  z-index: 1;
}

.solutions-header {
  height: 158px;
  text-align: center;
}

.solutions-header h2 {
  margin-top: 20px;
}

.solutions-header > p:last-child {
  width: 680px;
  max-width: 100%;
  margin: 20px auto 0;
  color: var(--silver);
}

.solution-block {
  height: 676px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 80px;
}

.solution-block + .solution-block {
  margin-top: 80px;
}

.solution-block--compact {
  height: 582px;
}

.solution-block__content {
  min-width: 0;
  padding-right: 42px;
}

.solution-block__eyebrow {
  color: var(--sage);
}

.solution-block h3 {
  width: 560px;
  max-width: 100%;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
}

.solution-block__lead {
  width: 560px;
  max-width: 100%;
  margin-top: 24px;
  color: var(--silver);
  font-size: 16px;
  line-height: 1.5;
}

.service-list {
  width: 560px;
  max-width: 100%;
  margin-top: 40px;
}

.service-list a {
  height: 94px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 26px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(221, 230, 229, 0.15);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: var(--deep-moss);
}

.service-list a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.service-list b {
  font-size: 20px;
  line-height: 1.4;
}

.service-list small {
  margin-top: 4px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.5;
}

.service-list a > i {
  width: 18px;
  height: 18px;
  justify-self: end;
  background: url("assets/icon-arrow-light.svg") center / contain no-repeat;
}

.solution-block__visual {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}

.solution-block__visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 80px;
  left: 0;
  width: 4px;
  height: 160px;
  background: var(--green);
}

.solution-block__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to bottom, transparent 33%, rgba(0, 0, 0, 0.32) 100%),
    rgba(0, 0, 0, 0.15);
}

.solution-block__visual picture {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.solution-block__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 901px) {
  .solution-block__visual img {
    position: absolute;
    max-width: none;
    object-fit: fill;
  }

  .solution-block:nth-of-type(1) .solution-block__visual img {
    top: -67.73%;
    left: -2.79%;
    width: 105.58%;
    height: 172.11%;
  }

  .solution-block:nth-of-type(2) .solution-block__visual img {
    top: 0.01%;
    left: -36.46%;
    width: 168.1%;
    height: 99.95%;
  }

  .solution-block:nth-of-type(3) .solution-block__visual img {
    top: 0;
    left: -32.44%;
    width: 199.54%;
    height: 100%;
  }
}

.bi-section {
  --header-theme-split: 0.67;
  height: 840px;
  padding-top: 120px;
  background: linear-gradient(180deg, var(--black) 0 67%, var(--frost) 67%);
}

.bi-panel {
  height: 600px;
  display: grid;
  grid-template-columns: 488px minmax(0, 1fr);
  background: var(--mist);
}

.bi-panel__copy {
  padding: 64px 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bi-panel__copy .corner-tag {
  margin-inline: 0;
}

.bi-panel__copy h2 {
  margin-top: 20px;
}

.bi-panel__copy > p {
  margin-top: 20px;
  color: var(--graphite);
}

.bi-panel__copy .button {
  margin-top: auto;
}

.bi-panel__visual {
  overflow: hidden;
  background: #5c7366;
}

.bi-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.legacy-section {
  position: relative;
  height: 710px;
  background: url("assets/official/Imagens/Fotografias/home-legado.webp") center 76% / cover no-repeat;
  color: var(--frost);
}

.legacy-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 20%, rgba(0,0,0,.35) 58%, rgba(0,0,0,.87));
}

.legacy-section__content {
  position: relative;
  z-index: 1;
  padding-top: 430px;
}

.legacy-section__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-top: 38px;
}

.legacy-section__copy > div {
  width: 851px;
}

.legacy-section__copy p {
  margin-top: 20px;
  color: rgba(245,250,249,.85);
  font-size: 16px;
}

.coverage-section {
  height: 832px;
  padding-top: 80px;
  background: var(--moss);
  color: var(--frost);
}

.coverage-grid {
  height: 594px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.coverage-grid__copy {
  width: 465px;
  max-width: 100%;
  align-self: center;
}

.coverage-grid__copy p {
  margin-top: 20px;
  color: var(--mist);
}

.coverage-grid__copy .button {
  margin-top: 80px;
}

.coverage-grid__map {
  width: 583px;
  height: 594px;
  justify-self: end;
  object-fit: contain;
}

.clients-section {
  position: relative;
  height: 682px;
  overflow: hidden;
  padding-top: 120px;
  background: var(--black);
  color: var(--frost);
}

.clients-section__dots {
  inset: 0 50% 0 auto;
  opacity: 0.18;
}

.clients-section h2 {
  position: relative;
  z-index: 1;
  text-align: center;
}

.client-logos {
  position: relative;
  z-index: 1;
  width: 1080px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 60px auto 0;
}

.client-logos > div {
  width: 200px;
  height: 80px;
  display: grid;
  place-items: center;
  background: transparent;
}

.client-logos img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clients-section__button {
  position: relative;
  z-index: 1;
  width: max-content;
  display: flex;
  margin: 60px auto 0;
}

.testimonials-section {
  height: 740px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 60px;
  background: var(--black);
  color: var(--frost);
  position: relative;
  overflow: hidden;
}

.testimonials-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.testimonials-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.testimonials-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  width: 100%;
}

@media (max-width: 899px) {
  .testimonials-content {
    justify-content: space-between;
  }
}

.testimonials-video-player {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.testimonials-video-player.is-active {
  opacity: 1;
  pointer-events: auto;
}

.testimonials-video-wrapper {
  width: 100%;
  max-width: 1000px;
  padding: 20px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-video-wrapper video {
  width: 100%;
  max-height: 100%;
  background: black;
  outline: none;
}

.video-close {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 40px;
  line-height: 1;
  color: var(--frost);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}

@media (max-width: 899px) {
  .video-close {
    top: 20px;
    right: 20px;
    font-size: 32px;
  }
}


.video-play {
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin-bottom: 100px;
  border: 10px solid #858585;
  border-radius: 50%;
  background: var(--mist);
  cursor: pointer;
  transform: scale(1);
  transition:
    transform var(--motion-ui) var(--motion-ease-out),
    background-color var(--motion-fast) var(--motion-ease-out);
}

.video-play:hover {
  transform: scale(1.05);
}

.video-play:active {
  transform: scale(0.96);
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 8px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--black);
}

.testimonials-section__title {
  text-align: center;
}

.testimonials-section__title h2 {
  margin-top: 20px;
}

.ecosystem-section {
  height: 710px;
  padding-top: 100px;
  background: var(--white);
}

.ecosystem-grid {
  width: min(1216px, calc(100% - 64px));
  display: grid;
  grid-template-columns: 669px minmax(0, 1fr);
  gap: 60px;
  margin-inline: auto;
}

.ecosystem-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ecosystem-cards article {
  height: 249px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mist);
}

.ecosystem-cards article > strong {
  padding: 20px 20px 0;
  font-size: 48px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -1.92px;
}

.ecosystem-cards article > p {
  flex: 1;
  padding: 20px;
  color: var(--graphite);
  font-size: 12px;
}

.ecosystem-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px 0;
}

.ecosystem-logo {
  position: relative;
  width: 274px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
}

.ecosystem-logo__color {
  position: absolute;
  inset: 0 auto auto 0;
  width: 279px;
  height: 46px;
  max-width: none;
  object-fit: contain;
}

.ecosystem-logo__wordmark {
  position: absolute;
  top: 10.4px;
  right: 0;
  width: 218.1px;
  height: 35.6px;
  max-width: none;
}

.ecosystem-copy p {
  margin-top: 20px;
  color: var(--graphite);
}

.contact-section {
  height: 807px;
  background: linear-gradient(90deg, var(--mist) 0 72%, var(--moss) 72%);
}

.contact-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 554px 530px;
  justify-content: space-between;
  padding-top: 120px;
  padding-bottom: 120px;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-copy .corner-tag {
  margin-inline: 0;
}

.contact-copy > div {
  margin-top: 163px;
}

.contact-copy p {
  margin-top: 20px;
  color: var(--graphite);
}

.contact-copy .button {
  margin-top: auto;
  align-self: flex-start;
}

.contact-art {
  position: relative;
  height: 567px;
}

.contact-art__slashes {
  position: absolute;
  z-index: 6;
  top: 0;
  right: 0;
  color: var(--silver);
  font-size: 14px;
  font-weight: 700;
}

.contact-art__dots,
.contact-art__back,
.contact-art__front {
  position: absolute;
  left: 0;
  width: 490px;
}

.contact-art__dots {
  top: 77px;
  z-index: 1;
  height: 490px;
}

.contact-art__back {
  top: 37px;
  z-index: 2;
  height: 490px;
}

.contact-art__front {
  top: 0;
  z-index: 3;
  height: 527px;
}

.contact-art__arrow {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  background-color: var(--sage);
  background-image: url("assets/icon-arrow-light.svg");
}

.site-footer {
  height: 838px;
  background: var(--black);
  color: var(--silver);
}

.newsletter {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-inline: 40px;
  background: var(--charcoal);
}

.newsletter__title {
  display: flex;
  align-items: center;
  gap: 20px;
}

.newsletter__icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: var(--moss);
}

.newsletter__icon .brand-icon {
  background-color: #f5faf9;
}

.newsletter__title h2 {
  color: var(--frost);
  font-size: 20px;
  line-height: 1.4;
}

.newsletter__form {
  width: 460px;
  height: 52px;
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 0;
  padding: 6px;
  background: var(--frost);
}

.newsletter__form input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 14px;
  background: transparent;
  color: var(--black);
}

.newsletter__form button {
  border: 0;
  background: var(--green);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-main {
  height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 808px) 1fr;
  gap: 112px;
  padding: 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 224px);
  grid-auto-rows: max-content;
  gap: 48px;
}

.footer-group {
  min-height: 212px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(182, 194, 193, 0.25);
}

.footer-group h3 {
  margin-bottom: 4px;
  color: var(--frost);
  font-size: 16px;
  line-height: 1.5;
}

.footer-group__toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.footer-group__icon {
  display: none;
}

.footer-group__links {
  display: contents;
}

.footer-group__links a {
  color: var(--silver);
  font-size: 14px;
  transition: color var(--motion-fast) var(--motion-ease-out);
}

.footer-group__links a:hover {
  color: var(--green);
}

.footer-contact {
  width: 462px;
  height: 520px;
  align-self: center;
  justify-self: end;
  display: grid;
  grid-template-rows: 40px 292px 40px 24px 100px;
  padding-top: 24px;
  background: rgba(38, 38, 38, 0.5);
}

.footer-contact__brand {
  grid-row: 1;
  height: 40px;
  display: grid;
  grid-template-columns: 144px 1px 176px;
  align-items: center;
  gap: 24px;
  margin: 0 24px;
  padding: 0;
}

.footer-contact__brand img {
  width: 144px;
  height: 36px;
}

.footer-contact__brand i {
  width: 1px;
  height: 40px;
  background: var(--silver);
  opacity: 0.5;
}

.footer-contact__brand p {
  width: 176px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.footer-contact address {
  grid-row: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 24px;
  padding: 0;
  font-style: normal;
}

.footer-contact address p {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact address p:first-child {
  align-items: flex-start;
}

.footer-contact address p:first-child .brand-icon {
  margin-top: 2px;
}

.footer-contact address .brand-icon {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  background: var(--silver);
}

.social-links {
  --avatar-lift: -7px;
  --avatar-dur: 440ms;
  --avatar-scale: 1.16;
  --avatar-falloff: 0.38;
  grid-row: 3;
  display: flex;
  gap: 12px;
  margin: 0 24px;
  padding: 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #262626;
  transition: background-color var(--motion-fast) var(--motion-ease-out);
}

.social-links a:hover,
.social-links a:focus-visible {
  background: #343434;
  outline: 0;
}

.social-links img {
  width: auto;
  height: auto;
  max-width: none;
  pointer-events: none;
}

.social-links a:nth-child(1) img {
  width: 16.36px;
  height: 16.36px;
}

.social-links a:nth-child(2) img {
  width: 18.18px;
  height: 18.18px;
}

.social-links a:nth-child(3) img {
  width: 8.64px;
  height: 17.27px;
}

.social-links a:nth-child(4) img {
  width: 20.63px;
  height: 14.55px;
}

.footer-contact__gbrasil {
  grid-row: 5;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0 20px;
  background: var(--charcoal);
}

.footer-contact__gbrasil img {
  width: 219px;
  height: 36.8px;
  max-height: none;
  object-fit: contain;
}

.footer-bottom {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 40px;
  border-top: 1px solid rgba(182, 194, 193, 0.15);
  font-size: 14px;
}

.footer-bottom b {
  color: var(--frost);
}

.footer-bottom__copyright,
.footer-bottom__studio {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom__copyright img {
  width: 16px;
  height: 16px;
}

.footer-bottom__studio img {
  width: 19px;
  height: 17px;
}

@media (max-width: 1199px) {
  .container {
    width: calc(100% - 64px);
  }

  .hero-showcase {
    grid-template-columns: 280px minmax(0, 1fr) 280px;
  }

  .process-grid {
    width: 100%;
  }

  .numbers-section h2 {
    font-size: clamp(64px, 8vw, 88px);
  }

  .numbers-grid {
    gap: 12px;
  }

  .number-card {
    width: min(18vw, 190px);
  }

  .solution-block__content {
    padding-right: 28px;
  }

  .service-list b {
    font-size: 17px;
  }

  .ecosystem-grid {
    grid-template-columns: 56% 1fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 48% 46%;
  }

  .contact-art img {
    max-width: 100%;
    object-fit: contain;
  }

  .footer-main {
    grid-template-columns: 58% 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .footer-contact__brand {
    grid-template-columns: 110px 1px 1fr;
  }

  .footer-contact {
    width: 100%;
  }
}

@media (max-width: 900px) {
  h2 {
    font-size: 30px;
  }

  .hero__intro h1 {
    font-size: 48px;
  }

  .hero-showcase {
    grid-template-columns: 230px minmax(0, 1fr) 230px;
  }

  .hero-stat {
    padding: 18px;
  }

  .hero-stat strong {
    font-size: 30px;
  }

  .number-card p {
    font-size: 11px;
  }

  .solution-block h3,
  .service-list b {
    font-size: 16px;
  }

  .solution-block__lead {
    font-size: 14px;
  }

  .service-list {
    margin-top: 28px;
  }

  .service-list a {
    grid-template-columns: 46px minmax(0, 1fr) 18px;
    gap: 12px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .service-list small {
    font-size: 12px;
  }

  .bi-panel {
    grid-template-columns: 40% 1fr;
  }

  .bi-panel__copy {
    padding: 48px 32px;
  }

  .legacy-section__copy > div {
    width: 68%;
  }

  .coverage-grid__copy .button {
    margin-top: 40px;
  }

  .ecosystem-cards article > strong {
    font-size: 38px;
  }

  .footer-main {
    padding-inline: 24px;
  }
}

@media (max-width: 767px) {
  :root {
    --mobile-gutter: 16px;
  }

  body {
    font-size: 12px;
  }

  h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .container,
  .ecosystem-grid {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 56px;
    padding: 0 0 0 16px;
    --header-surface: rgba(0, 0, 0, 0.72);
  }

  .site-header__brand {
    width: 96px;
  }

  .site-header__brand img {
    width: 96px;
    height: 24px;
    content: url("assets/logo-mobile.svg");
  }

  .menu-toggle {
    display: grid;
  }

  .site-header.is-on-light .menu-toggle {
    background: transparent;
  }

  body.menu-open .site-header.is-on-light .menu-toggle {
    background: transparent;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    rotate: 45deg;
    translate: 0 6px;
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    rotate: -45deg;
    translate: 0 -6px;
  }

  .site-nav {
    position: fixed;
    inset: 56px 0 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 28px 16px;
    overflow-y: auto;
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    translate: 0 -10px;
    transition:
      opacity var(--motion-ui) var(--motion-ease-out),
      visibility 0s linear,
      translate var(--motion-ui) var(--motion-ease-out);
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    translate: 0;
  }

  .site-nav a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(182, 194, 193, 0.2);
    font-size: 20px;
  }

  .site-nav__services {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid rgba(182, 194, 193, 0.2);
    font-size: 20px;
  }

  .site-nav__services[aria-expanded="true"] {
    border-bottom-color: var(--green-strong);
  }

  .mega-menu {
    position: static;
    inset: auto;
    width: 100%;
    color: var(--frost);
  }

  .mega-menu__backdrop {
    display: none;
  }

  .mega-menu__panel {
    min-height: 0;
    grid-template-columns: 1fr;
    background: var(--black);
    translate: 0;
  }

  .mega-menu__column,
  .mega-menu__column:first-child {
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--charcoal);
  }

  .mega-menu__title {
    font-size: 14px;
  }

  .site-nav .mega-menu__item {
    min-height: 48px;
    height: 48px;
    justify-content: flex-start;
    border: 0;
    font-size: 14px;
  }

  .site-nav .site-nav__contact {
    justify-content: center;
    margin-top: 24px;
    border: 0;
  }

  .button {
    width: 100%;
  }

  .section-rule,
  .eyebrow,
  .solution-block__eyebrow {
    font-size: 12px;
    letter-spacing: 0.72px;
  }

  .hero {
    height: auto;
    min-height: 1040px;
    padding-top: 56px;
  }

  .hero__intro {
    width: calc(100% - 32px);
    height: auto;
    padding-top: 64px;
  }

  .hero__intro h1 {
    margin-top: 16px;
    font-size: 34px;
    line-height: 1.2;
  }

  .hero__description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
    margin-top: 32px;
  }

  .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-showcase {
    position: relative;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 48px;
    padding: 16px;
  }

  .hero-showcase__photo {
    grid-column: 1 / -1;
    grid-row: 1;
    height: 300px;
  }

  .hero-stat {
    min-height: 230px;
  }

  .hero-stat--years,
  .hero-stat--rating {
    padding: 16px;
  }

  .hero-stat__icon {
    width: 44px;
    height: 44px;
  }

  .hero-stat strong {
    font-size: 26px;
  }

  .hero-stat p {
    font-size: 11px;
    line-height: 1.55;
  }

  .hero-stat__rating-box {
    min-height: 128px;
    padding: 12px;
  }

  .avatar-stack img {
    width: 34px;
    height: 34px;
  }

  .about-section {
    height: auto;
    padding: 48px 0 72px;
    background: linear-gradient(180deg, var(--mist) 0 74%, var(--white) 74%);
  }

  .section-copy--center {
    margin-top: 40px;
  }

  .section-copy--center h2 {
    font-size: 24px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .process-card {
    height: 275px;
  }

  .process-card__footer {
    height: 48px;
    padding-left: 8px;
  }

  .process-card__footer .brand-icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .numbers-section {
    height: auto;
    padding: 64px 0 72px;
  }

  .numbers-section h2 {
    margin-top: 28px;
    font-size: 48px;
    line-height: 1.04;
  }

  .numbers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 56px;
  }

  .number-card,
  .number-card--low {
    width: 100%;
    height: 230px;
    margin-top: 0;
  }

  .number-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }

  .number-card strong {
    font-size: 40px;
  }

  .solutions-section {
    height: auto;
    padding: 64px 0;
  }

  .solutions-header {
    height: auto;
  }

  .solutions-header > p:last-child {
    margin-top: 16px;
  }

  .solution-block,
  .solution-block--compact {
    height: auto;
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .solution-block + .solution-block {
    margin-top: 80px;
  }

  .solution-block__content {
    padding-right: 0;
  }

  .solution-block h3 {
    margin-top: 20px;
    font-size: 20px;
  }

  .solution-block__lead {
    margin-top: 16px;
  }

  .service-list {
    margin-top: 24px;
  }

  .service-list a {
    height: 82px;
  }

  .service-list b {
    font-size: 14px;
  }

  .service-list small {
    font-size: 11px;
  }

  .solution-block__visual {
    height: auto;
    margin-top: 24px;
  }

  .solution-block__visual img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .bi-section {
    --header-theme-split: 0.14;
    height: auto;
    padding: 64px 0;
    background: linear-gradient(180deg, var(--black) 0 14%, var(--frost) 14%);
  }

  .bi-panel {
    height: auto;
    grid-template-columns: 1fr;
  }

  .bi-panel__copy {
    min-height: 420px;
    padding: 40px 24px;
  }

  .bi-panel__visual {
    height: 330px;
  }

  .legacy-section {
    height: 680px;
    background-position: 48% 82%;
  }

  .legacy-section__content {
    padding-top: 330px;
  }

  .legacy-section__copy {
    display: block;
    padding-top: 32px;
  }

  .legacy-section__copy > div {
    width: 100%;
  }

  .legacy-section__copy p {
    font-size: 12px;
  }

  .legacy-section__copy .button {
    margin-top: 24px;
  }

  .coverage-section {
    height: auto;
    padding: 48px 0 64px;
  }

  .coverage-grid {
    height: auto;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .coverage-grid__copy {
    width: 100%;
  }

  .coverage-grid__copy .button {
    margin-top: 32px;
  }

  .coverage-grid__map {
    width: 100%;
    height: auto;
    margin-top: 40px;
    content: url("assets/official/Elementos%20de%20apoio/Mapa/Mapa.svg");
  }

  .clients-section {
    height: auto;
    padding: 64px 0;
  }

  .client-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 40px;
  }

  .client-logos > div {
    width: 100%;
    height: 72px;
  }

  .clients-section__button {
    width: 100%;
    margin-top: 40px;
  }

  .testimonials-section {
    height: 600px;
    padding-bottom: 48px;
  }

  .video-play {
    width: 88px;
    height: 88px;
    margin-bottom: 92px;
    border-width: 8px;
  }

  .video-play span {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }

  .ecosystem-section {
    height: auto;
    padding: 64px 0;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ecosystem-cards {
    gap: 8px;
  }

  .ecosystem-cards article {
    height: 210px;
  }

  .ecosystem-cards article > strong {
    font-size: 32px;
  }

  .ecosystem-copy {
    gap: 80px;
  }

  .contact-section {
    --header-theme-split: 0.58;
    height: auto;
    background: linear-gradient(180deg, var(--mist) 0 58%, var(--moss) 58%);
  }

  .contact-grid {
    height: auto;
    grid-template-columns: 1fr;
    padding: 64px 0 0;
  }

  .contact-copy {
    min-height: 470px;
  }

  .contact-copy > div {
    margin-top: 80px;
  }

  .contact-copy .button {
    margin-top: 40px;
    align-self: flex-start;
  }

  .contact-art {
    width: calc(100% + 32px);
    height: 430px;
    margin-left: -16px;
  }

  .contact-art__dots,
  .contact-art__back,
  .contact-art__front {
    width: min(390px, 100%);
    left: 50%;
    translate: -50% 0;
  }

  .contact-art__dots {
    content: url("assets/cta-dots-mobile.svg");
  }

  .contact-art__back {
    content: url("assets/cta-back-mobile.webp");
    height: auto;
  }

  .contact-art__front {
    content: url("assets/cta-front-mobile.webp");
    height: auto;
  }

  .site-footer {
    height: auto;
  }

  .newsletter {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 16px;
  }

  .newsletter__title h2 {
    font-size: 16px;
  }

  .newsletter__form {
    width: 100%;
  }

  .footer-main {
    height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 16px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-group {
    min-height: 0;
    padding: 18px 0;
    gap: 10px;
  }

  .footer-contact {
    height: auto;
  }

  .footer-contact__brand {
    grid-template-columns: 100px 1px 1fr;
  }

  .footer-contact__gbrasil {
    margin-top: 20px;
  }

  .footer-contact__gbrasil i {
    min-width: 0;
    flex: 1 1 152px;
  }

  .footer-bottom {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 24px 16px;
  }
}

@media (max-width: 420px) {
  .hero__intro h1 {
    font-size: 30px;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    min-height: 190px;
  }

  .hero-stat--rating {
    min-height: 225px;
  }

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

  .number-card,
  .number-card:last-child {
    width: 100%;
    grid-column: auto;
  }

  .ecosystem-cards {
    grid-template-columns: 1fr;
  }

  .ecosystem-cards article {
    height: 190px;
  }
}

/* Mobile home — Figma frame 6059:4511 */
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .container,
  .ecosystem-grid {
    width: calc(100% - 32px);
  }

  h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .site-header {
    height: 56px;
    padding: 0 0 0 16px;
    --header-surface: rgba(0, 0, 0, 0.72);
  }

  .site-header__brand,
  .site-header__brand img {
    width: 96px;
    height: 24px;
  }

  .menu-toggle {
    background: transparent;
  }

  .corner-tag {
    gap: 6px;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.72px;
  }

  .corner-tag::before,
  .corner-tag::after {
    width: 4px;
    height: 22px;
    flex-basis: 4px;
  }

  .section-rule,
  .eyebrow,
  .solution-block__eyebrow {
    font-size: 14px;
    letter-spacing: 0.84px;
  }

  .button {
    min-height: 52px;
    font-size: 14px;
  }

  .hero {
    height: 830px;
    min-height: 830px;
    padding-top: 0;
  }

  .hero__background {
    background-image: url("assets/figma/hero-mobile-background.webp");
    background-position: top center;
    background-size: 100% 100%;
    opacity: 0.4;
  }

  .hero__intro {
    width: calc(100% - 32px);
    height: auto;
    padding-top: 180px;
  }

  .hero__intro .eyebrow {
    font-size: 10px;
    letter-spacing: 0.6px;
  }

  .hero__intro h1 {
    margin-top: 12px;
    font-size: clamp(32px, 10.1vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.76px;
  }

  .hero__description {
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .hero__actions {
    width: 100%;
    gap: 8px;
    margin-top: 40px;
  }

  .hero__actions .button,
  .hero__actions .text-link {
    width: min(280px, 100%);
  }

  .hero__actions .button {
    font-size: 12px;
  }

  .hero__actions .text-link {
    min-height: 52px;
    font-size: 14px;
  }

  .hero-showcase {
    position: absolute;
    inset: auto 0 0;
    width: 100%;
    height: 232px;
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin: 0;
    padding: 16px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: calc(50% - 83.333px);
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-showcase.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
  }

  .hero-showcase img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
  }

  .hero-showcase::-webkit-scrollbar {
    display: none;
  }

  .hero-showcase::before,
  .hero-showcase::after {
    content: "";
    flex: 0 0 4px;
  }

  .hero-stat,
  .hero-showcase__photo {
    width: 166.667px;
    min-width: 166.667px;
    height: 200px;
    min-height: 200px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .hero-showcase__photo {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-stat--years {
    padding: 12px;
  }

  .hero-stat__icon {
    width: 26px;
    height: 26px;
  }

  .hero-stat__icon .brand-icon {
    width: 12px;
    height: 12px;
    flex-basis: 12px;
  }

  .hero-stat strong {
    font-size: 18px;
    letter-spacing: -0.72px;
  }

  .hero-stat p {
    margin-top: 8px;
    font-size: 7px;
    line-height: 1.5;
  }

  .hero-stat--rating {
    min-height: 200px;
    padding: 12px;
  }

  .avatar-stack img {
    width: 21px;
    height: 21px;
    margin-right: -7px;
    border-width: 1.5px;
  }

  .hero-stat__rating-box {
    min-height: 68px;
    padding: 10px;
  }

  .hero-stat__rating-box p {
    margin-top: 6px;
  }

  .about-section {
    height: auto;
    min-height: 1210px;
    padding: 60px 0;
    background:
      radial-gradient(circle at 95% -5%, rgba(255,255,255,.9), transparent 35%),
      linear-gradient(180deg, var(--mist) 0 35.63%, var(--white) 35.63%);
  }

  .section-rule {
    height: 30px;
    padding-bottom: 16px;
  }

  .section-copy--center {
    width: 100%;
    margin-top: 28px;
  }

  .section-copy--center h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .section-copy--center p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .process-card {
    height: auto;
    min-height: 0;
    justify-content: flex-start;
    gap: 20px;
  }

  .process-card__body {
    padding: 16px;
  }

  .process-card h3 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.4;
  }

  .process-card p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
  }

  .process-card__footer {
    height: 60px;
    min-height: 60px;
    flex-shrink: 0;
    padding-left: 10px;
  }

  .process-card__footer .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .process-card__footer i {
    width: 152px;
    height: 60px;
    flex-basis: 152px;
  }

  .numbers-section {
    height: auto;
    min-height: 996px;
    padding: 60px 0;
    background-color: var(--white);
    background-position: center bottom;
    background-size: auto 100%;
  }

  .numbers-section .corner-tag {
    margin-inline: 0;
    justify-content: flex-start;
  }

  .numbers-section h2 {
    margin-top: 16px;
    color: transparent;
    background:
      radial-gradient(circle at 76% -18%, var(--frost) 0, transparent 48%),
      linear-gradient(90deg, var(--silver), var(--silver));
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -1.26px;
    text-align: left;
  }

  .numbers-grid {
    height: 672px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, 200px);
    gap: 16px;
    margin-top: 40px;
  }

  .number-card,
  .number-card--low {
    width: 100%;
    height: 200px;
    margin: 0;
  }

  .number-card:last-child {
    grid-column: 1 / -1;
    width: 100%;
  }

  .number-card > div {
    padding: 12px;
  }

  .number-card strong {
    font-size: 34px;
    letter-spacing: -1.36px;
  }

  .number-card .number-card__word {
    letter-spacing: -1.36px;
  }

  .number-card p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .number-card footer {
    height: 48px;
    padding: 0;
  }

  .number-card footer .brand-icon,
  .number-card footer .card-footer-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    margin-left: 11px;
    object-fit: contain;
  }

  .number-card footer .card-footer-icon--gbrasil {
    object-fit: contain;
    object-position: center;
  }

  .number-card footer i {
    width: 128px;
    height: 48px;
    flex-basis: 128px;
    background-size: 128px 48px;
  }

  .solutions-section {
    position: relative;
    height: auto;
    min-height: 3006px;
    padding: 48px 0;
    background: var(--black);
  }

  .solutions-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url("assets/figma/solucoes-bg-mobile.webp") center bottom / 100% 100% no-repeat;
    opacity: 0.4;
  }

  .solutions-section::after {
    display: none;
  }

  .solutions-section > .container {
    position: relative;
    z-index: 1;
  }

  .solutions-header {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .solutions-header h2,
  .solutions-header > p:last-child {
    margin-top: 0;
  }

  .solutions-header > p:last-child {
    font-size: 14px;
    line-height: 1.5;
  }

  .solutions-header .corner-tag {
    gap: 8px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.84px;
  }

  .solutions-header .corner-tag::before,
  .solutions-header .corner-tag::after {
    height: 26px;
  }

  .solution-block,
  .solution-block--compact {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
  }

  .solution-block + .solution-block {
    margin-top: 48px;
  }

  .solution-block__visual {
    position: relative;
    order: -1;
    height: 240px;
    margin-top: 0;
  }

  .solution-block__visual img {
    height: 240px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .solution-block:first-of-type .solution-block__visual img {
    object-position: center 72%;
  }

  .solution-block:nth-of-type(2) .solution-block__visual img {
    object-position: center;
  }

  .solution-block:nth-of-type(3) .solution-block__visual img {
    object-position: center;
  }

  .solution-block__visual::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 0;
    width: 4px;
    height: 80px;
    background: var(--green);
  }

  .solution-block__content {
    padding-right: 0;
  }

  .solution-block__eyebrow {
    font-size: 14px;
  }

  .solution-block h3 {
    margin-top: 16px;
    font-size: 20px;
    line-height: 1.4;
  }

  .solution-block__lead {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.65;
  }

  .service-list {
    margin-top: 24px;
  }

  .service-list a {
    height: auto;
    min-height: 76px;
    grid-template-columns: 44px minmax(0, 1fr) 26px;
    gap: 16px;
    padding: 16px 0;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-icon .brand-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .service-list b {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-list small {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.5;
  }

  .bi-section {
    --header-theme-split: 0.3226;
    height: auto;
    min-height: 910px;
    padding: 40px 16px 60px;
    background: linear-gradient(180deg, var(--black) 0 32.26%, var(--frost) 32.38%);
  }

  .bi-panel {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    overflow: hidden;
    background:
      radial-gradient(circle at 100% -5%, rgba(255,255,255,.95), transparent 36%),
      var(--mist);
  }

  .bi-panel__copy {
    min-height: 0;
    padding: clamp(24px, 10.465%, 36px);
  }

  .bi-panel__copy .corner-tag {
    gap: 8px;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.84px;
  }

  .bi-panel__copy .corner-tag::before,
  .bi-panel__copy .corner-tag::after {
    height: 26px;
  }

  .bi-panel__copy h2 {
    margin-top: 16px;
  }

  .bi-panel__copy > p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .bi-panel__copy .button {
    width: max-content;
    margin-top: 40px;
  }

  .bi-panel__visual {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 344 / 406;
    flex: 0 0 auto;
    background: #5c7366;
  }

  .bi-panel__visual img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    max-width: none;
    height: 100%;
    margin: 0;
    object-fit: initial;
    object-position: left top;
  }

  .legacy-section {
    display: block;
    height: auto;
    min-height: 710px;
    background-image: url("assets/figma/home-legado-mobile.webp");
    background-position: 66% center;
    background-size: cover;
  }

  .legacy-section__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.7));
  }

  .legacy-section__content {
    height: auto;
    min-height: 710px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .legacy-section .section-rule {
    height: 38px;
    padding-bottom: 24px;
  }

  .legacy-section__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-top: 0;
  }

  .legacy-section__copy > div {
    width: 100%;
  }

  .legacy-section__copy h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .legacy-section__copy p {
    margin-top: 20px;
    color: rgba(182,194,193,.9);
    font-size: 14px;
    line-height: 1.5;
  }

  .legacy-section__copy .button {
    width: max-content;
    max-width: 100%;
    margin-top: 0;
  }

  .coverage-section {
    height: auto;
    min-height: 885px;
    padding: 40px 0;
  }

  .coverage-grid {
    height: auto;
    display: grid;
    grid-template-areas:
      "title"
      "description"
      "map"
      "button";
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto 390px 92px;
    gap: 0;
    margin-top: 28px;
  }

  .coverage-grid__copy {
    display: contents;
  }

  .coverage-grid__copy h2 {
    grid-area: title;
  }

  .coverage-grid__copy p {
    grid-area: description;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  .coverage-grid__map {
    grid-area: map;
    width: 100%;
    height: 350px;
    margin-top: 40px;
    object-fit: contain;
  }

  .coverage-grid__copy .button {
    position: static;
    grid-area: button;
    align-self: end;
    width: 100%;
    margin: 0;
  }

  .coverage-section {
    position: relative;
  }

  .clients-section {
    height: auto;
    min-height: 492px;
    padding: 80px 0 60px;
    background:
      radial-gradient(circle at 76% -15%, rgba(255,255,255,.18), transparent 45%),
      var(--black);
  }

  .clients-section h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
  }

  .client-logos > div {
    width: 100px;
    height: 40px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .client-logos img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .clients-section__button {
    width: 100%;
    margin-top: 40px;
  }

  .testimonials-section {
    height: auto;
    min-height: 620px;
    justify-content: space-between;
    padding: 50px 16px;
  }

  .video-play {
    width: 80px;
    height: 80px;
    margin: 210px 0 0;
    border-width: 9px;
  }

  .video-play span {
    border-top-width: 12px;
    border-bottom-width: 12px;
    border-left-width: 19px;
  }

  .testimonials-section__title h2 {
    width: 264px;
    margin-top: 20px;
    font-size: 24px;
    line-height: 1.4;
  }

  .ecosystem-section {
    height: auto;
    min-height: 861px;
    padding: 60px 0;
  }

  .ecosystem-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .ecosystem-copy {
    order: -1;
    gap: 48px;
    padding: 8px 0;
  }

  .ecosystem-logo {
    position: relative;
    width: 202px;
    height: 34px;
    flex: 0 0 34px;
    overflow: hidden;
  }

  .ecosystem-logo__color {
    position: absolute;
    inset: 0 auto auto 0;
    width: 206px;
    height: 34px;
    max-width: none;
    object-fit: contain;
  }

  .ecosystem-logo__wordmark {
    position: absolute;
    top: 7.68px;
    right: 0;
    width: 161.2px;
    height: 26.32px;
    max-width: none;
  }

  .ecosystem-copy h2 {
    font-size: 24px;
  }

  .ecosystem-copy p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .ecosystem-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ecosystem-cards article {
    height: 168px;
  }

  .ecosystem-cards article > strong {
    padding: 16px 16px 0;
    font-size: 28px;
    letter-spacing: -1.12px;
  }

  .ecosystem-cards article > p {
    padding: 8px 16px 12px;
    font-size: 12px;
    line-height: 1.5;
  }

  .ecosystem-cards footer {
    height: 48px;
    padding: 0;
  }

  .ecosystem-cards footer .brand-icon,
  .ecosystem-cards footer .card-footer-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    margin-left: 11px;
  }

  .ecosystem-cards footer i {
    position: absolute;
    right: 0;
    width: 128px;
    height: 48px;
    flex-basis: 128px;
    background-size: 128px 48px;
  }

  .ecosystem-cards footer {
    position: relative;
  }

  .contact-section {
    --header-theme-split: 0.7174;
    height: auto;
    min-height: 867px;
    padding: 60px 0;
    background:
      radial-gradient(circle at 100% -4%, rgba(255,255,255,.95), transparent 42%),
      linear-gradient(180deg, var(--mist) 0 71.63%, var(--moss) 71.74%);
  }

  .contact-grid {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .contact-copy {
    min-height: 0;
    align-items: center;
    text-align: center;
  }

  .contact-copy .corner-tag {
    margin-inline: auto;
  }

  .contact-copy > div {
    margin-top: 40px;
    width: 100%;
  }

  #contact-title {
    width: 100%;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0;
  }

  #contact-title span,
  .contact-copy__description span {
    display: block;
  }

  .contact-copy p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-copy .button {
    width: max-content;
    margin-top: 40px;
  }

  .contact-art {
    width: 100%;
    max-width: 344px;
    height: auto;
    aspect-ratio: 344 / 368;
    margin-left: 0;
  }

  .contact-art picture {
    display: contents;
  }

  .contact-art__slashes {
    display: none;
  }

  .contact-art__dots,
  .contact-art__back,
  .contact-art__front {
    width: 92.45%;
    left: 0;
    translate: 0;
  }

  .contact-art__dots {
    top: 13.59%;
    left: 7.56%;
    height: auto;
  }

  .contact-art__back {
    top: 6.52%;
    height: auto;
  }

  .contact-art__front {
    top: 0;
    height: auto;
  }

  .contact-art__arrow {
    right: 0;
    bottom: 0;
    width: 34px;
    height: 34px;
    background-size: 17px;
  }

  .site-footer {
    height: auto;
    min-height: 1120px;
  }

  .newsletter {
    height: 222px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 60px;
    padding: 24px 16px;
  }

  .newsletter__title {
    gap: 20px;
  }

  .newsletter__icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    aspect-ratio: 1 / 1;
  }

  .newsletter__icon .brand-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    background-color: #f5faf9;
  }

  .newsletter__title h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .newsletter__title h2 br {
    display: none;
  }

  .newsletter__form {
    width: 100%;
    height: 54px;
    grid-template-columns: minmax(0, 1fr) 95px;
    padding: 8px 8px 8px 18px;
  }

  .newsletter__form input {
    padding: 0;
    font-size: 14px;
  }

  .newsletter__form button {
    padding: 0;
    font-size: 14px;
  }

  .footer-main {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 0 0;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px;
  }

  .footer-group {
    min-height: 33px;
    padding: 12px 0 0;
    border-top-color: #404040;
    gap: 16px;
    order: initial;
  }

  .footer-group:nth-child(3) { order: 5; }
  .footer-group:nth-child(4) { order: 3; }
  .footer-group:nth-child(5) { order: 4; }
  .footer-group:nth-child(6) { order: 6; }

  .footer-group h3 {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .footer-group__toggle {
    min-height: 21px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .footer-group__toggle::after {
    content: none;
  }

  .footer-group__icon {
    display: block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    transition: transform var(--motion-ui) var(--motion-ease-out);
  }

  .footer-group__toggle[aria-expanded="true"] .footer-group__icon {
    transform: rotate(180deg);
  }

  .site-footer .footer-group__links {
    max-height: 0;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      max-height var(--motion-ui) var(--motion-ease-out),
      padding var(--motion-ui) var(--motion-ease-out),
      opacity var(--motion-fast) var(--motion-ease-out),
      visibility 0s linear var(--motion-ui);
  }

  .site-footer .footer-group.is-open .footer-group__links {
    max-height: 320px;
    padding: 12px 0 4px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      max-height var(--motion-ui) var(--motion-ease-out),
      padding var(--motion-ui) var(--motion-ease-out),
      opacity var(--motion-fast) var(--motion-ease-out),
      visibility 0s linear;
  }

  .footer-contact {
    width: 100%;
    height: 466px;
    display: flex;
    flex-direction: column;
    padding-top: 0;
    background: rgba(38, 38, 38, 0.5);
  }

  .footer-contact__brand {
    width: calc(100% - 48px);
    height: 40px;
    grid-template-columns: 112px 1px minmax(0, 131px);
    gap: 24px;
    margin: 24px 24px 0;
    padding: 0;
  }

  .footer-contact__brand img {
    width: 112px;
    height: 28px;
  }

  .footer-contact__brand i {
    height: 40px;
  }

  .footer-contact__brand p {
    width: auto;
    color: var(--silver);
    font-size: 12px;
    font-weight: 500;
  }

  .footer-contact address {
    align-self: stretch;
    gap: 16px;
    height: 138px;
    margin: 60px 24px 0;
    padding: 0;
  }

  .footer-contact address p {
    gap: 12px;
    font-size: 12px;
  }

  .social-links {
    gap: 12px;
    margin: 60px 24px 24px;
    padding: 0;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #262626;
  }

  .social-links img {
    width: auto;
    height: auto;
    max-width: none;
  }

  .social-links a:nth-child(1) img {
    width: 16.36px;
    height: 16.36px;
  }

  .social-links a:nth-child(2) img {
    width: 18.18px;
    height: 18.18px;
  }

  .social-links a:nth-child(3) img {
    width: 8.64px;
    height: 17.27px;
  }

  .social-links a:nth-child(4) img {
    width: 20.63px;
    height: 14.55px;
  }

  .footer-contact__gbrasil {
    height: 80px;
    margin-top: 0;
    padding: 0 20px;
  }

  .footer-contact__gbrasil img {
    width: 192px;
    height: 32.2px;
    max-height: 42px;
  }

  .footer-contact__gbrasil i {
    width: 84px;
    height: 36px;
    flex: 0 0 84px;
    background: url("assets/figma/footer-gbrasil-pattern.svg") center / 84px 36px no-repeat;
    transform: scaleX(-1);
  }

  .footer-bottom {
    height: 70px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    font-size: 14px;
  }

  .footer-bottom__studio {
    margin-left: auto;
  }

  .footer-bottom__studio > span {
    display: none;
  }
}

/* Motion system: spatial menus, editorial reveals and tactile controls. */
.t-panel-slide {
  transform: translateY(var(--panel-translate-y));
  opacity: 0;
  filter: blur(var(--panel-blur));
  pointer-events: none;
  transition:
    transform var(--panel-close-dur) var(--panel-ease),
    opacity   var(--panel-close-dur) var(--panel-ease),
    filter    var(--panel-close-dur) var(--panel-ease);
  will-change: transform, opacity, filter;
}
.t-panel-slide[data-open="true"] {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transition:
    transform var(--panel-open-dur) var(--panel-ease),
    opacity   var(--panel-open-dur) var(--panel-ease),
    filter    var(--panel-open-dur) var(--panel-ease);
}

.hero-reveal--years {
  --panel-translate-y: 48px;
}

.hero-reveal--photo {
  --panel-translate-y: 72px;
}

.hero-reveal--rating {
  --panel-translate-y: 56px;
}

.hero-reveal--avatars,
.hero-reveal--rating-box {
  --panel-translate-y: 28px;
}

.hero-reveal--years[data-open="true"] {
  transition-delay: 260ms;
}

.hero-reveal--photo[data-open="true"] {
  transition-delay: 400ms;
}

.hero-reveal--rating[data-open="true"] {
  transition-delay: 540ms;
}

.hero-reveal--avatars[data-open="true"] {
  transition-delay: 690ms;
}

.hero-reveal--rating-box[data-open="true"] {
  transition-delay: 780ms;
}

.t-dropdown {
  opacity: 0;
  visibility: hidden;
  transform: scale(var(--dropdown-open-scale));
  transform-origin: top center;
  transition:
    opacity var(--dropdown-close-dur) var(--dropdown-ease),
    transform var(--dropdown-close-dur) var(--dropdown-ease),
    visibility 0s linear var(--dropdown-close-dur);
}

.t-dropdown[data-origin="top-left"] {
  transform-origin: top left;
}

.t-dropdown[data-origin="top-right"] {
  transform-origin: top right;
}

.t-dropdown[data-origin="bottom-left"] {
  transform-origin: bottom left;
}

.t-dropdown[data-origin="bottom-right"] {
  transform-origin: bottom right;
}

.t-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition:
    opacity var(--dropdown-open-dur) var(--dropdown-ease),
    transform var(--dropdown-open-dur) var(--dropdown-ease),
    visibility 0s linear;
}

.t-dropdown.is-closing {
  opacity: 0;
  visibility: visible;
  transform: scale(var(--dropdown-close-scale));
  transition:
    opacity var(--dropdown-close-dur) var(--dropdown-ease),
    transform var(--dropdown-close-dur) var(--dropdown-ease),
    visibility 0s linear var(--dropdown-close-dur);
}

.t-dropdown .mega-menu__column {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity var(--motion-ui) var(--dropdown-ease),
    transform var(--motion-ui) var(--dropdown-ease);
}

.t-dropdown.is-open .mega-menu__column {
  opacity: 1;
  transform: translateY(0);
}

.t-dropdown.is-open .mega-menu__column:nth-child(2) {
  transition-delay: 45ms;
}

.t-dropdown.is-open .mega-menu__column:nth-child(3) {
  transition-delay: 90ms;
}

.t-dropdown.is-open .mega-menu__column:nth-child(4) {
  transition-delay: 135ms;
}

.t-stagger .t-stagger-line {
  opacity: 0;
  transform: translateY(var(--stagger-distance));
  filter: blur(var(--stagger-blur));
  transition:
    opacity var(--stagger-dur) var(--stagger-ease),
    transform var(--stagger-dur) var(--stagger-ease),
    filter var(--stagger-dur) var(--stagger-ease);
}

.t-stagger.is-shown .t-stagger-line {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.t-stagger.is-shown .t-stagger-line:nth-child(1) {
  transition-delay: 0ms;
}

.t-stagger.is-shown .t-stagger-line:nth-child(2) {
  transition-delay: calc(var(--stagger-stagger) * 1);
}

.t-stagger.is-shown .t-stagger-line:nth-child(3) {
  transition-delay: calc(var(--stagger-stagger) * 2);
}

.t-stagger.is-shown .t-stagger-line:nth-child(4) {
  transition-delay: calc(var(--stagger-stagger) * 3);
}

.t-avatar-group {
  isolation: isolate;
}

.t-avatar {
  transform-origin: center;
  transform:
    translateY(var(--shift, 0px))
    scale(var(--scale-active, 1));
  transition: transform var(--avatar-dur) var(--avatar-ease-in);
  will-change: transform;
}

html.motion-ready .motion-reveal {
  opacity: 0;
  transform: translateY(var(--motion-reveal-distance, 20px));
  filter: blur(4px);
  transition:
    opacity var(--motion-reveal) var(--motion-ease-out),
    transform var(--motion-reveal) var(--motion-ease-out),
    filter var(--motion-reveal) var(--motion-ease-out);
  transition-delay: var(--motion-reveal-delay, 0ms);
}

html.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.process-card,
.number-card,
.client-logos > div,
.ecosystem-cards article {
  transform: translateY(0);
  transition:
    transform var(--motion-ui) var(--motion-ease-out),
    box-shadow var(--motion-ui) var(--motion-ease-out);
}

.service-list a > i {
  transition: transform var(--motion-ui) var(--motion-ease-out);
}

.service-icon {
  transition:
    background-color var(--motion-fast) var(--motion-ease-out),
    transform var(--motion-ui) var(--motion-ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(0) scale(1);
  }

  .button:active {
    transform: translateY(0) scale(0.96);
  }

  .button:hover .button__arrow::before {
    transform: translate(4px, -4px);
  }

  .text-link:hover .text-link__icon {
    transform: translate(5px, 5px);
  }

  .mega-menu__item:hover .mega-menu__icon .brand-icon,
  .mega-menu__item:focus-visible .mega-menu__icon .brand-icon {
    transform: scale(1.12);
  }

  .process-card:hover,
  .number-card:hover,
  .client-logos > div:hover,
  .ecosystem-cards article:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 42px rgba(0, 0, 0, 0.16);
  }

  html.motion-ready .motion-reveal.is-visible.process-card:hover,
  html.motion-ready .motion-reveal.is-visible.number-card:hover,
  html.motion-ready .client-logos > div.motion-reveal.is-visible:hover,
  html.motion-ready .ecosystem-cards article.motion-reveal.is-visible:hover {
    transform: translateY(-6px);
  }

  .service-list a:hover > i {
    transform: translate(5px, -5px);
  }

  .service-list a:hover .service-icon {
    transform: scale(1.06);
    background: var(--moss);
  }
}

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

  .t-dropdown,
  .t-dropdown.is-open,
  .t-dropdown.is-closing,
  .t-dropdown .mega-menu__column,
  .t-dropdown.is-open .mega-menu__column,
  .t-stagger .t-stagger-line,
  .t-stagger.is-shown .t-stagger-line,
  .t-avatar,
  html.motion-ready .motion-reveal,
  html.motion-ready .motion-reveal.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    transition-delay: 0ms !important;
  }

  .button:active,
  .video-play:active {
    transform: none;
  }

  .t-panel-slide {
    transition: none !important;
  }

  .hero__background,
  .hero.is-ready .hero__background {
    opacity: 1;
    transform: none;
    transition: none !important;
  }
}
