:root {
  --grow-green: #269a79;
  --grow-ink: #050505;
  --grow-line: rgba(255,255,255,.16);
  --grow-ease: cubic-bezier(.22,1,.36,1);
}

/* Barra de leitura da home: fica acima do cabeçalho fixo. */
.scroll-progress {
  z-index: 810 !important;
  pointer-events: none;
}

.site-header {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 800 !important;
  border-bottom: 1px solid transparent !important;
  background: transparent !important;
  color: #fff !important;
  transition: background .4s var(--grow-ease),border-color .4s var(--grow-ease),backdrop-filter .4s var(--grow-ease) !important;
}

.site-header.is-scrolled {
  border-color: var(--grow-line) !important;
  background: rgba(5,5,5,.7) !important;
  backdrop-filter: blur(18px);
}

.site-header .shell-wrap,
.site-footer .shell-wrap {
  width: min(100% - 64px,1420px);
  margin: 0 auto;
}

.site-header .shell-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 104px;
  transition: height .4s var(--grow-ease);
}

.site-header .shell-logo {
  width: 184px;
  display: block;
  flex: 0 0 auto;
  transition: width .4s var(--grow-ease);
}

.site-header .shell-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255,255,255,.72);
  font-family: "DM Sans",sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  transition: color .25s var(--grow-ease);
}

.site-nav > a,
.site-nav .site-nav-toggle,
.site-nav .site-search-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-nav-group,
.site-search {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.site-nav-submenu,
.site-search-panel {
  position: absolute;
  top: 100%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(5,5,5,.82);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .28s var(--grow-ease),transform .28s var(--grow-ease);
}

.site-nav-submenu {
  left: -18px;
  min-width: 156px;
  padding: 14px 16px;
}

.site-nav-group:hover .site-nav-submenu,
.site-nav-group:focus-within .site-nav-submenu,
.site-search.is-open .site-search-panel,
.site-search:focus-within .site-search-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav-submenu a {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: 10px;
  letter-spacing: .2em;
  white-space: nowrap;
}

.site-nav-submenu a:hover { color: var(--grow-green); }

.site-search { margin-left: -8px; }

.site-search-trigger {
  width: 34px;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: color .25s var(--grow-ease);
}

.site-search-trigger:hover,
.site-search.is-open .site-search-trigger { color: var(--grow-green); }

.site-search-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-search-panel {
  right: -18px;
  width: min(330px,calc(100vw - 40px));
  padding: 14px;
}

.site-search-form {
  display: flex;
  border: 1px solid rgba(38,154,121,.58);
  background: rgba(255,255,255,.05);
}

.site-search-form input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 13px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 12px/1 "DM Sans",sans-serif;
  letter-spacing: .04em;
}

.site-search-form input::placeholder { color: rgba(255,255,255,.42); }

.site-search-form button {
  width: 44px;
  border: 0;
  border-left: 1px solid rgba(38,154,121,.45);
  background: transparent;
  color: var(--grow-green);
  cursor: pointer;
  font-size: 16px;
  transition: background .25s var(--grow-ease),color .25s var(--grow-ease);
}

.site-search-form button:hover {
  background: var(--grow-green);
  color: var(--grow-ink);
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header-cta,
.site-footer-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-family: "DM Sans",sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .3s var(--grow-ease),background .3s var(--grow-ease),border-color .3s var(--grow-ease),transform .3s var(--grow-ease);
}

.site-header-cta {
  min-height: 58px;
  padding: 0 30px;
  border-color: var(--grow-green);
  color: #fff;
}

.site-header.is-scrolled .site-header-cta {
  color: var(--grow-green);
}

.site-footer-linkedin {
  color: var(--grow-green);
}

.site-header-cta:hover,
.site-footer-linkedin:hover {
  border-color: var(--grow-green);
  background: var(--grow-green);
  color: var(--grow-ink);
  transform: translateY(-2px);
}

.site-header-cta svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform .3s var(--grow-ease);
}

.site-header-cta:hover svg { transform: translateX(4px); }

.site-header.is-scrolled .shell-wrap { height: 62px; }
.site-header.is-scrolled .shell-logo { width: 110px; }
.site-header.is-scrolled .site-header-cta { min-height: 35px; gap: 17px; padding: 0 18px; font-size: 9px; }
.site-header.is-scrolled .site-header-cta svg { width: 10px; }

.site-menu-button,
.site-mobile-close {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--grow-line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.site-menu-button::before,
.site-menu-button::after {
  content: "";
  position: absolute;
  right: 12px;
  left: 12px;
  height: 1px;
  background: currentColor;
  transition: transform .3s var(--grow-ease),top .3s var(--grow-ease);
}

.site-menu-button::before { top: 18px; }
.site-menu-button::after { top: 26px; }

.site-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  display: flex;
  align-items: flex-start;
  visibility: hidden;
  overflow-y: auto;
  padding-top: 98px;
  background: #050505;
  color: #fff;
  clip-path: inset(0 0 100% 0);
  transition: clip-path .55s var(--grow-ease),visibility .55s;
}

.site-mobile-menu::before {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -12vh;
  width: min(92vw,680px);
  aspect-ratio: 1;
  background: url("/assets-v2/brand/grow-icon.png") center/contain no-repeat;
  opacity: .055;
  transform: rotate(-8deg);
  pointer-events: none;
}

.site-mobile-menu.is-open {
  visibility: visible;
  clip-path: inset(0);
}

.site-mobile-menu .shell-wrap {
  position: relative;
  z-index: 1;
}

.site-mobile-icon {
  position: absolute;
  top: 28px;
  left: max(14px,calc((100vw - min(100vw - 28px,1420px)) / 2));
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-mobile-close {
  display: block;
  position: absolute;
  top: 28px;
  right: max(14px,calc((100vw - min(100vw - 28px,1420px)) / 2));
  z-index: 2;
  border-radius: 50%;
}

.site-mobile-close::before,
.site-mobile-close::after {
  content: "";
  position: absolute;
  right: 14px;
  left: 14px;
  top: 22px;
  height: 1px;
  background: currentColor;
}

.site-mobile-close::before { transform: rotate(45deg); }
.site-mobile-close::after { transform: rotate(-45deg); }
.site-mobile-close:hover { border-color: var(--grow-green); background: var(--grow-green); color: var(--grow-ink); }

.site-mobile-nav a,
.site-mobile-submenu-toggle {
  display: block;
  width: 100%;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--grow-line);
  background: transparent;
  color: #fff;
  font-family: "DM Sans",sans-serif;
  font-size: clamp(1.836rem,8.16vw,3.4rem);
  font-weight: 300;
  letter-spacing: -.05em;
  line-height: 1.12;
  text-align: left;
  text-decoration: none;
}

.site-mobile-group {
  padding: 8px 0 14px;
  border-bottom: 1px solid var(--grow-line);
}

.site-mobile-submenu-toggle {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  border: 0;
}

.site-mobile-plus {
  color: var(--grow-green);
  transition: transform .32s var(--grow-ease);
}

.site-mobile-group.is-open .site-mobile-plus { transform: rotate(45deg); }

.site-mobile-submenu {
  max-height: 0;
  margin-left: 22px;
  padding-left: 16px;
  overflow: hidden;
  border-left: 1px solid rgba(38,154,121,.62);
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height .34s var(--grow-ease),opacity .28s var(--grow-ease),transform .28s var(--grow-ease),margin .28s var(--grow-ease);
}

.site-mobile-group.is-open .site-mobile-submenu {
  max-height: 72px;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}

.site-mobile-submenu a {
  padding: 7px 0 0;
  border: 0;
  color: var(--grow-green);
  font-size: clamp(1.35rem,6vw,2.2rem);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-mobile-search {
  display: flex;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(38,154,121,.65);
}

.site-mobile-search input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 13px/1 "DM Sans",sans-serif;
}

.site-mobile-search button {
  min-width: 82px;
  height: 48px;
  border: 0;
  border-left: 1px solid rgba(38,154,121,.5);
  background: transparent;
  color: var(--grow-green);
  font: 700 10px/1 "DM Sans",sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-footer {
  position: relative !important;
  overflow: hidden;
  border-top: 1px solid var(--grow-line);
  background: #030303;
  color: #fff;
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: 0;
  right: -4vw;
  bottom: -28px;
  left: -4vw;
  height: 74%;
  background:
    linear-gradient(rgba(38,154,121,.18) 1px,transparent 1px) 0 100% / 100% 64px,
    repeating-linear-gradient(90deg,transparent 0 62px,rgba(38,154,121,.2) 63px 64px);
  opacity: .34;
  pointer-events: none;
  mask-image: linear-gradient(to top,#000,transparent 90%);
}

.site-footer .shell-wrap { position: relative; z-index: 1; }

.site-footer-main {
  display: grid;
  grid-template-columns: .8fr 1fr 1.05fr;
  gap: 70px;
  padding: 90px 0 64px;
}

.site-footer-menu a {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.25rem,1.65vw,1.85rem);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1.15;
  text-decoration: none;
}

.site-footer-menu > a::after,
.site-footer-menu-group > a::after {
  content: "→";
  margin-left: 18px;
  color: var(--grow-green);
  font-size: .65em;
}

.site-footer-menu-group { width: fit-content; margin-bottom: 12px; }

.site-footer-submenu {
  max-height: 0;
  margin: 0 0 0 18px;
  padding-left: 14px;
  overflow: hidden;
  border-left: 1px solid rgba(38,154,121,.48);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: max-height .32s var(--grow-ease),opacity .28s var(--grow-ease),transform .28s var(--grow-ease),margin .28s var(--grow-ease);
}

.site-footer-menu-group:hover .site-footer-submenu,
.site-footer-menu-group:focus-within .site-footer-submenu {
  max-height: 72px;
  margin: -4px 0 14px 18px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer-submenu a {
  margin-bottom: 8px;
  color: rgba(255,255,255,.68);
  font-size: clamp(.95rem,1vw,1.12rem);
  letter-spacing: .04em;
}

.site-footer-submenu a::after { content: none !important; }
.site-footer-submenu a:hover { color: var(--grow-green); }

.site-footer-anbima {
  display: block;
  width: 150px;
  height: auto;
  margin-top: 32px;
  border-radius: 8px;
}

.site-footer-title {
  margin: 0 0 20px;
  color: var(--grow-green);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-footer-contact p,
.site-footer-contact a {
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.9;
  text-decoration: none;
}

.site-footer-contact .site-footer-title {
  color: var(--grow-green);
}

.site-footer-linkedin {
  width: fit-content;
  margin-top: 18px;
  padding: 12px 18px;
  border-color: var(--grow-green);
  color: var(--grow-green);
  font-size: 10px !important;
  font-weight: 600;
  letter-spacing: .18em;
}

.site-footer-linkedin::after {
  content: "→";
  font-size: 13px;
  letter-spacing: 0;
}

.site-footer-search { max-width: 340px; margin-top: 28px; }

.site-footer-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--grow-green);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer-search-row {
  display: flex;
  align-items: center;
  border: 1px solid rgba(38,154,121,.56);
  background: rgba(255,255,255,.035);
}

.site-footer-search-row:focus-within {
  border-color: var(--grow-green);
  background: rgba(38,154,121,.08);
}

.site-footer-search input {
  flex: 1;
  min-width: 0;
  height: 46px;
  padding: 0 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 400 12px/1 "DM Sans",sans-serif;
}

.site-footer-search button {
  width: 50px;
  height: 46px;
  border: 0;
  border-left: 1px solid rgba(38,154,121,.42);
  background: transparent;
  color: var(--grow-green);
  cursor: pointer;
  font-size: 16px;
}

.site-footer-search button:hover { background: var(--grow-green); color: var(--grow-ink); }
.site-footer-proof { padding-left: 20px; }
.site-footer-metrics { display: grid; gap: 25px; max-width: 310px; }
.site-footer-metric { opacity: 1; }

.site-footer-metric strong {
  display: block;
  color: #fff;
  font-size: clamp(1.45rem,1.65vw,1.9rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .9;
  white-space: nowrap;
}

.site-footer-metric span {
  display: block;
  max-width: 240px;
  margin-top: 9px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
  line-height: 1.25;
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--grow-line);
  color: rgba(255,255,255,.45);
  font-size: 10px;
}

.site-footer-bottom img { width: 130px; }
.site-footer-bottom a { color: inherit; text-decoration-color: rgba(38,154,121,.72); text-underline-offset: 3px; }

:where(a,button,input,textarea,select,summary,[tabindex]):focus-visible {
  outline: 2px solid var(--grow-green) !important;
  outline-offset: 4px;
}

:where(.credential-card,.service-card,.deal,.partner-card,[role="button"]):focus-visible {
  outline: 2px solid var(--grow-green) !important;
  outline-offset: 6px;
}

@media (max-width:1100px) {
  .site-header .shell-wrap { width: min(100% - 40px,1780px); height: 76px; }
  .site-header.is-scrolled .shell-wrap { height: 76px; }
  .site-header.is-scrolled .shell-logo { width: 125px; }
  .site-header-cta,.site-nav { display: none; }
  .site-menu-button { display: block; }
}

@media (max-width:1180px) {
  .site-footer-main { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width:760px) {
  .site-header .shell-wrap,
  .site-footer .shell-wrap { width: min(100% - 28px,1420px); }
  .site-header .shell-wrap { height: 76px; }
  .site-header .shell-logo { width: 125px; }
  .site-footer-menu a { font-size: 1.65rem; }
  .site-footer-proof { padding-left: 0; }
  .site-footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion:reduce) {
  .site-header,
  .site-header *,
  .site-mobile-menu,
  .site-mobile-menu *,
  .site-footer,
  .site-footer * { transition: none !important; animation: none !important; }
}
