@font-face {
  font-family: "Glitz";
  src: url("./glitz.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --paper: #f6f6f6;
  --accent: #ffdf6c;
  --ink: #0a0a0a;
  --ink-soft: #272727;
  --line: rgba(10, 10, 10, 0.12);
  --card: rgba(255, 255, 255, 0.84);
  --shadow: 0 24px 80px rgba(10, 10, 10, 0.12);
  --shadow-soft: 0 16px 40px rgba(10, 10, 10, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 32px));
  --font-display: "Glitz", "Segoe UI", Arial, sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --scroll-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 223, 108, 0.75), transparent 28%),
    radial-gradient(circle at right 20%, rgba(255, 223, 108, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(255, 223, 108, 0.06) 0%, rgba(255, 223, 108, 0) 18%),
    var(--paper);
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.94));
}

.section--accent {
  position: relative;
  overflow: clip;
  background: linear-gradient(135deg, rgba(255, 223, 108, 0.88), rgba(255, 247, 206, 0.95) 48%, rgba(255, 223, 108, 0.56));
}

.section--accent::before,
.section--accent::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.section--accent::before {
  top: -120px;
  left: -70px;
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(10px);
}

.section--accent::after {
  right: -90px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(14px);
}

.section--accent > .container {
  position: relative;
  z-index: 1;
}

.section--accent .stat-card,
.section--accent .pain-card,
.section--accent .service-card,
.section--accent .difference-card,
.section--accent .step-card,
.section--accent .result-card,
.section--accent .audience-card,
.section--accent .board-card,
.section--accent .media-card,
.section--accent .faq-item {
  background: rgba(255, 255, 255, 0.78);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.02;
  letter-spacing: -0.006em;
}

h1 {
  font-size: clamp(3rem, 7.2vw, 5.8rem);
  max-width: 11.2ch;
}

h2 {
  font-size: clamp(2.05rem, 4.2vw, 3.7rem);
  max-width: 15.6ch;
}

h3 {
  font-size: clamp(1.35rem, 2.6vw, 1.82rem);
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--ink-soft);
}

ul {
  margin: 0;
  padding-left: 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(246, 246, 246, 0.78);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: var(--scroll-progress);
  background: linear-gradient(90deg, #ffd54d, #0a0a0a);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  width: min(132px, 16vw);
  min-width: 92px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.96rem;
  font-weight: 600;
}

.site-nav a:not(.button) {
  position: relative;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--ink);
  transition: transform 0.3s ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.26) 48%, transparent 76%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button--small {
  min-height: 46px;
}

.button--full {
  width: 100%;
}

.button--primary {
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(255, 223, 108, 0.4);
}

.button--ghost {
  border-color: rgba(10, 10, 10, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 16px 30px rgba(10, 10, 10, 0.18);
}

.hero {
  padding: 72px 0 96px;
  overflow: clip;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.76fr);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 62ch;
  margin-top: 24px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.stat-card,
.pain-card,
.service-card,
.difference-card,
.step-card,
.result-card,
.audience-card,
.about-card,
.board-card,
.media-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.stat-card::before,
.pain-card::before,
.service-card::before,
.difference-card::before,
.step-card::before,
.result-card::before,
.audience-card::before,
.about-card::before,
.board-card::before,
.media-card::before {
  content: "";
  position: absolute;
  inset: auto -15% -55% auto;
  width: 170px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 223, 108, 0.22);
  pointer-events: none;
}

.stat-card:hover,
.pain-card:hover,
.service-card:hover,
.difference-card:hover,
.step-card:hover,
.result-card:hover,
.audience-card:hover,
.about-card:hover,
.board-card:hover,
.media-card:hover {
  transform: translateY(-7px);
  border-color: rgba(10, 10, 10, 0.16);
  box-shadow: 0 22px 44px rgba(10, 10, 10, 0.12);
}

.stat-card strong,
.result-card strong {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.stat-card span,
.result-card p {
  display: block;
  margin-top: 12px;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 10px 0 0;
}

.visual-backdrop {
  display: none;
}

.hero-image-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0;
  border-radius: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(-4deg);
  transform-origin: center;
  transition: transform 0.4s ease;
  animation: floatY 8s ease-in-out infinite;
}

.hero-image-card:hover {
  transform: rotate(-2deg) translateY(-6px);
}

.hero-image-card img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 36px rgba(10, 10, 10, 0.12));
}

.hero-shot {
  position: absolute;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shot--top {
  top: 24px;
  left: -28px;
  width: 178px;
  height: 224px;
  animation: floatSmall 7s ease-in-out infinite;
}

.hero-shot--bottom {
  right: -8px;
  bottom: 48px;
  width: 214px;
  height: 154px;
  animation: floatSmall 9s ease-in-out infinite;
  animation-delay: -2s;
}

.device-card {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow);
}

.device-card--tall {
  inset: 40px 88px 68px 24px;
  padding: 18px;
  animation: floatY 7s ease-in-out infinite;
}

.device-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.device-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.video-card {
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.82) 80%),
    url("./assets/creator-studio.svg"),
    linear-gradient(135deg, rgba(255, 223, 108, 0.72), rgba(255, 223, 108, 0.18)),
    #1b1b1b;
  background-size: cover;
  background-position: center;
}

.video-tag,
.service-tag {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card h2 {
  margin-top: auto;
  color: var(--paper);
  font-size: clamp(1.8rem, 3.6vw, 2.55rem);
  max-width: 9ch;
}

.video-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.video-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.video-lines span:nth-child(1) {
  width: 92%;
}

.video-lines span:nth-child(2) {
  width: 74%;
}

.video-lines span:nth-child(3) {
  width: 58%;
}

.metric-card {
  display: inline-flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.metric-card strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 0.9;
}

.floating-panel {
  position: absolute;
  width: min(250px, 48%);
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 10, 10, 0.1);
  box-shadow: var(--shadow-soft);
  animation: floatX 6s ease-in-out infinite;
}

.floating-panel p,
.board-card p {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-panel strong,
.board-card strong,
.difference-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.floating-panel span,
.board-card span {
  display: block;
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.floating-panel--sales {
  top: 18px;
  right: 0;
}

.floating-panel--data {
  right: 28px;
  bottom: 0;
  animation-delay: -2s;
}

.motion-strip {
  overflow: hidden;
  padding: 10px 0 26px;
}

.motion-strip__track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.motion-strip__group {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
  min-width: max-content;
  padding-right: 14px;
}

.motion-strip__track span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.split-grid,
.difference-grid,
.solution-layout,
.results-layout,
.faq-layout,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 60ch;
}

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

.section-heading--center h2,
.section-heading--center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.pain-grid,
.difference-cards,
.results-grid,
.audience-grid,
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pain-card span,
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.pain-card h3,
.step-card h3,
.audience-card h3 {
  margin-top: 18px;
  font-size: 1.5rem;
}

.pain-card p,
.difference-card p,
.step-card p,
.audience-card p,
.about-card p {
  margin-top: 14px;
}

.solution-board {
  display: grid;
  gap: 18px;
}

#solucao .section-heading {
  max-width: 38rem;
}

#solucao .section-heading h2 {
  max-width: 11.6ch;
}

#solucao .section-heading p:not(.eyebrow) {
  max-width: 40ch;
}

.solution-visual,
.results-stack {
  display: grid;
  gap: 18px;
}

.results-layout {
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.94fr);
  gap: 48px;
  align-items: start;
}

.results-intro {
  display: grid;
  gap: 26px;
}

.results-intro h2 {
  max-width: 12.8ch;
}

.results-intro .results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 6px;
}

.results-stack {
  align-self: stretch;
}

.tag-lab {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 486px;
  padding: 22px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 223, 108, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 249, 222, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tag-lab::before,
.tag-lab::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.tag-lab::before {
  left: -52px;
  bottom: -64px;
  width: 220px;
  height: 220px;
  background: rgba(255, 223, 108, 0.2);
  filter: blur(8px);
}

.tag-lab::after {
  top: -48px;
  right: -28px;
  width: 160px;
  height: 160px;
  border: 18px solid rgba(10, 10, 10, 0.06);
  border-top-color: rgba(255, 223, 108, 0.84);
}

.tag-lab__hud {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.tag-lab__hud p,
.tag-lab__hud span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.tag-lab__hud span {
  background: rgba(10, 10, 10, 0.92);
  color: var(--paper);
}

.tag-lab__bounds {
  position: relative;
  min-height: 382px;
  border-radius: 28px;
  border: 1px dashed rgba(10, 10, 10, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.6)),
    linear-gradient(135deg, rgba(255, 223, 108, 0.14), transparent 50%);
  overflow: hidden;
  touch-action: none;
}

.tag-chip {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.08);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: grab;
  user-select: none;
  touch-action: none;
}

.tag-chip:active,
.tag-chip.is-dragging {
  cursor: grabbing;
}

.tag-chip.is-dragging {
  box-shadow: 0 18px 34px rgba(10, 10, 10, 0.16);
}

.tag-chip--accent {
  background: rgba(255, 223, 108, 0.96);
}

.tag-chip--dark {
  background: rgba(10, 10, 10, 0.94);
  color: var(--paper);
}

.media-card {
  margin: 0;
  padding: 0;
}

.media-card img,
.about-illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card--primary {
  min-height: 292px;
}

.media-card--wide {
  min-height: 228px;
}

.services-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.service-card {
  min-height: 100%;
}

.service-tag {
  background: rgba(10, 10, 10, 0.92);
}

.service-card h3 {
  margin-top: 22px;
}

.service-card ul {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.difference-card strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.result-card {
  min-height: 178px;
}

.result-card strong {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.result-card:nth-child(3) strong {
  font-size: clamp(2rem, 5vw, 3rem);
}

.about-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.section--about {
  overflow: clip;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: 34px;
  align-items: center;
}

.about-copy {
  max-width: 34rem;
}

.about-copy p:not(.eyebrow) {
  margin-top: 18px;
  font-size: 1.05rem;
}

.about-note {
  max-width: 33ch;
  opacity: 0.74;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.about-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.92);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-lab {
  min-height: 520px;
}

.logo-stage {
  --mouse-x: 0;
  --mouse-y: 0;
  --scroll-shift: 0;
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  transition: transform 0.18s ease-out;
}

.logo-stage::before {
  left: 7%;
  top: 26%;
  width: 74%;
  height: 46%;
  border: 1px dashed rgba(10, 10, 10, 0.16);
  border-radius: 999px;
  transform: translate(
      calc(var(--mouse-x) * -12px + var(--scroll-shift) * -14px),
      calc(var(--mouse-y) * 8px)
    )
    rotate(calc(var(--scroll-shift) * 14deg));
}

.logo-stage::after {
  right: 8%;
  bottom: 10%;
  width: 132px;
  height: 132px;
  border: 18px solid rgba(10, 10, 10, 0.08);
  border-top-color: rgba(255, 223, 108, 0.98);
  border-radius: 50%;
  transform: translate(
      calc(var(--mouse-x) * 16px + var(--scroll-shift) * 10px),
      calc(var(--mouse-y) * -10px)
    )
    rotate(calc(var(--scroll-shift) * -44deg));
}

.logo-stage__glow,
.logo-stage__grid {
  position: absolute;
  inset: 0;
  transition: transform 0.18s ease-out;
}

.logo-stage__glow {
  inset: auto auto 6% -6%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 223, 108, 0.86), rgba(255, 223, 108, 0));
  transform: translate(
    calc(var(--mouse-x) * 12px - var(--scroll-shift) * 14px),
    calc(var(--mouse-y) * -8px)
  );
}

.logo-stage__grid {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.92) 14%, rgba(0, 0, 0, 0.92) 86%, transparent);
  transform: translate(calc(var(--mouse-x) * -8px), calc(var(--mouse-y) * -8px));
}

.logo-piece,
.logo-chip {
  position: absolute;
  will-change: transform;
  transition: transform 0.18s ease-out;
  user-select: none;
}

.logo-piece {
  font-family: var(--font-display);
  line-height: 0.9;
}

.logo-piece--d {
  top: 16%;
  left: 8%;
  font-size: clamp(6rem, 12vw, 10rem);
  color: var(--ink);
  transform: translate3d(
      calc(var(--mouse-x) * -14px + var(--scroll-shift) * -18px),
      calc(var(--mouse-y) * -8px),
      0
    )
    rotate(calc(var(--mouse-x) * -7deg));
}

.logo-piece--u {
  top: 9%;
  left: 33%;
  font-size: clamp(5.2rem, 10vw, 8.2rem);
  color: var(--accent);
  text-shadow: 0 18px 34px rgba(255, 223, 108, 0.28);
  transform: translate3d(
      calc(var(--mouse-x) * 16px + var(--scroll-shift) * 10px),
      calc(var(--mouse-y) * -12px),
      0
    )
    rotate(calc(var(--mouse-x) * 4deg));
}

.logo-piece--o {
  top: 15%;
  left: 54%;
  font-size: clamp(5.8rem, 11vw, 9rem);
  color: var(--ink);
  transform: translate3d(
      calc(var(--mouse-x) * 11px + var(--scroll-shift) * 18px),
      calc(var(--mouse-y) * 8px),
      0
    )
    rotate(calc(var(--mouse-x) * 6deg));
}

.logo-piece--tag {
  top: 13%;
  right: 15%;
  padding: 8px 12px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transform: translate3d(
      calc(var(--mouse-x) * 20px),
      calc(var(--mouse-y) * -18px),
      0
    )
    rotate(calc(18deg + var(--mouse-x) * 8deg + var(--scroll-shift) * 10deg));
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-chip--top {
  top: 33%;
  left: 59%;
  transform: translate(calc(var(--mouse-x) * -16px), calc(var(--mouse-y) * -10px));
}

.logo-chip--left {
  left: 10%;
  bottom: 18%;
  transform: translate(calc(var(--mouse-x) * -10px), calc(var(--mouse-y) * 10px));
}

.logo-chip--right {
  right: 8%;
  top: 50%;
  background: rgba(10, 10, 10, 0.94);
  color: var(--paper);
  transform: translate(calc(var(--mouse-x) * 16px), calc(var(--mouse-y) * -10px));
}

.logo-chip--bottom {
  right: 20%;
  bottom: 11%;
  background: rgba(255, 223, 108, 0.96);
  transform: translate(
      calc(var(--mouse-x) * 8px + var(--scroll-shift) * 14px),
      calc(var(--mouse-y) * 12px)
    )
    rotate(calc(var(--scroll-shift) * -10deg));
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 22px 24px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  padding-right: 32px;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 14px;
}

.contact-section {
  position: relative;
  overflow: clip;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: auto -12% -28% auto;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 223, 108, 0.26);
  filter: blur(12px);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.lead-form {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.form-row + .form-row {
  margin-top: 18px;
}

.form-row label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 18px;
  background: rgba(246, 246, 246, 0.9);
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(255, 223, 108, 0.4);
}

.form-row--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.lead-form button {
  margin-top: 20px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
}

.fixed-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: rgba(246, 246, 246, 0.88);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.fixed-cta .button {
  min-height: 48px;
}

.site-footer {
  padding: 34px 0 120px;
  color: rgba(246, 246, 246, 0.8);
  background: var(--ink);
}

.footer-inner {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.brand--footer {
  width: min(230px, 52vw);
  margin-inline: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  color: var(--paper);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSmall {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1.2deg);
  }
}

@keyframes floatX {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-8px);
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.94;
  }

  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .difference-grid,
  .solution-layout,
  .results-layout,
  .faq-layout,
  .contact-grid,
  .about-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-intro {
    width: 100%;
    max-width: 760px;
  }

  .results-intro h2 {
    max-width: 12.6ch;
  }

  .results-intro .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats,
  .pain-grid,
  .difference-cards,
  .results-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    min-height: 0;
    max-width: 620px;
    margin: 0 auto;
    padding: 6px 0 0;
  }

  .hero-shot--top {
    left: 12px;
  }

  .hero-copy,
  .section-heading,
  .about-copy,
  .contact-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .about-copy p:not(.eyebrow),
  .contact-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .contact-actions,
  .about-chips {
    justify-content: center;
  }

  .solution-visual,
  .results-stack,
  .faq-list,
  .lead-form,
  .about-lab {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
  }

  .services-grid,
  .steps-grid,
  .pain-grid,
  .difference-cards,
  .results-grid,
  .audience-grid,
  .hero-stats {
    margin-inline: auto;
  }

  .tag-lab {
    min-height: 448px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(10, 10, 10, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    justify-items: center;
    text-align: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .site-nav a.button {
    width: 100%;
  }

  .hero-stats,
  .pain-grid,
  .difference-cards,
  .results-grid,
  .audience-grid,
  .about-grid,
  .services-grid,
  .steps-grid,
  .form-row--split {
    grid-template-columns: 1fr;
  }

  .fixed-cta {
    left: 16px;
    right: 16px;
    bottom: 14px;
    justify-content: stretch;
  }

  .fixed-cta .button {
    flex: 1;
  }

  .brand {
    width: 94px;
    min-width: 0;
  }

  .faq-layout,
  .contact-grid,
  .about-layout,
  .split-grid,
  .difference-grid,
  .solution-layout,
  .results-layout {
    justify-items: center;
  }

  .contact-points {
    justify-items: center;
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
  }

  .results-intro .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tag-lab {
    min-height: 410px;
    padding: 18px;
  }

  .tag-lab__hud {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(1180px, calc(100vw - 24px));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: clamp(2.05rem, 9.8vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.72rem, 7.9vw, 2.35rem);
  }

  h3 {
    font-size: clamp(1.14rem, 5.2vw, 1.52rem);
  }

  h1,
  h2,
  h3 {
    line-height: 1.01;
    letter-spacing: 0;
    text-wrap: balance;
  }

  .header-inner {
    min-height: 78px;
  }

  .hero {
    padding-top: 38px;
  }

  .section--accent::before {
    width: 250px;
    height: 250px;
  }

  .section--accent::after {
    width: 280px;
    height: 280px;
  }

  .hero-visual {
    min-height: 0;
    max-width: 330px;
    padding: 8px 0 0;
  }

  .hero-image-card {
    width: min(100%, 312px);
    transform: none;
    animation: floatSmall 8s ease-in-out infinite;
  }

  .floating-panel--sales,
  .floating-panel--data {
    display: none;
  }

  .floating-panel {
    width: min(210px, 58%);
  }

  .lead-form {
    padding: 24px;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .hero-shot {
    display: none;
  }

  .video-card {
    min-height: 230px;
    padding: 18px;
    border-radius: 22px;
  }

  .video-card h2 {
    font-size: 1.36rem;
    max-width: 8.4ch;
  }

  .video-lines {
    gap: 8px;
    margin-top: 16px;
  }

  .video-lines span {
    height: 8px;
  }

  .metric-card {
    display: none;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 13.4ch;
  }

  .hero-text {
    margin-top: 20px;
    font-size: 1rem;
  }

  .motion-strip {
    padding: 4px 0 20px;
  }

  .motion-strip__track {
    animation-duration: 16s;
  }

  .motion-strip__group {
    gap: 10px;
    padding-right: 10px;
  }

  .brand {
    width: 86px;
  }

  .about-lab {
    min-height: 400px;
  }

  .logo-stage {
    min-height: 400px;
    border-radius: 28px;
  }

  .logo-piece--d {
    left: 8%;
    top: 20%;
    font-size: 5rem;
  }

  .logo-piece--u {
    left: 32%;
    top: 15%;
    font-size: 4.2rem;
  }

  .logo-piece--o {
    left: 54%;
    top: 19%;
    font-size: 4.8rem;
  }

  .logo-piece--tag {
    right: 10%;
    top: 12%;
    font-size: 0.68rem;
  }

  .logo-chip {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.66rem;
  }

  .logo-chip--top {
    display: none;
  }

  .logo-chip--left {
    left: 8%;
    bottom: 16%;
  }

  .logo-chip--right {
    right: 6%;
    top: 56%;
  }

  .logo-chip--bottom {
    right: 10%;
    bottom: 10%;
  }

  .logo-piece--tag {
    right: 8%;
  }

  .hero-copy,
  .section-heading,
  .about-copy,
  .contact-copy,
  .faq-layout {
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .hero-copy h1,
  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    max-width: 15ch;
  }

  #solucao .section-heading {
    max-width: 100%;
    padding-inline: 0;
  }

  #solucao .section-heading h2 {
    max-width: 15ch;
    text-wrap: balance;
  }

  .results-intro h2 {
    max-width: 15ch;
  }

  .results-intro .results-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tag-lab {
    min-height: 360px;
    padding: 16px;
    border-radius: 26px;
  }

  .tag-lab__hud {
    gap: 10px;
  }

  .tag-lab__hud p,
  .tag-lab__hud span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.64rem;
    text-align: center;
  }

  .tag-lab__bounds {
    min-height: 282px;
    border-radius: 22px;
  }

  .tag-chip {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .hero-stats,
  .pain-grid,
  .difference-cards,
  .results-grid,
  .audience-grid,
  .services-grid,
  .steps-grid,
  .solution-visual,
  .results-stack,
  .faq-list,
  .lead-form,
  .about-lab {
    max-width: 560px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .motion-strip__track {
    animation: none;
  }

  .logo-stage,
  .logo-stage::before,
  .logo-stage::after,
  .logo-stage__glow,
  .logo-stage__grid,
  .logo-piece,
  .logo-chip {
    transform: none !important;
  }
}
