:root {
  --preto: #111114;
  --grafite: #191B1C;
  --rosa: #FF3F7F;
  --azul: #A8CDE4;
  --branco-gelo: #F5F5F5;
  --cinza-linha: #2a2b2d;
  --sombra: rgba(255, 63, 127, 0.15);
  --radius: 12px;
  --max-width: 1120px;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/satoshi-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('fonts/satoshi-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('fonts/inter-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--preto);
  color: var(--branco-gelo);
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Satoshi', Helvetica, Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(32px, 6vw, 64px); }
h2 { font-size: clamp(26px, 4.5vw, 44px); }
h3 { font-size: clamp(18px, 2.5vw, 22px); font-weight: 700; }

p { font-size: clamp(15px, 1.8vw, 17px); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.rotulo {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-cta {
  background: var(--rosa);
  color: var(--branco-gelo);
  box-shadow: 0 8px 30px var(--sombra);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 63, 127, 0.35);
}

.btn-cta:active { transform: translateY(0); }

/* HERO */
.hero {
  background: var(--preto);
  min-height: 65vh;
  position: sticky;
  top: 0;
  z-index: 1;
  padding: 0;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 65vh;
  width: 100%;
  position: relative;
  transition: filter 0.4s ease-out;
}

.hero .container {
  transform-origin: center center;
  will-change: transform, opacity;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 63, 127, 0.15) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 205, 228, 0.1) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

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

/* Logo QGE acima do rotulo, no fluxo do texto do hero */
.hero-logo {
  display: block;
  width: 67px;
  margin-top: 20px;
  margin-bottom: 8px;
}

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

@media (min-width: 900px) {
  .hero-logo {
    width: 84px;
    margin-top: 28px;
  }
}

/* Menu fixo desktop: oculto no topo, aparece ao rolar a pagina */
.nav-scroll {
  display: none;
}

@media (min-width: 900px) {
  .nav-scroll {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 250;
    background: rgba(17, 17, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cinza-linha);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .nav-scroll.is-visible {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-scroll__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-scroll__logo {
  height: 44px;
  width: auto;
  display: block;
  justify-self: start;
}

.nav-scroll__links {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 32px;
}

.nav-scroll__links a {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: rgba(245, 245, 245, 0.8);
  transition: color 0.2s ease;
}

.nav-scroll__links a:hover {
  color: var(--rosa);
}

.nav-scroll__cta {
  padding: 12px 26px;
  font-size: 12px;
  flex-shrink: 0;
  justify-self: end;
}

.nav-scroll .btn-cta--draw:hover {
  background: #ffffff;
  color: var(--rosa);
}

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

.hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
}

.hero .subhead {
  max-width: 700px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(245, 245, 245, 0.85);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* HERO: foto grande de fundo, ocupando toda a altura, com degradê nas bordas */
.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-texto {
  flex: 1;
}

.hero-imagem {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
}

.hero-imagem img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
}

.hero-imagem::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, var(--preto) 100%),
    linear-gradient(to right, var(--preto) 30%, transparent 60%);
  pointer-events: none;
}

/* HERO: Text Reveal (cascata de palavras) */
.hero h1 .fx-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: fx-text-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 70ms);
}

@keyframes fx-text-rise {
  to { opacity: 1; transform: translateY(0); }
}

/* HERO: degradê animado no fecho da frase */
.fx-gradient {
  background: linear-gradient(90deg, var(--rosa), var(--azul), var(--rosa));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fx-gradient-move 8s ease-in-out infinite alternate;
}

@keyframes fx-gradient-move {
  from { background-position: 0% center; }
  to { background-position: -100% center; }
}

/* BLOCO 2 - IDENTIFICACAO (CAIXA BRANCA FLUTUANDO COM BLUR ROSA) */
.identificacao {
  background: transparent;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 4vw, 60px) clamp(140px, 14vw, 180px);
  position: relative;
  z-index: 2;
  margin-top: -60px;
  pointer-events: none;
}

.identificacao::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, var(--preto));
  pointer-events: none;
  z-index: 0;
}

.identificacao .container {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.caixa-branca {
  position: relative;
  z-index: 0;
  background: var(--branco-gelo);
  border-radius: 24px;
  padding: clamp(32px, 6vw, 64px);
  color: var(--preto);
  box-shadow:
    0 0 120px rgba(255, 63, 127, 0.3),
    0 0 60px rgba(255, 63, 127, 0.18),
    0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Pulso do halo via opacity (leve, GPU) em vez de animar box-shadow (caro) */
.caixa-branca::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    0 0 160px rgba(255, 63, 127, 0.4),
    0 0 80px rgba(255, 63, 127, 0.22);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  animation: pulse-halo-fade 8s ease-in-out infinite;
}

@keyframes pulse-halo-fade {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .caixa-branca::before { animation: none; opacity: 0; }
}

.caixa-branca h2 { color: var(--preto); }
.caixa-branca h3 { color: var(--preto); }
.caixa-branca-glow { display: none; }

.caixa-branca .header-flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.caixa-branca .header-flex h2 { max-width: 700px; }
.caixa-branca .header-flex .intro {
  color: #4a4a4a;
  max-width: 700px;
}

.cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.portfolio .cards-grid-3 {
  align-items: start;
}

.caixa-branca .card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
}

.caixa-branca .card h3 {
  color: var(--preto);
  margin-bottom: 10px;
  font-size: 17px;
}

.caixa-branca .card p {
  color: #4a4a4a;
  font-size: 14px;
}

.caixa-branca .transicao-desejo {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
  text-align: center;
}

.caixa-branca .transicao-desejo h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--preto);
  max-width: 800px;
  margin: 0 auto 32px;
}

.caixa-branca .transicao-texto {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.caixa-branca .transicao-texto p {
  color: #4a4a4a;
  font-size: clamp(15px, 1.7vw, 17px);
  line-height: 1.7;
}

.caixa-branca .transicao-texto .destaque {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 24px) !important;
  color: var(--rosa) !important;
  text-align: center;
  margin: 8px 0;
}


/* BLOCO 4 - SERVICOS (MOSAICO) */
.servicos {
  background: var(--preto);
  position: relative;
  z-index: 2;
}

.servicos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 20px;
}

.servico-header {
  padding: 0 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-column: 1;
  grid-row: 1 / span 2;
}

.servico-header .rotulo {
  margin-bottom: 16px;
}

.servico-header h2 {
  margin-bottom: 20px;
  max-width: 100%;
}

.servico-header .subhead {
  color: rgba(245, 245, 245, 0.7);
}

.servico {
  background: var(--branco-gelo);
  color: var(--preto);
  padding: 32px;
  border-radius: var(--radius);
}

.servico h3 {
  color: var(--preto);
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.servico .icone {
  width: 24px;
  height: 24px;
  color: var(--rosa);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.servico .icone svg {
  width: 100%;
  height: 100%;
}

.servico p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.55;
}

.servico-campanhas .icone {
  color: #ffffff;
}

.servico-site {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.site-mockup {
  margin-top: auto;
  padding-top: 32px;
  padding-bottom: 20px;
  width: 100%;
  max-width: 340px;
  align-self: center;
}

.mockup-stack {
  position: relative;
  width: 100%;
}

.mockup-stack .mockup-desktop {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  transform-origin: center;
}

.mockup-stack .mockup-mobile {
  position: absolute;
  right: -4%;
  bottom: -14%;
  width: 30%;
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.18));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  transform-origin: bottom right;
}

.mockup-stack:hover .mockup-desktop {
  transform: scale(0.97);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.1));
}

.mockup-stack:hover .mockup-mobile {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.25));
}

.servico-pesquisa {
  grid-column: 1;
  grid-row: 3 / span 2;
}

.servico-campanhas {
  grid-column: 2;
  grid-row: 4 / span 3;
  background: var(--rosa);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
}

.servico-campanhas::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.servico-campanhas h3,
.servico-campanhas p {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.servico-campanhas h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.servico-campanhas p {
  font-size: 15px;
  line-height: 1.6;
}

.servico-relatorio {
  grid-column: 1;
  grid-row: 5 / span 2;
}

.servico-conteudo {
  grid-column: 1 / -1;
  grid-row: 7;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* BLOCO 4.5 - POR QUE A QGE */
/* BLOCO 4.6 - ESCOLHA SEU PONTO DE PARTIDA */
.pontos-partida {
  background: var(--preto);
}

.pontos-partida .rotulo {
  margin-bottom: 16px;
}

.pontos-partida h2 {
  max-width: 700px;
  margin-bottom: 20px;
}

.pontos-partida__intro {
  max-width: 700px;
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 48px;
}

.card-pacote {
  background: var(--branco-gelo);
  color: var(--preto);
  padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.card-pacote__nome {
  display: inline-block;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 12px;
}

.card-pacote__indicado {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--preto);
  margin-bottom: 12px;
  line-height: 1.35;
}

.card-pacote__desc {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-pacote .lista-check {
  margin-bottom: 24px;
}

.card-pacote .lista-check li {
  font-size: 14px;
  color: #333333;
}

.card-pacote__nota {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
  color: #4a4a4a;
  font-size: 13px;
  font-style: italic;
}

.pontos-partida__cta {
  text-align: center;
  margin-top: 48px;
}

.pontos-partida__cta p {
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: 20px;
}

.porque-qge {
  background: var(--preto);
}

/* Divisor Seta: convite pra continuar a leitura entre Serviços e Por que a QGE */
.divisor-seta-wrap {
  background: var(--preto);
  padding: 20px 0;
}

.divisor-seta {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.divisor-seta__ln {
  flex: 1;
  height: 1px;
  background: var(--cinza-linha);
}

.divisor-seta__circulo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--cinza-linha);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: rgba(245, 245, 245, 0.6);
  font-size: 13px;
  line-height: 1;
}

.porque-qge .rotulo {
  margin-bottom: 16px;
}

.porque-qge h2 {
  max-width: 760px;
  margin-bottom: 32px;
}

.porque-qge-texto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
  margin-bottom: 48px;
}

.porque-qge-texto p {
  color: rgba(245, 245, 245, 0.85);
}

.bonus-box {
  background: var(--grafite);
  border: 1px solid var(--cinza-linha);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  max-width: 760px;
}

.bonus-label {
  display: block;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.bonus-box .lista-check li {
  color: rgba(245, 245, 245, 0.9);
}

/* FAIXA MARQUEE (diferenciais) */
.marquee-faixa {
  background: var(--grafite);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--cinza-linha);
  border-bottom: 1px solid var(--cinza-linha);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  animation: marquee 45s linear infinite;
  padding-left: 44px;
  will-change: transform;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--branco-gelo);
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee-item svg {
  width: 15px;
  height: 15px;
  color: var(--rosa);
  flex-shrink: 0;
}

.marquee-sep {
  color: var(--rosa);
  font-size: 12px;
  opacity: 0.6;
  flex-shrink: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* BLOCO 5 - COMO FUNCIONA */
.como-funciona {
  background: var(--branco-gelo);
  color: var(--preto);
  text-align: center;
}

.como-funciona h2 {
  color: var(--preto);
  margin-bottom: 64px;
}

.timeline {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  position: relative;
  text-align: left;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 5px;
  width: 2px;
  background: rgba(17, 17, 20, 0.1);
  z-index: 0;
}

/* Timeline Sync Reveal: linha preenche em sincronia com o passo aparecendo (JS controla o tamanho real) */
.timeline-fill {
  position: absolute;
  top: 4px;
  left: 5px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--rosa), var(--azul));
  z-index: 0;
  pointer-events: none;
}

.passo {
  text-align: left;
  position: relative;
  z-index: 1;
  cursor: default;
  padding: 0 0 40px 28px;
}

.passo:last-child {
  padding-bottom: 0;
}

.como-funciona .passo {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.como-funciona .passo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.passo .numero {
  position: absolute;
  left: 0;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rosa);
  border: 3px solid var(--branco-gelo);
  box-shadow: 0 0 0 2px rgba(255, 63, 127, 0.35);
  transition: transform 0.4s ease;
}

.como-funciona .passo.is-visible .numero {
  transform: scale(1.3);
}

.passo-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rosa);
  font-weight: 700;
  margin-bottom: 6px;
}

.passo h3 {
  color: var(--preto);
  margin-bottom: 8px;
  font-size: 16px;
}

.passo h3 .fx-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}

.como-funciona .passo.is-visible h3 .fx-word {
  opacity: 1;
  transform: translateY(0);
}

.passo p {
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.5;
}

/* Desktop: timeline horizontal, mesmo estilo de ponto + linha */
@media (min-width: 900px) {
  .como-funciona .passo:hover {
    transform: scale(1.06);
  }

  .timeline {
    flex-direction: row;
    gap: 12px;
    text-align: center;
  }

  .timeline::before {
    top: 7px;
    bottom: auto;
    left: 8%;
    right: 8%;
    width: auto;
    height: 2px;
  }

  .timeline-fill {
    top: 7px;
    left: 8%;
    width: calc(var(--p, 0) * 1%);
    height: 2px;
    background: linear-gradient(90deg, var(--rosa), var(--azul));
  }

  .passo {
    flex: 1;
    text-align: center;
    padding: 30px 12px 0;
  }

  .passo .numero {
    left: 50%;
    top: 0;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
  }

  .como-funciona .passo.is-visible .numero {
    transform: translateX(-50%) scale(1.3);
  }
}

.como-funciona .btn-wrap {
  margin-top: 24px;
}

/* BLOCO 6 - PRA QUEM E */
.pra-quem {
  background: var(--branco-gelo);
  color: var(--preto);
  border-top: 1px solid #e8e8e8;
}

.pra-quem h2 {
  color: var(--preto);
  text-align: center;
  margin-bottom: 48px;
}

.colunas-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
  perspective: 900px;
}

.col-preto, .col-branco {
  padding: 40px 32px;
  border-radius: var(--radius);
  will-change: transform;
}

.col-preto {
  background: var(--preto);
  color: var(--branco-gelo);
}

.col-branco {
  background: #ffffff;
  color: var(--preto);
  border: 1px solid #eaeaea;
}

.col-titulo {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.col-branco .col-titulo { border-bottom-color: #eaeaea; }

.lista-check, .lista-x {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lista-check li, .lista-x li {
  padding-left: 32px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}

.lista-check li::before,
.lista-x li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.lista-check li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF3F7F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8.5 12.5l2.5 2.5 4.5-5'/%3E%3C/svg%3E");
}

.lista-x li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M9.5 9.5l5 5M14.5 9.5l-5 5'/%3E%3C/svg%3E");
}

.pra-quem .nota-rodape {
  text-align: center;
  color: #4a4a4a;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto;
}

/* BLOCO 7 - PORTFOLIO */
.portfolio {
  background: var(--preto);
}

.portfolio h2 {
  margin-bottom: 16px;
}

.portfolio .nota-honestidade {
  color: rgba(245, 245, 245, 0.75);
  max-width: 720px;
  margin-bottom: 48px;
  font-size: 15px;
  line-height: 1.6;
}

.portfolio-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 0;
  padding: 0;
}

.portfolio-tags li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--azul);
  background: rgba(168, 205, 228, 0.08);
  border: 1px solid rgba(168, 205, 228, 0.45);
  border-radius: 999px;
  padding: 6px 14px;
}

.card-portfolio {
  background: var(--grafite);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-portfolio .mockup {
  position: relative;
  width: 100%;
  display: block;
  padding: 0;
  border: none;
  cursor: zoom-in;
  background: var(--grafite);
}

.card-portfolio .mockup__tela {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  overflow: hidden;
}

.card-portfolio .mockup__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: opacity 0.3s ease, background 0.3s ease;
  pointer-events: none;
}

.card-portfolio .mockup:hover .mockup__overlay,
.card-portfolio .mockup:focus-visible .mockup__overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
}

.card-portfolio .mockup__overlay span {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(17, 17, 20, 0.55);
  padding: 9px 18px;
  border-radius: 999px;
}

.card-portfolio .mockup__tela img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.card-portfolio .mockup:hover .mockup__tela img,
.card-portfolio .mockup:focus-visible .mockup__tela img {
  transform: scale(1.04);
}

.card-portfolio .mockup--estatico {
  cursor: default;
}

.card-portfolio .mockup--estatico:hover .mockup__tela img,
.card-portfolio .mockup--estatico:focus-visible .mockup__tela img {
  transform: none;
}

/* Mockup de celular flutuando sobre o print desktop */
.card-portfolio .mockup__celular {
  position: absolute;
  right: 12px;
  bottom: -130px;
  width: 104px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #0a0a0b;
  background: #0a0a0b;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
  z-index: 1;
}

.card-portfolio .mockup:hover .mockup__celular,
.card-portfolio .mockup:focus-visible .mockup__celular {
  transform: translateY(-6px);
}

.card-portfolio .mockup__celular-notch {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
}

.card-portfolio .mockup__celular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.card-portfolio .mockup--placeholder {
  cursor: default;
  background: linear-gradient(135deg, #2a2b2d 0%, #1a1b1d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 245, 0.3);
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.card-portfolio .info {
  padding: 24px 132px 24px 24px;
}

.card-portfolio h3 {
  color: var(--branco-gelo);
  margin-bottom: 8px;
  font-size: 15px;
}

.card-portfolio p {
  color: rgba(245, 245, 245, 0.7);
  font-size: 12px;
  margin-bottom: 16px;
}

/* LIGHTBOX (portfolio) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 10, 11, 0.92);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 64px 20px;
}

.lightbox[hidden] { display: none; }

.lightbox__fechar {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cinza-linha);
  background: var(--grafite);
  color: var(--branco-gelo);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
}

.lightbox__conteudo {
  max-width: 700px;
  width: 100%;
  margin: 0;
}

.lightbox__conteudo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox__conteudo figcaption {
  text-align: center;
  color: rgba(245, 245, 245, 0.7);
  font-size: 13px;
  margin-top: 16px;
}

/* BLOCO 8 - FAQ */
.faq {
  background: var(--branco-gelo);
  color: var(--preto);
}

.faq h2 {
  color: var(--preto);
  text-align: center;
  margin-bottom: 48px;
}

.faq-lista {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq details {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid #eaeaea;
  overflow: hidden;
}

.faq summary {
  padding: 24px 28px;
  cursor: pointer;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--preto);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}

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

.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--rosa);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq summary:hover { background: #fafafa; }

.faq details p {
  padding: 0 28px 24px;
  color: #4a4a4a;
  font-size: 15px;
  line-height: 1.6;
}

/* BLOCO 9 - CTA FINAL */
.cta-final {
  background: var(--preto);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255, 63, 127, 0.12) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.cta-final .container { position: relative; z-index: 1; }

.cta-final h2 {
  max-width: 800px;
  margin: 0 auto 24px;
}

.cta-final .texto-final {
  max-width: 700px;
  margin: 0 auto 40px;
  color: rgba(245, 245, 245, 0.85);
  font-size: clamp(15px, 1.8vw, 17px);
}

/* CTA final: texto + mockup de conversa no WhatsApp */
.cta-final-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.cta-final-texto {
  width: 100%;
}

.chat-mockup {
  display: flex;
  justify-content: center;
  padding: 0 36px 26px;
}

.chat-mockup__stage {
  position: relative;
  width: 270px;
}

.chat-mockup__phone {
  width: 100%;
  background: #0a0a0b;
  padding: 10px;
  border: 2px solid var(--cinza-linha);
  border-radius: 40px 40px 0 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.chat-mockup__screen {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.chat-mockup__notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 5px;
  background: var(--cinza-linha);
  border-radius: 999px;
}

.chat-mockup__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 16px 14px;
  background: var(--grafite);
  border-bottom: 1px solid var(--cinza-linha);
}

.chat-mockup__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.chat-mockup__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-mockup__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--branco-gelo);
}

.chat-mockup__status {
  font-size: 11px;
  color: rgba(245, 245, 245, 0.5);
}

.chat-mockup__body {
  padding: 16px 14px 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #efe6d8;
  min-height: 260px;
}

.chat-mockup__msg {
  max-width: 82%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 10.5px;
  line-height: 1.45;
  text-align: left;
}

.chat-mockup__msg--in {
  align-self: flex-start;
  background: #ffffff;
  color: #2a2724;
  border-bottom-left-radius: 4px;
}

.chat-mockup__msg--out {
  align-self: flex-end;
  background: var(--azul);
  color: var(--preto);
  border-bottom-right-radius: 4px;
}

.chat-mockup__msg--typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 14px;
}

.chat-mockup__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--preto);
  opacity: 0.3;
  animation: chat-typing-blink 1.2s ease-in-out infinite;
}

.chat-mockup__dot:nth-child(2) { animation-delay: 0.2s; }
.chat-mockup__dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes chat-typing-blink {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}

.chat-mockup__input-bar {
  position: absolute;
  left: -24px;
  right: -24px;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px 12px 22px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.chat-mockup__input {
  flex: 1;
  background: transparent;
  padding: 4px 0;
}

.chat-mockup__input span {
  font-size: 12px;
  color: rgba(17, 17, 20, 0.4);
  text-align: left;
}

.chat-mockup__mic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-mockup__mic svg {
  width: 15px;
  height: 15px;
  fill: var(--preto);
}

@media (min-width: 900px) {
  .cta-final-grid {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 64px;
  }

  .cta-final-texto {
    flex: 1.1;
  }

  .cta-final h2,
  .cta-final .texto-final {
    margin-left: 0;
    margin-right: 0;
  }

  .chat-mockup {
    flex: 1;
    justify-content: flex-end;
  }
}

/* RODAPE */
footer {
  background: #0a0a0b;
  padding: 48px 0 24px;
  border-top: 1px solid var(--cinza-linha);
  color: rgba(245, 245, 245, 0.7);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-grid h3 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--branco-gelo);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-grid p, .footer-grid a {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 245, 245, 0.7);
}

.footer-grid a { display: block; }
.footer-grid a:hover { color: var(--rosa); }

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--cinza-linha);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 245, 245, 0.7);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: var(--rosa);
  border-color: var(--rosa);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.copy-linha {
  border-top: 1px solid var(--cinza-linha);
  padding-top: 24px;
  text-align: center;
  color: rgba(245, 245, 245, 0.6);
  font-size: 12px;
}

/* WHATSAPP FIXO (canto da página, todas as telas) */
.wa-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.2s ease;
}

.wa-fixed:hover { transform: scale(1.1); }

.wa-fixed svg { width: 30px; height: 30px; fill: #ffffff; }

@media (min-width: 900px) {
  .identificacao .header-flex {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
  }
}

@media (max-width: 700px) {
  .servicos-grid {
    grid-template-columns: 1fr;
  }
  .servico-header,
  .servico-site,
  .servico-pesquisa,
  .servico-campanhas,
  .servico-relatorio,
  .servico-conteudo {
    grid-column: 1;
    grid-row: auto;
  }
  .servico-pesquisa { order: 1; }
  .servico-site { order: 2; }
  .servico-campanhas { order: 3; }
  .servico-relatorio { order: 4; }
  .servico-conteudo { order: 5; }
  .cta-final h2 { padding: 0 12px; }

  .hero,
  .hero-inner {
    min-height: 70vh;
  }

  .hero-imagem img {
    object-position: 80% bottom;
  }

  .identificacao {
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
    padding-bottom: 0;
    margin-top: -40px;
  }
  .identificacao::after {
    display: none;
  }
  .identificacao .container {
    padding-left: 0;
    padding-right: 0;
  }
  .caixa-branca {
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    padding-top: 80px;
  }
  .caixa-branca::before {
    display: none;
  }
  .caixa-branca-glow {
    display: block;
    height: 70px;
    margin: 0 12% -50px;
    border-radius: 24px;
    background: radial-gradient(ellipse at center, rgba(255, 63, 127, 0.35) 0%, transparent 70%);
    filter: blur(36px);
    animation: pulse-halo-top 8s ease-in-out infinite;
  }
}

@keyframes pulse-halo-top {
  0%, 100% { opacity: 0.75; }
  50% { opacity: 1; }
}

@media (max-width: 700px) and (prefers-reduced-motion: reduce) {
  .caixa-branca-glow { animation: none; }
}

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

::selection {
  background: #000000;
  color: var(--azul);
}

/* ============= UI/UX ELABORADO ============= */

/* GRAIN OVERLAY (textura sutil no site inteiro) */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 200;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* HERO: dot pattern sutil + aurora animada */
.hero {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero::before {
  animation: aurora-drift-1 22s ease-in-out infinite alternate;
}

.hero::after {
  animation: aurora-drift-2 28s ease-in-out infinite alternate;
}

@keyframes aurora-drift-1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  100% { transform: translate(-12%, 8%) scale(1.15); opacity: 1; }
}

@keyframes aurora-drift-2 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  100% { transform: translate(10%, -8%) scale(1.2); opacity: 0.85; }
}

/* BOTÕES CTA elaborados: glow, fill de baixo, ícone WA */
.btn-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}

.btn-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent);
  transition: height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.btn-cta:hover::before {
  height: 100%;
}

/* Efeito ripple (só no CTA do hero): halo que expande e desaparece no hover */
.btn-cta--ripple {
  overflow: visible;
}

.btn-cta--ripple::before {
  border-radius: 999px;
}

.btn-cta--ripple::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--rosa);
  z-index: -2;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn-cta--ripple:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

/* Efeito "desenhar borda" + blur no fundo (demais CTAs) */
.btn-cta--draw {
  overflow: visible;
  border: 1px solid rgba(255, 154, 190, 0.55);
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover inverte a cor conforme o fundo da seção */
.como-funciona .btn-cta--draw:hover {
  background: var(--preto);
  color: var(--rosa);
}

.cta-final .btn-cta--draw:hover {
  background: #ffffff;
  color: var(--rosa);
}

.btn-cta--draw::before {
  display: none;
}

.btn-cta--draw:hover {
  transform: none !important;
}

.btn-cta .wa-svg-icon {
  width: 20px;
  height: 20px;
  opacity: 1;
  max-width: 24px;
  overflow: hidden;
  transition: opacity 0.35s ease, max-width 0.35s ease;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 50px rgba(255, 63, 127, 0.45),
    0 0 40px rgba(255, 63, 127, 0.25);
}

.btn-cta:active {
  transform: translateY(-1px);
}

/* CARDS com hover simples (expansão sutil) */
.servico,
.caixa-branca .card,
.card-portfolio,
.passo {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.servico:hover,
.card-portfolio:hover {
  transform: scale(1.035);
  box-shadow:
    0 0 0 1px rgba(255, 63, 127, 0.45),
    0 20px 50px rgba(255, 63, 127, 0.18);
}

.caixa-branca .card:hover {
  transform: scale(1.025);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

/* REVEAL ON SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* GLOW SPOTS pulsando em seções escuras */
.servicos,
.porque-qge,
.portfolio,
.cta-final {
  position: relative;
  overflow: hidden;
}

.servicos::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 63, 127, 0.09) 0%, transparent 60%);
  filter: blur(80px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 35%, #000 100%);
  pointer-events: none;
  animation: pulse-glow 11s ease-in-out infinite;
  z-index: 0;
}

.servicos::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 240px);
  mask-image: linear-gradient(to bottom, transparent 0, #000 240px);
  pointer-events: none;
  z-index: 0;
}

.portfolio::before {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 205, 228, 0.08) 0%, transparent 60%);
  filter: blur(70px);
  pointer-events: none;
  animation: pulse-glow 13s ease-in-out infinite;
  z-index: 0;
}

.servicos .container,
.porque-qge .container,
.portfolio .container,
.cta-final .container {
  position: relative;
  z-index: 1;
}

/* Dot pattern sutil nas seções escuras sem glow proprio */
.porque-qge::after,
.portfolio::after,
.cta-final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.18); }
}

/* Pausa animacoes decorativas fora da tela (performance) */
.fx-paused,
.fx-paused::before,
.fx-paused::after {
  animation-play-state: paused !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after,
  .servicos::before, .portfolio::before,
  .reveal, .reveal.revealed,
  .btn-cta::before, .btn-cta .wa-svg-icon, .btn-cta--ripple::after,
  .hero h1 .fx-word, .passo h3 .fx-word,
  .como-funciona .passo, .timeline-fill, .passo .numero,
  .col-preto, .col-branco, .fx-gradient, .chat-mockup__dot {
    animation: none !important;
    transition: none !important;
  }
  .chat-mockup__dot {
    opacity: 0.6;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero h1 .fx-word, .passo h3 .fx-word, .como-funciona .passo {
    opacity: 1;
    transform: none;
  }
  .col-preto, .col-branco {
    transform: none !important;
  }
}
