/* Nimber shared foundation and reusable components — v149 */
/* ==========================================================================
   NIMBER — BASE GLOBAL CONSOLIDADA
   Compartilhada pela Home e pelas páginas internas.
   Desktop preserva o layout aprovado; breakpoints priorizam leitura e ritmo.
   Cascata organizada sem blocos provisórios adicionados ao final.
   ========================================================================== */


/* Foundation ------------------------------------------------------- */

:root {
  --ink: #172432;
  --black: #090909;
  --blue: #00b7ef;
  --blue-2: #5b91b2;
  --teal: #00d2aa;
  --green: #00e487;
  --soft-blue: #b1c9dd;
  --mid-blue: #5186a7;
  --soft-gray: #edf0f2;
  --line: #73a4c3;
  --footer: #1d2c3a;
  --font-body: "Nunito Sans", Arial, sans-serif;
  --font-navigation: "Nunito", Arial, sans-serif;
  --font: var(--font-body);
  --container: 1476px;
  --container-wide: 1596px;
  --container-gutter: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

strong {
  font-weight: 900;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(0, 183, 239, .62);
  outline-offset: 4px;
}


/* Accessibility foundation ----------------------------------------- */
main[tabindex="-1"]:focus {
  outline: none;
}

[aria-disabled="true"] {
  cursor: not-allowed;
}

@media (prefers-contrast: more) {
  :focus-visible {
    outline-width: 4px;
    outline-color: #006f91;
  }
}

@media (forced-colors: active) {
  :focus-visible {
    outline: 3px solid CanvasText;
  }

  .gradient-text,
  .button--gradient,
  .projection-card__value,
  .stat-card strong {
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
  }
}


/* Shared components ------------------------------------------------ */

.nimber-container {
  width: 100%;
  max-width: calc(var(--container) + (var(--container-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--container-gutter);
}

.eyebrow {
  margin: 0 0 20px;
  color: #00aef0;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.eyebrow--muted {
  color: #5186a7;
}

.eyebrow--dark {
  color: #1b2733;
  letter-spacing: .28em;
}

.eyebrow--spaced {
  letter-spacing: .36em;
}

.gradient-text {
  color: var(--blue);
  background: linear-gradient(90deg, var(--teal), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 30px;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 7px 13px rgba(20, 39, 55, .12);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease;
  isolation: isolate;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(20, 39, 55, .18);
}

.button--header {
  min-width: 250px;
  min-height: 54px;
  padding-inline: 32px;
  border: 1px solid #6ca3c6;
  color: #fff;
  background: linear-gradient(100deg, #1c2c3b, #5186a7);
}

.button--light {
  border: 2px solid var(--blue);
}

.button--gradient {
  min-width: 260px;
  color: #fff;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  box-shadow: 0 6px 10px rgba(18, 92, 117, .16);
}

.gsap-image-reveal {
  overflow: hidden;
  transform-origin: center;
}

.gsap-card,
.gsap-copy,
.gsap-step,
.gsap-logo {
  will-change: transform, opacity;
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 210, 170, .16), rgba(0, 183, 239, .18));
  transform: translateX(-105%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}

.button:hover::before {
  transform: translateX(0);
}

.button--header::before,
.button--gradient::before,
.button--mobile-menu::before {
  background: linear-gradient(100deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
}


/* Preloader and cursor --------------------------------------------- */

body.nimber-home.tt-magic-cursor {
  cursor: auto !important;
}

#magic-cursor {
  position: fixed;
  z-index: 1000000;
  width: 10px;
  height: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

#ball {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(23, 36, 50, .45);
  border-radius: 50%;
  pointer-events: none;
  backdrop-filter: blur(2px);
  transition: width .25s ease, height .25s ease, margin .25s ease, background-color .25s ease;
}

#ball .circle {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00b7ef;
}

.preloader {
  position: fixed;
  z-index: 10000000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf4f8;
}

.loading-container {
  width: 116px;
  height: 116px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading {
  width: 116px;
  height: 116px;
  position: absolute;
  inset: 0;
  border: 2px solid rgba(23, 36, 50, .12);
  border-top-color: #00b7ef;
  border-right-color: #00d2aa;
  border-radius: 50%;
  animation: nimber-loader 1.1s linear infinite;
}

#loading-icon {
  width: 72px;
}

#loading-icon img {
  width: 100%;
  height: auto;
}

body.nimber-home .preloader {
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}

body.nimber-home .preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}


/* Header and navigation -------------------------------------------- */

.site-header {
  font-family: var(--font-navigation);
  top: 0;
  right: 0;
  left: 0;
  height: 146px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: fixed;
  z-index: 1000;
  isolation: isolate;
  background: transparent !important;
  box-shadow: none !important;
  transition: height .4s cubic-bezier(.22, 1, .36, 1);
  transform: translate3d(0, 0, 0);
}

.site-header a,
.site-header button,
.site-header input,
.site-header select,
.site-header textarea {
  font-family: var(--font-navigation);
}

.site-nav {
  font-family: var(--font-navigation);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-nav a {
  font-family: var(--font-navigation);font-size: 16px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  position: relative;
  white-space: normal;
}

.menu-toggle {
  font-family: var(--font-navigation);
  display: none;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  width: 100%;
  max-width: calc(var(--container-wide) + (var(--container-gutter) * 2));
  height: 100%;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.site-logo img {
  width: 195px;
  height: auto;
  transform: translateZ(0);
  transition: width .4s cubic-bezier(.22, 1, .36, 1);
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 3.2vw, 70px);
}

.header-login {
  color: #172432;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  white-space: normal;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: .29em;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 44px;
  transition: opacity .22s ease;
}

.site-header.is-scrolled {
  height: 92px;
  position: fixed;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header.is-scrolled .site-logo img {
  width: 165px;
}

body.menu-open,
html.menu-open {
  overflow: hidden !important;
  overscroll-behavior: none;
}

body.menu-open::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  background: rgba(12, 25, 35, .48);
  backdrop-filter: blur(3px);
  animation: nimber-backdrop-in .28s ease both;
  content: none !important;
}

body.menu-open .site-header {
  z-index: 1000;
}

body.menu-open .site-header__inner > .site-logo,
body.menu-open .header-actions {
  opacity: 0;
  pointer-events: none;
}

.site-header__inner > .site-logo {
  transition: opacity .22s ease;
}

.site-nav__mobile-head {
  display: none;
  position: relative;
}

.site-nav__mobile-actions {
  display: none;
}

.site-nav__close {
  display: none;
  position: absolute;
  top: 50%;
  right: 0;
  width: 46px;
  height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: #172432;
  box-shadow: 0 12px 28px rgba(17, 37, 52, .2);
  transform: translateY(-50%);
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.site-nav__close:hover {
  background: #27465c;
  box-shadow: 0 15px 34px rgba(17, 37, 52, .28);
  transform: translateY(-50%) scale(1.04);
}

.site-nav__close span {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
}

.site-nav__close span:first-child {
  transform: rotate(45deg);
}

.site-nav__close span:last-child {
  transform: rotate(-45deg);
}

.site-header::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 248, 250, 0);
  box-shadow: 0 12px 34px rgba(23, 36, 50, 0);
  opacity: 0;
  transition: opacity .3s ease,
        background-color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
  pointer-events: none;
}

.site-header.is-scrolled::before {
  border-bottom-color: rgba(81, 134, 167, .12);
  background: rgba(244, 248, 250, .96);
  box-shadow: 0 12px 34px rgba(23, 36, 50, .09);
  opacity: 1;
}

.menu-backdrop {
  position: fixed;
  z-index: 998;
  inset: 0;
  visibility: hidden;
  background: rgba(10, 24, 34, .48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .38s ease, visibility 0s linear .38s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.menu-backdrop.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

html.js.nimber-hero-booting body.nimber-home .site-header__inner {
  visibility: hidden;
}

html.nimber-animations-disabled body.nimber-home .site-header__inner {
  visibility: visible;
}


/* Hero ------------------------------------------------------------- */


/* Benefits --------------------------------------------------------- */


/* How it works ----------------------------------------------------- */


/* Future CTA ------------------------------------------------------- */

.future-cta {
  position: relative;
  display: flex;
  align-items: center;
  overflow: clip;
  contain: paint;
  isolation: isolate;
  background: linear-gradient(110deg, #1d2c3a 0%, #2d5269 56%, #548bae 100%);
  min-height: 513px;
  z-index: 2;
  box-shadow: 0 -20px 38px rgba(25, 56, 76, .24),
        0 22px 42px rgba(25, 56, 76, .26);
}

.future-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 31, 42, .5), transparent 65%);
}

.future-cta__pattern {
  position: absolute;
  z-index: 1;
  opacity: .95;
  filter: none !important;
  box-shadow: none !important;
  will-change: transform, opacity;
  max-width: none;
  pointer-events: none;
  user-select: none;
  top: -46px;
  right: -72px;
  width: min(1040px, 64vw);
  height: auto;
  transform-origin: 70% 42%;
}

.future-cta__inner {
  position: relative;
  z-index: 2;
}

.future-cta__content {
  color: #fff;
  width: 500px;
  padding: 112px 0 70px;
}

.future-cta h2 {
  margin: 0;
  margin-bottom: 2rem;
  font-size: 49px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.future-cta h2 strong {
  color: #42c4ff;
}

.future-cta p {
  margin: 0;
  margin-bottom: 2rem;
  font-size: 18px;
  line-height: 1.55;
}


/* Market and strategy ---------------------------------------------- */


/* Access ----------------------------------------------------------- */

.access {
  min-height: 0;
  padding: 120px 0 100px;
  padding-top: 0;
}

.access__grid {
  display: grid;
  grid-template-columns: .78fr 1.45fr;
  align-items: center;
  gap: 80px;
}

.access__copy {
  padding-left: 0;
}

.access__copy h2 {
  margin: 0 0 36px;
  color: #050505;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.access__copy h2 strong {
  color: #172432;
}

.access__copy > p:not(.eyebrow) {
  max-width: 480px;
  margin: 0 0 30px;
  color: #111;
  font-size: 18px;
  line-height: 1.52;
}

.access__copy .button {
  margin-top: 22px;
}

.access__visual {
  position: relative;
  width: 100%;
  min-width: 0;
  container-type: inline-size;
}


/* Media strip ------------------------------------------------------ */

.media {
  padding: 15px 0 0;
}

.media__intro {
  text-align: center;
}

.media__intro h2 {
  max-width: 1180px;
  margin: 0 auto;
  color: #050505;
  font-size: 43px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.media-strip {
  margin-top: 96px;
  overflow: hidden;
}

.media-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  margin-left: 0;
  backface-visibility: hidden;
  gap: 0;
  animation: none !important;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.media-strip__group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  gap: 95px;
  padding-right: 95px;
  box-sizing: border-box;
  min-width: 100vw;
  justify-content: space-between;
  padding-inline: 47.5px;
}

.media-strip__group--clone {
  display: flex;
}

.media-strip img {
  flex: 0 0 auto;
  max-width: 260px;
  max-height: 76px;
  object-fit: contain;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.media-strip img:first-child {
  width: 185px;
}

.media-strip img:nth-child(3) {
  width: 250px;
}

.media-strip img:nth-child(4),
.media-strip img:nth-child(5) {
  width: 220px;
}


/* Testimonials ----------------------------------------------------- */


.testimonials__shape {
  position: absolute;
  border-radius: 50%;
  border: 34px solid rgba(255,255,255,.25);
  display: none !important;
}

.testimonials__shape--one {
  width: 1000px;
  height: 300px;
  left: 20%;
  top: 250px;
  transform: rotate(-15deg);
}

.testimonials__shape--two {
  width: 900px;
  height: 260px;
  left: -150px;
  bottom: -60px;
  transform: rotate(12deg);
}

.testimonials__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 105px;
}


.stars {
  display: flex;
  gap: 6px;
  color: #ff9d26;
  font-size: 31px;
}

.author {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.author img {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  display: block;
  color: #172432;
  line-height: 1.05;
  font-size: 40px;
}

.author span {
  display: block;
  color: #4f8ab0;
  line-height: 1.1;
  font-size: clamp(18px, 1.56vw, 30px);
}


.testimonials__container {
  max-width: fit-content;
}


/* Blog carousel ---------------------------------------------------- */

.blog-section {
  min-height: 700px;
  padding: 115px 0 0;
  overflow: clip;
}

.blog-section__grid {
  display: grid;
  gap: 84px;
  grid-template-columns: minmax(290px, 340px) minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(84px, 7vw, 138px);
}

.blog-section__intro {
  padding-left: 10px;
  align-self: center;
  padding-top: 0;
}

.blog-section__intro h2 {
  margin: 0 0 28px;
  color: #050505;
  font-size: 41px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.04em;
}

.blog-section__intro p:not(.eyebrow) {
  margin: 0 0 34px;
  line-height: 1.58;
  font-size: 18px;
}

.blog-section__intro .button {
  padding: 10px 20px;
  font-size: 11px;
  min-width: 278px;
  min-height: 50px;
}


/* Newsletter ------------------------------------------------------- */

.newsletter {
  padding: 75px 0 125px;
}

.newsletter__box {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 80px 70px 58px;
  border-radius: 34px;
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), box-shadow .32s ease, border-color .32s ease;
  background: linear-gradient(108deg, #b4cee1 0%, #c6d9e6 54%, #e5e8ea 100%) !important;
  box-shadow: 0 7px 0 rgba(80, 111, 132, .08),
        0 12px 20px rgba(50, 76, 94, .13);
}

.newsletter__box > img {
  position: absolute;
  max-width: none;
  pointer-events: none;
  user-select: none;
  top: -78px;
  right: -82px;
  width: min(720px, 52vw);
  height: auto;
  opacity: .94;
}

.newsletter h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 38px;
  color: #172432;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -.02em;
}

.newsletter h2 strong {
  color: #00b9f2;
}

.newsletter__form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 30px;
  max-width: 1050px;
}

.newsletter input {
  height: 66px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  padding: 0 45px;
  color: #172432;
  font-size: 16px;
  letter-spacing: .26em;
  outline: none;
}

.newsletter button {
  height: 66px;
  border: 0;
  border-radius: 999px;
  color: #172432;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  transition: color .42s ease,
        transform .42s cubic-bezier(.22, 1, .36, 1),
        box-shadow .42s ease,
        border-color .42s ease;
}

.newsletter input:focus {
  box-shadow: 0 0 0 3px rgba(0,183,239,.25);
}

.newsletter__message {
  position: relative;
  z-index: 1;
  margin: 12px 0 0 30px;
  color: #172432;
  font-size: 18px;
}

.newsletter button::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(100deg, #f7fcfe 0%, #e4f6fb 52%, #d7eff7 100%);
  opacity: 0;
  transition: opacity .46s ease;
}

.newsletter button:hover {
  color: #24566f;
  transform: translateY(-1px);
  box-shadow: 0 9px 20px rgba(37, 92, 121, .15);
}

.newsletter button:hover::before {
  opacity: 1;
}

.newsletter button:active {
  transform: translateY(0) scale(.995);
  box-shadow: 0 5px 12px rgba(37, 92, 121, .12);
}

.newsletter button:focus-visible {
  outline: 3px solid rgba(0, 183, 239, .26);
  outline-offset: 4px;
}


/* Footer ----------------------------------------------------------- */

.site-footer,
.site-footer a,
.site-footer button,
.site-footer input,
.site-footer select,
.site-footer textarea {
  font-family: var(--font-navigation);
}

.footer-social {
  background: #b1c9dd;
}

.footer-social__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.footer-social img {
  width: 178px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #172432;
  font-size: 23px;
}

.footer-main {
  min-height: 520px;
  padding: 70px 0 55px;
  color: #d7e2e9;
  background: var(--footer);
}

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

.footer-column h2 {
  margin: 0 0 17px;
  color: #5c9ac1;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.footer-column a:hover {
  color: #49c6ff;
}

.footer-legal {
  margin: 70px 0 42px;
  color: #4e88ad;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 27px;
  border-top: 1px solid #5f89a3;
  color: #4d8aaf;
  font-size: 12px;
  font-weight: 600;
}

.footer-bottom p {
  margin: 0;
}


/* States and utilities --------------------------------------------- */

.section-intro {
  text-align: center;
}

.section-intro--how h2 {
  margin: 0;
  color: #050505;
  font-size: 50px;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -.04em;
}

.section-intro--testimonials {
  position: relative;
  z-index: 2;
}

.section-intro--testimonials h2 {
  margin: 0;
  color: #1b2733;
  font-size: 50px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.section-intro--testimonials h2 strong {
  color: #00b9ed;
}

.section-intro--testimonials p {
  margin: 12px 0 0;
  color: #568aae;
  font-size: 18px;
}

body.nimber-home a,
body.nimber-home button,
body.nimber-home [role="button"] {
  cursor: pointer;
}

body.nimber-home input,
body.nimber-home textarea {
  cursor: text;
}

#testimonials-title::before,
#testimonials-title::after {
  content: none !important;
  display: none !important;
}

body.nimber-home main > section[id],
body.nimber-home main#conteudo,
body.nimber-home main#main-content {
  scroll-margin-top: 112px;
}


@supports not (width: 1cqi){
  /* Market and strategy */
  
}


@media (min-width: 2200px){
  /* Blog carousel */
  
}


@media (min-width: 1200px){
  /* Market and strategy */
  
}


@media (min-width: 1025px) and (pointer: fine){
  /* Preloader and cursor */
  #magic-cursor {
    left: 0 !important;
    top: 0 !important;
    width: 0 !important;
    height: 0 !important;
  }
  #ball {
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    transform: translate3d(0, 0, 0);
    transform-origin: 50% 50%;
    will-change: transform;
  }
  #ball .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}


@media (hover: hover) and (pointer: fine){
  /* Blog carousel */
  
}


@media (max-width: 1399.98px){
  /* Shared components */
  .button--header {
    min-width: 220px;
  }
  /* Header and navigation */
  .site-header__inner {
    grid-template-columns: 190px 1fr auto;
  }
  .site-nav__links {
    gap: 30px;
  }
  .site-nav a,
  .header-login {
    font-size: 16px;
  }
  .header-actions {
    gap: 25px;
  }
  /* Benefits */
  
  
  
  /* How it works */
  
  /* Market and strategy */
  
  /* Access */
  .access__copy {
    padding-left: 0;
  }
}


@media (max-width: 1199.98px){
  /* Foundation */
  :root {
    --container-gutter: 24px;
  }
  /* Shared components */
  .button--mobile-menu {
    width: 100%;
    min-height: 54px;
    color: #fff;
    background: linear-gradient(100deg, #1c2c3b, #5186a7);
  }
  .button--header {
    min-width: 190px;
    min-height: 48px;
    font-size: 10px;
  }
  /* Header and navigation */
  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    height: 92px;
  }
  .site-header__inner {
    grid-template-columns: 175px auto 1fr;
  }
  .site-logo img,
  .site-header.is-scrolled .site-logo img,
  .site-header .site-logo img {
    width: 165px;
  }
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: linear-gradient(180deg, #f8fafb 0%, #edf3f6 100%);
    z-index: 1001;
    width: min(430px, 92vw);
    height: 100svh;
    max-height: 100dvh;
    padding: 28px 30px 34px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(calc(100% + 28px), 0, 0);
    box-shadow: -24px 0 64px rgba(17, 37, 52, .22);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1),
            opacity .28s ease,
            visibility 0s linear .5s;
    will-change: transform, opacity;
    contain: layout paint;
  }
  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }
  .site-nav__mobile-head {
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(81, 134, 167, .24);
    display: flex;
    position: relative;
    min-height: 64px;
    padding: 0 72px 18px 0;
  }
  .site-nav__mobile-head img {
    height: auto;
    width: 148px;
  }
  .site-nav__mobile-head span {
    color: #6b8495;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .34em;
    text-transform: uppercase;
  }
  .site-nav__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translate3d(28px, 0, 0);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1),
            opacity .32s ease;
    padding: 26px 0 20px;
  }
  .site-nav__links a {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(81, 134, 167, .16);
    color: #172432;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .2em;
    position: relative;
    min-height: 60px;
    padding: 0 8px 0 0;
    transition: color .22s ease, padding-left .3s cubic-bezier(.22, 1, .36, 1);
  }
  .site-nav__links a::after {
    right: 0;
    bottom: 0;
  }
  .site-nav__mobile-actions {
    gap: 14px;
    margin-top: auto;
    padding-top: 30px;
    display: grid;
    opacity: 0;
    transform: translate3d(28px, 0, 0);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1),
            opacity .32s ease;
  }
  .site-nav__mobile-login {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border: 1px solid rgba(81, 134, 167, .55);
    border-radius: 999px;
    color: #172432;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
  }
  .menu-toggle {
    z-index: 1002;
    display: flex;
    width: 48px;
    height: 48px;
    margin-left: auto;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(81, 134, 167, .34);
    border-radius: 50%;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 6px 18px rgba(23, 36, 50, .08);
    backdrop-filter: blur(10px);
    touch-action: manipulation;
    position: relative;
    top: auto;
    right: auto;
    flex: 0 0 auto;
    transform: translateZ(0);
    transition: opacity .22s ease,
            visibility .22s ease,
            background-color .22s ease,
            border-color .22s ease,
            box-shadow .22s ease,
            transform .22s ease;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #172432;
    transform-origin: center;
    transition: transform .3s ease, opacity .2s ease, background-color .25s ease;
  }
  .menu-toggle.is-open {
    border-color: rgba(255,255,255,.18);
    background: #172432;
    box-shadow: 0 14px 30px rgba(17, 37, 52, .25);
    position: relative;
    top: auto;
    right: auto;
    flex: 0 0 auto;
    transform: translateZ(0);
    transition: opacity .22s ease,
            visibility .22s ease,
            background-color .22s ease,
            border-color .22s ease,
            box-shadow .22s ease,
            transform .22s ease;
  }
  .menu-toggle.is-open span {
    position: static;
    background: #172432;
    transform: none !important;
    opacity: 1 !important;
  }
  .menu-toggle.is-open span:nth-child(1) {
    transform: rotate(45deg);
  }
  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .menu-toggle.is-open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .header-actions {
    justify-self: end;
  }
  .header-login {
    display: none;
  }
  .site-nav__close {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    transform: rotate(-35deg);
    opacity: 0;
    transition: transform .42s cubic-bezier(.16, 1, .3, 1) .14s,
            opacity .24s ease .14s,
            background-color .22s ease,
            box-shadow .22s ease;
  }
  body.menu-open .menu-toggle {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(.9);
  }
  .site-nav.is-open .site-nav__close {
    transform: rotate(0deg);
    opacity: 1;
  }
  .site-nav__close:hover {
    transform: scale(1.04) rotate(0deg);
  }
  .site-nav__mobile-head > img,
  .site-nav__mobile-head > span {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
    transition: transform .5s cubic-bezier(.16, 1, .3, 1),
            opacity .32s ease;
  }
  .site-nav.is-open .site-nav__mobile-head > img,
  .site-nav.is-open .site-nav__mobile-head > span {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: .1s;
  }
  .site-nav.is-open .site-nav__links {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: .16s;
  }
  .site-nav.is-open .site-nav__mobile-actions {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: .22s;
  }
  .site-nav__links a::before {
    content: "";
    width: 0;
    height: 1px;
    margin-right: 0;
    background: linear-gradient(90deg, #00d2aa, #00b7ef);
    transition: width .3s ease, margin-right .3s ease;
  }
  .site-nav__links a:hover {
    padding-left: 8px;
    color: #2f779e;
  }
  .site-nav__links a:hover::before {
    width: 18px;
    margin-right: 10px;
  }
  body.menu-open .site-header__inner > .site-logo,
  body.menu-open .header-actions {
    opacity: 1;
    pointer-events: auto;
  }
  /* Hero */
  
  
  
  /* Benefits */
  
  
  
  /* How it works */
  
  
  
  
  /* Future CTA */
  .future-cta__content {
    padding-left: 0;
  }
  .future-cta__pattern {
    top: -12px;
    right: -270px;
    width: 850px;
  }
  /* Market and strategy */
  
  
  
  
  
  
  
  
  /* Access */
  .access {
    min-height: auto;
    padding-top: 0;
  }
  .access__grid {
    grid-template-columns: 1fr;
  }
  .access__copy {
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
  }
  .access__copy > p:not(.eyebrow) {
    margin-inline: auto;
  }
  .access__visual {
    max-width: 900px;
    margin-inline: auto;
  }
  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }
  /* Blog carousel */
  .blog-section__grid {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 58px;
  }
  .blog-section__intro {
    text-align: center;
    margin-inline: auto;
    max-width: 520px;
    padding-top: 0;
  }
  
  
  
  /* Newsletter */
  .newsletter__box > img {
    top: -42px;
    right: -270px;
    width: 700px;
    opacity: .74;
  }
}


@media (max-width: 991.98px){
  /* Preloader and cursor */
  body.nimber-home.tt-magic-cursor {
    cursor: auto;
  }
  #magic-cursor {
    display: none;
  }
  /* Header and navigation */
  .site-header.is-scrolled,
  .site-header {
    height: 86px;
  }
  /* Future CTA */
  .future-cta__pattern {
    top: 0;
    right: -340px;
    width: 800px;
    opacity: .62;
  }
  .future-cta {
    box-shadow: 0 -14px 30px rgba(25, 56, 76, .2),
            0 16px 34px rgba(25, 56, 76, .22);
  }
  /* Testimonials */
  
  
  /* Newsletter */
  .newsletter__box > img {
    top: -18px;
    right: -350px;
    width: 690px;
    opacity: .62;
  }
  /* States and utilities */
  body.nimber-home main > section[id],
  body.nimber-home main#conteudo,
body.nimber-home main#main-content {
    scroll-margin-top: 96px;
  }
}


@media (max-width: 767.98px){
  /* Foundation */
  :root {
    --nimber-mobile-gutter: 20px;
    --container-gutter: var(--nimber-mobile-gutter);
    --nimber-mobile-section-space: 68px;
  }
  html,
  body {
    overflow-x: hidden;
  }
  /* Shared components */
  .button--header {
    display: none;
  }
  .eyebrow,
  .eyebrow--dark,
  .eyebrow--spaced {
    max-width: 100%;
    margin-bottom: 16px;
    letter-spacing: .17em;
    white-space: normal;
    text-align: inherit;
    line-height: 1.5;
    font-weight: 600;
  }
  .button {
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 12px 22px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .18em;
    white-space: normal;
    text-align: center;
  }
  .nimber-container > * {
    min-width: 0;
  }
  /* Header and navigation */
  .site-header,
  .site-header.is-scrolled {
    height: 84px;
  }
  .site-header__inner {
    display: flex;
    gap: 12px;
  }
  .site-logo img {
    width: 135px;
  }
  .header-actions {
    display: none;
  }
  .site-nav {
    width: min(390px, 94vw);
    padding: 22px 22px 28px;
  }
  .site-nav__mobile-head {
    min-height: 58px;
    padding: 0 64px 16px 0;
  }
  .site-nav__mobile-head img {
    width: 132px;
  }
  .site-nav__links {
    padding-top: 20px;
  }
  .site-nav__links a {
    min-height: 56px;
    font-size: 13px;
    letter-spacing: .17em;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
  }
  .menu-toggle.is-open {
    top: 18px;
    right: 18px;
  }
  .site-nav__close {
    top: 0;
    right: 0;
    width: 44px;
    height: 44px;
  }
  .site-nav__close span {
    width: 19px;
  }
  /* Hero */
  
  
  
  
  
  
  
  /* Benefits */
  
  
  
  
  
  
  
  
  /* How it works */
  
  
  
  
  
  
  
  
  
  
  /* Future CTA */
  .future-cta {
    min-height: auto;
  }
  .future-cta__pattern {
    bottom: -82px;
    right: -420px;
    width: 790px;
    opacity: .48;
  }
  .future-cta__content {
    width: min(100%, 500px);
    padding-block: 62px;
    padding: 72px 0 70px;
  }
  .future-cta h2 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 37px);
    line-height: 1.13;
    letter-spacing: -.022em;
  }
  .future-cta p {
    max-width: 480px;
    margin: 24px 0 30px;
    font-size: 18px;
    line-height: 1.6;
  }
  .future-cta h2 br {
    display: none;
  }
  /* Market and strategy */
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  /* Access */
  .access {
    min-height: auto;
    padding: 0 0 72px;
  }
  .access__copy h2 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 37px);
    line-height: 1.13;
    letter-spacing: -.022em;
  }
  .access__copy > p:not(.eyebrow) {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.62;
  }
  .access__copy {
    min-width: 0;
    max-width: 100%;
    padding-inline: 0;
  }
  .access__copy h2 br {
    display: none;
  }
  .access__grid {
    gap: 42px;
  }
  /* Media strip */
  .media__intro h2 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 37px);
    line-height: 1.13;
    letter-spacing: -.022em;
  }
  .media-strip {
    margin-top: 48px;
  }
  .media-strip__track {
    width: max-content;
    margin-left: 0;
    animation: nimber-media-marquee 28s linear infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
  }
  .media-strip__group {
    justify-content: flex-start;
    flex: 0 0 auto;
    width: auto;
    gap: 55px;
    padding-right: 55px;
    min-width: 100vw;
    padding-inline: 27.5px;
  }
  .media-strip__group--clone {
    display: flex;
  }
  .media-strip img {
    flex: 0 0 auto;
    max-width: 170px;
    max-height: 55px;
    transform: translateZ(0);
    backface-visibility: hidden;
  }
  .media__intro {
    min-width: 0;
    max-width: 100%;
  }
  .media {
    min-height: auto;
    padding-top: var(--nimber-mobile-section-space);
    padding-bottom: var(--nimber-mobile-section-space);
  }
  .media-strip__track:hover {
    animation-play-state: running;
  }
  /* Testimonials */
  
  
  
  .author img {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
  }
  .author strong {
    font-size: 20px;
    line-height: 1.15;
  }
  .author span {
    margin-top: 3px;
    line-height: 1.3;
  }
  .author > div {
    min-width: 0;
    max-width: 100%;
  }
  .testimonials__grid {
    gap: 20px;
    margin-top: 44px;
  }
  
  .author {
    gap: 14px;
    margin-top: 20px;
  }
  /* Blog carousel */
  .blog-section {
    min-height: auto;
    padding: 72px 0 0;
  }
  
  
  .blog-section__intro {
    min-width: 0;
    max-width: 100%;
    padding-inline: 0;
  }
  
  .blog-section__intro .button {
    max-width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 12px 22px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .18em;
    white-space: normal;
    text-align: center;
    width: min(100%, 278px);
  }
  .blog-section__intro p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.62;
  }
  .blog-section__intro h2 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 37px);
    line-height: 1.13;
    letter-spacing: -.022em;
  }
  .blog-section__intro h2 br {
    display: none;
  }
  .blog-section__grid {
    gap: 40px;
    row-gap: 40px;
  }
  
  
  
  
  
  
  
  
  /* Newsletter */
  .newsletter {
    min-height: auto;
    padding: 56px 0 72px;
  }
  .newsletter__box {
    min-width: 0;
    max-width: 100%;
    min-height: 0;
    border-radius: 26px;
    padding: 42px 20px;
  }
  .newsletter__box > img {
    top: 10px;
    right: -430px;
    width: 680px;
    opacity: .48;
  }
  .newsletter h2 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 37px);
    line-height: 1.13;
    letter-spacing: -.022em;
    margin-bottom: 24px;
  }
  .newsletter__form {
    grid-template-columns: 1fr;
    gap: 16px;
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .newsletter input {
    width: 100%;
    min-width: 0;
    height: 56px;
    padding-inline: 24px;
    font-size: 16px;
    letter-spacing: .16em;
  }
  .newsletter button {
    width: 100%;
    min-width: 0;
    height: 56px;
    padding-inline: 18px;
    font-size: 11px;
    letter-spacing: .18em;
    white-space: normal;
  }
  /* Footer */
  .footer-social img {
    width: 145px;
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }
  .footer-column:last-child {
    grid-column: 1 / -1;
  }
  .footer-legal {
    margin-top: 55px;
    font-weight: 600;
    line-height: 1.65;
    font-size: 10px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    font-weight: 600;
    line-height: 1.65;
    font-size: 12px;
  }
  .footer-column,
  .footer-bottom p {
    min-width: 0;
    max-width: 100%;
  }
  .footer-column h2 {
    max-width: 100%;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: .18em;
  }
  .footer-column a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
  }
  /* States and utilities */
  .section-intro--how h2,
  .section-intro--testimonials h2 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 37px);
    line-height: 1.13;
    letter-spacing: -.022em;
  }
  .section-intro--how h2 br,
  .section-intro--testimonials p br {
    display: none;
  }
  .section-intro--testimonials {
    min-width: 0;
    max-width: 100%;
  }
  .nimber-home h1,
  .nimber-home h2,
  .nimber-home h3,
  .nimber-home h4 {
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: balance;
  }
  .nimber-home p {
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: pretty;
  }
  .nimber-home a,
  .nimber-home span,
  .nimber-home strong,
  .nimber-home button,
  .nimber-home input {
    overflow-wrap: break-word;
    word-break: normal;
  }
  .section-intro--testimonials p {
    font-size: 18px;
    line-height: 1.62;
  }
}


@media (max-width: 559.98px){
  /* Market and strategy */
  

  

  
}


@media (max-width: 479.98px){
  /* Foundation */
  :root {
    --nimber-mobile-gutter: 18px;
    --nimber-mobile-section-space: 60px;
  }
  /* Header and navigation */
  .site-nav {
    width: 100%;
    max-width: none;
  }
  .site-nav__mobile-head {
    padding-right: 56px;
  }
  /* Hero */
  
  
  
  
  /* How it works */
  
  
  /* Future CTA */
  .future-cta__pattern {
    right: -475px;
    width: 780px;
  }
  /* Market and strategy */
  
  
  
  
  /* Access */
  .access {
    padding: 0 0 64px;
  }
  /* Testimonials */
  .testimonials__grid {
    margin-top: 38px;
  }
  /* Blog carousel */
  
  .blog-section {
    padding: 64px 0 0;
  }
  /* Newsletter */
  .newsletter__box > img {
    top: 22px;
    right: -470px;
    width: 670px;
    opacity: .42;
  }
  .newsletter__box {
    padding-inline: 18px;
  }
  .newsletter {
    padding: 50px 0 64px;
  }
  /* Footer */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-column:last-child {
    grid-column: auto;
  }
}


@media (max-width: 420px){
}


@media (max-width: 359.98px){
  /* Foundation */
  :root {
    --nimber-mobile-gutter: 16px;
    --nimber-mobile-section-space: 58px;
  }
  /* Hero */
  
  /* Benefits */
  
  /* How it works */
  
  
  
  /* Blog carousel */
  
}


@media (prefers-reduced-motion: reduce){
  /* Foundation */
  * {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  /* Preloader and cursor */
  #magic-cursor {
    display: none !important;
  }
  /* How it works */
  
  
  /* Market and strategy */
  
  
  
  /* Media strip */
  .media-strip__track {
    animation: none !important;
    transform: translate3d(0, 0, 0) !important;
  }
  /* Blog carousel */
  
  
  
  /* Newsletter */
  .newsletter button,
  .newsletter button::before {
    transition: none !important;
  }
  /* States and utilities */
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


@keyframes nimber-media-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}


@keyframes nimber-loader { to { transform: rotate(360deg); } }


@keyframes nimber-backdrop-in { from { opacity: 0; } to { opacity: 1; } }


@keyframes nimber-frame-light-pass {
  0% {
    opacity: 0;
    transform: translate3d(-24%, 0, 0);
  }
  38% {
    opacity: .72;
  }
  100% {
    opacity: 0;
    transform: translate3d(24%, 0, 0);
  }
}


@keyframes nimber-frame-glow-in {
  0% {
    opacity: 0;
    transform: scale(.92);
  }
  58% {
    opacity: .62;
  }
  100% {
    opacity: .36;
    transform: scale(1);
  }
}


@keyframes nimber-frame-light-pass-v6 {
  0% {
    opacity: 0;
    transform: translate3d(-42%, 0, 0) skewX(-7deg);
  }
  35% {
    opacity: .58;
  }
  72% {
    opacity: .24;
  }
  100% {
    opacity: 0;
    transform: translate3d(42%, 0, 0) skewX(-7deg);
  }
}
