:root {
  --green: #08b070;
  --green-deep: #067a4e;
  --mint: #b0f8d0;
  --black: #000;
  --ink: #1d1d1f;
  --muted: #86868b;
  --line: #d2d2d7;
  --paper: #f5f5f7;
  --white: #fbfbfd;
  --nav-h: 52px;
  --promo-h: 0px;
  --gap: 12px;
  --radius: 28px;
  --font: "SF Pro Display", "SF Pro Text", Inter, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: calc(var(--nav-h) + var(--promo-h));
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 8px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* Nav + promo colados */
.chrome {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(22, 22, 23, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  height: var(--nav-h);
}

.nav__inner {
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
  padding: 0 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav__logo img {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav__links a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #d6d6d6;
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: #fff;
}

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

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.btn--nav,
.btn--primary {
  background: var(--green);
  color: #fff;
  border-radius: 980px;
  padding: 6px 14px;
  font-size: 12px;
  line-height: 1.3;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--nav:hover,
.btn--primary:hover {
  background: var(--green-deep);
}

.btn--play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--ink);
  border-radius: 980px;
  padding: 12px 22px;
  font-size: 17px;
  margin-top: 8px;
}

.btn--play:hover {
  background: #e8e8ed;
}

.btn--block {
  width: 100%;
  padding: 14px 18px;
  font-size: 17px;
}

.play-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}

.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 0;
  position: relative;
  cursor: pointer;
}

.nav__toggle span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.25s ease;
}

.nav__toggle span:first-child {
  top: 16px;
}

.nav__toggle span:last-child {
  top: 23px;
}

.nav.is-open .nav__toggle span:first-child {
  transform: translateY(3.5px) rotate(40deg);
}

.nav.is-open .nav__toggle span:last-child {
  transform: translateY(-3.5px) rotate(-40deg);
}

.menu-mobile {
  position: fixed;
  inset: calc(var(--nav-h) + var(--promo-h)) 0 0 0;
  background: rgba(22, 22, 23, 0.96);
  z-index: 45;
  padding: 28px 28px 48px;
}

.menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 400px;
}

.menu-mobile a,
.menu-mobile button {
  font-size: 28px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: none;
  border: 0;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.menu-mobile .btn--primary {
  margin-top: 12px;
  font-size: 17px;
  text-align: center;
  padding: 12px 18px;
}

.promo-slot {
  margin: 0;
}

.promo-banner {
  background: transparent;
  color: #f5f5f7;
  text-align: center;
  padding: 10px 24px 12px;
  font-size: 14px;
  line-height: 1.4;
}

.promo-banner a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}

.promo-banner a:hover {
  text-decoration: underline;
}

.promo-banner strong {
  font-weight: 600;
}

.promo-banner .kicker {
  color: var(--mint);
  font-weight: 600;
  margin-right: 6px;
}

.promo-modal {
  background: rgba(8, 176, 112, 0.08);
  padding: 14px 28px 16px;
}

.promo-modal__card {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.promo-modal h2 {
  margin: 0 0 4px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.promo-modal p {
  margin: 0;
  color: #d2d2d7;
  font-size: 14px;
}

/* Hero */
.hero {
  min-height: calc(100vh - var(--nav-h) - var(--promo-h));
  padding: 48px 24px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 600;
}

.hero__lead {
  margin: 18px 0 22px;
  font-size: 21px;
  line-height: 1.4;
  color: #a1a1a6;
  max-width: 34ch;
}

.hero__stage {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 560px;
}

.hero__glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(8, 176, 112, 0.28), transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  pointer-events: none;
}

/* Phones */
.phone {
  position: relative;
  z-index: 1;
}

.phone__bezel {
  width: 280px;
  height: 572px;
  background: #1c1c1e;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone--hero {
  transform: rotate(-8deg) translateY(12px);
  animation: float 6s ease-in-out infinite;
}

.phone__screen {
  height: 100%;
  background: #0b0f0d;
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 12px 22px 4px;
  font-size: 12px;
  color: #e8e8ed;
}

.status-bar__icons {
  width: 52px;
  height: 10px;
  border-radius: 4px;
  background: linear-gradient(90deg, #fff 40%, var(--green) 40%);
  opacity: 0.7;
}

.chat-head {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 16px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chat-head strong {
  display: block;
  font-size: 13px;
}

.chat-head small {
  color: var(--green);
  font-size: 11px;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--mint));
}

.avatar--leo {
  background: linear-gradient(135deg, #32ade6, #64d2ff);
}

.avatar--ria {
  background: linear-gradient(135deg, #bf5af2, #ff375f);
}

.chat {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.bubble {
  max-width: 88%;
  padding: 9px 12px;
  border-radius: 16px;
  font-size: 12.5px;
  line-height: 1.35;
}

.bubble--in {
  background: #1c3d31;
  color: #e8fff4;
  border-bottom-left-radius: 4px;
}

.bubble--out {
  align-self: flex-end;
  background: var(--green);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.bubble--typing {
  display: inline-flex;
  gap: 4px;
  width: fit-content;
  padding: 12px 14px;
}

.bubble--typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  animation: blink 1.2s infinite;
}

.bubble--typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.bubble--typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.phone--mini .phone__bezel {
  width: 220px;
  height: 300px;
  border-radius: 32px;
  padding: 8px;
}

.phone--mini .phone__screen {
  border-radius: 24px;
}

.phone--light .phone__screen {
  background: #f2f2f7;
}

.phone--light .chat-head {
  border-color: rgba(0, 0, 0, 0.06);
  color: var(--ink);
}

.phone--light .bubble--in {
  background: #e5e5ea;
  color: var(--ink);
}

.chat--sm .bubble {
  font-size: 11.5px;
}

.chat-head--sm {
  padding: 10px 12px;
}

.band,
#contato {
  scroll-margin-top: calc(var(--nav-h) + var(--promo-h) + 8px);
}

.band {
  padding: 0 var(--gap) var(--gap);
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.tile {
  border-radius: var(--radius);
  overflow: hidden;
  padding: 64px 48px 0;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tile--dark {
  background: #1d1d1f;
  color: var(--white);
}

.tile--light {
  background: var(--paper);
  color: var(--ink);
}

.tile--light .tile__body,
.tile--light .tile__sub {
  color: #6e6e73;
}

.tile--light .eyebrow {
  color: var(--green-deep);
}

.tile__copy {
  max-width: 640px;
}

.tile h2 {
  margin: 0;
  font-size: clamp(36px, 4.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 600;
}

.tile__sub {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #a1a1a6;
}

.tile__body {
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.47;
  color: #a1a1a6;
  max-width: 52ch;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  text-decoration: none;
  font-size: 17px;
}

.text-link::after {
  content: " ›";
}

.text-link:hover {
  text-decoration: underline;
}

.tile__visual {
  margin-top: auto;
  padding: 40px 0 56px;
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.tile-grid .tile {
  min-height: 640px;
  padding-bottom: 0;
}

.tile-grid .phone {
  margin-top: 36px;
}

.metric-stack {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.metric {
  background: rgba(8, 176, 112, 0.12);
  border: 1px solid rgba(8, 176, 112, 0.28);
  border-radius: 20px;
  padding: 20px 28px;
  min-width: 140px;
}

.metric span {
  display: block;
  color: #86868b;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric strong {
  font-size: 22px;
  font-weight: 600;
}

.tile--cobranca {
  background:
    radial-gradient(ellipse at 50% 120%, rgba(8, 176, 112, 0.18), transparent 55%),
    #1d1d1f;
}

/* Industry HUD */
.hud {
  width: min(720px, 100%);
  margin-top: 48px;
  padding-bottom: 56px;
}

.hud__frame {
  position: relative;
  height: 320px;
  border-radius: 24px;
  background: #1a1c1f;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.hud__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
  z-index: 0;
}

.hud__box,
.hud__tag {
  z-index: 1;
  pointer-events: none;
}

.hud__box {
  position: absolute;
  border: 2px solid var(--green);
  border-radius: 6px;
  box-shadow: 0 0 0 1px rgba(8, 176, 112, 0.25), 0 0 18px rgba(8, 176, 112, 0.28);
}

.hud__box--ok {
  left: 18%;
  top: 20%;
  width: 64%;
  height: 62%;
}

.hud__box--scan {
  left: 0;
  top: 42%;
  width: 100%;
  height: 2px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(8, 176, 112, 0.95), transparent);
  box-shadow: 0 0 16px rgba(8, 176, 112, 0.55);
  animation: scan 2.8s linear infinite;
}

.hud__tag {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
}

.hud__tag--ok {
  top: 18px;
  right: 18px;
  background: var(--green);
  color: #fff;
}

.hud__tag--cam {
  top: 18px;
  left: 18px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
}

.hud__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  padding: 22px 8px 0;
  margin: 0;
  color: #6e6e73;
  font-size: 14px;
  text-align: left;
}

.hud__meta span {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}

/* Research — text-only Apple product card */
.tile--pesquisa {
  padding: 80px 48px 88px;
  min-height: 320px;
  justify-content: center;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(8, 176, 112, 0.16), transparent 55%),
    #1d1d1f;
}

.tile--case {
  align-items: flex-start;
  text-align: left;
  padding: 56px 48px 64px;
  min-height: auto;
}

.tile--case .tile__body {
  margin-left: 0;
}

.case-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.case-points li {
  padding: 12px 0;
  border-top: 1px solid rgba(134, 134, 139, 0.28);
  font-size: 17px;
}

.tile--light .case-points li {
  color: var(--ink);
}

/* Clients — concentric arcs, hub at bottom */
.tile--clientes {
  padding: 72px 16px 0;
  min-height: 720px;
  justify-content: flex-start;
  background:
    radial-gradient(ellipse at 50% 118%, rgba(8, 176, 112, 0.22), transparent 52%),
    #1d1d1f;
}

.tile--clientes .tile__copy {
  position: relative;
  z-index: 2;
}

.tile--clientes .tile__sub {
  color: #a1a1a6;
  font-size: 21px;
}

.clients-orbit {
  --r1: 96px;
  --r2: 164px;
  --r3: 236px;
  --r4: 308px;
  --r5: 380px;
  --r6: 452px;
  --node: 88px;
  --hub: 132px;
  --origin: calc(16px + var(--hub) / 2);
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: auto;
  overflow: hidden;
}

.clients-orbit__glow {
  position: absolute;
  left: 50%;
  bottom: var(--origin);
  width: 320px;
  height: 320px;
  transform: translate(-50%, 50%);
  background: radial-gradient(circle, rgba(8, 176, 112, 0.42), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.clients-orbit__arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.clients-orbit__arc {
  position: absolute;
  left: 50%;
  bottom: var(--origin);
  width: calc(var(--r) * 2);
  height: calc(var(--r) * 2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.clients-orbit__arc--soft {
  border-color: rgba(8, 176, 112, 0.22);
}

.clients-orbit__nodes {
  list-style: none;
  margin: 0;
  padding: 0;
}

.clients-orbit__node {
  position: absolute;
  left: 50%;
  bottom: var(--origin);
  width: var(--node);
  height: var(--node);
  margin: 0 0 calc(var(--node) / -2) calc(var(--node) / -2);
  transform: rotate(var(--a)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--a)));
  z-index: 2;
}

.client-mark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #141416;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 8px;
  gap: 3px;
}

.client-mark strong {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #f5f5f7;
  line-height: 1.1;
  max-width: 100%;
}

.client-mark small {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  line-height: 1.2;
}

.client-mark--long strong {
  font-size: 10.5px;
  letter-spacing: -0.045em;
}

.client-mark__sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.clients-orbit__hub {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: var(--hub);
  height: var(--hub);
  transform: translateX(-50%);
  border-radius: 50%;
  background: #0c0c0e;
  border: 1px solid rgba(8, 176, 112, 0.38);
  box-shadow:
    0 0 0 10px rgba(8, 176, 112, 0.06),
    0 0 48px rgba(8, 176, 112, 0.38),
    0 0 96px rgba(8, 176, 112, 0.22);
  display: grid;
  place-items: center;
  z-index: 3;
  animation: hub-glow 4.5s ease-in-out infinite;
}

.clients-orbit__hub img {
  width: 78%;
  height: auto;
  mix-blend-mode: lighten;
}

@keyframes hub-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 10px rgba(8, 176, 112, 0.06),
      0 0 48px rgba(8, 176, 112, 0.34),
      0 0 96px rgba(8, 176, 112, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(8, 176, 112, 0.1),
      0 0 64px rgba(8, 176, 112, 0.5),
      0 0 120px rgba(8, 176, 112, 0.28);
  }
}

/* Footer */
.footer {
  background: var(--paper);
  color: #6e6e73;
  padding: 72px 28px 40px;
  margin-top: var(--gap);
}

.footer__top {
  max-width: 980px;
  margin: 0 auto 36px;
}

.footer__logo {
  height: 36px;
  width: auto;
  filter: none;
}

.footer__tag {
  margin: 12px 0 0;
  font-size: 17px;
}

.footer__grid {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer h3 {
  margin: 0 0 12px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 600;
}

.footer a,
.footer button,
.footer p {
  display: block;
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 8px;
  color: #424245;
  font-size: 14px;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
}

.footer a:hover,
.footer button:hover {
  text-decoration: underline;
}

.footer p.footer__copy {
  max-width: 980px;
  margin: 40px auto 0;
  font-size: 12px;
  color: #86868b;
  text-align: center;
}

/* Overlays */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  padding: 24px;
}

.overlay[hidden],
.menu-mobile[hidden],
.promo-slot[hidden],
[hidden] {
  display: none !important;
}

.overlay__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.overlay__close::before,
.overlay__close::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  top: 50%;
  background: #fff;
}

.overlay__close::before {
  transform: rotate(45deg);
}

.overlay__close::after {
  transform: rotate(-45deg);
}

.overlay__close--dark {
  background: rgba(0, 0, 0, 0.08);
}

.overlay__close--dark::before,
.overlay__close--dark::after {
  background: var(--ink);
}

.film {
  width: min(960px, 100%);
  background: #000;
  border-radius: 24px;
  position: relative;
  overflow: auto;
  min-height: 70vh;
  max-height: 90vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 48px 24px;
}

.film__kicker {
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.film h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.03em;
}

.film__line {
  color: #a1a1a6;
  font-size: 19px;
}

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

.phone--film .phone__bezel {
  width: 250px;
  height: 420px;
}

.join {
  width: min(480px, 100%);
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 40px 32px 32px;
  position: relative;
  max-height: min(90vh, 780px);
  overflow-y: auto;
}

.join h2 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.join p {
  color: #6e6e73;
  margin: 0 0 24px;
}

.join form {
  display: grid;
  gap: 14px;
}

.join label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.join input,
.join select,
.join textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 16px;
  background: var(--paper);
  color: var(--ink);
}

.join input:focus,
.join select:focus,
.join textarea:focus {
  outline: 2px solid var(--green);
  border-color: transparent;
}

.join__alt {
  margin-top: 18px;
  font-size: 13px;
}

.join__alt a {
  color: var(--green-deep);
}

.join.is-sent form,
.join.is-sent .join__alt {
  display: none;
}

.join__success {
  font-size: 18px;
  color: var(--green-deep) !important;
}

body.is-locked {
  overflow: hidden;
}

@keyframes float {
  0%,
  100% {
    transform: rotate(-8deg) translateY(12px);
  }
  50% {
    transform: rotate(-6deg) translateY(-8px);
  }
}

@keyframes blink {
  0%,
  80%,
  100% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
}

@keyframes scan {
  from {
    top: 12%;
  }
  to {
    top: 82%;
  }
}

@media (max-width: 1068px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 24px;
    min-height: auto;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stage {
    min-height: 520px;
  }

  .nav__links {
    display: none;
  }

  .btn--nav {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .nav__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

@media (max-width: 900px) {
  .clients-orbit {
    --r1: 80px;
    --r2: 136px;
    --r3: 196px;
    --r4: 256px;
    --r5: 316px;
    --r6: 376px;
    --node: 76px;
    --hub: 112px;
    height: 420px;
  }

  .client-mark strong {
    font-size: 11px;
  }

  .client-mark small {
    font-size: 7.5px;
  }
}

@media (max-width: 734px) {
  .tile,
  .tile--case {
    padding: 48px 24px 0;
    min-height: 480px;
  }

  .tile--clientes {
    padding: 48px 20px 40px;
    min-height: 0;
  }

  .clients-orbit {
    height: auto;
    overflow: visible;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .clients-orbit__glow,
  .clients-orbit__arcs {
    display: none;
  }

  .clients-orbit__nodes {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
    width: 100%;
    padding: 0 0 16px;
  }

  .clients-orbit__node {
    position: static;
    width: 84px;
    height: 84px;
    margin: 0;
    transform: none;
  }

  .clients-orbit__hub {
    position: static;
    transform: none;
    width: 120px;
    height: 120px;
    margin-top: 8px;
  }

  .tile--case {
    padding-bottom: 40px;
  }

  .tile--pesquisa {
    padding: 56px 24px 64px;
    min-height: 280px;
  }

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

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

  .hud__meta {
    flex-direction: column;
  }

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

  .promo-banner {
    padding: 10px 16px 12px;
    font-size: 13px;
  }

  .phone--hero {
    transform: none;
    animation: none;
  }

  .phone--hero .phone__bezel {
    width: 240px;
    height: 490px;
  }

  .hero__stage {
    min-height: 460px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 18px;
  }

  .join {
    padding: 32px 20px 24px;
  }

  .nav__logo img {
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone--hero,
  .bubble--typing span,
  .hud__box--scan,
  .clients-orbit__hub {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
