*{ box-sizing:border-box; }
html,body{ height:100%; }

/* ✅ garante um único container de scroll (evita scrollbar duplicada) */
html{
  overflow-x: hidden;
}
/* ✅ BLOQUEIA A TELA DE IR PRO LADO (overflow horizontal) */
body{
  min-height: 100%;
  overflow-x: hidden;
}

body{
  margin:0;
  font-family:"Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0b0c10;
  color:#e9eaee;
}

/* =========================
   FUNDO GLOBAL (GRID + GLOW)
   ========================= */
.global-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #121212;
  transition: opacity 260ms ease;
}

.global-bg__grid,
.global-bg__glow{
  position: absolute;
  inset: 0;
}

.global-bg__grid{
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.22;
}

.global-bg__glow{
  background: radial-gradient(600px circle at var(--global-mouse-x, 50%) var(--global-mouse-y, 50%), rgba(176,255,92,0.16), rgba(176,255,92,0) 70%);
  opacity: 0.7;
  transition: opacity 220ms ease;
}

.global-bg.is-reduced .global-bg__glow{
  opacity: 0;
}

/* ✅ garante conteúdo acima do fundo fixo */
.topbar-wrap,
main,
.site-footer,
.zacxys-scroll-indicator{
  position: relative;
  z-index: 1;
}

/* ✅ remove fundos sólidos escuros para o grid aparecer */
.sec3-work,
.sec3,
.sec6,
.sec7{
  background: transparent;
}

@media (hover: none), (pointer: coarse){
  .global-bg__glow{ opacity: 0; }
}

/* ✅ mantém o scroll nativo do body/html (evita travas por overscroll/touch-action) */
html, body{
  overscroll-behavior: auto;
  touch-action: pan-y;
}

main{
  overflow-x: hidden; /* ✅ garante que nenhuma seção “vaze” pro lado */
}

a{ color:inherit; text-decoration:none; }
.hidden{ display:none; }

/* =========================
   MENU FIXO (REFEITO)
   ========================= */
.topbar-wrap{
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0 16px;
  pointer-events: none;
}
.topbar, .mobile-menu{ pointer-events: auto; }

/* ✅ ALTERADO: era GRID com 1fr | auto | 1fr (dava erro no seu parser)
   Agora é FLEX mantendo a mesma lógica visual */
.topbar{
  width: 100%;
  max-width: 1480px; /* normal */
  margin: 0 auto;
  background: #1d10d7;
  border-radius: 12px;
  padding: 10px 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  border: 1px solid rgba(29,16,215,0.15);

  display: flex;
  align-items: center;
  gap: 18px;

  /* ✅ animação */
  transition:
    max-width 280ms ease,
    padding 280ms ease,
    border-radius 280ms ease,
    transform 280ms ease,
    margin 280ms ease,
    background 320ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease,
    backdrop-filter 320ms ease;
  will-change: max-width, padding, border-radius, transform, margin, background, box-shadow, border-color, backdrop-filter;
}

/* ✅ estado compact no scroll (DESKTOP)
   - ancorado na esquerda: tira o "auto" dos dois lados */
.topbar.is-compact{
  max-width: 980px;
  padding: 8px 14px;
  border-radius: 14px;

  margin-left: 0;
  margin-right: auto;
}

/* ✅ estado com blur + degradê no scroll */
.topbar-wrap.is-scrolled .topbar{
  background: linear-gradient(120deg, rgba(25,84,216,0.78) 0%, rgba(34,214,196,0.72) 55%, rgba(223,255,6,0.25) 100%);
  border-color: rgba(223,255,6,0.18);
  box-shadow: 0 20px 64px rgba(0,0,0,.4);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

/* colunas do "grid" (agora flex) */
.topbar-left{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-width: 0;
  gap: 14px;
  flex: 1 1 0;
}
.topbar-right{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-width: 0;
  gap: 12px;
  flex: 1 1 0;
}

/* Logo centro (central real) */
.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  line-height: 0;
  flex: 0 0 auto;
}
.brand img{
  height: 18px;
  width: auto;
  display:block;
  transform: translateZ(0);
  transition: height 280ms ease;
}
.topbar.is-compact .brand img{
  height: 16.875px;
}

/* Páginas esquerda (desktop) */
.navlinks{
  display:flex;
  gap: 18px;
  align-items:center;
  justify-content:flex-start;
  list-style:none;
  padding:0;
  margin:0;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 200ms ease, transform 200ms ease;
}
.navlinks a{ opacity:.95; color: #ffffff; }
.navlinks a:hover{ opacity:1; }

/* CTA direita */
.cta-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 9px;
  border: 2px solid #dfff06;
  color:#dfff06;
  font-weight:600;
  font-size: 11px;
  letter-spacing:.2px;
  transition: transform 220ms ease, padding 220ms ease, font-size 220ms ease;
}
.topbar.is-compact .cta-outline{
  padding: 6px 9px;
  font-size: 10.5px;
  transform: translateX(-4px);
}

.cta-arrow{
  width: 10px;
  height: 10px;
  object-fit: contain;
  display:block;
}

/* Botões hamburger */
.hamburger{
  display:none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 9px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  padding: 0;
}
.hamburger img{
  width: 28px;
  height: 28px;
  display:block;
  object-fit: contain;
}

/* ✅ hamburger desktop (só aparece no scroll) */
.hamburger--desktop{
  display:none;
}
.topbar.is-compact .hamburger--desktop{
  display:inline-flex;
}

/* ✅ quando compact, some a lista e vira o ícone */
.topbar.is-compact .navlinks{
  display:none;
}

/* ✅ hamburger mobile continua controlado por media */
.hamburger--mobile{ display:none; }

.mobile-menu{
  width: 100%;
  max-width: 1240px;
  margin: 10px auto 0;
  background: #1d10d7;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(-6px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0ms linear 220ms;
}
.topbar-wrap.is-scrolled .mobile-menu{
  background: linear-gradient(120deg, rgba(25,84,216,0.78) 0%, rgba(34,214,196,0.72) 55%, rgba(223,255,6,0.25) 100%);
  border: 1px solid rgba(223,255,6,0.15);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.mobile-menu.is-open{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0ms;
}
.mobile-menu a{
  display:block;
  padding: 14px 14px;
  border-radius: 10px;
  font-weight: 500;
  color: #ffffff;
  opacity:.95;
}
.mobile-menu a:hover{ opacity:1; }
.mobile-menu .mobile-cta{
  margin-top: 10px;
  border: 2px solid #dfff06;
  color:#dfff06;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

.topbar-spacer{ height: 96px; }

/* =========================
   HERO (Seção 01)
   ========================= */
.hero{ padding: 66px 16px 40px; }
.hero-inner{
  max-width: 1120px;
  margin: 0 auto;
  text-align:center;
}

.hero-title{
  margin: 0;
  line-height: 1.05;
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -0.8px;
}
.hero-title-thin{ font-weight: 300; }
.hero-title-strong{ font-weight: 600; }
.hero-e-thin{ font-weight: 300; color:#e9eaee; }
.hero-green{ color:#dfff06; }

.hero-sub{
  margin: 18px auto 0;
  max-width: 820px;
  color:#b9bcc6;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 300;
}

.hl{
  color:#dfff06;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 1px;
}

.cta-solid{
  margin: 20px auto 0;
  display:inline-flex;
  align-items:center;
  gap: 12px;
  padding: 10px 22px;
  border-radius: 9px;
  background: #1d10d7;
  color:#dfff06;
  font-weight: 600;
  font-size: 12.5px;
  min-width: 230px;
  justify-content:center;
}
.cta-solid-text{ font-weight: 600; }
.cta-arrow--solid{ width: 10px; height: 10px; }

/* =========================
   SEÇÃO 02
   ========================= */
.sec2{
  padding: 26px 16px 56px;
  position: relative;
  z-index: 2;
}

.sec2-shell{
  max-width: 1240px;
  margin: 0 auto;
}

.sec2-card{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
  padding: 52px 56px;

  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  position: relative;
  overflow:hidden;
  background:
    radial-gradient(520px 360px at 12% 14%, rgba(29,16,215,.12), transparent 72%),
    radial-gradient(1200px 760px at 26% 26%, rgba(223,255,6,.10), transparent 74%),
    radial-gradient(1040px 700px at 44% 74%, rgba(223,255,6,.07), transparent 78%),
    radial-gradient(980px 660px at 84% 78%, rgba(29,16,215,.12), transparent 78%),
    rgba(255,255,255,.03);
  backdrop-filter: blur(14px);
  min-height: 560px;
}

.sec2-left{
  flex: 1.05;
  padding-right: 6px;
  transform: translate(0, -6%);
}

.sec2-title{
  margin: 0 0 20px 0;
  font-size: 32px;
  line-height: 1.10;
  letter-spacing: -0.6px;
  color:#e9eaee;
}
.t-medium{ font-weight: 500; }
.t-light{ font-weight: 300; }

.sec2-steps{
  display:flex;
  align-items:flex-start;
  gap: 20px;
  margin-top: 44px;
}

.sec2-steps-img{
  width: 78px;
  height: auto;
  display:block;
  object-fit: contain;
  flex: 0 0 auto;
}

.sec2-steps-text{
  display:flex;
  flex-direction: column;
  gap: 26px;
}

.step-title{
  margin:0;
  color:#dfff06;
  font-weight: 500;
  font-size: 14.5px;
}
.step-desc{
  margin: 6px 0 0;
  color:#d6d7dc;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 520px;
}

.sec2-right{
  flex: .95;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

.form-area{
  width: 100%;
  max-width: 620px;
  display:flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  padding-top: 0;
}

.form-wrap{
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  display:block;
}

.field{
  margin-bottom: 16px;
  width: 100%;
}
.field:last-of-type{ margin-bottom: 12px; }

.field input{
  width:100%;
  height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.16);
  background: #e7e7e7;
  padding: 0 18px;
  font-family:"Sora", sans-serif;
  font-weight: 500;
  font-size: 14px;
  outline:none;
  color:#2a2a2a;
}

.field input:focus{
  border-color: rgba(29,16,215,.55);
  box-shadow: 0 0 0 3px rgba(29,16,215,.12);
  background: #f2f4ff;
}

.field--phone{ position: relative; }
.field--phone .flag{
  position:absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 12px;
  object-fit: contain;
}
.field--phone input{ padding-left: 46px; }

.field--select{
  position: relative;
  margin-bottom: 10px;
  width: 100%;
}

.select-btn{
  width:100%;
  height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.16);
  background: #e7e7e7;
  padding: 0 16px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  cursor:pointer;
  font-family:"Sora", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color:#2a2a2a;
}

.select-label{
  white-space: nowrap;
  overflow:hidden;
  text-overflow: ellipsis;
}

.select-btn .chev{
  width: 12px;
  height: 12px;
  object-fit: contain;
  display:block;
  filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(4500%) hue-rotate(235deg) brightness(96%) contrast(110%);
  opacity: .95;
  transform: rotate(180deg);
  transition: transform 200ms ease;
}
.select-btn[aria-expanded="true"] .chev{
  transform: rotate(0deg);
}

.select-list{
  position:absolute;
  left:0;
  right:0;
  bottom: calc(100% + 10px);
  background: #efefef;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.14);
  overflow:hidden;
  display:none;
  box-shadow: 0 16px 50px rgba(0,0,0,.20);
}
.select-list.open{ display:block; }

.select-item{
  padding: 14px 14px;
  border-bottom: 1px solid rgba(0,0,0,.10);
  font-family:"Sora", sans-serif;
  font-weight: 500;
  cursor:pointer;
  color:#222;
}
.select-item:last-child{ border-bottom:none; }
.select-item:hover{ background:#e2e2e2; }

.form-note{
  margin: 10px 0 0;
  font-size: 12.5px;
  color: #b11a1a;
  min-height: 16px;
  font-family:"Sora", sans-serif;
  width: 100%;
}

.form-submit-out,
#submitBtn{
  width: 100%;
  height: 58px;
  border-radius: 9px;
  border: none;
  background: #1d10d7;
  color:#dfff06;
  font-family:"Sora", sans-serif;
  font-weight: 500;
  font-size: 16px;
  cursor:pointer;
}

.hidden-submit{ display:none; }
.placeholder{ height: 1px; }

/* =========================
   SEÇÃO 03 (COMO A ZACX TRABALHA)
   ========================= */
.sec3-work{
  position: relative;
  padding: 80px 20px;
  background: transparent;
  color: #101016;
  overflow: hidden;
  border-top: 0;
}

.sec3-work:before{ content: none; }
.sec3-work:after{ content: none; }

.sec3-work-surface{
  background: #ffffff;
  border-radius: 40px;
  clip-path: inset(0 round 40px);
  padding: 120px 20px 140px;
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
}

.sec3-work-shell{
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(740px, 1fr) minmax(320px, 460px);
  grid-template-areas: "marquee head";
  align-items: center;
  gap: clamp(64px, 8vw, 124px);
}

.sec3-work-head{
  grid-area: head;
  display: grid;
  gap: 14px;
  max-width: 420px;
  padding-left: clamp(18px, 3.6vw, 76px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.sec3-work-kicker{
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #0006ff;
}

.sec3-work-title{
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  color: #1114a4;
  font-weight: 600;
}

.sec3-work-sub{
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #2f2f35;
}

.sec3-work-line{ display: block; }

.sec3-work-line--title,
.sec3-work-line--sub{
  opacity: 0;
  transform: translateY(10px);
  filter: blur(1.5px);
  will-change: opacity, transform, filter;
}

.sec3-work.is-in .sec3-work-line--title{
  animation: sec3-line-fade 450ms ease forwards;
}

.sec3-work.is-in .sec3-work-line--sub{
  animation: sec3-line-fade 450ms ease forwards;
}

.sec3-work.is-in .sec3-work-line--title:nth-child(2){ animation-delay: 0.35s; }
.sec3-work.is-in .sec3-work-line--title:nth-child(3){ animation-delay: 0.7s; }
.sec3-work.is-in .sec3-work-line--sub:nth-child(1){ animation-delay: 1.05s; }
.sec3-work.is-in .sec3-work-line--sub:nth-child(2){ animation-delay: 1.4s; }
.sec3-work.is-in .sec3-work-line--sub:nth-child(3){ animation-delay: 1.75s; }
.sec3-work.is-in .sec3-work-line--sub:nth-child(4){ animation-delay: 2.1s; }

.sec3-work.is-in .sec3-work-head{
  opacity: 1;
  transform: translateY(0);
}

.sec3-work.is-in .sec3-work-title{
  animation: sec3-title-shift 6.8s ease-in-out infinite;
}

.sec3-work-marquee{
  grid-area: marquee;
  position: relative;
  display: grid;
  gap: 22px;
  padding: 22px 20px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(12, 17, 73, 0.06), rgba(9, 14, 60, 0.02));
  box-shadow: inset 0 0 0 1px rgba(17, 20, 164, 0.08);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 450ms ease, transform 450ms ease;
  will-change: opacity, transform;
}

.sec3-work-marquee:before,
.sec3-work-marquee:after{ content: none; }

.sec3-work-marquee:after{
  right: 0;
  transform: rotate(180deg);
}

.sec3-work-marquee:before{ left: 0; }

.sec3-work-row{
  position: relative;
  overflow: hidden;
  min-height: 318px;
  border-radius: 22px;
  clip-path: inset(0 round 22px);
}

.sec3-work-track{
  display: flex;
  gap: 18px;
  width: max-content;
  animation: sec3-marquee 26s linear infinite;
  padding-right: 18px;
}

.sec3-work-row--bottom .sec3-work-track{
  animation-direction: reverse;
  animation-duration: 30s;
}

.sec3-work-card{
  --card-scale: 1;
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 20px;
  background: linear-gradient(125deg, #4c4c45 0%, #1114a4 50%, #4c4c45 100%);
  background-size: 220% 220%;
  animation: sec3-card-gradient-shift 20s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
  min-width: 280px;
  max-width: 320px;
  transform: translateY(24px) scale(var(--card-scale));
  opacity: 0;
  transition: transform 520ms ease, opacity 520ms ease, border-color 320ms ease, filter 320ms ease;
  transition-delay: var(--delay, 0ms);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(20px) saturate(110%);
}

.sec3-work-row--bottom .sec3-work-card{
  background: linear-gradient(125deg, #4c4c45 0%, #1114a4 50%, #4c4c45 100%);
  background-size: 220% 220%;
  border-color: rgba(255, 255, 255, 0.08);
}

.sec3-work-card:before{ content: none; }

.sec3-work-card:hover{
  transform: translateY(6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.22);
}

.sec3-work-icon{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(223, 255, 6, 0.12);
  border: 1px solid rgba(223, 255, 6, 0.35);
  box-shadow: none;
  margin-bottom: 16px;
}

.sec3-work-icon svg{
  width: 22px;
  height: 22px;
  fill: #dfff06;
}

.sec3-work-card-title{
  margin: 0 0 10px;
  font-size: 18px;
  color: #d6d8df;
}

.sec3-work-card-text{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(233, 234, 238, 0.78);
}

.sec3-work-typing{
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #dfff06;
  letter-spacing: 0.2px;
  min-height: 1.2em;
  opacity: 0;
  transform: translateY(8px);
  filter: blur(1.2px);
  transition: opacity 400ms ease, transform 400ms ease, filter 400ms ease;
  transition-delay: calc(var(--typing-delay, 0s) + 0.15s);
}

.sec3-work.is-in .sec3-work-card{
  opacity: 1;
  transform: translateY(0) scale(var(--card-scale));
}

.sec3-work.is-in .sec3-work-marquee{
  opacity: 1;
  transform: translateY(0);
}

.sec3-work.is-in .sec3-work-typing{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sec3-work-marquee.is-paused .sec3-work-track{
  animation-play-state: paused;
}

@keyframes sec3-line-fade{
  from{
    opacity: 0;
    transform: translateY(10px);
    filter: blur(1.5px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes sec3-marquee{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

@keyframes sec3-card-gradient-shift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

@keyframes sec3-title-shift{
  0%,
  100%{ color: #1114a4; }
  50%{ color: #4c4c45; }
}

@media (hover: hover){
  .sec3-work-row:hover .sec3-work-track{
    animation-play-state: paused;
  }

  .sec3-work-marquee:hover .sec3-work-card{
    filter: blur(2px);
    opacity: 0.55;
  }
  .sec3-work-marquee:hover .sec3-work-card:hover{
    filter: blur(0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce){
  .sec3-work-track{
    animation: none;
  }
  .sec3-work-typing{
    animation: none;
    opacity: 1;
    transform: none;
  }
  .sec3-work-card{
    transition: none;
  }
  .sec3-work-head,
  .sec3-work-marquee{
    transition: none;
  }
  .sec3-work-title{
    animation: none;
  }
  .sec3-work-line--title,
  .sec3-work-line--sub,
  .sec7-title,
  .sec7-sub{
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* =========================
   SEÇÃO 03 (LOGOS)
   ========================= */
.sec3{
  padding: 92px 16px 48px;
  background: #0b0c10;
  position: relative;
  z-index: 1;
}

.sec3-shell{
  max-width: 1240px;
  margin: 0 auto;
}

.sec3-title{
  margin: -80px 0 34px 0;
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.10;
  letter-spacing: -0.6px;
  color: #e9eaee;
}

.sec3-green{
  color:#dfff06;
  font-weight: 600;
}

.sec3-carousel{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  margin-top: 56px;
  width: 100%;
}

.sec3-nav{
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  border-radius: 10px;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}

.sec3-nav img{
  width: 13px;
  height: 13px;
  object-fit: contain;
  display:block;
}

.sec3-viewport{
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 980px;
  padding: 10px 0;
  background: transparent;
  z-index: 1;
}

.sec3-viewport:before,
.sec3-viewport:after{
  content: none;
}

.sec3-track{
  display:flex;
  align-items:center;
  gap: 56px;
  transform: translate3d(0,0,0);
  padding: 6px 190px;
}

@media (min-width: 981px){
  .sec3-viewport{
    margin-left: -24px;
    transform: translateX(-8%);
  }
}

.sec3-item{
  flex: 0 0 220px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 64px;
  opacity: .30;
  transform: scale(.92);
  filter: blur(2px);
  transition: opacity .22s ease, transform .22s ease, filter .22s ease;
}

.sec3-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 100%;
  cursor: pointer;
}

.sec3-item img{
  display:block;
  width: auto;
  height: 48px;
  max-height: 48px;
  max-width: 240px;
  object-fit: contain;
  object-position: center;
}

.sec3-item img.sec3-logo--boost{
  transform: scale(1.5);
  transform-origin: center;
}

.sec3-item img.sec3-logo--white{
  filter: brightness(0) invert(1);
}

.sec3-item.is-center{
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.sec3-item.is-edge{
  opacity: .48;
  transform: scale(.94);
}

/* =========================
   SEÇÃO 04 (DIAGRAMA)
   ========================= */
.sec4{
  padding: 56px 16px 86px;
}

.sec4-shell{
  max-width: 1240px;
  margin: 0 auto;
}

.sec4-card{
  border-radius: 40px;
  background: #e7e7e7;
  box-shadow: 0 35px 90px rgba(0,0,0,.55);
  padding: 62px 58px 192px;
  position: relative;
  overflow: hidden;
  width: calc(100% + 240px);
  margin-left: -120px;
  margin-right: -90px;
}

.sec4-title{
  margin: 0;
  text-align: center;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.6px;
  color: #1a1a1a;
}

.sec4-underline{
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.sec4-sub{
  margin: 18px auto 0;
  text-align: center;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(20,20,20,.62);
  max-width: 860px;
}

.sec4-sub strong{
  font-weight: 700;
  color: rgba(20,20,20,.76);
}

.sec4-how{
  margin: 26px 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 26px;
  color: #1a1a1a;
}

.sec4-diagram{
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 34px auto 0;
  transform: translateX(27px) scale(1.30);
  transform-origin: center top;
}

.sec4-diagram:before{
  content:"";
  display:block;
  padding-top: 48.4375%;
}

.sec4-layer,
.sec4-gear{
  image-rendering: auto;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

.sec4-layer{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}

.sec4-step{
  z-index: 2;
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 3000ms ease, transform 3000ms ease;
  will-change: opacity, transform;
  pointer-events: none;
}

.sec4-step.is-visible{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sec4-gear{
  z-index: 3;
  position:absolute;
  left: 50%;
  top: 34%;
  width: 28%;
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  display:block;
  pointer-events: none;
  will-change: transform;
}

.sec4-z{
  z-index: 4;
  pointer-events: none;
}

.sec4-gear.is-spinning{
  animation: sec4Spin 5.6s linear infinite;
}

@keyframes sec4Spin{
  from{ transform: translate(-50%, -50%) rotate(0deg); }
  to{ transform: translate(-50%, -50%) rotate(360deg); }
}

/* =========================
   SESSÃO (POR QUE ESCOLHER A ZACX)
   ========================= */
.sec-choose{
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  padding: 114px 0 103px;
  background: #121212;
  overflow: hidden;
  isolation: isolate;
}
.sec-choose-layer{
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sec-choose-layer--aura{
  z-index: 0;
  background: radial-gradient(520px circle at var(--mouse-x) var(--mouse-y), rgba(240,255,0,0.06), rgba(240,255,0,0) 72%);
  filter: blur(38px);
}
.sec-choose-layer--grid{
  z-index: 0;
  opacity: 0.05;
  background-image: linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 120px 100%;
}
.sec-choose-shell{
  position: relative;
  z-index: 1;
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  gap: 64px;
}
.sec-choose-layout{
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.sec-choose-left{
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 30px;
  gap: 18px;
  align-items: start;
  transform: translateX(34px);
}
.sec-choose-title{
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  display: grid;
  gap: 2px;
  justify-items: start;
  transform: translate3d(var(--drift-x, 0px), var(--drift-y, 0px), 0);
}
.sec-choose-title span{
  font-size: clamp(50px, 4.7vw, 62px);
  line-height: 0.98;
  font-weight: 300;
  color: #ededed;
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.sec-choose-title strong{
  color: #deff00;
  font-weight: 700;
}
.sec-choose-subtitle{
  grid-column: 1;
  grid-row: 2;
  margin: 8px 0 0;
  max-width: 260px;
  font-size: 15px;
  line-height: 1.45;
  color: #ffffff;
}
.sec-choose-cta{
  grid-column: 1;
  grid-row: 3;
  justify-self: start;
  margin-top: 16px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #dfff06;
  color: #0b0b0b;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 18px rgba(223, 255, 6, 0.45);
  animation: secChoosePulse 3s ease-in-out infinite;
}
.sec-choose-line-wrap{
  align-self: start;
  display: grid;
  justify-items: center;
  grid-template-rows: 1fr;
  padding-top: 0;
  transform: translate3d(calc(var(--drift-x, 0px) + var(--hover-pull-x, 0px) + 20%), calc(var(--drift-y, 0px) + var(--hover-pull-y, 0px)), 0);
}
.sec-choose-sales{
  margin-bottom: 10px;
  color: #f0ff00;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  opacity: 0;
  transform: translate3d(var(--drift-x, 0px), calc(var(--drift-y, 0px) + 5px), 0);
  transition: opacity 260ms ease-out, transform 260ms ease-out;
}
.sec-choose.is-sales-visible .sec-choose-sales{
  opacity: 1;
  transform: translate3d(var(--drift-x, 0px), var(--drift-y, 0px), 0);
}
.sec-choose-line-body{
  position: relative;
  width: 12px;
  height: auto;
  min-height: 360px;
  transform-origin: bottom center;
}
.sec-choose-line{
  width: 100%;
  height: 100%;
  overflow: visible;
}
.sec-choose-line path{
  fill: none;
  stroke: #f0ff00;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 0 rgba(240,255,0,0));
}
.sec-choose.is-line-animating .sec-choose-line-body{
  animation: chooseLineGrow 1000ms cubic-bezier(.22,.61,.36,1) both;
}
.sec-choose.is-line-animating .sec-choose-line path{
  animation: chooseLineGlow 1100ms ease-out both;
}
.sec-choose-points{
  list-style: none;
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}
.sec-choose-point{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(240,255,0,0.7);
  background: rgba(240,255,0,0.22);
  transition: transform 220ms ease-out, background-color 220ms ease-out, box-shadow 220ms ease-out;
}
.sec-choose-right{
  width: min(100%, 780px);
  margin-left: 12px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
  transform: translate3d(calc(var(--drift-x, 0px) + var(--hover-pull-x, 0px) + 20%), calc(var(--drift-y, 0px) + var(--hover-pull-y, 0px)), 0);
}
.sec-choose-list{
  height: auto;
  min-height: 360px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 14px;
}
.sec-choose-node{
  margin: 0;
  opacity: 0;
  filter: saturate(0.92);
  transition: opacity 340ms ease-out, color 260ms ease-out, filter 260ms ease-out, transform 460ms cubic-bezier(.19,1,.22,1);
  transform: translate3d(calc(var(--drift-x, 0px) + var(--hover-pull-x, 0px)), calc(var(--float-y, 0px) + var(--drift-y, 0px) + var(--hover-pull-y, 0px) + 14px), 0);
  will-change: transform;
}
.sec-choose-node.is-revealed{
  opacity: 0.78;
  filter: saturate(0.98);
  transform: translate3d(calc(var(--drift-x, 0px) + var(--hover-pull-x, 0px)), calc(var(--float-y, 0px) + var(--drift-y, 0px) + var(--hover-pull-y, 0px)), 0);
}
.sec-choose-node.is-active{
  opacity: 1;
  filter: saturate(1);
}
.sec-choose-point.is-active{
  transform: scale(1.15);
  background: rgba(240,255,0,0.62);
  box-shadow: 0 0 8px rgba(240,255,0,0.28);
}
.sec-choose-support,
.sec-choose-context,
.sec-choose-main,
.sec-choose-final{
  margin: 0;
  line-height: 1.5;
}
.sec-choose-support,
.sec-choose-context{
  font-size: 16.2px;
  color: #b8b8b8;
}
.sec-choose-node.is-active .sec-choose-support,
.sec-choose-node.is-active .sec-choose-context{
  color: #a9a9a9;
}
.sec-choose-context--one{ color: #b8b8b8; }
.sec-choose-main{
  font-size: 16.2px;
  font-weight: 400;
  color: #a9a9a9;
}
.sec-choose-node.is-active .sec-choose-main{ color: #a9a9a9; }
.sec-choose-main span{ color: inherit; }
@keyframes chooseLineGrow{
  from{ transform: scaleY(0.28) translateY(18px); opacity: 0.45; }
  to{ transform: scaleY(1) translateY(0); opacity: 1; }
}
@keyframes chooseLineGlow{
  0%{ filter: drop-shadow(0 0 0 rgba(240,255,0,0)); }
  48%{ filter: drop-shadow(0 0 14px rgba(240,255,0,0.65)); }
  100%{ filter: drop-shadow(0 0 7px rgba(240,255,0,0.36)); }
}
@media (max-width: 980px){
  .sec-choose{ padding: 91px 0; }
  .sec-choose-shell{ gap: 40px; padding: 0 28px; }
  .sec-choose-layout{ grid-template-columns: 1fr; gap: 32px; }
  .sec-choose-left{ grid-template-columns: minmax(0,1fr) 44px; gap: 20px; transform: none; }
  .sec-choose-title span{ font-size: clamp(40px, 9.3vw, 50px); }
  .sec-choose-subtitle{ max-width: 100%; font-size: 14px; }
  .sec-choose-line-body,
  .sec-choose-list{
    height: auto;
    min-height: 340px;
  }
  .sec-choose-line-body{
    height: auto;
    min-height: 340px;
  }
  .sec-choose-right{
    width: min(100%, 700px);
    margin-left: 10px;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 20px;
    transform: translate3d(calc(var(--drift-x, 0px) + var(--hover-pull-x, 0px)), calc(var(--drift-y, 0px) + var(--hover-pull-y, 0px)), 0);
  }
  .sec-choose-line-wrap{
    transform: translate3d(calc(var(--drift-x, 0px) + var(--hover-pull-x, 0px)), calc(var(--drift-y, 0px) + var(--hover-pull-y, 0px)), 0);
  }
  .sec-choose-support, .sec-choose-context{ font-size: 14px; }
  .sec-choose-main{ font-size: 14px; }
}
@media (max-width: 640px){
  .sec-choose-shell{ padding: 0 18px; }
  .sec-choose-left{ grid-template-columns: 1fr; gap: 16px; }
  .sec-choose-title span{ font-size: clamp(40px, 11vw, 50px); }
  .sec-choose-subtitle{ margin-top: 6px; }
  .sec-choose-right{
    margin-left: 0;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    transform: translate3d(calc(var(--drift-x, 0px) + var(--hover-pull-x, 0px)), calc(var(--drift-y, 0px) + var(--hover-pull-y, 0px)), 0);
  }
  .sec-choose-line-body,
  .sec-choose-list{
    height: 100%;
    min-height: 332px;
  }
  .sec-choose-line-body{
    height: 100%;
    min-height: 332px;
  }
  .sec-choose-points{
    display: grid;
    grid-template-rows: repeat(5, minmax(0, 1fr));
    justify-items: center;
    padding: 0;
  }
  .sec-choose-list{
    display: grid;
    grid-template-rows: repeat(5, minmax(0, 1fr));
    gap: 0;
    align-content: stretch;
  }
  .sec-choose-node{
    display: flex;
    align-items: center;
    min-height: 0;
  }
  .sec-choose-point[data-step="1"],
  .sec-choose-node[data-step="1"]{ grid-row: 5; }
  .sec-choose-point[data-step="2"],
  .sec-choose-node[data-step="2"]{ grid-row: 4; }
  .sec-choose-point[data-step="3"],
  .sec-choose-node[data-step="3"]{ grid-row: 3; }
  .sec-choose-point[data-step="4"],
  .sec-choose-node[data-step="4"]{ grid-row: 2; }
  .sec-choose-point[data-step="5"],
  .sec-choose-node[data-step="5"]{ grid-row: 1; }
  .sec-choose-support,
  .sec-choose-context,
  .sec-choose-main{
    font-size: 13px;
    line-height: 1.35;
  }
}
@media (prefers-reduced-motion: reduce){
  .sec-choose-node,
  .sec-choose-point,
  .sec-choose-sales{ transition: none; }
  .sec-choose-layer--aura{ opacity: 0.45; }
  .sec-choose-title,
  .sec-choose-sales,
  .sec-choose-line-wrap,
  .sec-choose-right,
  .sec-choose-node{ transform: none !important; }
}

/* =========================
   RODAPÉ
   ========================= */
.site-footer{
  background: transparent;
  color: #e9eaee;
  padding: 34px 24px 42px;
}

.site-footer-shell{
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 110px;
}

.footer-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-pill{
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.footer-pill--outline{
  border: 1px solid #dfff06;
  color: #f5f5f5;
  background: transparent;
}

.footer-pill--solid{
  background: #dfff06;
  border: 1px solid #dfff06;
  color: #0b0b0b;
  font-weight: 600;
}

.footer-center{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-size: 12px;
  color: #8a8a8a;
  flex: 1;
  text-align: center;
}

.footer-link{
  color: #8a8a8a;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-copy{
  color: #6f6f6f;
  white-space: nowrap;
}

.footer-reg{
  font-size: 11px;
  vertical-align: super;
}

.footer-social{
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-icon-link{
  color: #dfff06;
  text-decoration: none;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.footer-icon{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-icon svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-pill:hover{
  opacity: 0.85;
}

.footer-link:hover,
.footer-icon-link:hover{
  opacity: 0.75;
}

@keyframes secChoosePulse{
  0%, 100%{
    transform: translateY(0);
    box-shadow: 0 0 18px rgba(223, 255, 6, 0.45);
  }
  50%{
    transform: translateY(-4px);
    box-shadow: 0 0 26px rgba(223, 255, 6, 0.65);
  }
}

@media (max-width: 900px){
  .site-footer-shell{
    flex-direction: column;
    text-align: center;
  }

  .footer-center{
    flex-direction: column;
    gap: 12px;
    order: 2;
  }

  .footer-actions{
    order: 1;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-social{
    order: 3;
    justify-content: center;
  }
}


/* =========================
   PARALLAX GLOBAL (SEÇÕES)
   ========================= */
section[data-parallax-section]{
  /* ✅ não move a section inteira (evita sensação de "scroll por seção") */
  --parallax-y: 0px;
  translate: 0 0;
  will-change: auto;
}
.parallax-item{
  --move-x: 0px;
  --move-y: 0px;
  translate: var(--move-x) var(--move-y);
  will-change: translate;
}
@media (prefers-reduced-motion: reduce){
  section[data-parallax-section],
  .parallax-item{
    translate: 0 0 !important;
  }
}

/* =========================
   SEÇÃO 06 (mantida)
   ========================= */
.sec6{
  padding: 96px 16px 86px;
  background: #0b0c10;
}

.sec6-shell{
  max-width: 1240px;
  margin: 0 auto;
}

.sec6-title{
  margin: -70px 0 34px 0;
  text-align:center;
  font-weight: 400;
  font-size: 34px;
  letter-spacing: -0.6px;
  color:#e9eaee;
}

.sec6-card{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 64px;
  overflow:hidden;
  box-shadow: 0 35px 110px rgba(0,0,0,.62);
  border: 1px solid rgba(255,255,255,.10);
  position: relative;
}

/* brilho “porta azul” bem suave por cima do bloco todo */
.sec6-card::before{
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  top:-22%;
  height: 60%;
  background: radial-gradient(closest-side at 50% 70%, rgba(33,123,188,.22), rgba(33,123,188,.0) 70%);
  pointer-events:none;
  filter: blur(2px);
  opacity: .85;
  z-index: 2;
}

/* sweep leve geral (bem fraco) */
.sec6-card::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-45%;
  width: 30%;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.06) 45%,
    rgba(255,255,255,0) 100%);
  transform: skewX(-18deg);
  opacity: .45;
  pointer-events:none;
  z-index: 3;
  animation: sec6Sweep 8.8s ease-in-out infinite;
}

@keyframes sec6Sweep{
  0%{ transform: translateX(0) skewX(-18deg); opacity: .00; }
  12%{ opacity: .28; }
  28%{ opacity: .18; }
  45%{ opacity: .00; }
  100%{ transform: translateX(520%) skewX(-18deg); opacity: .00; }
}

.sec6-row{
  position: relative;
  padding: 26px 18px;
  text-align:center;
  isolation: isolate;
  overflow:hidden;
}

/* divisórias finas tipo referência */
.sec6-row:not(:last-child){
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* variação de tons (suave), sem ficar “gritante” */
.sec6-row--1{ background: #217bbc; }
.sec6-row--2{ background: #1b129e; }
.sec6-row--3{ background: #120d7f; }
.sec6-row--4{ background: #0d086a; }
.sec6-row--5{ background: #0b064f; }
.sec6-row--6{ background: #dfff06; }

/* micro-shift do degradê por linha (bem fraco) */
.sec6-row::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 220px at 50% 10%, rgba(255,255,255,.10), rgba(255,255,255,0) 60%),
    linear-gradient(90deg, rgba(255,255,255,.05), rgba(255,255,255,0) 45%, rgba(255,255,255,.04));
  background-size: 140% 140%;
  background-position: 30% 30%;
  opacity: .55;
  pointer-events:none;
  z-index: 1;
  animation: sec6BgDrift 10.5s ease-in-out infinite;
}

@keyframes sec6BgDrift{
  0%{ background-position: 30% 30%; opacity: .45; }
  50%{ background-position: 70% 40%; opacity: .55; }
  100%{ background-position: 30% 30%; opacity: .45; }
}

.sec6-row-inner{
  position: relative;
  z-index: 2;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 6px;
  min-height: 86px;
}

/* ícone em cima, centralizado */
.sec6-ico{
  width: 36px;
  height: 36px;
  object-fit: contain;
  display:block;
  margin-bottom: 6px;
  filter: brightness(0) saturate(100%) invert(88%) sepia(93%) saturate(980%) hue-rotate(16deg) brightness(110%) contrast(104%);
}

/* no verde, ícone fica escuro */
.sec6-row--6 .sec6-ico{
  filter: brightness(0) saturate(100%);
  opacity: .95;
}

.sec6-h{
  margin:0;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.2px;
  color:#eef0ff;
}

.sec6-p{
  margin:0;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(238,240,255,.88);
}

.sec6-h--dark{ color:#101016; }
.sec6-p--dark{ color: rgba(16,16,22,.78); }

/* animação de entrada suave e marcante */
.sec6-row{
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}
.sec6-row.is-in{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =========================
   SEÇÃO 07 (ENGRENAGEM NOVA)
   ========================= */
.sec7{
  padding: 96px 0 128px;
  background: transparent;
  --sec7-lines-delay: 6800ms;
}
.sec7-shell{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.sec7-header{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease, transform 760ms ease;
}
.sec7.is-in .sec7-header{
  opacity: 1;
  transform: translateY(0);
}
.sec7-title{
  font-size: clamp(30px, 4vw, 42px);
  margin: 0 0 14px 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.sec7-title-light{
  display: block;
  font-weight: 300;
  color: #f1f2f6;
  text-transform: none;
}
.sec7-title-accent{
  display: block;
  font-weight: 700;
  color: #dfff06;
  text-transform: none;
}
.sec7-sub{
  font-size: 15px;
  line-height: 1.6;
  color: rgba(233, 234, 238, 0.78);
  margin: 0;
  font-weight: 300;
}
.sec7-title,
.sec7-sub{
  opacity: 0;
  transform: translateY(14px);
}
.sec7.is-in .sec7-title,
.sec7.is-in .sec7-sub{
  animation: sec7-fade-up 900ms ease forwards;
}
.sec7.is-in .sec7-sub{
  animation-delay: 260ms;
}
.sec7-stage{
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 48px auto 0;
  min-height: 540px;
  transition: transform 240ms ease;
  --gear-size: 272px;
  --blocks-shift: 0%;
}
.sec7-lines{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: scale(0.86);
  transform-origin: center;
  z-index: 1;
}
.sec7-lines--mobile{
  display: none;
}
.sec7-line{
  fill: none;
  stroke: rgba(232, 255, 61, 0.65);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 2600ms ease;
  transition-delay: calc(var(--line-delay, 0ms) + var(--sec7-lines-delay, 0ms));
}
.sec7.is-in .sec7-line{
  stroke-dashoffset: 0;
}
.sec7-gear-wrap{
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 46%;
  transform: translate(calc(-50% + var(--move-x, 0px)), calc(-50% + var(--move-y, 0px)));
  width: var(--gear-size);
  height: var(--gear-size);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
  transition: transform 360ms ease, filter 360ms ease;
}
.sec7-gear{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease, filter 320ms ease;
}
.sec7.is-in .sec7-gear{
  animation: sec7-spin 16s linear infinite;
}
.sec7-logo{
  position: absolute;
  width: clamp(64px, 42%, 120px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 320ms ease;
}
.sec7-stage:hover .sec7-gear{
  animation-duration: 2.25s;
  transform: scale(1.2);
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.7));
}

@keyframes sec7-fade-up{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes sec7-spin{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

.sec7-block{
  position: absolute;
  z-index: 2;
  width: 260px;
  padding: 18px 18px 20px;
  border-radius: 18px;

  background: linear-gradient(120deg, #deff00 0%, #98af46 50%, #deff00 100%);
  background-size: 220% 220%;
  animation: sec7-block-gradient-shift 24s ease-in-out infinite;

  border: 1px solid rgba(222, 255, 0, 0.14);
  color: #111;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(20px) saturate(110%);
  text-align: center;
  opacity: 0;
  --base-x: 0px;
  --base-y: 24px;
  transform: translate3d(
    calc(var(--base-x) + var(--move-x, 0px)),
    calc(var(--base-y) + var(--move-y, 0px) + var(--blocks-shift, 0px)),
    0
  );
  transition: opacity 900ms ease, transform 900ms ease;
  transition-delay: var(--delay, 0ms);
  overflow: hidden;
  isolation: isolate;
}
.sec7-block > *{
  position: relative;
  z-index: 1;
}
.sec7.is-in .sec7-block{
  opacity: 1;
  --base-y: 0px;
}
.sec7-block-title{
  font-size: 16px;
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #0a0a0a;
}
.sec7-block-text{
  font-size: 13.5px;
  line-height: 1.5;
  margin: 0;
  color: rgba(0, 0, 0, 0.82);
}
.sec7-icons{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: center;
}
.sec7-icons span{
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.82);
}

@keyframes sec7-block-gradient-shift{
  0%{ background-position: 0% 50%; }
  50%{ background-position: 100% 50%; }
  100%{ background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce){
  .sec3-work-card,
  .sec7-block{
    animation: none;
  }
}

.sec7-block--1{ top: 24px; left: 0; }
.sec7-block--2{ top: 265px; left: 32px; }
.sec7-block--3{ bottom: -24px; left: 50%; --base-x: -50%; }
.sec7.is-in .sec7-block--3{ --base-y: 0px; }
.sec7-block--4{ top: 265px; right: 32px; }
.sec7-block--5{ top: 24px; right: 0; }

/* =========================
   RESPONSIVO
   ========================= */
@media (max-width: 980px){
  .navlinks{ display:none; }
  .hamburger--desktop{ display:none !important; }
  .hamburger--mobile{ display:inline-flex; }

  .sec3-work{ padding: 70px 18px; }
  .sec3-work-surface{
    padding: 90px 20px;
    border-radius: 30px;
    clip-path: inset(0 round 30px);
  }
  .sec3-work-shell{
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "marquee";
    justify-items: center;
    text-align: center;
  }
  .sec3-work-head{
    max-width: 560px;
    padding-left: 0;
  }
  .sec3-work-marquee{
    border-radius: 28px;
  }
  .sec3-work-card{
    min-width: 260px;
  }

  .sec2-card{
    display:block;
    padding: 34px 26px;
    min-height: 0;
  }

  .sec2-left{ transform: translate(0, 0); }

  .sec2-right{
    justify-content: center;
    margin-top: 22px;
  }

  .form-area{ max-width: 640px; }

  .sec3-viewport{ max-width: 920px; }
  .sec3-viewport:before, .sec3-viewport:after{ width: 160px; }
  .sec3-track{ padding: 6px 160px; gap: 44px; }
  .sec3-item{ flex-basis: 210px; }
  .sec3-item img{ max-height: 48px; max-width: 250px; }

  .sec6-card{ max-width: 980px; border-radius: 54px; }
  .sec6-title{ font-size: 30px; }

  .sec7-stage{
    min-height: 620px;
    --gear-size: 238px;
  }
  .sec7-block{ width: 230px; }
  .sec7-block--2{ left: 0; top: 300px; }
  .sec7-block--4{ right: 0; top: 300px; }
}

@media (max-width: 760px){
  .sec3-work{ padding: 64px 16px; }
  .sec3-work-surface{
    padding: 84px 18px;
    border-radius: 24px;
    clip-path: inset(0 round 24px);
  }
  .sec3-work-head{
    margin-bottom: 32px;
  }
  .sec3-work-marquee{
    gap: 14px;
    padding: 14px 8px;
    border-radius: 24px;
  }
  .sec3-work-track{
    animation-duration: 36s;
  }
  .sec3-work-row--bottom .sec3-work-track{
    animation-duration: 40s;
  }
  .sec3-work-card{
    min-width: 200px;
    max-width: 220px;
    --card-scale: 0.96;
  }
  .sec3-work-line--title,
  .sec3-work-line--sub{
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
    width: auto;
    white-space: normal;
    border-right: 0;
  }

  .sec7{
    --sec7-lines-delay: 0ms;
  }
  .sec7-lines--mobile .sec7-line{
    transition-delay: 0ms;
  }
  .sec7.is-in .sec7-gear{
    animation-duration: 10.66s;
  }
  .sec6-card{ border-radius: 46px; }

  .sec7-stage{
    min-height: 0;
    display: grid;
    gap: 52px;
    justify-items: center;
    padding-top: 48px;
    padding-bottom: 28px;
    --gear-size: 255px;
    --blocks-shift: 50%;
  }
  .sec7-lines{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .sec7-lines--mobile .sec7-line{
    stroke-width: 0.75;
  }
  .sec7-lines--desktop{ display: none; }
  .sec7-lines--mobile{ display: block; }
  .sec7-gear-wrap{
    order: 0;
    left: auto;
    top: auto;
    transform: translate(0, 0);
  }
  .sec7-block{
    position: relative;
    order: 2;
    width: 100%;
    max-width: 360px;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: translate3d(0, calc(18px + var(--blocks-shift, 0px)), 0);
  }
  .sec7.is-in .sec7-block{
    transform: translate3d(0, var(--blocks-shift, 0px), 0);
  }
  .sec7-block--1{
    margin-top: calc(var(--gear-size) * 0.7);
  }
  .sec7-block--3{
    transform: translate3d(0, calc(18px + var(--blocks-shift, 0px)), 0);
    bottom: auto;
  }
  .sec7.is-in .sec7-block--3{
    transform: translate3d(0, var(--blocks-shift, 0px), 0);
  }
}

@media (max-width: 520px){
  /* ✅ MENU: encaixado certinho no mobile */
  .topbar-wrap{
    top: 12px;
    padding: 0 12px;
  }

  .topbar{
    padding: 8px 12px;
    border-radius: 12px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto; /* no mobile volta central full */
  }

  .topbar.is-compact{
    max-width: 100%;
    margin: 0 auto;
  }

  .mobile-menu{
    max-width: 100%;
    width: 100%;
    margin: 10px 0 0;
  }

  .sec3-item{
    filter: none;
  }

  .brand img{ height: 16.875px; }
  .cta-desktop{ display:none; }

  .hero{ padding-top: 54px; padding-bottom: 44px; }
  .hero-title{ font-size: 38px; }
  .hero-sub{ font-size: 13px; }

  .cta-solid{
    padding: 12px 24px;
    font-size: 13.5px;
    min-width: 250px;
  }

  .sec2{ padding-top: 26px; padding-bottom: 44px; }
  .sec2-card{ padding: 28px 22px; overflow: visible; }
  .sec2-title{ font-size: 29px; margin: 4px 0 16px 0; }

  .sec3-work{ padding: 56px 12px; }
  .sec3-work-surface{
    padding: 78px 16px;
    border-radius: 20px;
    clip-path: inset(0 round 20px);
  }
  .sec3-work-title{ font-size: 26px; }
  .sec3-work-sub{ font-size: 14px; }
  .sec3-work-card{
    padding: 22px 18px 22px;
    min-width: 170px;
    max-width: 190px;
    --card-scale: 0.92;
  }

  .sec2-steps-img{
    width: 86px;
    content: url("https://blogger.googleusercontent.com/img/a/AVvXsEjccux2AEx7hZAcG0rbmQ6YQwgel9s3-nEB5GFczCiI0Ap2mPQ1QkTV5rERccPOhrCUBpop0mlY5SJpwmJkbrgk8E0thWPrM47QuSWj675s7sHNvreQNt_7og3wsL1w4OKJo12b_ZW5S1REVW75QBMwqYtGkwddAv14i-a4RIiuwq2aGzo0Cu0nX8w90_o");
    margin-top: 2px;
  }

  .sec2-steps{ gap: 14px; margin-top: 22px; }
  .sec2-steps-text{ gap: 18px; }

  .field{ margin-bottom: 14px; }
  .field input, .select-btn{ height: 62px; }

  /* ✅ SEC4: remove a largura extra que estourava pro lado no mobile */
  .sec4-card{
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 44px 18px 54px;
    border-radius: 30px;
  }
  .sec4-diagram{
    margin-top: 26px;
    max-width: 640px;
    transform: scale(1); /* ✅ sem translateX no mobile */
  }
  .sec4-title{ font-size: 28px; }
  .sec4-how{ font-size: 22px; }
  .sec4-gear{ width: 38%; top: 44%; }

  /* ✅ PATROCINADORES MOBILE */
  .sec3{
    padding-top: 72px;
    padding-bottom: 40px;
    background: #0b0c10;
  }

  .sec3-title{
    font-size: 28px;
    margin: -18px 0 24px 0;
  }

  .sec3-nav{ width: 34px; height: 34px; }
  .sec3-nav img{ width: 12px; height: 12px; }

  .sec3-viewport{
    max-width: 100%;
    background: transparent;
    --centerW: 240px;
    --centerHalf: 120px;
  }

  .sec3-viewport:before, .sec3-viewport:after{
    width: 92px;
  }

  .sec3-track{
    gap: 18px;
    padding: 6px 0;
    margin-left: calc(50% - var(--centerHalf));
    margin-right: calc(50% - var(--centerHalf));
  }

  .sec3-item{
    flex: 0 0 var(--centerW);
  }

  .sec3-item img{
    max-height: 42px;
    max-width: 210px;
  }

  /* SEC6 mobile */
  .sec6{ padding-top: 76px; padding-bottom: 72px; }
  .sec6-title{ font-size: 26px; margin: -18px 0 22px 0; }
  .sec6-card{ border-radius: 40px; }
  .sec6-row{ padding: 22px 14px; }
  .sec6-h{ font-size: 16px; }
  .sec6-p{ font-size: 12.8px; }

  .sec7{ padding-top: 76px; padding-bottom: 86px; }
  .sec7-title{ font-size: 26px; }
  .sec7-block{ padding: 16px; }
  .sec7-block-title{ font-size: 15px; }
}

/* =========================
   Scroll Section Indicator
   ========================= */
.zacxys-scroll-indicator{
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  pointer-events: auto;
}

.zacxys-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2a2a2f;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.65;
  transition:
    height 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    background 320ms cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transform-origin: center;
}

.zacxys-dot.is-active{
  height: 18px;
  background: #dfff06;
  opacity: 1;
  transform: scaleY(1.15);
  box-shadow: 0 0 12px rgba(223, 255, 6, 0.55);
}

.zacxys-dot:focus-visible{
  outline: 2px solid rgba(223, 255, 6, 0.65);
  outline-offset: 3px;
}

@media (max-width: 520px){
  .zacxys-scroll-indicator{
    opacity: 0;
    pointer-events: none;
  }

  .zacxys-dot{
    width: 4px;
    height: 4px;
  }

  .zacxys-dot.is-active{
    height: 12px;
  }
}

@media (prefers-reduced-motion: reduce){
  .zacxys-dot{
    transition: none;
  }
}

/* =========================
   AJUSTE FUNDO GLOBAL
   ========================= */
main section:not(.sec3-work),
main section:not(.sec3-work)::before,
main section:not(.sec3-work)::after{
  background: transparent;
  background-color: transparent;
  background-image: none;
}

/* =========================
   REMOVE SCROLLBAR (TOTAL)
   ========================= */
html, body{
  scrollbar-width: none; /* Firefox */
}
::-webkit-scrollbar{
  width: 0;
  height: 0;
}