/* ===== CONSOLIDATED SUPPORT (from OP2) ===== */
.btn-secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .32);
  backdrop-filter: blur(14px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.ecosystem {
  background: radial-gradient(circle at 10% 20%, rgba(254, 229, 2, .18), transparent 24%), linear-gradient(180deg, #f7f9ff, #fff);
}

.orbit-wrap {
  display: grid;
  place-items: center;
}

.orbit-map {
  position: relative;
  width: min(100%, 980px);
  height: 660px;
  margin: 10px auto 54px;
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(5, 64, 197, .3);
}

.ring-one {
  width: 420px;
  height: 420px;
}

.ring-two {
  width: 650px;
  height: 650px;
}

.module-card {
  position: absolute;
  width: 230px;
  min-height: 118px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(5, 64, 197, .13);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(5, 64, 197, .12);
  transition: .25s;
}

.module-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 70px rgba(5, 64, 197, .18);
}

.module-card b {
  display: block;
  font-size: 20px;
  color: var(--blue);
  letter-spacing: -.035em;
}

.module-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.module-1 {
  left: 4%;
  top: 14%;
}

.module-2 {
  right: 7%;
  top: 8%;
}

.module-3 {
  left: 0;
  bottom: 17%;
}

.module-4 {
  right: 1%;
  bottom: 21%;
}

.module-5 {
  left: 39%;
  top: 0;
}

.module-6 {
  left: 38%;
  bottom: 0;
}

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

.solution-card {
  min-height: 230px;
  padding: 28px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(5, 64, 197, .08);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(5, 64, 197, .07);
}

.solution-card span {
  font-size: 13px;
  font-weight: 950;
  color: var(--blue);
  letter-spacing: .13em;
}

.solution-card h3 {
  font-size: 25px;
  letter-spacing: -.045em;
  line-height: 1.06;
  margin: 30px 0 12px;
}

.solution-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.solution-card.featured {
  background: var(--blue);
  color: #fff;
}

.solution-card.featured span,
.solution-card.featured p {
  color: rgba(255, 255, 255, .74);
}

.solution-card.featured::before {
  background: rgba(254, 229, 2, .16);
}

.solution-card.accent {
  background: var(--yellow);
}

.solution-card.accent span,
.solution-card.accent p {
  color: #152146;
}

.lab-grid {
  display: grid;
  gap: 22px;
}

.lab-product {
  display: grid;
  grid-template-columns: .85fr 1.05fr;
  gap: 26px;
  align-items: center;
  min-height: 430px;
  padding: 22px;
  border-radius: 38px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(5, 64, 197, .09);
  overflow: hidden;
}

.lab-product.access {
  background: linear-gradient(135deg, #fef9bd, #fff 44%, #f5f8ff);
}

.lab-product.joga {
  background: linear-gradient(135deg, #eef5ff, #fff 44%, #f6fbff);
}

.lab-product.nps {
  background: linear-gradient(135deg, #f7f2ff, #fff 44%, #f7f9ff);
}

.product-copy {
  padding: 24px;
}

.product-copy img {
  height: 42px;
  width: auto;
  margin-bottom: 30px;
  object-fit: contain;
}

.product-copy h3 {
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -.055em;
  margin: 0 0 16px;
}

.product-copy p {
  line-height: 1.65;
  color: var(--muted);
  font-size: 16px;
}

.product-copy ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.product-copy li {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
  color: #1c2a4f;
}

.product-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

@media (max-width:980px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orbit-map {
    height: auto;
    display: grid;
    gap: 14px;
  }

  .orbit-ring,
  .orbit-core {
    display: none;
  }

  .module-card {
    position: static;
    width: 100%;
  }

  .lab-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width:640px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .lab-product {
    padding: 14px;
    border-radius: 28px;
  }

  .product-copy {
    padding: 14px;
  }

  .product-copy h3 {
    font-size: 28px;
  }
}

@keyframes scrollDot {
  50% {
    top: 15px;
    opacity: .45;
  }
}


/* ===== OP3 ORIGINAL CSS ===== */
:root {
  --blue: #0540C5;
  --blue-2: #0732a0;
  --blue-dark: #06123d;
  --yellow: #FEE502;
  --ink: #071333;
  --muted: #667085;
  --white: #fff;
  --paper: #f7f8fb;
  --line: rgba(5, 64, 197, .14);
  --shadow: 0 30px 90px rgba(6, 18, 61, .18);
  --radius: 30px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden
}

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

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

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

.section {
  position: relative;
  padding: 110px 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900
}

.eyebrow:before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px
}

.eyebrow-light {
  color: #fff
}

.section h2 {
  font-size: clamp(38px, 6vw, 78px);
  line-height: .94;
  letter-spacing: -.07em;
  margin: 16px 0 22px
}

.section p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted)
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 58px);
  transition: .35s ease;
  color: #fff
}

.site-header.scrolled {
  height: 72px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 40px rgba(6, 18, 61, .12);
  color: var(--ink)
}

.brand-logo {
  height: 38px;
  width: auto
}

.brand-logo-dark {
  display: none
}

.site-header.scrolled .brand-logo-light {
  display: none
}

.site-header.scrolled .brand-logo-dark {
  display: block
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800
}

.nav a {
  opacity: .9
}

.nav a:hover {
  opacity: 1;
  color: var(--yellow)
}

.site-header.scrolled .nav a:hover {
  color: var(--blue)
}

.nav-cta {
  background: var(--yellow);
  color: var(--blue-dark) !important;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(254, 229, 2, .25);
  opacity: 1 !important
}

.site-header.scrolled .nav-cta {
  background: var(--blue);
  color: #fff !important
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 7px 0;
  border-radius: 99px
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark)
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.06)
}

.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 64, 197, .98) 0%, rgba(5, 64, 197, .82) 38%, rgba(5, 64, 197, .28) 62%, rgba(6, 18, 61, .18) 100%), linear-gradient(0deg, rgba(6, 18, 61, .35), rgba(6, 18, 61, .05) 45%, rgba(6, 18, 61, .28))
}

.motion-ribbons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: .45
}

.motion-ribbons span {
  position: absolute;
  width: 70vw;
  height: 22vh;
  background: var(--yellow);
  border-radius: 999px;
  filter: blur(12px);
  transform: rotate(-14deg)
}

.motion-ribbons span:nth-child(1) {
  left: -26vw;
  top: 13vh
}

.motion-ribbons span:nth-child(2) {
  right: -36vw;
  top: 42vh;
  background: #1b7cff
}

.motion-ribbons span:nth-child(3) {
  left: 34vw;
  bottom: -15vh;
  height: 18vh;
  background: var(--yellow);
  opacity: .65
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 42px));
  margin-left: clamp(20px, 7vw, 104px);
  padding-top: 48px;
  color: #fff
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-weight: 900;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(12px);
  padding: 11px 16px;
  border-radius: 999px
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(254, 229, 2, .14)
}

.hero h1 {
  font-size: clamp(58px, 10vw, 136px);
  line-height: .82;
  letter-spacing: -.09em;
  margin: 26px 0 24px;
  max-width: 960px
}

.hero p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  max-width: 710px;
  color: rgba(255, 255, 255, .9)
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 38px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
  padding: 0 26px;
  font-weight: 900;
  letter-spacing: -.02em;
  transition: .25s ease
}

.btn:hover {
  transform: translateY(-3px)
}

.btn-primary {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: 0 22px 50px rgba(254, 229, 2, .25)
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, .38);
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px)
}

.hero-proof {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, .86);
  font-size: 14px
}

.hero-proof strong {
  color: var(--yellow)
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  width: 34px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scrollCue 1.5s infinite
}

@keyframes scrollCue {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(25px);
    opacity: 0
  }
}

.brand-story {
  background: linear-gradient(180deg, #fff 0%, #f4f7ff 100%);
  overflow: hidden
}

.brand-story:before {
  content: "MULTICLUBES";
  position: absolute;
  left: -3vw;
  top: 40px;
  font-size: 14vw;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.09em;
  color: rgba(5, 64, 197, .045);
  white-space: nowrap
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 70px;
  align-items: center
}

.section-copy {
  position: relative
}

.story-panel {
  position: relative;
  min-height: 650px
}

.brand-card {
  position: absolute;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.brand-card-blue {
  left: 0;
  top: 118px;
  width: 280px;
  background: var(--blue);
  color: #fff;
  padding: 34px;
  z-index: 4
}

.brand-card-blue img {
  width: 70px;
  margin-bottom: 34px
}

.brand-card-blue span,
.brand-card-yellow span {
  display: block;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -.05em
}

.brand-card-blue p,
.brand-card-yellow p {
  font-size: 15px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55
}

.brand-card-yellow {
  left: 260px;
  top: 140px;
  width: 300px;
  background: var(--yellow);
  padding: 34px;
  color: var(--blue-dark);
  z-index: 3
}

.brand-card-yellow strong {
  font-size: 88px;
  line-height: .85;
  letter-spacing: -.08em
}

.brand-card-yellow p {
  color: rgba(6, 18, 61, .7)
}

.brand-card-image {
  left: 80px;
  top: 360px;
  width: 420px;
  height: 260px;
  z-index: 5
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.values-strip {
  margin-top: 80px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 24px 70px rgba(5, 64, 197, .25)
}

.values-strip span {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 900;
  white-space: nowrap
}

.solutions-motion {
  background: var(--blue-dark);
  color: #fff;
  overflow: hidden
}

.solutions-motion:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(254, 229, 2, .20), transparent 28%), radial-gradient(circle at 80% 15%, rgba(38, 119, 255, .35), transparent 32%), linear-gradient(135deg, rgba(5, 64, 197, .7), transparent 60%)
}

.section-head {
  position: relative
}

.centered {
  text-align: center
}

.centered p {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(255, 255, 255, .75)
}

.orbit-board {
  position: relative;
  height: 680px;
  margin-top: 70px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 48px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(14px);
  overflow: hidden
}

.orbit-board:before,
.orbit-board:after {
  content: "";
  position: absolute;
  inset: 90px;
  border: 1px dashed rgba(254, 229, 2, .25);
  border-radius: 50%
}

.orbit-board:after {
  inset: 170px;
  border-color: rgba(255, 255, 255, .14)
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  z-index: 2;
  box-shadow: 0 30px 90px rgba(254, 229, 2, .22)
}

.orbit-core strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.06em
}

.orbit-core span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900
}

.orbit-card {
  position: absolute;
  width: 240px;
  background: #fff;
  color: var(--ink);
  border-radius: 26px;
  padding: 22px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .22);
  z-index: 3
}

.orbit-card b {
  display: block;
  font-size: 23px;
  letter-spacing: -.05em;
  margin-bottom: 8px;
  color: var(--blue)
}

.orbit-card span {
  font-size: 14px;
  line-height: 1.45;
  color: #516074
}

.o1 {
  left: 7%;
  top: 14%
}

.o2 {
  right: 10%;
  top: 12%
}

.o3 {
  left: 10%;
  bottom: 14%
}

.o4 {
  right: 7%;
  bottom: 15%
}

.o5 {
  left: 40%;
  top: 7%
}

.o6 {
  left: 42%;
  bottom: 8%
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
  position: relative
}

.module-grid article {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  padding: 28px
}

.module-grid span {
  display: inline-flex;
  color: var(--yellow);
  font-weight: 900;
  margin-bottom: 28px
}

.module-grid h3 {
  font-size: 21px;
  letter-spacing: -.05em;
  margin: 0 0 14px
}

.module-grid p {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.6;
  margin: 0
}

.clients-stage {
  background: var(--yellow);
  overflow: hidden
}

.clients-stage:before {
  content: "CLIENTES";
  position: absolute;
  right: -3vw;
  top: 20px;
  font-size: 15vw;
  font-weight: 900;
  letter-spacing: -.08em;
  color: rgba(5, 64, 197, .10)
}

.clients-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 50px;
  align-items: center
}

.clients-copy h2 {
  color: var(--blue);
  max-width: 540px
}

.clients-copy p {
  color: rgba(6, 18, 61, .72)
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px
}

.client-tags span {
  background: #fff;
  color: var(--blue);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 900
}

.clients-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.client-logo {
  min-height: 160px;
  border-radius: 28px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  box-shadow: 0 22px 70px rgba(6, 18, 61, .12);
  transition: .25s ease
}

.client-logo:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 30px 90px rgba(6, 18, 61, .2)
}

.client-logo img {
  max-height: 96px;
  max-width: 190px;
  object-fit: contain
}

.lab-motion {
  background: #050914;
  color: #fff;
  overflow: hidden
}

.lab-motion:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(254, 229, 2, .18), transparent 25%), radial-gradient(circle at 80% 20%, rgba(5, 64, 197, .42), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, .04), transparent)
}

.lab-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
  align-items: center
}

.lab-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, .72)
}

.lab-badge {
  height: 280px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--blue-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 100px rgba(254, 229, 2, .20)
}

.lab-badge span {
  font-size: 98px;
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.1em
}

.lab-badge small {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em
}

.lab-badge strong {
  font-size: 44px;
  letter-spacing: -.08em
}

.products-showcase {
  position: relative;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr;
  gap: 22px;
  align-items: stretch
}

.product-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 34px;
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .24)
}

.product-feature {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  background: linear-gradient(135deg, rgba(5, 64, 197, .8), rgba(255, 255, 255, .08))
}

.product-media {
  position: relative;
  min-height: 440px
}

.product-logo {
  height: 45px;
  width: auto;
  margin-bottom: 20px
}

.product-screen {
  position: absolute;
  left: 20px;
  right: 0;
  bottom: -50px;
  width: 82%;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  transform: rotate(-5deg)
}

.product-info span,
.product-mini-head span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em
}

.product-info h3,
.product-card h3 {
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.07em;
  margin: 18px 0
}

.product-info p,
.product-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65
}

.product-info ul {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 24px 0 0;
  list-style: none
}

.product-info li {
  background: rgba(254, 229, 2, .14);
  color: var(--yellow);
  border: 1px solid rgba(254, 229, 2, .24);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 13px
}

.product-mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.product-mini-head img {
  max-height: 42px;
  max-width: 142px
}

.mini-screen {
  height: 260px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  margin: 24px 0;
  object-position: top;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.final-motion {
  background: linear-gradient(135deg, var(--blue), #06123d);
  padding: 90px 0
}

.final-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background: var(--yellow);
  padding: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: center;
  color: var(--blue-dark);
  box-shadow: 0 30px 100px rgba(5, 64, 197, .25)
}

.final-card:before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(5, 64, 197, .12)
}

.final-card h2 {
  font-size: clamp(36px, 5vw, 72px);
  line-height: .92;
  letter-spacing: -.08em;
  margin: 14px 0
}

.final-card p {
  color: rgba(6, 18, 61, .72);
  max-width: 700px
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative
}

.btn-dark {
  background: var(--blue);
  color: #fff;
  box-shadow: none
}

.btn-outline {
  border: 1px solid rgba(6, 18, 61, .25);
  color: var(--blue-dark)
}

.footer {
  background: #030712;
  color: #fff;
  padding: 70px 0 28px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .95fr .9fr;
  gap: 38px
}

.footer h3 {
  margin: 0 0 18px;
  color: var(--yellow)
}

.footer-subtitle {
  margin-top: 18px
}

.footer p {
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
  margin: 8px 0
}

.footer-brand img {
  height: 42px;
  width: auto;
  margin-bottom: 22px
}

.associations {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap
}

.associations img {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  width: 96px;
  height: 56px;
  min-height: 56px;
  object-fit: contain
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, .55);
  font-size: 13px
}

.footer-policy-links {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.footer-policy-links button {
  appearance: none;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .68);
  font: inherit;
  line-height: 1.55;
  cursor: pointer;
  text-align: left;
  transition: color .2s ease;
}

.footer-policy-links button:hover,
.footer-policy-links button:focus-visible {
  color: var(--yellow);
}

body.modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.legal-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(3, 7, 18, .86);
  backdrop-filter: blur(12px);
}

.legal-modal__panel {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(88vh, 900px);
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(3, 7, 18, .42);
  transform: translateY(18px) scale(.985);
  transition: transform .22s ease;
}

.legal-modal__scroll {
  max-height: min(88vh, 900px);
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: inherit;
  scrollbar-gutter: stable;
}

.legal-modal__scroll::-webkit-scrollbar {
  width: 11px;
}

.legal-modal__scroll::-webkit-scrollbar-track {
  background: rgba(7, 26, 68, .08);
}

.legal-modal__scroll::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: rgba(5, 64, 197, .42);
  background-clip: content-box;
}

.legal-modal__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(5, 64, 197, .62);
  background-clip: content-box;
}

.legal-modal.is-open .legal-modal__panel {
  transform: none;
}

.legal-modal__close {
  position: sticky;
  top: 18px;
  float: right;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 18px 18px -62px 0;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 26, 68, .08);
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  transition: background .2s ease, transform .2s ease;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
  background: var(--yellow);
  transform: rotate(90deg);
}

.legal-modal__header {
  padding: 46px clamp(24px, 5vw, 58px) 24px;
  background: linear-gradient(135deg, var(--blue), #0a2d86);
  color: #fff;
}

.legal-modal__header span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-modal__header h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: .96;
  letter-spacing: -.06em;
}

.legal-modal__body {
  padding: 34px clamp(24px, 5vw, 58px) 18px;
}

.legal-modal__body p {
  margin: 0 0 18px;
  color: rgba(7, 19, 51, .78);
  font-size: 16px;
  line-height: 1.72;
}

.legal-form {
  margin: 20px clamp(18px, 5vw, 58px) 48px;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 24px;
  background: linear-gradient(135deg, #f4f7ff, #fff);
  border: 1px solid rgba(5, 64, 197, .13);
  box-shadow: 0 20px 58px rgba(5, 64, 197, .1);
}

.legal-form--report {
  background: linear-gradient(135deg, var(--yellow), #f6b300);
  border: 0;
}

.legal-form h3 {
  max-width: 660px;
  margin: 0 auto 24px;
  color: var(--blue-dark);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.12;
  text-align: center;
}

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

.legal-form label {
  display: grid;
  gap: 7px;
}

.legal-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.legal-form__wide {
  grid-column: 1 / -1;
}

.legal-form__captcha {
  grid-column: 1 / -1;
  min-height: 1px;
}

.legal-form input,
.legal-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(5, 64, 197, .12);
  border-radius: 0;
  background: #fff;
  color: var(--blue-dark);
  font: inherit;
  font-size: 16px;
  outline: 0;
  padding: 13px 14px;
  transition: border .2s ease, box-shadow .2s ease;
}

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

.legal-form input::placeholder,
.legal-form textarea::placeholder {
  color: rgba(7, 26, 68, .46);
}

.legal-form input:focus,
.legal-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(5, 64, 197, .14);
}

.legal-form input.is-invalid,
.legal-form textarea.is-invalid {
  border-color: #c51d1d;
  box-shadow: 0 0 0 4px rgba(197, 29, 29, .14);
}

.legal-form__error {
  color: #8f1111;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.legal-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 12px auto 0;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #00b92f;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.legal-form__submit:hover,
.legal-form__submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 185, 47, .28);
}

.legal-form__submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
  box-shadow: none;
}

body.form-is-sending {
  cursor: wait;
}

.form-loading {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 7, 18, .72);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.form-loading.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-loading__box {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: min(100%, 280px);
  padding: 30px 28px;
  border-radius: 24px;
  background: #fff;
  color: var(--blue-dark);
  box-shadow: 0 28px 90px rgba(3, 7, 18, .34);
  text-align: center;
}

.form-loading__box strong {
  font-size: 22px;
  line-height: 1;
}

.form-loading__box small {
  color: rgba(7, 26, 68, .62);
  font-size: 14px;
  font-weight: 700;
}

.form-loading__spinner {
  width: 42px;
  height: 42px;
  border: 4px solid rgba(5, 64, 197, .16);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: formSpin .8s linear infinite;
}

.form-snackbar {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 13000;
  width: min(520px, calc(100% - 32px));
  padding: 16px 18px;
  border-radius: 14px;
  color: #fff;
  box-shadow: 0 18px 54px rgba(3, 7, 18, .28);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .22s ease, transform .22s ease;
}

.form-snackbar.is-open {
  opacity: 1;
  transform: translate(-50%, 0);
}

.form-snackbar.is-success {
  background: #079934;
}

.form-snackbar.is-error {
  background: #c51d1d;
}

.whatsapp-float {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 11000;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .34);
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, .42);
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

@keyframes formSpin {
  to {
    transform: rotate(360deg);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

@media(max-width:980px) {
  .menu-toggle {
    display: block;
    color: #fff;
    z-index: 60
  }

  .site-header.scrolled .menu-toggle {
    color: var(--ink)
  }

  .nav {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    padding: 22px;
    border-radius: 24px;
    box-shadow: var(--shadow)
  }

  .nav.open {
    display: flex
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    background: var(--blue) !important;
    color: #fff !important
  }

  .hero-content {
    margin-left: 24px
  }

  .story-grid,
  .clients-layout,
  .lab-hero,
  .final-card {
    grid-template-columns: 1fr
  }

  .story-panel {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "blue"
      "yellow"
      "image";
    gap: 16px
  }

  .brand-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important
  }

  .brand-card-image {
    height: 260px
  }

  .values-strip {
    border-radius: 26px;
    overflow: auto;
    justify-content: flex-start
  }

  .orbit-board {
    height: auto;
    padding: 26px;
    display: grid;
    gap: 16px
  }

  .orbit-board:before,
  .orbit-board:after {
    display: none
  }

  .orbit-core {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 100% !important;
    height: auto !important;
    min-height: 170px !important;
    border-radius: 28px !important;
  }

  .orbit-core-content {
    max-width: 220px;
  }

  .orbit-card {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;

    width: 100% !important;
    height: auto !important;
    border-radius: 26px !important;
  }

  .module-grid,
  .products-showcase,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .clients-wall {
    grid-template-columns: repeat(2, 1fr)
  }

  .product-feature {
    grid-template-columns: 1fr
  }

  .product-media {
    min-height: 360px
  }

  .footer-bottom {
    flex-direction: column
  }
}

@media(max-width:620px) {
  .container {
    width: min(100% - 28px, 1180px)
  }

  .section {
    padding: 74px 0
  }

  .site-header {
    height: 72px;
    padding: 0 16px
  }

  .brand-logo {
    height: 30px
  }

  .hero h1 {
    font-size: 56px
  }

  .hero p {
    font-size: 17px
  }

  .hero-actions,
  .final-actions {
    align-items: stretch
  }

  .btn {
    width: 100%;
    text-align: center
  }

  .clients-wall {
    grid-template-columns: 1fr
  }

  .client-logo {
    min-height: 130px
  }

  .lab-badge {
    height: 220px
  }

  .final-card {
    padding: 34px 22px;
    border-radius: 30px
  }

  .footer {
    padding-top: 52px
  }

  .legal-modal {
    padding: 12px;
  }

  .legal-modal__panel {
    max-height: 92vh;
    border-radius: 20px;
  }

  .legal-modal__scroll {
    max-height: 92vh;
  }

  .legal-modal__header {
    padding-top: 40px;
  }

  .legal-form {
    margin: 16px 14px 28px;
    border-radius: 18px;
  }

  .legal-form__grid {
    grid-template-columns: 1fr;
  }

  .legal-form__submit {
    width: 100%;
  }

  .product-screen {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    transform: none
  }

  .product-media {
    min-height: auto
  }

  .mini-screen {
    height: 220px
  }
}


/* ===== FINAL CONSOLIDATED OVERRIDES ===== */
:root {
  --mc-blue: #0540C5;
  --mc-yellow: #FEE502;
  --mc-dark: #071A44;
  --mc-soft: #F6F9FF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Header: opção 1 */
.site-header[data-header] {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  transition: .25s ease;
}

.site-header[data-header].is-scrolled,
.site-header[data-header].nav-open {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(7, 26, 68, .10);
}

.site-header[data-header] .brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.site-header[data-header] .logo-blue {
  display: none;
}

.site-header[data-header].is-scrolled .logo-white,
.site-header[data-header].nav-open .logo-white {
  display: none;
}

.site-header[data-header].is-scrolled .logo-blue,
.site-header[data-header].nav-open .logo-blue {
  display: block;
}

.main-nav[data-nav] {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav[data-nav] a {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  letter-spacing: .01em;
  opacity: .92;
}

.site-header[data-header].is-scrolled .main-nav[data-nav] a,
.site-header[data-header].nav-open .main-nav[data-nav] a {
  color: #143366;
}

.main-nav[data-nav] a.active {
  color: var(--mc-yellow);
}

.site-header[data-header].is-scrolled .main-nav[data-nav] a.active,
.site-header[data-header].nav-open .main-nav[data-nav] a.active {
  color: var(--mc-blue);
}

.main-nav[data-nav] .nav-cta {
  background: var(--mc-yellow);
  color: #05275f;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(254, 229, 2, .25);
}

.nav-toggle[data-nav-toggle] {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  gap: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.nav-toggle[data-nav-toggle] span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.site-header[data-header].is-scrolled .nav-toggle span,
.site-header[data-header].nav-open .nav-toggle span {
  background: var(--mc-blue);
}

/* Hero: opção 1 com linha fluida */
.hero#inicio {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071A44;
}

.hero#inicio .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero#inicio .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 24, 72, .82) 0%, rgba(5, 24, 72, .58) 38%, rgba(5, 24, 72, .16) 100%);
}

.hero#inicio .hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 20% 45%, rgba(254, 229, 2, .18), transparent 24%), linear-gradient(120deg, rgba(5, 64, 197, .18), transparent 45%);
  pointer-events: none;
}

.hero#inicio .hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding: 140px clamp(20px, 7vw, 110px) 90px;
  color: #fff;
}

.hero#inicio h1 {
  font-size: clamp(44px, 6vw, 88px);
  line-height: .94;
  letter-spacing: -.06em;
  margin: 18px 0 22px;
  font-weight: 900;
}

.hero#inicio p {
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.6;
  max-width: 660px;
  color: rgba(255, 255, 255, .84);
}

.hero#inicio .hero-proof,
.hero#inicio .hero-proof-line {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  width: max-content;
  max-width: 100%;
}

.hero#inicio .hero-proof::before,
.hero#inicio .hero-proof-line::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mc-yellow);
  box-shadow: 0 0 0 7px rgba(254, 229, 2, .14);
}

.hero#inicio .hero-proof strong,
.hero#inicio .hero-proof-line strong {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--mc-yellow);
}

.hero#inicio .hero-proof span,
.hero#inicio .hero-proof-line span {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
}

/* Tags suaves na brand-story */
.values-strip-soft {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: nowrap;
  margin-top: 22px;
  padding: 2px 0 2px 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow-x: auto;
}

.values-strip-soft span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 36px;
  line-height: 1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .03em;
  color: #fff;
  background: var(--blue);
  border: 1px solid rgba(5, 64, 197, .22);
  border-radius: 9999px;
  padding: 9px 14px;
  box-shadow: 0 10px 22px rgba(5, 64, 197, .18);
  white-space: nowrap;
  transform: translateZ(0);
}

/* Harmonização de reveal entre as três opções */
.reveal.is-visible,
.reveal.in-view,
.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Ecosystem anchors */
#solucoes {
  scroll-margin-top: 90px;
}

/* Ajustes responsivos */
@media (max-width: 980px) {
  .nav-toggle[data-nav-toggle] {
    display: flex;
  }

  .main-nav[data-nav] {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(5, 64, 197, .10);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(7, 26, 68, .18);
  }

  .main-nav[data-nav].is-open {
    display: flex;
  }

  .main-nav[data-nav] a {
    color: #143366;
    padding: 12px 14px;
  }

  .main-nav[data-nav] .nav-cta {
    text-align: center;
  }

  .hero#inicio .hero-content {
    padding-top: 130px;
  }

  .hero#inicio .hero-proof,
  .hero#inicio .hero-proof-line {
    border-radius: 24px;
    width: auto;
  }
}

@media (max-width: 640px) {
  .values-strip-soft {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .site-header[data-header] {
    padding: 14px 18px;
  }

  .site-header[data-header] .brand-logo {
    height: 34px;
  }

  .hero#inicio h1 {
    font-size: 42px;
  }

  .hero#inicio .hero-proof,
  .hero#inicio .hero-proof-line {
    gap: 9px;
  }

  .hero#inicio .hero-proof span,
  .hero#inicio .hero-proof-line span {
    width: 100%;
  }
}

/* ===== HOTFIX: Header e Hero estáveis ===== */
.site-header[data-header] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 88px;
  transform: none;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1180px)/2));
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(2, 16, 51, .52), rgba(2, 16, 51, 0));
  box-shadow: none;
  backdrop-filter: none;
  color: #fff;
}

.site-header[data-header].is-scrolled,
.site-header[data-header].nav-open {
  height: 76px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(7, 26, 68, .10);
  border-bottom: 1px solid rgba(5, 64, 197, .08);
}

.site-header[data-header] .brand {
  position: relative;
  z-index: 1001;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  min-width: 190px;
  display: flex;
  align-items: center;
}

.site-header[data-header] .brand-logo {
  position: static;
  height: 38px;
  width: auto;
  max-width: 205px;
  max-height: none;
  object-fit: contain;
  opacity: 1;
  transition: .22s ease;
}

.site-header[data-header] .logo-blue {
  display: none;
}

.site-header[data-header] .logo-white {
  display: block;
}

.site-header[data-header].is-scrolled .logo-white,
.site-header[data-header].nav-open .logo-white {
  display: none;
}

.site-header[data-header].is-scrolled .logo-blue,
.site-header[data-header].nav-open .logo-blue {
  display: block;
}

.main-nav[data-nav] {
  position: relative;
  inset: auto;
  transform: none;
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.main-nav[data-nav] a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: .01em;
  padding: 13px 13px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: .94;
}

.main-nav[data-nav] a:not(.nav-cta):hover {
  background: rgba(255, 255, 255, .11);
  color: #fff;
}

.site-header[data-header].is-scrolled .main-nav[data-nav] a,
.site-header[data-header].nav-open .main-nav[data-nav] a {
  color: #143366;
}

.site-header[data-header].is-scrolled .main-nav[data-nav] a:not(.nav-cta):hover,
.site-header[data-header].nav-open .main-nav[data-nav] a:not(.nav-cta):hover {
  background: rgba(5, 64, 197, .08);
  color: var(--mc-blue);
}

.main-nav[data-nav] .nav-cta {
  background: var(--mc-yellow);
  color: #05275f;
  padding: 15px 22px;
  margin-left: 10px;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(254, 229, 2, .28);
}

.site-header[data-header].is-scrolled .main-nav[data-nav] .nav-cta,
.site-header[data-header].nav-open .main-nav[data-nav] .nav-cta {
  background: var(--mc-blue);
  color: #fff;
}

.hero#inicio {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero#inicio .hero-content {
  display: block;
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100vw - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 140px 0 90px;
  color: #fff;
}

.hero#inicio .eyebrow {
  width: auto;
  max-width: 100%;
  margin: 0 0 20px;
  color: var(--mc-yellow);
}

.hero#inicio h1 {
  display: block;
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(48px, 6.6vw, 94px);
  line-height: .92;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.hero#inicio p {
  display: block;
  width: 100%;
  max-width: 650px;
  margin: 0 0 34px;
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
  text-wrap: normal;
}

.hero#inicio .hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0;
}

.hero#inicio .hero-proof,
.hero#inicio .hero-proof-line {
  display: inline-flex;
  width: auto;
  max-width: 100%;
  margin-top: 32px;
  align-items: center;
}

/* ===== HOTFIX: Orbit Core / Círculo central do ecossistema ===== */

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  width: 260px;
  height: 260px;
  border-radius: 50%;

  background: var(--mc-yellow, #FEE502);
  color: var(--mc-blue, #0540C5);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  text-align: center;
  z-index: 2;

  box-shadow:
    0 30px 90px rgba(254, 229, 2, .22),
    0 0 0 18px rgba(254, 229, 2, .10);
}

.orbit-core-content {
  width: 100%;
  max-width: 190px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 12px;
  transform: translateY(-2px);
}

.orbit-core-content img {
  display: block;
  width: 172px;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}

.orbit-core-content span {
  display: block;
  margin: 0;

  color: #fff;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header[data-header] {
    height: 76px;
    padding: 14px 20px;
    background: rgba(2, 16, 51, .38);
    backdrop-filter: blur(12px);
  }

  .site-header[data-header] .brand {
    min-width: auto;
  }

  .site-header[data-header] .brand-logo {
    height: 32px;
    max-width: 170px;
  }

  .nav-toggle[data-nav-toggle] {
    display: flex;
    position: relative;
    z-index: 1002;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
  }

  .main-nav[data-nav] {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 255, 255, .97);
    border: 1px solid rgba(5, 64, 197, .10);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(7, 26, 68, .18);
  }

  .main-nav[data-nav].is-open {
    display: flex;
  }

  .main-nav[data-nav] a {
    color: #143366;
    justify-content: flex-start;
    padding: 14px 14px;
  }

  .main-nav[data-nav] .nav-cta {
    justify-content: center;
    margin-left: 0;
    background: var(--mc-blue);
    color: #fff;
  }

  .hero#inicio .hero-content {
    width: min(100% - 36px, 760px);
    padding: 118px 0 70px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero#inicio .hero-video {
    object-position: 34% center;
  }

  .hero#inicio h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hero#inicio p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero#inicio .hero-proof,
  .hero#inicio .hero-proof-line {
    border-radius: 22px;
    align-items: flex-start;
  }

  .hero#inicio .hero-proof span,
  .hero#inicio .hero-proof-line span {
    width: 100%;
  }

  .ecosystem .section-head p {
    color: #4c5d78;
  }

  .lab .lab-hero p {
    color: #4c5d78;
  }

  .wallstore {
    background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  }

  .wallstore-head {
    max-width: 940px;
    text-align: center;
  }

  .wallstore-head p {
    margin: 0 auto;
    max-width: 760px;
  }

  .wallstore-stage {
    margin-top: 34px;
  }

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

  .wallstore-item {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(5, 64, 197, .12);
    box-shadow: 0 18px 48px rgba(6, 18, 61, .1);
    aspect-ratio: 4 / 5;
    opacity: 0;
    transform: translateY(20px) scale(.98);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
  }

  .wallstore-item.is-on {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .wallstore-item:nth-child(-n+3) {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .wallstore-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .wallstore-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }

  .wallstore-cta {
    background: var(--mc-yellow);
    color: var(--blue-dark);
    min-height: 62px;
    padding: 0 34px;
    font-size: 18px;
    font-weight: 900;
    border: 1px solid rgba(6, 18, 61, .2);
    box-shadow: 0 24px 60px rgba(254, 229, 2, .28);
  }

  .wallstore-cta:hover {
    transform: translateY(-2px);
  }

  .clients-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logo {
    min-height: 92px;
    padding: 12px;
    border-radius: 18px;
  }

  .client-logo img {
    max-height: 42px;
    max-width: 100%;
  }

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

  .wallstore-item {
    border-radius: 18px;
  }

  .wallstore-item:nth-child(3) {
    opacity: 0;
    transform: translateY(20px) scale(.98);
  }

  .wallstore-cta {
    width: 100%;
    max-width: 360px;
    font-size: 17px;
  }
}

/* ===== WALLSTORE WOW OVERRIDES ===== */
.wallstore {
  background:
    radial-gradient(circle at 12% 18%, rgba(254, 229, 2, .22), transparent 32%),
    radial-gradient(circle at 84% 14%, rgba(5, 64, 197, .28), transparent 36%),
    linear-gradient(145deg, #061642 0%, #0a2b86 52%, #04205f 100%);
  color: #fff;
  overflow: hidden;
}

.wallstore::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: .22;
  pointer-events: none;
}

.wallstore-hero,
.wallstore-stage {
  position: relative;
  z-index: 1;
}

.wallstore-hero {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 30px;
  align-items: center;
}

.wallstore-copy .section-kicker {
  color: var(--mc-yellow);
}

.wallstore-copy h2 {
  color: #fff;
}

.wallstore-copy p {
  color: rgba(255, 255, 255, .84);
  max-width: 640px;
}

.wallstore-screens {
  position: relative;
  min-height: 520px;
}

.wallstore-screen {
  margin: 0;
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 24px 72px rgba(2, 16, 51, .45);
  background: #000;
  backdrop-filter: blur(8px);
}

.wallstore-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #000;
}

.wallstore-screen-a {
  width: min(250px, 44%);
  aspect-ratio: 9 / 19.5;
  left: 10%;
  top: 10px;
  transform: rotate(-5deg);
  z-index: 2;
}

.wallstore-screen-b {
  width: min(250px, 44%);
  aspect-ratio: 9 / 19.5;
  left: 44%;
  top: 62px;
  transform: rotate(6deg);
  z-index: 3;
}

.wallstore-stage {
  margin-top: 54px;
}

.wallstore-products-title {
  margin: 0 0 26px;
  color: #fff;
  max-width: 780px;
  font-size: clamp(22px, 2.7vw, 34px);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.wallstore-products-title span {
  color: var(--mc-yellow);
  font-weight: 900;
  text-shadow: 0 8px 26px rgba(254, 229, 2, .25);
}

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

.wallstore-item {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 20px 60px rgba(2, 16, 51, .34);
  aspect-ratio: 4 / 5;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .28s ease, transform .28s ease;
  background: #0d2a7a;
}

.wallstore-item.is-fading-out {
  opacity: 0;
  transform: translateY(8px) scale(.985);
}

.wallstore-item.is-fading-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wallstore-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wallstore-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.wallstore-cta {
  background: linear-gradient(135deg, #fee502, #fff076);
  color: #041753;
  min-height: 64px;
  padding: 0 38px;
  font-size: 18px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, .36);
  box-shadow: 0 24px 70px rgba(254, 229, 2, .35);
}

.wallstore-cta:hover {
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .wallstore-hero {
    grid-template-columns: 1fr;
  }

  .wallstore-screens {
    min-height: 460px;
  }

  .wallstore-screen-a {
    width: min(190px, 44%);
    left: 3%;
    top: 6px;
  }

  .wallstore-screen-b {
    width: min(190px, 44%);
    left: 42%;
    top: 36px;
  }

  .wallstore-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wallstore-item {
    border-radius: 18px;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .wallstore-products-title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.2;
  }

  .wallstore-stage {
    margin-top: 42px;
  }

  .wallstore-cta {
    width: 100%;
    max-width: 360px;
    font-size: 17px;
  }
}

/* ===== LEGACY BRIDGE (after OP1 cleanup) ===== */
.footer-logo {
  width: 200px;
  margin-bottom: 22px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .8;
}

.scroll-hint i {
  width: 18px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 999px;
  position: relative;
}

.scroll-hint i::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.3s infinite;
}

.div-mapa {
  display: flex;
  align-items: center;
  gap: 10px;
}

.h3-endereco {
  margin: 0;
}

.img-endereco{
  margin-top: -15px;
}