/* ============================================================
   PROSPEKT PERSONALIZADOS — LP corporate
   Identidade: dark #0A0A0A · acento magenta #FC2DFF
   Verde restrito ao WhatsApp. Tipografia: Archivo (variável).
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1b1b1b;
  --line: rgba(255, 255, 255, 0.08);

  --text: #f5f6f7;
  --text-dim: #a6adb1;

  --magenta: #fc2dff;
  --magenta-soft: rgba(252, 45, 255, 0.14);
  --magenta-line: rgba(252, 45, 255, 0.35);
  --glow-magenta: 0 0 32px rgba(252, 45, 255, 0.35);

  --wa: #25d366;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --radius-card: 16px;
  --radius-el: 8px;

  --section-y: clamp(88px, 12vw, 150px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

/* com o Lenis ativo, o smooth nativo sai da frente (senão os dois brigam) */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Archivo", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--magenta);
  color: #0a0a0a;
}

/* ---------- Utilitários ---------- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  background: var(--magenta);
  color: #0a0a0a;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 var(--radius-el) var(--radius-el);
  text-decoration: none;
  transition: top 200ms var(--ease-out);
}

.skip-link:focus {
  top: 0;
}

/* Tipografia display */
.display {
  font-weight: 860;
  font-stretch: 118%;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
  max-width: 22ch;
}

.display .accent,
.accent {
  color: var(--magenta);
}

.display .accent {
  text-shadow: 0 0 34px rgba(252, 45, 255, 0.45);
}

/* durante a animação do SplitText as linhas ficam dentro de máscaras
   com overflow hidden — o glow cortado vira uma barra; some com ele
   enquanto a linha existe e volta quando o split é revertido */
.st-line .accent {
  text-shadow: none;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  margin-bottom: 14px;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 800;
  font-stretch: 110%;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.02em;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), box-shadow 260ms var(--ease-out),
    background-color 200ms var(--ease-out);
}

.btn:active {
  transform: scale(0.97);
}

.btn__arrow {
  display: inline-block;
  transition: transform 200ms var(--ease-out);
}

.btn--primary {
  position: relative;
  overflow: hidden;
  background: var(--magenta);
  color: #0a0a0a;
  font-size: 0.95rem;
  padding: 16px 30px;
  box-shadow: 0 0 0 rgba(252, 45, 255, 0);
}

/* brilho que varre o botão no hover */
.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.45) 50%, transparent 68%);
  transform: translateX(-130%);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover::after {
    transform: translateX(130%);
    transition: transform 700ms var(--ease-out);
  }
}

.btn--lg {
  font-size: 1.05rem;
  padding: 19px 38px;
}

.btn--nav {
  font-size: 0.8rem;
  padding: 11px 20px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--magenta-line);
}

@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    box-shadow: var(--glow-magenta);
  }

  .btn--nav:hover {
    background: var(--magenta);
    border-color: var(--magenta);
    color: #0a0a0a;
  }

  .btn:hover .btn__arrow {
    transform: translateX(4px);
  }
}

/* ---------- Glows ambientes ---------- */
.glow {
  position: absolute;
  width: clamp(420px, 46vw, 780px);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.glow--right {
  right: -18%;
  top: -10%;
}

.glow--left {
  left: -18%;
  bottom: -10%;
}

/* ---------- Navegação ---------- */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background-color 300ms var(--ease-out), border-color 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

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

.nav__links {
  display: flex;
  gap: 30px;
}

.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav__links a:hover {
    color: var(--text);
  }
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/web/banner-prospekt.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.94) 0%,
      rgba(10, 10, 10, 0.72) 48%,
      rgba(10, 10, 10, 0.38) 100%
    ),
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0) 30%, rgba(10, 10, 10, 0.9) 100%);
}

/* cards de produtos flutuando em profundidades diferentes */
.hero-card {
  position: absolute;
  z-index: 2;
  will-change: transform;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(252, 45, 255, 0.08);
  animation: card-fade 900ms var(--cd, 0.6s) var(--ease-out) both,
    card-float var(--cf, 5.5s) ease-in-out calc(var(--cd, 0.6s) + 0.9s) infinite alternate;
}

@keyframes card-fade {
  from {
    opacity: 0;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes card-float {
  from {
    transform: translateY(-9px) rotate(var(--cr, 0deg));
  }

  to {
    transform: translateY(9px) rotate(var(--cr, 0deg));
  }
}

.hero-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* shapes diferentes por card */
.hero-card--circle img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border-color: var(--magenta-line);
}

.hero-card--arch img {
  border-radius: 999px 999px 20px 20px;
}

.hero-card--pill img {
  aspect-ratio: 5 / 8;
  border-radius: 999px;
}

.hero-card--square img {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
}

/* shape flor: foto mascarada + sombra que acompanha o recorte */
.hero-card--flower {
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.6));
}

.hero-card--flower img {
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23000'%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='78' cy='50' r='17'/%3E%3Ccircle cx='69.8' cy='69.8' r='17'/%3E%3Ccircle cx='50' cy='78' r='17'/%3E%3Ccircle cx='30.2' cy='69.8' r='17'/%3E%3Ccircle cx='22' cy='50' r='17'/%3E%3Ccircle cx='30.2' cy='30.2' r='17'/%3E%3Ccircle cx='50' cy='22' r='17'/%3E%3Ccircle cx='69.8' cy='30.2' r='17'/%3E%3C/g%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='%23000'%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='78' cy='50' r='17'/%3E%3Ccircle cx='69.8' cy='69.8' r='17'/%3E%3Ccircle cx='50' cy='78' r='17'/%3E%3Ccircle cx='30.2' cy='69.8' r='17'/%3E%3Ccircle cx='22' cy='50' r='17'/%3E%3Ccircle cx='30.2' cy='30.2' r='17'/%3E%3Ccircle cx='50' cy='22' r='17'/%3E%3Ccircle cx='69.8' cy='30.2' r='17'/%3E%3C/g%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

/* composição: cluster fechado no lado direito, com leves sobreposições */
.hero-card--1 {
  --cd: 0.5s;
  --cf: 5.4s;
  --cr: -3deg;
  width: clamp(118px, 11vw, 166px);
  right: 18%;
  top: 13%;
  z-index: 4;
}

.hero-card--2 {
  --cd: 0.62s;
  --cf: 6.2s;
  --cr: 0deg;
  width: clamp(84px, 8.2vw, 126px);
  right: 7%;
  top: 15%;
  z-index: 5;
}

.hero-card--3 {
  --cd: 0.74s;
  --cf: 5.8s;
  --cr: 3deg;
  width: clamp(98px, 9.4vw, 148px);
  right: 4.5%;
  top: 43%;
  z-index: 3;
}

.hero-card--4 {
  --cd: 0.86s;
  --cf: 6.8s;
  --cr: 4deg;
  width: clamp(122px, 11.8vw, 176px);
  right: 20%;
  top: 44%;
  z-index: 2;
}

.hero-card--5 {
  --cd: 0.98s;
  --cf: 5.2s;
  --cr: -3deg;
  width: clamp(98px, 9.6vw, 148px);
  right: 13%;
  bottom: 10%;
  z-index: 1;
}

.hero-card--6 {
  --cd: 1.1s;
  --cf: 6.5s;
  --cr: 0deg;
  width: clamp(66px, 6.4vw, 96px);
  right: 18.5%;
  top: 31%;
  z-index: 6;
}

.hero-card--7 {
  --cd: 1.22s;
  --cf: 6s;
  --cr: 0deg;
  width: clamp(76px, 7.4vw, 108px);
  right: 27%;
  top: 30%;
  z-index: 3;
}

/* vitrine rotativa do hero: produto em destaque + logo da marca */
.hero__cards {
  position: absolute;
  z-index: 2;
  right: clamp(58px, 8vw, 140px);
  top: 50%;
  width: clamp(310px, 30vw, 470px);
  height: clamp(430px, 42vw, 590px);
  transform: translateY(-42%) rotate(-1.4deg);
  pointer-events: none;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  isolation: isolate;
  perspective: 900px;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 2% -14% 10% -10%;
  z-index: 0;
  border-radius: 40%;
  background: radial-gradient(circle at 48% 36%, rgba(252, 45, 255, 0.2), transparent 64%);
  filter: blur(8px);
}

.hero-carousel::after {
  content: "";
  position: absolute;
  left: 9%;
  top: 6%;
  z-index: 0;
  width: 86%;
  height: 72%;
  border: 1px solid rgba(252, 45, 255, 0.22);
  border-radius: 34px;
  transform: rotate(5deg);
  opacity: 0.8;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: translateX(42px) rotate(7deg) scale(0.92);
  transition: opacity 620ms var(--ease-out), transform 760ms var(--ease-out), filter 760ms var(--ease-out);
  filter: blur(4px);
  will-change: opacity, transform, filter;
}

.hero-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translateX(0) rotate(1.8deg) scale(1);
  filter: blur(0);
}

.hero-slide.is-next {
  z-index: 2;
  opacity: 0.28;
  transform: translateX(66%) rotate(8deg) scale(0.84);
  filter: blur(2px) saturate(0.88);
}

.hero-slide.is-prev {
  transform: translateX(-44px) rotate(-8deg) scale(0.9);
}

.hero-slide__media {
  position: relative;
  height: calc(100% - 84px);
  overflow: hidden;
  border-radius: 30px 30px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.68), 0 0 46px rgba(252, 45, 255, 0.13);
}

.hero-slide__media::before {
  content: "";
  position: absolute;
  left: -16px;
  bottom: 34px;
  z-index: 2;
  width: 48px;
  height: 150px;
  border-radius: 999px;
  background: var(--magenta);
  box-shadow: 0 0 34px rgba(252, 45, 255, 0.36);
  transform: rotate(12deg);
}

.hero-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.13), transparent 22%, transparent 70%, rgba(252, 45, 255, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%, rgba(0, 0, 0, 0.22) 100%);
  pointer-events: none;
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 3800ms ease;
}

.hero-slide.is-active .hero-slide__media img {
  transform: scale(1);
}

.hero-slide__brand {
  position: absolute;
  left: 8%;
  bottom: 28px;
  z-index: 5;
  min-width: 170px;
  max-width: min(78%, 292px);
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5), 0 0 24px rgba(252, 45, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg);
}

.hero-slide__brand img {
  max-width: 180px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Rexona e Risqué vieram escuras sobre transparente: sumiriam na plaquinha
   escura. Fundo claro devolve o contraste sem mexer no arquivo — recebendo
   versões brancas, é só tirar o modificador do HTML. */
.hero-slide__brand--light {
  background: rgba(245, 246, 247, 0.94);
  border-color: rgba(255, 255, 255, 0.55);
}

/* lockup quadrado (símbolo em cima, nome embaixo) precisa de mais altura
   que os wordmarks horizontais, senão o nome vira um borrão a 40px */
.hero-slide__brand--stacked img {
  max-height: 56px;
}

/* indicador de scroll */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  width: 1px;
  height: 46px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.hero__scroll span {
  position: absolute;
  left: 0;
  top: -14px;
  width: 1px;
  height: 14px;
  background: var(--magenta);
  animation: scroll-cue 1.8s var(--ease-in-out) infinite;
}

@keyframes scroll-cue {
  to {
    transform: translateY(60px);
  }
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 72px;
}

.hero__title {
  font-weight: 900;
  font-stretch: 122%;
  text-transform: uppercase;
  font-size: clamp(1.85rem, 4.3vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  max-width: 15ch;
  text-wrap: balance;
  animation: rise 800ms var(--ease-out) both;
}

.hero__title em {
  position: relative;
  display: inline-block;
  font-style: normal;
  color: var(--magenta);
  text-shadow: 0 0 26px rgba(252, 45, 255, 0.32);
}

.hero__divider {
  position: relative;
  width: clamp(150px, 17vw, 250px);
  height: 2px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--magenta), rgba(252, 45, 255, 0.55), transparent);
  box-shadow: 0 0 18px rgba(252, 45, 255, 0.42);
  transform-origin: left center;
}

.hero__divider::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 18px rgba(252, 45, 255, 0.8);
  transform: translateY(-50%);
}

.hero__sub {
  margin-top: 14px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 46ch;
  animation: rise 800ms 140ms var(--ease-out) both;
}

.hero__cta {
  margin-top: 34px;
  animation: rise 800ms 260ms var(--ease-out) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero__scroll {
    display: none;
  }

  .hero {
    min-height: auto;
    justify-content: flex-start;
    padding-bottom: 72px;
  }

  .hero__content {
    order: 1;
  }

  .hero__cards {
    position: relative;
    order: 2;
    right: auto;
    top: auto;
    width: min(72vw, 360px);
    height: clamp(360px, 86vw, 500px);
    margin: 30px auto 0;
    transform: rotate(-1.4deg);
  }

  .hero-slide.is-next {
    opacity: 0.18;
    transform: translateX(48%) rotate(8deg) scale(0.78);
  }
}

@media (max-width: 720px) {
  .hero__content {
    padding-top: 116px;
    padding-bottom: 34px;
  }

  /* mais ar entre título, divisor, subtítulo e CTA */
  .hero__divider {
    margin-top: 22px;
  }

  .hero__sub {
    margin-top: 20px;
  }

  .hero__cta {
    margin-top: 38px;
  }

  /* a barra magenta decorativa do slide fica proporcional à foto menor */
  .hero-slide__media::before {
    width: 34px;
    height: 108px;
    left: -12px;
    bottom: 26px;
  }

  .hero__cta {
    width: min(100%, 350px);
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: 0.82rem;
    padding: 16px 20px;
  }
}

/* ---------- Marquee de marcas ---------- */
.brands {
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

/* a duração acompanha o número de marcas: o keyframe percorre sempre
   -50% da trilha, então acrescentar logos sem acrescentar tempo aumenta a
   velocidade. ~4s por marca — 29 marcas ≈ 116s. */
.brands__track {
  display: flex;
  width: max-content;
  animation: marquee 116s linear infinite;
}

.brands__list {
  display: flex;
  align-items: center;
  gap: clamp(40px, 5.5vw, 76px);
  padding-inline: clamp(20px, 2.8vw, 38px);
}

.brands__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}

/* logos coloridas (os arquivos já vêm preparados para fundo escuro) */
.brands__list img {
  max-height: 46px;
  max-width: 132px;
  width: auto;
  height: auto;
  opacity: 0.95;
  transition: opacity 200ms ease, transform 250ms var(--ease-out);
}

/* Logos escuras (Gemini, Mercedes-Benz, Rexona, Risqué, Hugo Boss,
   Johnnie Walker, L’Occitane) somem no fundo
   preto do marquee. O chip claro devolve o contraste sem mexer no arquivo
   e sem inverter as cores da marca — que é o que aconteceria com um
   filter: invert(). Se um dia chegarem versões brancas, basta tirar a
   classe do <li>. Precisa vir depois de .brands__list img: mesma
   especificidade, então quem decide é a ordem. */
.brands__list li.brands__item--light {
  padding: 7px 13px;
  border-radius: 12px;
  background: rgba(245, 246, 247, 0.94);
}

/* 7px de respiro + 42px de logo cabem nos 58px de altura do item */
.brands__list .brands__item--light img {
  max-height: 42px;
}

@media (hover: hover) and (pointer: fine) {
  .brands__list img:hover {
    opacity: 1;
    transform: scale(1.08);
  }
}

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

/* ---------- Seções (base) ---------- */
section {
  position: relative;
}

.positioning,
.method,
.numbers,
.journey,
.audience,
.difference,
.quotes,
.faq,
.final {
  padding-block: var(--section-y);
}

/* ---------- Camada visual extra: patterns + lavagens neon ---------- */
.positioning,
.method,
.numbers,
.journey,
.audience,
.difference,
.quotes,
.faq,
.final {
  isolation: isolate;
  overflow: hidden;
}

.positioning::before,
.method::before,
.numbers::before,
.journey::before,
.audience::before,
.difference::before,
.quotes::before,
.faq::before,
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.positioning::before {
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(252, 45, 255, 0.07) 59%, transparent 66%),
    radial-gradient(circle, rgba(255, 255, 255, 0.09) 1px, transparent 1.4px);
  background-size: auto, 16px 16px;
  background-position: 0 0, right 12% top 18%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 54%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 54%, transparent 100%);
  opacity: 0.26;
}

.method::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(252, 45, 255, 0.08) 34%, transparent 60%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.045) 18px 19px, transparent 19px 30px);
  filter: blur(0.2px);
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  opacity: 0.28;
}

.numbers::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1.5px),
    linear-gradient(90deg, transparent 0%, rgba(37, 211, 102, 0.055) 48%, transparent 100%);
  background-size: 16px 16px, auto;
  background-position: left 8% top 18%, 0 0;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
  opacity: 0.24;
}

.journey::before {
  background:
    linear-gradient(100deg, transparent 0%, rgba(252, 45, 255, 0.08) 28%, transparent 52%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.4px);
  background-size: auto, 18px 18px;
  background-position: 0 0, right 7% center;
  opacity: 0.22;
}

.audience::before {
  background:
    linear-gradient(140deg, rgba(252, 45, 255, 0.065), transparent 38%),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(255, 255, 255, 0.035) 24px 25px, transparent 25px 36px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 70%, transparent 100%);
  opacity: 0.24;
}

.difference::before {
  background:
    linear-gradient(110deg, rgba(252, 45, 255, 0.08) 0%, transparent 30%),
    linear-gradient(285deg, rgba(37, 211, 102, 0.075) 0%, transparent 34%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.5px);
  background-size: auto, auto, 17px 17px;
  background-position: 0 0, 0 0, left 9% bottom 18%;
  opacity: 0.3;
}

.quotes::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 255, 255, 0.035) 26px 27px, transparent 27px 44px),
    linear-gradient(115deg, transparent 0%, rgba(252, 45, 255, 0.06) 45%, transparent 74%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  opacity: 0.3;
}

.faq::before {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.4px),
    linear-gradient(90deg, transparent, rgba(252, 45, 255, 0.06), transparent);
  background-size: 18px 18px, auto;
  background-position: right 10% top 20%, 0 0;
  opacity: 0.22;
}

.final::before {
  background:
    linear-gradient(118deg, rgba(252, 45, 255, 0.1) 0%, transparent 34%),
    linear-gradient(292deg, rgba(37, 211, 102, 0.08) 0%, transparent 34%),
    repeating-linear-gradient(115deg, transparent 0 22px, rgba(255, 255, 255, 0.04) 22px 23px, transparent 23px 36px);
  opacity: 0.3;
}

.method::after,
.numbers::after,
.journey::after,
.audience::after,
.difference::after,
.quotes::after,
.faq::after,
.final::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.method::after,
.difference::after,
.final::after {
  width: clamp(240px, 34vw, 560px);
  height: clamp(180px, 24vw, 360px);
  border-radius: 40%;
  filter: blur(44px);
  opacity: 0.2;
  transform: rotate(-12deg);
}

.method::after {
  left: -8%;
  bottom: 8%;
  background: linear-gradient(105deg, rgba(252, 45, 255, 0.86), rgba(252, 45, 255, 0.08) 68%);
}

.difference::after {
  right: -12%;
  top: 18%;
  background: linear-gradient(130deg, rgba(37, 211, 102, 0.72), rgba(252, 45, 255, 0.12) 72%);
}

.final::after {
  left: 48%;
  bottom: -12%;
  background: linear-gradient(110deg, rgba(252, 45, 255, 0.74), rgba(37, 211, 102, 0.38) 74%);
}

.quotes::after,
.faq::after {
  width: clamp(74px, 9vw, 126px);
  aspect-ratio: 1;
  opacity: 0.3;
  background: repeating-conic-gradient(from -8deg, rgba(255, 255, 255, 0.9) 0deg 5deg, transparent 5deg 15deg);
  -webkit-mask-image: radial-gradient(circle, transparent 0 36%, #000 37% 53%, transparent 54% 100%);
  mask-image: radial-gradient(circle, transparent 0 36%, #000 37% 53%, transparent 54% 100%);
}

.numbers::after {
  display: none;
}

.quotes::after {
  display: none;
}

.faq::after {
  display: none;
}

/* ---------- Recortes gráficos perto das chamadas ---------- */
.positioning__text,
.method > .container,
.journey > .container,
.audience > .container,
.difference__text,
.quotes__head,
.faq > .container,
.final__inner {
  position: relative;
}

.positioning__text::before,
.method > .container::before,
.journey > .container::before,
.audience > .container::before,
.difference__text::before,
.quotes__head::before,
.faq > .container::before,
.final__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(96px, 10vw, 150px);
  height: clamp(68px, 7vw, 104px);
  top: clamp(-118px, -11vw, -92px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(252, 45, 255, 0.12), transparent 46%),
    radial-gradient(circle, rgba(255, 255, 255, 0.42) 1px, transparent 1.35px);
  background-size: auto, 10px 10px;
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(90deg, #000 0 72%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 72%, transparent 100%);
}

.positioning__text::after,
.method > .container::after,
.journey > .container::after,
.audience > .container::after,
.difference__text::after,
.quotes__head::after,
.faq > .container::after,
.final__inner::after {
  content: "↙";
  position: absolute;
  z-index: -1;
  width: clamp(50px, 5vw, 78px);
  aspect-ratio: 1;
  top: clamp(-108px, -10vw, -84px);
  display: grid;
  place-items: center;
  background: url("../assets/brand/starburst-branco.svg") center / contain no-repeat;
  color: #16ff07;
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0.72;
  text-shadow: 0 0 20px rgba(22, 255, 7, 0.45);
  animation: text-deco-spin 16s linear infinite;
  pointer-events: none;
}

/* Posição só na horizontal — o `top` (negativo) das regras-base acima
   coloca a decoração na faixa de padding vazia, acima do título. Assim
   ela nunca fica atrás nem à frente de texto/elemento algum. */
.positioning__text::before {
  left: clamp(0px, 2vw, 28px);
  right: auto;
}

.positioning__text::after {
  left: clamp(24px, 4vw, 60px);
  right: auto;
}

.method > .container::before {
  right: clamp(24px, 8vw, 120px);
  left: auto;
}

.method > .container::after {
  right: clamp(56px, 11vw, 168px);
  left: auto;
}

.journey > .container::before {
  left: clamp(0px, 3vw, 40px);
  right: auto;
}

.journey > .container::after {
  left: clamp(32px, 6vw, 112px);
  right: auto;
}

.audience > .container::before {
  right: clamp(24px, 8vw, 120px);
  left: auto;
}

.audience > .container::after {
  right: clamp(56px, 11vw, 168px);
  left: auto;
}

.difference__text::before {
  right: clamp(0px, 3vw, 36px);
  left: auto;
}

.difference__text::after {
  right: clamp(30px, 5vw, 72px);
  left: auto;
}

.quotes__head::before {
  left: clamp(0px, 3vw, 36px);
  right: auto;
}

.quotes__head::after {
  left: clamp(28px, 5vw, 72px);
  right: auto;
}

.faq > .container::before {
  left: clamp(0px, 4vw, 48px);
  right: auto;
}

.faq > .container::after {
  left: clamp(40px, 7vw, 108px);
  right: auto;
}

.final__inner::before {
  right: clamp(0px, 3vw, 36px);
  left: auto;
}

.final__inner::after {
  right: clamp(30px, 5vw, 72px);
  left: auto;
}

@keyframes text-deco-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 860px) {
  .positioning__text::before,
  .method > .container::before,
  .journey > .container::before,
  .audience > .container::before,
  .difference__text::before,
  .quotes__head::before,
  .faq > .container::before,
  .final__inner::before {
    width: 96px;
    height: 70px;
    opacity: 0.2;
    background-size: auto, 12px 12px;
  }

  .positioning__text::after,
  .method > .container::after,
  .journey > .container::after,
  .audience > .container::after,
  .difference__text::after,
  .quotes__head::after,
  .faq > .container::after,
  .final__inner::after {
    width: 58px;
    font-size: 2rem;
    opacity: 0.44;
  }

  .positioning__text::before,
  .method > .container::before,
  .journey > .container::before,
  .audience > .container::before,
  .faq > .container::before {
    left: auto;
    right: 0;
    top: -78px;
  }

  .positioning__text::after,
  .method > .container::after,
  .journey > .container::after,
  .audience > .container::after,
  .faq > .container::after {
    left: auto;
    right: 20px;
    top: -70px;
  }

  .difference__text::before,
  .quotes__head::before,
  .final__inner::before {
    display: none;
  }

  .difference__text::after,
  .quotes__head::after,
  .final__inner::after {
    display: none;
  }
}

.journey::after,
.audience::after {
  width: min(340px, 30vw);
  height: 120px;
  opacity: 0.18;
  background:
    linear-gradient(90deg, var(--magenta) 0 42%, transparent 42% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 2px, transparent 2px 10px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 82%, transparent);
}

.journey::after {
  left: -4%;
  bottom: 7%;
  transform: rotate(9deg);
}

.audience::after {
  display: none;
}

@media (max-width: 860px) {
  .positioning::before,
  .method::before,
  .numbers::before,
  .journey::before,
  .audience::before,
  .difference::before,
  .quotes::before,
  .faq::before,
  .final::before {
    opacity: 0.16;
  }

  .method::after,
  .difference::after,
  .final::after {
    width: 260px;
    height: 190px;
    filter: blur(38px);
    opacity: 0.14;
  }

  .quotes::after,
  .faq::after {
    width: 68px;
    opacity: 0.16;
  }

  .journey::after,
  .audience::after {
    width: 220px;
    height: 78px;
    opacity: 0.12;
  }
}

/* ---------- 2. Posicionamento + carrossel 3D ---------- */
.positioning {
  overflow: hidden;
}

.positioning__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
}

/* min-width: 0 é obrigatório aqui: item de grid nasce com min-width:auto,
   então o trilho de serviços (que é largo por natureza) empurrava a coluna
   além da tela e desalinhava a seção inteira no mobile. */
.positioning__text {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.positioning .display {
  max-width: 17ch;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 1.08;
  font-weight: 820;
  font-stretch: 108%;
  letter-spacing: 0;
}

.positioning__close {
  margin-top: 22px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  line-height: 1.55;
  max-width: 39ch;
}

/* ---- slider de serviços (coluna esquerda) ---- */
.services {
  margin-top: 30px;
  max-width: 560px;
  min-width: 0;
}

.services__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.services__label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

/* flex:0 0 auto para as setas nunca serem espremidas para fora da tela
   quando o rótulo ao lado for longo */
.services__nav {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

/* sem JS as setas não funcionam — o trilho continua rolando na mão */
html:not(.js) .services__nav {
  display: none;
}

.services__arrow {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, opacity 200ms ease,
    transform 160ms var(--ease-out);
}

.services__arrow svg {
  width: 17px;
  height: 17px;
}

.services__arrow:active {
  transform: scale(0.92);
}

.services__arrow:disabled {
  opacity: 0.32;
  cursor: default;
}

@media (hover: hover) and (pointer: fine) {
  .services__arrow:not(:disabled):hover {
    border-color: var(--magenta-line);
    color: var(--magenta);
  }
}

/* trilho: rola nativamente (com ou sem JS); o JS só adiciona setas e arrasto */
.services__track {
  display: flex;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 82%, transparent 100%);
}

.services__track::-webkit-scrollbar {
  display: none;
}

.services__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.service-card {
  flex: 0 0 clamp(216px, 62%, 260px);
  scroll-snap-align: start;
  padding: 20px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-card);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012) 55%),
    rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: var(--magenta-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 24px rgba(252, 45, 255, 0.09);
  }
}

.service-card__icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-el);
  background: var(--magenta-soft);
  color: var(--magenta);
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 21px;
  height: 21px;
}

.service-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.services__close {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--magenta);
}

.positioning__hint {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
}

.positioning__hint svg {
  width: 20px;
  height: 20px;
  color: #16ff07;
}

/* carrossel contido na metade direita do grid: o que passa da célula
   é clipado com fade nas duas bordas — nunca invade o texto */
.cyl-scene {
  position: relative;
  z-index: 1;
  width: min(76vw, 1040px);
  min-width: 0;
  height: clamp(480px, 46vw, 660px);
  margin-left: clamp(42px, 5vw, 90px);
  margin-right: calc(clamp(20px, 5vw, 48px) * -1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: clamp(150px, 14vw, 240px);
  overflow: hidden;
  perspective: 1500px;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 4%,
    #000 12%,
    #000 58%,
    rgba(0, 0, 0, 0.72) 76%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.6) 4%,
    #000 12%,
    #000 58%,
    rgba(0, 0, 0, 0.72) 76%,
    transparent 100%
  );
}

.cyl-scene::before {
  content: "";
  position: absolute;
  inset-block: 0;
  left: 0;
  z-index: 3;
  width: clamp(72px, 8vw, 132px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.62) 0%, rgba(10, 10, 10, 0.22) 52%, rgba(10, 10, 10, 0) 100%);
}

.cyl {
  position: relative;
  z-index: 1;
  width: clamp(220px, 18vw, 300px);
  height: clamp(300px, 25vw, 420px);
  transform-style: preserve-3d;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.cyl:active {
  cursor: grabbing;
}

.cyl__face {
  position: absolute;
  inset: 0;
  padding: 7px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.cyl__face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.62), 0 0 26px rgba(252, 45, 255, 0.08);
  pointer-events: none;
}

@media (max-width: 900px) {
  .positioning__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services {
    max-width: none;
  }

  .cyl-scene {
    width: 100%;
    height: 350px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 24px;
    justify-content: center;
    padding-left: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }

  .cyl-scene::before {
    display: none;
  }

  .cyl {
    width: 180px;
    height: 250px;
  }
}

/* No mobile o slider passa a mostrar UM card inteiro por vez: a base vira
   100% e o fade da direita sai — não há mais card espiando para ser cortado.
   O snap obrigatório garante que ele sempre pare no card, nunca no meio. */
@media (max-width: 640px) {
  .services__head {
    gap: 12px;
  }

  .services__label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .services__track {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .service-card {
    flex: 0 0 100%;
  }

  /* a face frontal cresce com a perspectiva (~1,45x): num cilindro de 180px
     ela encostaria nas bordas do celular */
  .cyl {
    width: 156px;
    height: 216px;
  }

  .cyl-scene {
    height: 300px;
  }
}

/* ---------- 3. Método ---------- */
.method {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 54px;
}

.method-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px 28px;
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .method-card:hover {
    transform: translateY(-5px);
    border-color: var(--magenta-line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 24px rgba(252, 45, 255, 0.09);
  }
}

.method-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-el);
  background: var(--magenta-soft);
  color: var(--magenta);
  margin-bottom: 22px;
}

.method-card__icon svg {
  width: 26px;
  height: 26px;
}

.method-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.method-card p {
  color: var(--text-dim);
  font-size: 0.98rem;
}

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

/* ---------- 4. Números ---------- */
.numbers__title {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  text-align: center;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 50px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 10px;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat dd {
  order: -1;
}

/* com 5 colunas os valores em palavra ("+1 milhão", "Infinitas") são
   os mais largos — a escala segue por eles, não pelos numéricos */
.stat__value {
  display: block;
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 900;
  font-stretch: 122%;
  color: var(--magenta);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-wrap: balance;
}

.stat dt {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .numbers__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  /* em duas colunas quem abre a linha é ímpar (1, 3, 5) */
  .stat:nth-child(odd) {
    border-left: 0;
  }
}

/* ---------- 5. Jornada ---------- */
.journey {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

/* trilho com nós numerados em cima; cada passo é um card de vidro
   pendurado no seu nó. A linha vai exatamente do 01 ao 05. */
.journey__steps {
  --jgap: clamp(14px, 1.8vw, 24px);
  margin-top: 72px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--jgap);
}

/* a linha para no centro do último nó: recua uma coluna inteira
   ((100% - 4 vãos) / 5 = 20% - 0.8 vão) e volta o raio do nó */
.journey__line {
  position: absolute;
  top: 27px;
  left: 27px;
  right: calc(20% - 0.8 * var(--jgap) - 27px);
  height: 1px;
  background: linear-gradient(90deg, var(--magenta), rgba(252, 45, 255, 0.16));
  box-shadow: 0 0 14px rgba(252, 45, 255, 0.3);
  transform-origin: left center;
}

.journey-step {
  display: flex;
  flex-direction: column;
}

.journey-step__num {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--magenta-line);
  color: var(--magenta);
  font-weight: 800;
  font-stretch: 115%;
  font-variant-numeric: tabular-nums;
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  box-shadow: 0 0 16px rgba(252, 45, 255, 0.14);
  transition: box-shadow 300ms var(--ease-out), background-color 300ms ease;
}

.journey-step > div {
  flex: 1;
  position: relative;
  padding: clamp(20px, 1.9vw, 26px) clamp(16px, 1.6vw, 22px) clamp(22px, 2vw, 28px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012) 55%),
    rgba(10, 10, 10, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .journey-step:hover > div {
    transform: translateY(-5px);
    border-color: var(--magenta-line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 44px rgba(0, 0, 0, 0.5),
      0 0 24px rgba(252, 45, 255, 0.09);
  }

  .journey-step:hover .journey-step__num {
    background: var(--magenta-soft);
    box-shadow: 0 0 22px rgba(252, 45, 255, 0.35);
  }
}

.journey-step h3 {
  font-size: clamp(0.94rem, 1.05vw, 1.06rem);
  font-weight: 800;
  font-stretch: 112%;
  text-transform: uppercase;
  line-height: 1.25;
  margin-bottom: 8px;
  max-width: 15ch;
}

.journey-step p {
  color: var(--text-dim);
  font-size: 0.92rem;
  max-width: 30ch;
}

.journey__cta {
  margin-top: 66px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px) {
  .journey__steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }

  .journey__line {
    display: none;
  }

  /* com os cards largos, os limites de largura do desktop só quebram texto à toa */
  .journey-step h3,
  .journey-step p {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .journey__steps {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  /* em coluna única o trilho volta, na vertical: costura os nós 01→04
     passando por trás dos cards e aparecendo nos vãos */
  .journey__line {
    display: block;
    top: 0;
    bottom: 0;
    left: 23px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, var(--magenta), rgba(252, 45, 255, 0.16));
    box-shadow: 0 0 14px rgba(252, 45, 255, 0.3);
  }

  .journey-step__num {
    width: 46px;
    height: 46px;
    font-size: 0.85rem;
    margin-bottom: 18px;
  }
}

/* ---------- 6. Para quem é ---------- */
.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 54px;
}

/* card dor → solução, com foto real do produto */
.need-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  transition: transform 260ms var(--ease-out), border-color 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.need-card:active {
  transform: scale(0.985);
}

.need-card__media {
  position: relative;
  overflow: hidden;
}

.need-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-out);
}

/* funde a foto com o fundo do card */
.need-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, var(--surface) 100%);
}

@media (hover: hover) and (pointer: fine) {
  .need-card:hover {
    transform: translateY(-5px);
    border-color: var(--magenta-line);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5), 0 0 24px rgba(252, 45, 255, 0.09);
  }

  .need-card:hover .need-card__media img {
    transform: scale(1.06);
  }

  .need-card:hover .btn__arrow {
    transform: translateX(4px);
  }
}

.need-card__body {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
}

.need-card__pain {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  max-width: 22ch;
}

.need-card__label {
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
}

/* a seta flui com o texto: quando o rótulo quebra de linha,
   ela acompanha a última palavra em vez de descolar para o lado */
.need-card__solution {
  margin-top: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  font-stretch: 110%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--magenta);
}

.need-card__solution .btn__arrow {
  margin-left: 8px;
}

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

  .need-card {
    grid-template-columns: 1fr;
    grid-template-rows: 170px auto;
    min-height: 0;
  }

  .need-card__media::after {
    background: linear-gradient(180deg, transparent 55%, var(--surface) 100%);
  }
}

/* ---------- 7. Diferenciais ---------- */
.difference {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.24), transparent 42%),
    var(--surface);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.difference .glow--left {
  bottom: auto;
  top: -6%;
}

.difference__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
}

.difference__text {
  max-width: 610px;
}

.difference .display {
  max-width: 12ch;
}

/* primeira linha do bloco: destaque, com a barra magenta à esquerda */
.difference__lead {
  margin-top: 26px;
  max-width: 44ch;
  padding-left: 18px;
  border-left: 2px solid var(--magenta);
  color: var(--text);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.45;
}

.difference__body {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  max-width: 52ch;
}

.difference__body p {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.62;
}

.difference__photo {
  position: relative;
  max-width: 620px;
  margin-left: auto;
  padding: clamp(16px, 2.5vw, 34px);
  isolation: isolate;
}

.difference__photo::before {
  content: "";
  position: absolute;
  inset: clamp(28px, 4vw, 58px) 0 clamp(26px, 4vw, 54px) clamp(10px, 2vw, 28px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(252, 45, 255, 0.12), transparent 45%),
    radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1.5px),
    rgba(10, 10, 10, 0.32);
  background-size: auto, 14px 14px, auto;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transform: rotate(-2deg);
}

.difference__photo::after {
  content: "PROSPEKT";
  position: absolute;
  right: clamp(4px, 1.6vw, 24px);
  top: 50%;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  font-size: clamp(2.6rem, 5.4vw, 5.8rem);
  font-weight: 900;
  font-stretch: 122%;
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.difference__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.55));
}

.difference__photo figcaption {
  position: relative;
  z-index: 2;
  width: fit-content;
  max-width: min(100%, 430px);
  /* sobreposição responsiva: no desktop a foto é grande, então a legenda
     precisa subir bem mais para ficar DENTRO do card (como no mobile) e
     não pendurada na base. No mobile mantém ~22px. */
  margin-top: clamp(-64px, -6vw, -22px);
  margin-left: clamp(18px, 5vw, 72px);
  padding: 10px 14px 10px 16px;
  font-size: 0.88rem;
  color: var(--text-dim);
  background: rgba(10, 10, 10, 0.72);
  border-left: 2px solid var(--magenta);
  border-radius: 0 999px 999px 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

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

  .difference__photo {
    max-width: 440px;
  }
}

/* ---------- 8. Prova social: 50/50 com stack em leque ---------- */
.quotes__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

/* todos os cards ocupam a MESMA célula do grid: ficam empilhados no
   mesmo lugar por layout nativo — sem posição absoluta, sem JS de altura */
.stack {
  position: relative;
  display: grid;
  max-width: 560px;
  touch-action: pan-y;
}

/* sem JS não há troca de card: empilha os depoimentos em lista
   e esconde a navegação, que não funcionaria */
html:not(.js) .stack {
  gap: 16px;
}

html:not(.js) .stack-card {
  grid-area: auto;
}

html:not(.js) .stack-nav {
  display: none;
}

@media (max-width: 900px) {
  .quotes__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stack {
    margin-top: 28px;
  }
}

.stack-card {
  grid-area: 1 / 1;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012) 54%),
    rgba(20, 20, 20, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 28px 74px rgba(0, 0, 0, 0.52);
  min-height: clamp(250px, 22vw, 320px);
  display: grid;
  align-items: center;
  padding: clamp(34px, 4vw, 52px) clamp(34px, 4.8vw, 58px);
  cursor: grab;
  transition: transform 550ms var(--ease-out), opacity 550ms var(--ease-out);
  will-change: transform, opacity;
}

.stack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(252, 45, 255, 0.16), transparent 34%),
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
  opacity: 0.3;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 72%);
  mask-image: linear-gradient(180deg, #000, transparent 72%);
}

.stack-card.card-fx::after {
  display: none;
}

.stack-card__quote-mark {
  position: absolute;
  right: clamp(22px, 3vw, 44px);
  top: clamp(10px, 1.8vw, 24px);
  z-index: 1;
  color: rgba(252, 45, 255, 0.38);
  -webkit-text-stroke: 1px rgba(252, 45, 255, 0.8);
  font-size: clamp(5.4rem, 8vw, 8.5rem);
  font-weight: 900;
  font-stretch: 120%;
  line-height: 1;
  text-shadow: 0 0 34px rgba(252, 45, 255, 0.32);
  pointer-events: none;
}

.stack-card.is-dragging {
  transition: none;
  cursor: grabbing;
}

.stack-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 120px;
}

.stack-card__avatar {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--magenta), #8a2dff);
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.95rem;
}

.stack-card__avatar--logo {
  background: #f5f6f7;
  padding: 10px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.stack-card__avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stack-card__company {
  margin-bottom: 2px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
}

.stack-card__head h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.stack-card__head p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* mensagens reais são mais longas que uma frase de efeito: corpo menor
   e medida mais larga para o card não estourar a altura da coluna */
.stack-card blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.55;
  max-width: 44ch;
}

.tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 7px;
  background: var(--surface-2);
  color: var(--text-dim);
}

.tag--featured {
  background: var(--magenta-soft);
  border: 1px solid var(--magenta-line);
  color: var(--magenta);
}

.stack-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 30px;
}

.stack-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  transition: border-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out),
    box-shadow 260ms var(--ease-out);
}

.stack-arrow svg {
  width: 20px;
  height: 20px;
}

.stack-arrow:active {
  transform: scale(0.92);
}

@media (hover: hover) and (pointer: fine) {
  .stack-arrow:hover {
    border-color: var(--magenta-line);
    color: var(--magenta);
    box-shadow: 0 0 18px rgba(252, 45, 255, 0.18);
  }
}

.stack-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.stack-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: background-color 250ms ease, width 250ms var(--ease-out);
}

.stack-dots button.is-active {
  width: 26px;
  background: var(--magenta);
}

@media (max-width: 560px) {
  .stack-card {
    min-height: 280px;
    padding: 34px 24px;
  }

  .stack-card.card-fx::after {
    display: none;
  }

  .stack-card__quote-mark {
    right: 18px;
    top: 10px;
    font-size: 5.6rem;
  }

  .stack-card__head {
    align-items: flex-start;
    padding-right: 70px;
  }

  .stack-card__avatar {
    width: 50px;
    height: 50px;
  }

  .stack-card blockquote {
    font-size: 1rem;
  }
}

/* ---------- 9. FAQ ---------- */
.faq {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

/* seção centralizada */
.faq {
  overflow: hidden;
}

.faq .display {
  margin-inline: auto;
  text-align: center;
}

.faq__sub {
  margin-top: 18px;
  text-align: center;
  color: var(--text-dim);
  font-size: 1.05rem;
}

.faq__list {
  margin-top: 50px;
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: rgba(10, 10, 10, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: border-color 250ms ease;
}

.faq-item.is-open {
  border-color: var(--magenta-line);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .faq-item:not(.is-open):hover {
    border-color: rgba(255, 255, 255, 0.2);
  }
}

/* ícone "+" que vira "×" ao abrir */
.faq-item__icon {
  flex: 0 0 auto;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--magenta-soft);
  transition: transform 350ms var(--ease-out), background-color 250ms ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: var(--magenta);
  border-radius: 2px;
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

/* resposta anima via grid-template-rows (0fr → 1fr) */
.faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 420ms var(--ease-out);
}

.faq-item.is-open .faq-item__a {
  grid-template-rows: 1fr;
}

.faq-item__a-inner {
  overflow: hidden;
}

.faq-item__a-inner p {
  padding: 0 26px 24px;
  color: var(--text-dim);
  font-size: 0.98rem;
  max-width: 62ch;
}

.faq__cta {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.faq__cta p {
  color: var(--text-dim);
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item__a {
    transition: none;
  }

  .faq-item__icon {
    transition: none;
  }
}

/* ---------- 10. CTA final ---------- */
.final {
  overflow: hidden;
  padding-block: clamp(110px, 16vw, 190px);
}

.image-trail {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.final > .container {
  z-index: 3;
}

.image-trail__img {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(96px, 11vw, 172px);
  height: clamp(126px, 13vw, 216px);
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  opacity: 0;
  filter: saturate(1.08) contrast(1.02);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.58), 0 0 26px rgba(252, 45, 255, 0.12);
  transform: translate(-50%, -50%) rotate(var(--trail-rotate, 0deg)) scale(0.18);
  transition: opacity 260ms ease, transform 460ms var(--ease-out), filter 420ms var(--ease-out);
  will-change: transform, opacity;
}

.image-trail__img[data-status="active"] {
  opacity: 0.92;
  filter: saturate(1.12) contrast(1.06);
  transform: translate(-50%, -50%) rotate(var(--trail-rotate, 0deg)) scale(1);
  transition-duration: 180ms, 520ms, 420ms;
}

.image-trail__img[data-status="inactive"] {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--trail-rotate, 0deg)) scale(0.18);
}

.final .glow--left {
  top: -20%;
  bottom: auto;
}

.final .glow--right {
  top: auto;
  bottom: -24%;
}

.final__inner {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final .display {
  max-width: 26ch;
  margin-inline: auto;
}

.final__sub {
  margin-top: 24px;
  font-size: 1.12rem;
  color: var(--text-dim);
  max-width: 44ch;
}

.final .btn {
  margin-top: 38px;
}

.final__note {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

@media (max-width: 720px) {
  .image-trail__img {
    width: 104px;
    height: 138px;
    border-radius: 14px;
  }

  .final .btn--lg {
    width: min(100%, 340px);
    justify-content: center;
    white-space: normal;
    text-align: center;
    font-size: 0.84rem;
    padding: 16px 20px;
  }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: 54px;
}

.footer__inner {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.footer__logo {
  width: 150px;
  height: auto;
}

.footer__tagline {
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer__contact {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--magenta-line);
  padding-bottom: 2px;
  transition: border-color 200ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .footer__contact:hover {
    border-color: var(--magenta);
  }
}

.footer__copy {
  margin-top: 18px;
  font-size: 0.8rem;
  color: #6b7276;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wa);
  color: #062e15;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 18px rgba(37, 211, 102, 0.35);
  transition: transform 200ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:active {
  transform: scale(0.94);
}

@media (hover: hover) and (pointer: fine) {
  .wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 26px rgba(37, 211, 102, 0.55);
  }
}

/* ---------- Elementos decorativos da marca (laterais) ---------- */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

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

.method,
.numbers,
.journey {
  overflow: hidden;
}

.deco--star-numbers {
  left: clamp(16px, 4vw, 70px);
  top: 50%;
  margin-top: -55px;
  width: 110px;
  opacity: 0.85;
}

.deco--stripes-numbers {
  right: -70px;
  bottom: -26px;
  width: min(320px, 26vw);
  opacity: 0.08;
}

.deco--stripes-method {
  right: -64px;
  top: -30px;
  width: min(340px, 28vw);
  opacity: 0.08;
}

.deco--cube {
  right: -4%;
  top: -6%;
  width: clamp(220px, 22vw, 330px);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.deco--star-final {
  right: clamp(24px, 9vw, 150px);
  top: 16%;
  width: 84px;
  opacity: 0.75;
}

@media (max-width: 860px) {
  .deco {
    display: none;
  }
}

/* ---------- Grain / noise ---------- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

/* ---------- Ribbons (faixas de texto) ---------- */
.ribbon {
  position: relative;
  z-index: 5;
  overflow: hidden;
  width: 104%;
  margin-left: -2%;
  padding-block: 13px;
  background: var(--magenta);
  transform: rotate(-1.5deg);
  box-shadow: 0 0 44px rgba(252, 45, 255, 0.28);
  margin-block: -8px;
}

.ribbon__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.ribbon__track--reverse {
  animation-direction: reverse;
}

.ribbon span {
  white-space: nowrap;
  font-weight: 900;
  font-stretch: 122%;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  color: #0a0a0a;
}

.ribbon--outline {
  background: transparent;
  border-block: 1px solid var(--line);
  box-shadow: none;
  transform: rotate(1.3deg);
}

.ribbon--outline span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.38);
  font-size: 1.35rem;
}

/* ---------- Textura de grid + spotlight nos cards ---------- */
.card-fx {
  position: relative;
}

.card-fx::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(260px at 78% -8%, #fff, transparent);
  mask-image: radial-gradient(260px at 78% -8%, #fff, transparent);
}

@media (hover: hover) and (pointer: fine) {
  .card-fx::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 350ms var(--ease-out);
    background: radial-gradient(
      320px circle at var(--mx, 50%) var(--my, 50%),
      rgba(252, 45, 255, 0.12),
      transparent 65%
    );
  }

  .card-fx:hover::after {
    opacity: 1;
  }
}

/* ---------- Reveal on scroll ----------
   Só esconde os elementos quando o JS está ativo (classe .js no <html>),
   para a página nunca ficar em branco sem JavaScript. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--d, 0s);
}

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

/* ---------- Acessibilidade / foco ---------- */
:focus-visible {
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

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

  .hero__title,
  .hero__sub,
  .hero__divider,
  .hero__cta,
  .hero-card img,
  .hero__scroll span {
    animation: none;
  }

  .brands__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
  }

  .brands__list:last-child {
    display: none;
  }

  .ribbon__track {
    animation: none;
  }

  .positioning__text::after,
  .method > .container::after,
  .journey > .container::after,
  .audience > .container::after,
  .difference__text::after,
  .quotes__head::after,
  .faq > .container::after,
  .final__inner::after {
    animation: none;
  }

  .btn--primary::after {
    display: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
