﻿:root {
  --bg: #ffffff;
  --fg: #030303;
  --muted: rgba(3, 3, 3, 0.56);
  --soft: rgba(3, 3, 3, 0.34);
  --line: rgba(3, 3, 3, 0.14);
  --line-strong: rgba(3, 3, 3, 0.22);
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-height: 100vh;
  color: var(--fg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  background: var(--bg);
}

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

.topbar {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(3, 3, 3, 0.08);
  transform: translateX(-50%);
  overflow: hidden;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  width: 170px;
}

.nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--fg);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--fg);
  opacity: 0;
  transform: translateX(-50%) scale(0.4);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-links a.active {
  color: var(--fg);
  font-weight: 800;
}

.nav-links a.active::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.nav-action {
  justify-self: end;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  font-size: 0.9rem;
  font-weight: 700;
}

.menu-toggle {
  display: none !important;
  justify-self: end;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(3, 3, 3, 0.12);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.95), rgba(255,255,255,.58)),
    rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    0 12px 34px rgba(3, 3, 3, 0.08);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(3, 3, 3, 0.22);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--fg);
  transform: translate(-50%, -50%);
  transition: transform 0.24s cubic-bezier(.16, 1, .3, 1), opacity 0.18s ease, width 0.18s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.menu-toggle span:nth-child(2) {
  width: 14px;
  transform: translate(calc(-50% + 2px), -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.menu-toggle.open span:nth-child(1) {
  width: 18px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: translate(calc(-50% + 7px), -50%) scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  width: 18px;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu {
  display: none !important;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 18px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mobile-menu a:hover {
  background: rgba(3, 3, 3, 0.045);
  color: var(--fg);
}

.mobile-menu a.active {
  background: var(--fg);
  color: var(--bg);
  box-shadow: 0 12px 26px rgba(3, 3, 3, 0.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(3, 3, 3, 0.075), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 48%, #ffffff 100%);
  isolation: isolate;
}

.ambient {
  position: absolute;
  inset: -10%;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(3, 3, 3, 0.07), transparent 28rem),
    radial-gradient(circle at 84% 74%, rgba(3, 3, 3, 0.055), transparent 30rem);
  filter: blur(24px);
}

.shape-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  width: var(--shape-width);
  height: var(--shape-height);
  border-radius: 999px;
  border: 2px solid var(--line);
  background: linear-gradient(90deg, rgba(3, 3, 3, var(--shape-opacity)), transparent 72%);
  box-shadow:
    0 18px 60px rgba(3, 3, 3, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(3px);
  transform: rotate(var(--shape-rotate));
  animation:
    shape-enter 2.4s cubic-bezier(0.23, 0.86, 0.39, 0.96) both,
    shape-float 12s ease-in-out infinite;
  animation-delay: var(--shape-delay), calc(var(--shape-delay) + 2.4s);
}

.shape::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 50%, rgba(3, 3, 3, 0.13), transparent 70%);
}

.shape-one {
  --shape-width: 600px;
  --shape-height: 140px;
  --shape-rotate: 12deg;
  --shape-opacity: 0.13;
  --shape-delay: 0.3s;
  top: 16%;
  left: -10%;
}

.shape-two {
  --shape-width: 500px;
  --shape-height: 120px;
  --shape-rotate: -15deg;
  --shape-opacity: 0.105;
  --shape-delay: 0.5s;
  right: -5%;
  top: 72%;
}

.shape-three {
  --shape-width: 300px;
  --shape-height: 80px;
  --shape-rotate: -8deg;
  --shape-opacity: 0.09;
  --shape-delay: 0.4s;
  left: 8%;
  bottom: 8%;
}

.shape-four {
  --shape-width: 200px;
  --shape-height: 60px;
  --shape-rotate: 20deg;
  --shape-opacity: 0.12;
  --shape-delay: 0.6s;
  right: 18%;
  top: 14%;
}

.shape-five {
  --shape-width: 150px;
  --shape-height: 40px;
  --shape-rotate: -25deg;
  --shape-opacity: 0.1;
  --shape-delay: 0.7s;
  left: 24%;
  top: 8%;
}

.hero-goo-stage {
  position: absolute;
  inset: 0;
  z-index: 8;
  overflow: visible;
  pointer-events: none;
  filter: blur(5px) contrast(34) brightness(0.82);
  opacity: 0;
  animation: screen-goo-life 2.25s cubic-bezier(.16, 1, .3, 1) .2s both;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 120px 0 40px;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 0 13px;
  margin-bottom: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(3, 3, 3, 0.09);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.03);
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--fg);
  box-shadow: 0 0 18px rgba(3, 3, 3, 0.45);
}

.title {
  font-size: clamp(3.4rem, 9vw, 8.6rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
}

.title span {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #030303 0%, rgba(3, 3, 3, 0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.title .title-soft {
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.5), #030303 48%, rgba(3, 3, 3, 0.62));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-splash {
  position: relative;
  width: clamp(230px, 36vw, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 auto;
  isolation: isolate;
}

.brand-splash::before,
.brand-splash::after {
  content: "";
  position: absolute;
  inset: 19%;
  z-index: -1;
  border-radius: 50%;
  background:
    conic-gradient(from 120deg, transparent 0 12%, rgba(3,3,3,.15) 12% 18%, transparent 18% 36%, rgba(3,3,3,.11) 36% 44%, transparent 44% 70%, rgba(3,3,3,.18) 70% 76%, transparent 76% 100%);
  filter: blur(1px);
  transform: scale(0.2) rotate(-42deg);
  animation: splash-shards 1.45s cubic-bezier(.16, 1, .3, 1) 0.55s both;
}

.brand-splash::after {
  inset: 8%;
  opacity: 0.7;
  animation-delay: 0.66s;
  animation-duration: 1.75s;
  animation-direction: reverse;
}

.brand-splash img {
  width: 72%;
  height: auto;
  display: block;
  transform-origin: center;
  filter:
    drop-shadow(0 28px 62px rgba(3, 3, 3, 0.2))
    drop-shadow(0 0 1px rgba(3, 3, 3, 0.45));
  animation: icon-impact 1.35s cubic-bezier(.16, 1, .3, 1) .48s both, icon-hover 7s ease-in-out 2s infinite;
}

.animated-icon {
  position: relative;
  z-index: 4;
}

.icon-aura,
.icon-slice {
  position: absolute;
  pointer-events: none;
}

.icon-aura {
  border-radius: 50%;
  border: 1px solid rgba(3, 3, 3, 0.18);
  opacity: 0;
  animation: icon-aura-pop 1.8s cubic-bezier(.16, 1, .3, 1) var(--aura-delay) both;
}

.icon-aura-one {
  inset: 18%;
  --aura-delay: .22s;
}

.icon-aura-two {
  inset: 3%;
  --aura-delay: .38s;
}

.icon-slice {
  z-index: 2;
  width: var(--slice-width);
  height: var(--slice-height);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(3,3,3,.16), rgba(3,3,3,.02));
  transform: rotate(var(--slice-rotate)) translateX(var(--slice-start));
  opacity: 0;
  animation: icon-slice-in 1.1s cubic-bezier(.16, 1, .3, 1) var(--slice-delay) both;
}

.icon-slice-one {
  --slice-width: 62%;
  --slice-height: 13%;
  --slice-rotate: 16deg;
  --slice-start: -90%;
  --slice-delay: .18s;
  top: 30%;
  left: 4%;
}

.icon-slice-two {
  --slice-width: 54%;
  --slice-height: 10%;
  --slice-rotate: -18deg;
  --slice-start: 90%;
  --slice-delay: .3s;
  right: 3%;
  top: 56%;
}

.icon-slice-three {
  --slice-width: 42%;
  --slice-height: 8%;
  --slice-rotate: 72deg;
  --slice-start: -72%;
  --slice-delay: .42s;
  left: 29%;
  bottom: 8%;
}

.goo-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  filter: blur(10px) contrast(22);
  opacity: 0;
  animation: goo-stage-life 2.45s cubic-bezier(.16, 1, .3, 1) 0.22s both;
}

.goo-blob,
.goo-tendril {
  position: absolute;
  display: block;
  background: #030303;
  pointer-events: none;
}

.goo-comet {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: clamp(240px, 34vw, 460px);
  height: clamp(58px, 8vw, 104px);
  display: block;
  background:
    radial-gradient(circle at var(--head-x) 50%, #000 0 20%, rgba(0,0,0,1) 21% 34%, transparent 35%),
    linear-gradient(var(--trail-dir), transparent 0%, rgba(0,0,0,.52) 11%, rgba(0,0,0,.96) 44%, #000 100%);
  border: 1px solid rgba(0, 0, 0, 0.72);
  border-radius: 42% 58% 47% 53% / 58% 44% 56% 42%;
  opacity: 0;
  filter:
    blur(0.4px)
    drop-shadow(0 18px 32px rgba(0,0,0,.2));
  transform-origin: var(--origin-x) 50%;
  animation: goo-comet-float 2.08s cubic-bezier(.16, 1, .3, 1) var(--comet-delay) both;
}

.goo-comet::before,
.goo-comet::after {
  content: "";
  position: absolute;
  background: #000;
  pointer-events: none;
}

.goo-comet::before {
  width: 40%;
  height: 88%;
  top: 9%;
  left: var(--bubble-a-x);
  border-radius: 34% 66% 42% 58% / 58% 32% 68% 42%;
  transform: rotate(var(--bubble-a-rotate));
}

.goo-comet::after {
  width: 24%;
  height: 52%;
  top: 60%;
  left: var(--bubble-b-x);
  border-radius: 62% 38% 48% 52% / 44% 60% 40% 56%;
  transform: rotate(var(--bubble-b-rotate));
}

.goo-comet-left {
  --head-x: 86%;
  --trail-dir: 90deg;
  --origin-x: 92%;
  --comet-delay: .08s;
  --start-x: calc(-50vw - 320px);
  --start-y: 12vh;
  --mid-one-x: -33vw;
  --mid-one-y: -16vh;
  --mid-two-x: -15vw;
  --mid-two-y: 9vh;
  --end-x: -1.2vw;
  --end-y: -1vh;
  --flip: 1;
  --bubble-a-x: 54%;
  --bubble-b-x: 18%;
  --bubble-a-rotate: 12deg;
  --bubble-b-rotate: -18deg;
}

.goo-comet-right {
  --head-x: 14%;
  --trail-dir: 270deg;
  --origin-x: 8%;
  --comet-delay: .18s;
  --start-x: calc(50vw + 320px);
  --start-y: -10vh;
  --mid-one-x: 32vw;
  --mid-one-y: 15vh;
  --mid-two-x: 14vw;
  --mid-two-y: -8vh;
  --end-x: 1.2vw;
  --end-y: 1vh;
  --flip: -1;
  --bubble-a-x: 8%;
  --bubble-b-x: 62%;
  --bubble-a-rotate: -12deg;
  --bubble-b-rotate: 18deg;
}

.goo-blob {
  width: var(--goo-size);
  height: var(--goo-size);
  border-radius: 48% 52% 44% 56% / 55% 42% 58% 45%;
  transform: translate(var(--goo-start-x), var(--goo-start-y)) scale(var(--goo-start-scale)) rotate(var(--goo-rotate));
  animation: goo-collapse 1.45s cubic-bezier(.12, .9, .18, 1) var(--goo-delay) both;
}

.goo-blob-one {
  --goo-size: 34%;
  --goo-start-x: -132%;
  --goo-start-y: 8%;
  --goo-start-scale: .72;
  --goo-rotate: -18deg;
  --goo-delay: .2s;
  top: 28%;
  left: 31%;
}

.goo-blob-two {
  --goo-size: 28%;
  --goo-start-x: 172%;
  --goo-start-y: -28%;
  --goo-start-scale: .8;
  --goo-rotate: 24deg;
  --goo-delay: .28s;
  top: 22%;
  left: 42%;
}

.goo-blob-three {
  --goo-size: 31%;
  --goo-start-x: 56%;
  --goo-start-y: 160%;
  --goo-start-scale: .78;
  --goo-rotate: 42deg;
  --goo-delay: .35s;
  top: 42%;
  left: 32%;
}

.goo-blob-four {
  --goo-size: 22%;
  --goo-start-x: -70%;
  --goo-start-y: -150%;
  --goo-start-scale: .65;
  --goo-rotate: -52deg;
  --goo-delay: .42s;
  top: 36%;
  left: 49%;
}

.goo-tendril {
  width: var(--tendril-width);
  height: var(--tendril-height);
  border-radius: 999px;
  transform-origin: center;
  opacity: 0;
  animation: tendril-whip 1.08s cubic-bezier(.16, 1, .3, 1) var(--tendril-delay) both;
}

.goo-tendril-one {
  --tendril-width: 54%;
  --tendril-height: 11%;
  --tendril-delay: .48s;
  --tendril-angle: 18deg;
  top: 38%;
  left: -3%;
  transform: rotate(18deg) scaleX(.04);
}

.goo-tendril-two {
  --tendril-width: 46%;
  --tendril-height: 9%;
  --tendril-delay: .58s;
  --tendril-angle: -24deg;
  right: -4%;
  top: 48%;
  transform: rotate(-24deg) scaleX(.04);
}

.goo-tendril-three {
  --tendril-width: 38%;
  --tendril-height: 8%;
  --tendril-delay: .66s;
  --tendril-angle: 84deg;
  left: 32%;
  bottom: 8%;
  transform: rotate(84deg) scaleX(.04);
}

.splash-ring,
.splash-burst {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.splash-ring {
  inset: var(--ring-inset);
  border: var(--ring-size) solid rgba(3, 3, 3, var(--ring-opacity));
  transform: scale(0.08);
  opacity: 0;
  animation: ring-impact var(--ring-duration) cubic-bezier(.16, 1, .3, 1) var(--ring-delay) both;
}

.splash-ring-one {
  --ring-inset: 23%;
  --ring-size: 2px;
  --ring-opacity: .32;
  --ring-delay: 1.48s;
  --ring-duration: 1.25s;
}

.splash-ring-two {
  --ring-inset: 12%;
  --ring-size: 1px;
  --ring-opacity: .22;
  --ring-delay: 1.6s;
  --ring-duration: 1.55s;
}

.splash-ring-three {
  --ring-inset: 0;
  --ring-size: 1px;
  --ring-opacity: .16;
  --ring-delay: 1.74s;
  --ring-duration: 1.9s;
}

.splash-burst {
  inset: 27%;
  z-index: -2;
  background:
    radial-gradient(circle, rgba(3,3,3,.2) 0 10%, rgba(3,3,3,.12) 11% 22%, rgba(3,3,3,.045) 23% 46%, transparent 62%);
  filter: blur(14px);
  transform: scale(0.1);
  opacity: 0;
  animation: splash-bloom 1.25s cubic-bezier(.16, 1, .3, 1) 1.42s both;
}

.copy {
  max-width: 620px;
  margin: clamp(24px, 4vw, 34px) auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.24rem);
  font-weight: 300;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(3, 3, 3, 0.12);
}

.button-dark {
  background: var(--fg);
  color: var(--bg);
}

.button-light {
  background: rgba(255, 255, 255, 0.48);
  color: var(--fg);
}

.fade-bottom {
  position: absolute;
  inset: auto 0 0;
  z-index: 5;
  height: 30%;
  background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfbfb;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 42px;
  padding: 18px 0;
  color: var(--soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

.products-page {
  overflow: hidden;
}

.products-hero {
  position: relative;
  min-height: 72vh;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 150px 0 74px;
  background:
    radial-gradient(circle at 52% 38%, rgba(3, 3, 3, 0.075), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 52%, #ffffff 100%);
}

.products-hero-content {
  position: relative;
  z-index: 10;
  width: min(1020px, calc(100% - 40px));
  text-align: center;
}

.products-hero h1 {
  max-width: 960px;
  margin: 20px auto 0;
  font-size: clamp(3.2rem, 8vw, 8.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.products-hero p {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 130px) 0;
}

#servicos,
#processo,
#contato {
  scroll-margin-top: 112px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--fg);
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head h2,
.intro-grid h2,
.lab-copy h2,
.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}

.intro-grid p,
.section-head p,
.lab-copy p,
.final-cta p,
.proof-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.product-section {
  padding-top: 0;
}

.product-section + .product-section {
  padding-top: 0;
}

.products-head {
  margin-bottom: 24px;
}

.products-head p {
  max-width: 640px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.product-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: 620px;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid rgba(3, 3, 3, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 44%, rgba(13, 148, 150, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(3, 3, 3, 0.045), rgba(3, 3, 3, 0.012)),
    #fff;
  overflow: hidden;
}

.product-copy {
  position: relative;
  z-index: 2;
}

.product-logo-link {
  display: block;
  width: fit-content;
  max-width: 100%;
}

.product-logo {
  display: block;
  width: min(410px, 100%);
  height: auto;
  margin: 26px 0 30px;
  filter: drop-shadow(0 18px 42px rgba(3, 3, 3, 0.16));
}

.product-logo-link .product-logo {
  filter: drop-shadow(0 18px 42px rgba(3, 3, 3, 0.22));
}

.product-logo-link:hover .product-logo {
  transform: translateY(-2px);
}

.product-copy h2 {
  max-width: 560px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.product-copy p {
  max-width: 590px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.75;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.product-status {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(116, 37, 255, 0.24);
  border-radius: 999px;
  background: rgba(116, 37, 255, 0.08);
  color: #7425ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-disabled {
  cursor: default;
}

.button-disabled:hover {
  transform: none;
  box-shadow: none;
}

.product-showcase {
  position: relative;
  min-height: 460px;
}

.product-orbit {
  position: absolute;
  inset: 9% 2%;
  border: 1px solid rgba(13, 148, 150, 0.24);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: inherit;
}

.product-orbit::after {
  inset: 26%;
}

.product-card-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(270px, 56vw);
  min-height: 270px;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(3, 3, 3, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(3, 3, 3, 0.14);
  transform: translate(-50%, -50%) rotate(4deg);
  backdrop-filter: blur(14px);
}

.product-card-main img {
  width: 150px;
  height: auto;
}

.product-card-main span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.product-pill {
  position: absolute;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(3, 3, 3, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--fg);
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(3, 3, 3, 0.11);
}

.pill-one { top: 13%; left: 5%; }
.pill-two { top: 22%; right: 8%; }
.pill-three { bottom: 18%; left: 2%; }
.pill-four { right: 5%; bottom: 12%; background: #0d948f; color: #fff; }

.product-section-lift {
  padding-bottom: clamp(72px, 10vw, 130px);
}

.lift-shell {
  background:
    radial-gradient(circle at 77% 42%, rgba(124, 37, 255, 0.23), transparent 22rem),
    radial-gradient(circle at 18% 82%, rgba(3, 3, 3, 0.06), transparent 18rem),
    linear-gradient(135deg, rgba(3, 3, 3, 0.045), rgba(3, 3, 3, 0.012)),
    #fff;
}

.lift-logo {
  width: min(340px, 100%);
}

.lift-showcase .product-orbit {
  border-color: rgba(124, 37, 255, 0.24);
}

.lift-card-main img {
  width: 190px;
}

.lift-showcase .pill-four {
  background: #7425ff;
}

.lift-feature-grid span {
  color: #7425ff;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.product-feature-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-feature-grid span {
  display: block;
  margin-bottom: 42px;
  color: #0d948f;
  font-weight: 900;
}

.product-feature-grid h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.product-feature-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 16px;
}

.service-card,
.proof-card,
.lab-panel,
.process-list article {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(3, 3, 3, 0.045), rgba(3, 3, 3, 0.012)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border-radius: 8px;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -14% -34% -14%;
  height: 70%;
  border: 1px solid rgba(3, 3, 3, 0.12);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.service-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.service-card-wide {
  grid-column: span 2;
}

.card-index {
  position: absolute;
  top: 22px;
  left: 24px;
  color: var(--soft);
  font-weight: 800;
}

.service-card h3 {
  position: relative;
  max-width: 430px;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.7rem);
  line-height: 1;
}

.service-card p {
  position: relative;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.lab-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
}

.lab-copy {
  align-self: end;
  max-width: 470px;
}

.lab-board {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(3, 3, 3, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(rgba(3,3,3,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3,3,3,.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.board-line {
  position: absolute;
  height: 2px;
  background: rgba(3, 3, 3, 0.22);
  transform-origin: left center;
}

.line-one { width: 42%; top: 28%; left: 16%; transform: rotate(14deg); }
.line-two { width: 46%; top: 52%; left: 34%; transform: rotate(-18deg); }
.line-three { width: 34%; top: 70%; left: 18%; transform: rotate(5deg); }

.board-node {
  position: absolute;
  min-width: 86px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #fff;
  color: var(--fg);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: 0 18px 46px rgba(3, 3, 3, 0.1);
}

.node-one { top: 18%; left: 10%; }
.node-two { top: 34%; right: 18%; }
.node-three { bottom: 20%; left: 20%; }
.node-four { bottom: 11%; right: 12%; background: var(--fg); color: var(--bg); }

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-list article {
  min-height: 250px;
  padding: 24px;
  border-radius: 8px;
}

.process-list span {
  display: block;
  margin-bottom: 70px;
  color: var(--soft);
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.process-list p {
  color: var(--muted);
  line-height: 1.65;
}

.proof-section {
  padding-top: 0;
}

.proof-card {
  padding: clamp(34px, 7vw, 78px);
  border-radius: 8px;
  text-align: center;
}

.proof-card blockquote {
  max-width: 920px;
  margin: 24px auto;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0;
}

.proof-card p {
  max-width: 640px;
  margin: 0 auto;
}

.final-cta {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto clamp(34px, 6vw, 72px);
  overflow: hidden;
  padding: clamp(46px, 8vw, 90px);
  border-radius: 8px;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}

.final-cta .section-kicker,
.final-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.final-cta .section-kicker::before {
  background: var(--bg);
}

.final-cta h2,
.final-cta p,
.final-cta .button {
  position: relative;
  z-index: 2;
}

.final-cta p {
  max-width: 620px;
  margin: 22px auto 30px;
}

.final-cta .button-dark {
  background: var(--bg);
  color: var(--fg);
}

.social-links,
.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin-top: 18px;
}

.social-links a,
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a {
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--bg);
  background: rgba(255, 255, 255, 0.08);
}

.social-links svg,
.footer-socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:hover,
.footer-socials a:hover {
  color: var(--blue);
  transform: translateY(-2px);
}

.final-shape {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,.14), transparent);
}

.final-shape-one {
  width: 520px;
  height: 120px;
  top: 10%;
  left: -12%;
  transform: rotate(12deg);
}

.final-shape-two {
  width: 430px;
  height: 100px;
  right: -14%;
  bottom: 8%;
  transform: rotate(-16deg);
}

.footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--soft);
  font-size: 0.9rem;
}

.footer img {
  width: 170px;
  height: auto;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
}

.footer-socials {
  justify-content: flex-end;
  font-size: 0.82rem;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(64, 77, 116, 0.18);
  border-radius: 50%;
}

.footer-socials svg {
  width: 15px;
  height: 15px;
}

.reveal {
  animation: reveal-up 1s cubic-bezier(0.25, 0.4, 0.25, 1) both;
}

.reveal-one { animation-delay: 0.5s; }
.reveal-two { animation-delay: 0.7s; }
.reveal-three { animation-delay: 0.9s; }

@keyframes shape-enter {
  from {
    opacity: 0;
    transform: translateY(-150px) rotate(calc(var(--shape-rotate) - 15deg));
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(var(--shape-rotate));
  }
}

@keyframes shape-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 15px; }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes icon-impact {
  0% {
    opacity: 0;
    transform: scale(0.24) rotate(-190deg);
    filter:
      blur(20px)
      brightness(0)
      drop-shadow(0 80px 90px rgba(3, 3, 3, 0.0));
  }
  18% {
    opacity: 0.62;
    transform: scale(0.48) rotate(-126deg);
    filter:
      blur(12px)
      brightness(0)
      drop-shadow(0 40px 70px rgba(3, 3, 3, 0.18));
  }
  42% {
    opacity: 1;
    transform: scale(1.14) rotate(28deg);
    filter:
      blur(0)
      brightness(0.72)
      drop-shadow(0 46px 84px rgba(3, 3, 3, 0.22));
  }
  62% {
    transform: scale(0.92) rotate(-10deg);
    filter:
      blur(0)
      brightness(0.9)
      drop-shadow(0 36px 72px rgba(3, 3, 3, 0.22));
  }
  82% {
    transform: scale(1.035) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    filter:
      blur(0)
      drop-shadow(0 28px 62px rgba(3, 3, 3, 0.2))
      drop-shadow(0 0 1px rgba(3, 3, 3, 0.45));
  }
}

@keyframes icon-hover {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-1.6deg); }
}

@keyframes icon-aura-pop {
  0% {
    opacity: 0;
    transform: scale(0.15);
  }
  24% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.75);
  }
}

@keyframes icon-slice-in {
  0% {
    opacity: 0;
    transform: rotate(var(--slice-rotate)) translateX(var(--slice-start)) scaleX(0.35);
  }
  34% {
    opacity: 1;
  }
  72% {
    opacity: 1;
    transform: rotate(var(--slice-rotate)) translateX(0) scaleX(1);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--slice-rotate)) translateX(0) scaleX(0.12);
  }
}

@keyframes splash-bloom {
  0% {
    opacity: 0;
    transform: scale(0.08);
  }
  36% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2.35);
  }
}

@keyframes ring-impact {
  0% {
    opacity: 0;
    transform: scale(0.08);
  }
  18% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.85);
  }
}

@keyframes splash-shards {
  0% {
    opacity: 0;
    transform: scale(0.08) rotate(-42deg);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.72) rotate(54deg);
  }
}

@keyframes screen-goo-life {
  0% {
    opacity: 0;
  }
  8%, 76% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes goo-stage-life {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  12%, 74% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(0.78);
  }
}

@keyframes goo-comet-float {
  0% {
    opacity: 0;
    transform:
      translate(var(--start-x), var(--start-y))
      rotate(calc(var(--flip) * -8deg))
      scaleX(0.82)
      scaleY(0.82);
    border-radius: 62% 38% 58% 42% / 56% 44% 60% 40%;
  }
  10% {
    opacity: 1;
  }
  28% {
    transform:
      translate(var(--mid-one-x), var(--mid-one-y))
      rotate(calc(var(--flip) * 12deg))
      scaleX(1.18)
      scaleY(0.86);
    border-radius: 44% 56% 63% 37% / 48% 62% 38% 52%;
  }
  52% {
    transform:
      translate(var(--mid-two-x), var(--mid-two-y))
      rotate(calc(var(--flip) * -16deg))
      scaleX(0.96)
      scaleY(1.08);
    border-radius: 58% 42% 42% 58% / 62% 38% 56% 44%;
  }
  72% {
    opacity: 1;
    transform:
      translate(var(--end-x), var(--end-y))
      rotate(calc(var(--flip) * 6deg))
      scaleX(0.58)
      scaleY(1.24);
    filter:
      blur(0)
      drop-shadow(0 22px 36px rgba(0,0,0,.26));
  }
  88% {
    opacity: 1;
    transform:
      translate(0, 0)
      rotate(calc(var(--flip) * 92deg))
      scaleX(0.28)
      scaleY(1.52);
    border-radius: 28% 72% 36% 64% / 62% 30% 70% 38%;
    filter:
      blur(0)
      drop-shadow(0 12px 22px rgba(0,0,0,.28));
  }
  100% {
    opacity: 0;
    transform:
      translate(0, 0)
      rotate(calc(var(--flip) * 180deg))
      scaleX(0.12)
      scaleY(0.64);
    border-radius: 22% 78% 44% 56% / 58% 24% 76% 42%;
  }
}

@keyframes goo-collapse {
  0% {
    opacity: 0;
    transform: translate(var(--goo-start-x), var(--goo-start-y)) scale(var(--goo-start-scale)) rotate(var(--goo-rotate));
    border-radius: 42% 58% 35% 65% / 62% 38% 57% 43%;
  }
  18% {
    opacity: 1;
  }
  58% {
    transform: translate(0, 0) scale(1.18) rotate(0deg);
    border-radius: 56% 44% 52% 48% / 44% 58% 42% 56%;
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(0.44) rotate(0deg);
    border-radius: 50%;
  }
}

@keyframes tendril-whip {
  0% {
    opacity: 0;
    transform: rotate(var(--tendril-angle, 0deg)) scaleX(.04);
  }
  28% {
    opacity: 1;
    transform: rotate(var(--tendril-angle, 0deg)) scaleX(1);
  }
  68% {
    opacity: 1;
    transform: rotate(var(--tendril-angle, 0deg)) scaleX(.72);
  }
  100% {
    opacity: 0;
    transform: rotate(var(--tendril-angle, 0deg)) scaleX(.08);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 92px;
  }

  #servicos,
  #processo,
  #contato {
    scroll-margin-top: 92px;
  }

  .topbar {
    top: 12px;
    grid-template-columns: 1fr auto;
    min-height: 58px;
    padding: 8px 8px 8px 14px;
  }

  .nav-logo {
    width: 142px;
  }

  .nav-links {
    display: none;
  }

  .nav-action {
    display: none;
  }

  .menu-toggle {
    display: grid !important;
  }
  .mobile-menu {
    position: fixed;
    z-index: 70;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid !important;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(3, 3, 3, 0.12);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,248,248,.9)),
      rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(22px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.9),
      0 22px 70px rgba(3, 3, 3, 0.12);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px) scale(.98);
    transform-origin: top center;
    transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.16, 1, .3, 1), visibility 0.22s ease;
  }

  .mobile-menu[hidden] {
    display: none !important;
  }

  .mobile-menu.open {
    display: grid !important;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .mobile-menu a::after {
    content: ">";
    opacity: 0.45;
  }

  .hero-content {
    padding-top: 128px;
  }

  .shape-one {
    left: -48%;
    top: 18%;
  }

  .shape-two {
    right: -54%;
    top: 70%;
  }

  .shape-three {
    left: -10%;
  }

  .shape-four {
    right: 6%;
  }

  .intro-grid,
  .lab-panel,
  .product-shell {
    grid-template-columns: 1fr;
  }

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

  .service-card-large,
  .service-card-wide {
    grid-column: span 2;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .lab-board {
    min-height: 340px;
  }

  .product-showcase {
    min-height: 390px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .topbar {
    width: calc(100% - 20px);
    min-height: 56px;
  }

  .nav-logo {
    width: 124px;
  }

  .nav-action {
    display: none;
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 118px;
  }

  .title {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .brand-splash {
    width: clamp(220px, 78vw, 330px);
    margin-top: 0;
  }

  .copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .social-links {
    align-items: stretch;
    width: 100%;
  }

  .social-links a {
    flex: 0 0 46px;
  }

  .section,
  .final-cta,
  .footer {
    width: calc(100% - 28px);
  }

  .service-grid,
  .process-list,
  .product-feature-grid {
    grid-template-columns: 1fr;
  }

  .service-card-large,
  .service-card-wide {
    grid-column: span 1;
  }

  .service-card,
  .process-list article {
    min-height: 220px;
  }

  .process-list span {
    margin-bottom: 44px;
  }

  .product-shell {
    padding: 22px;
  }

  .product-showcase {
    min-height: 330px;
  }

  .product-card-main {
    min-height: 220px;
    width: min(220px, 72vw);
  }

  .product-card-main img {
    width: 120px;
  }

  .product-pill {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.76rem;
  }

  .pill-one { top: 9%; left: 0; }
  .pill-two { top: 19%; right: 0; }
  .pill-three { bottom: 12%; left: 0; }
  .pill-four { right: 0; bottom: 4%; }

  .product-feature-grid article {
    min-height: 190px;
  }

  .lab-panel {
    padding: 22px;
  }

  .lab-board {
    min-height: 300px;
  }

  .board-node {
    min-width: 74px;
    font-size: 0.68rem;
  }

  .final-cta {
    padding: 42px 22px;
  }
}

