/* QGE Negócios Inteligentes: site institucional
   Base visual herdada do ads-psi. Componentes da biblioteca-efeitos-qge
   (effects.css) adaptados só por variável, sem editar o arquivo deles. */

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

  --fx-accent: #FF3F7F;
  --fx-accent-soft: #A8CDE4;
  --fx-header-bg: #111114;
}

@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: 'Poppins';
  src: url('../fonts/poppins-800.woff2') format('woff2');
  font-weight: 800;
  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; scroll-padding-top: 96px; overflow-x: clip; }

body {
  background: var(--preto);
  color: var(--branco-gelo);
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* clip e não hidden: hidden transforma o body em rolagem e mata o sticky */
  overflow-x: clip;
}

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

/* Títulos principais em Poppins ExtraBold com tracking -60 (-0.06em) */
h1, h2 {
  font-family: 'Poppins', 'Satoshi', Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.06em;
}

h1 { font-size: clamp(32px, 5.6vw, 58px); }
h2 { font-size: clamp(28px, 4.6vw, 46px); }
h3 { font-size: clamp(18px, 2.2vw, 21px); font-weight: 700; line-height: 1.25; }

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

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

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

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

section { padding: clamp(72px, 10vw, 120px) 0; position: relative; }

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

.intro {
  color: rgba(245, 245, 245, 0.72);
  max-width: 620px;
  margin-top: 18px;
}

.destaque-rosa { color: var(--rosa); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 1000;
  background: var(--rosa);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }

:focus-visible { outline: 2px solid var(--rosa); outline-offset: 3px; }

/* ================= BOTÃO CTA (WhatsApp) ================= */

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  background: var(--rosa);
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px var(--sombra);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.btn-cta:hover {
  background: #ff5890;
  box-shadow: 0 12px 40px rgba(255, 63, 127, 0.4);
}

.btn-cta svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

/* seta dos botões que levam ao formulário: desenhada por contorno, desce no hover */
.btn-cta .btn-cta__seta {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn-cta:hover .btn-cta__seta { transform: translateY(3px); }

/* botão do hero: anel pulsando parado, brilho que atravessa no hover */
.btn-cta--hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: anel-cta 2.8s ease-out infinite;
}

.btn-cta--hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  z-index: -1;
  transition: left 0.7s ease;
}

.btn-cta--hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(255, 63, 127, 0.5);
  animation: none;
}

.btn-cta--hero:hover::after { left: 120%; }

.btn-cta--hero:hover .btn-cta__seta { transform: translateY(3px); }

@keyframes anel-cta {
  0% { box-shadow: 0 8px 30px var(--sombra), 0 0 0 0 rgba(255, 63, 127, 0.45); }
  70%, 100% { box-shadow: 0 8px 30px var(--sombra), 0 0 0 14px rgba(255, 63, 127, 0); }
}

@keyframes balanca {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-14deg); }
  60% { transform: rotate(10deg); }
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta--hero, .btn-cta--hero:hover svg { animation: none; }
  .btn-cta--hero::after { display: none; }
}

/* ================= CABEÇALHO (H2 da biblioteca) ================= */

.fx-header { position: fixed; top: 0; left: 0; right: 0; }

.fx-header__logo img { width: 54px; height: auto; }

/* enquanto o hero está na tela o menu fica guardado; o logo aparece no próprio hero */
.fx-header {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.fx-header.menu-escondido {
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
}

.hero__logo {
  display: block;
  width: 200px;
  height: auto;
  margin-bottom: 26px;
}

@media (min-width: 900px) {
  .hero__logo { width: 250px; margin-bottom: 32px; }
}

/* só o computador tem o movimento da foto do fundo */
@media (min-width: 1100px) {
  .hero__imagem { will-change: translate; }
}

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

/* cabeçalho inteiro em formato de cápsula: logo, links e botão numa pílula só */
.fx-header,
.fx-header--fade.is-scrolled {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  padding: 12px 16px 0;
}

.fx-header__inner {
  padding: 7px 7px 7px 22px;
  border-radius: 999px;
  background: #1c1d21;
  border: 1px solid var(--cinza-linha);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.fx-header--fade.is-scrolled .fx-header__inner {
  background: rgba(28, 29, 33, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* os links usam o formato da Cápsula de Vidro (M4 da biblioteca), sem o vidro
   e sem contorno próprio, porque o contorno agora é o do cabeçalho */
.fx-header .fx-menu-capsula {
  --fx-cap-vidro: transparent;
  --fx-cap-borda: transparent;
  --fx-cap-pilula: var(--branco-gelo);
  --fx-cap-ink: rgba(245, 245, 245, 0.8);
  --fx-cap-ink-ativo: var(--preto);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  box-shadow: none;
}

.fx-header__actions .btn-cta { box-shadow: none; }

.fx-header .fx-menu-capsula__item { padding: 8px 16px; font-size: 14px; }

/* no topo da página nenhuma seção está ativa: a pílula espera escondida */
.fx-menu-capsula.sem-ativo .fx-menu-capsula__pilula { opacity: 0; }

.fx-header__actions .btn-cta {
  padding: 11px 20px;
  font-size: 12px;
}

@media (max-width: 520px) {
  .fx-header__actions .btn-cta { display: none; }
}

/* ================= HERO ================= */

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 72px 0 140px;
  overflow: hidden;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero__imagem {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.5;
}

.hero__imagem::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(17, 17, 20, 0.35) 0%, transparent 30%, transparent 55%, var(--preto) 100%),
    linear-gradient(to right, var(--preto) 15%, rgba(17, 17, 20, 0.4) 65%, transparent 100%);
}

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

.hero__texto { max-width: 760px; }

.hero h1 { margin-bottom: 24px; }

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(245, 245, 245, 0.82);
  max-width: 580px;
  margin-bottom: 36px;
}

.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: gradiente-move 8s ease-in-out infinite alternate;
  /* o degradê só pinta dentro da caixa da palavra. Com o tracking negativo
     as letras passam da caixa e eram cortadas: a folga aumenta a caixa e a
     margem negativa devolve o espaço, sem mudar o desenho do título */
  padding: 0 0.1em 0.12em;
  margin: 0 -0.1em -0.12em;
}

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

/* ================= HERO: navegador "no ar" + novo contato ================= */

.hero__grid { display: grid; gap: 28px; align-items: center; }

/* sem isso, a largura dos aparelhos empurra a coluna do texto pra fora da tela */
.hero__grid > * { min-width: 0; }

/* celular e tablet: composição compacta abaixo do botão */
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 8px auto 0;
}

.hero__visual .celular-ads {
  scale: 0.66;
  transform-origin: 100% 100%;
  right: -8px;
  bottom: 6px;
}

/* no celular o navegador sai e entram dois aparelhos: Instagram e Google */
.hero__visual .navegador { display: none; }

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 16px 0 40px;
  min-height: 360px;
}

.hero__visual .celular-insta,
.hero__visual .celular-ads {
  position: relative;
  right: auto;
  bottom: auto;
  scale: 0.8;
}

.hero__visual .celular-insta { transform-origin: 100% 100%; rotate: -5deg; margin-right: -60px; z-index: 1; }
.hero__visual .celular-ads { transform-origin: 0 100%; margin-bottom: 26px; z-index: 2; }

/* celular: os aparelhos acompanham a rolagem com animação ligada à rolagem.
   Roda fora do JavaScript, direto na placa de vídeo, então não trava.
   A foto do fundo fica parada. No computador quem move é o script.js */
@supports (animation-timeline: scroll()) {
  .hero__visual .celular-insta,
  .hero__visual .celular-ads {
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll(root);
    animation-range: 0 100vh;
  }
  .hero__visual .celular-insta { animation-name: insta-desce; }
  .hero__visual .celular-ads { animation-name: ads-sobe; }
}

@keyframes insta-desce { to { translate: 0 6vh; } }

@keyframes ads-sobe { to { translate: 0 -9vh; rotate: 3deg; } }

@media (min-width: 1100px) {
  .hero__visual .celular-insta,
  .hero__visual .celular-ads { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual .celular-insta,
  .hero__visual .celular-ads { animation: none; }
}

/* anúncio do Instagram */
.celular-insta {
  width: 196px;
  padding: 7px;
  border-radius: 30px;
  background: var(--preto);
  border: 1px solid #2f3033;
  box-shadow: -6px 6px 0 var(--rosa), 0 28px 60px rgba(0, 0, 0, 0.55);
}

.celular-insta__tela {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  color: #262626;
  padding: 24px 0 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* bolinhas de stories no topo, com o anel em azul claro */
.insta__stories {
  display: flex;
  gap: 7px;
  padding: 2px 10px 10px;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}

.insta__stories i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #d9dbe0;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--azul);
  margin: 4px 0 0 4px;
}

.insta__stories i:nth-child(2) { background: #c4c7ce; }
.insta__stories i:nth-child(3) { background: #e3e4e8; }
.insta__stories i:nth-child(4) { background: #cfd2d8; }

.insta__perfil {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  font-size: 9.5px;
}

.insta__perfil strong { display: block; font-size: 10px; }

.insta__perfil small { color: #737373; font-size: 8.5px; }

.insta__avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rosa);
  box-shadow: 0 0 0 1.5px #fff, 0 0 0 3px var(--azul);
}

.insta__mais { margin-left: auto; color: #262626; font-size: 9px; }

.insta__foto {
  position: relative;
  height: 180px;
  padding: 14px 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 63, 127, 0.55), transparent 55%),
    linear-gradient(160deg, #2a2b2d, var(--preto));
  color: #fff;
}

.insta__foto-selo {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--rosa);
}

.insta__foto p {
  margin-top: 8px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.15;
  max-width: 130px;
}

/* um armário planejado desenhado em blocos */
.insta__movel {
  position: absolute;
  right: 14px;
  bottom: 0;
  display: flex;
  gap: 3px;
  padding: 4px 4px 0;
  border-radius: 6px 6px 0 0;
  background: #c79a6b;
}

.insta__movel b {
  display: block;
  width: 26px;
  height: 58px;
  border-radius: 3px 3px 0 0;
  background: #e3c19a;
  position: relative;
}

.insta__movel b::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 26px;
  width: 2px;
  height: 9px;
  border-radius: 2px;
  background: #8a6440;
}

.insta__movel b:nth-child(2) { height: 72px; }

.insta__cta {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #3f63f5;
}

.insta__icones { display: flex; gap: 10px; padding: 8px 12px 4px; }

.insta__icones svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: #262626;
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.insta__icones svg:first-child { fill: #ed4956; stroke: #ed4956; }

.insta__legenda { padding: 4px 12px 0; }

.insta__legenda i { display: block; height: 5px; width: 90%; margin-bottom: 5px; border-radius: 3px; background: #efefef; }

.insta__legenda i.curta { width: 60%; }

.hero__visual .navegador__pagina { padding: 20px 16px 18px; }
.hero__visual .navegador__cards i { height: 38px; }
.hero__visual .navegador__botao { width: 100px; height: 24px; margin-top: 14px; }

@media (min-width: 640px) and (max-width: 1099px) {
  .hero__visual { max-width: 520px; }
}

@media (min-width: 1100px) {
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
  .hero__texto { max-width: none; }
  .hero h1 { font-size: clamp(38px, 3.8vw, 52px); }

  .hero__visual {
    max-width: none;
    margin: 0;
    padding: 40px 60px 120px 0;
  }

  .hero__visual { display: block; min-height: 0; }
  .hero__visual .navegador { display: block; }
  .hero__visual .celular-insta { display: none; }
  .hero__visual .celular-ads { position: absolute; scale: 1; right: -34px; bottom: -10px; margin: 0; }
  .hero__visual .navegador__pagina { padding: 28px 22px 24px; }
  .hero__visual .navegador__cards i { height: 54px; }
  .hero__visual .navegador__botao { width: 130px; height: 30px; margin-top: 20px; }
}

.navegador {
  position: relative;
  background: var(--branco-gelo);
  border-radius: 16px;
  overflow: visible;
  box-shadow:
    8px 8px 0 rgba(255, 63, 127, 0.9),
    0 30px 80px rgba(0, 0, 0, 0.55);
  transform: rotate(-2deg);
}

.navegador__barra {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #e6e6ea;
  border-radius: 16px 16px 0 0;
}

.navegador__barra > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9c9cf;
}

.navegador__url {
  flex: 1;
  margin-left: 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  color: #6b6c72;
}

.navegador__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--preto);
}

.navegador__menu i {
  display: block;
  width: 26px;
  height: 5px;
  border-radius: 3px;
  background: rgba(245, 245, 245, 0.35);
}

.navegador__menu .navegador__logo {
  width: 42px;
  height: 9px;
  background: var(--rosa);
  margin-right: auto;
}

.navegador__pagina {
  padding: 28px 22px 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 205, 228, 0.35), transparent 55%),
    var(--branco-gelo);
  border-radius: 0 0 16px 16px;
}

.linha {
  display: block;
  height: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.linha--titulo { width: 82%; height: 16px; background: var(--preto); }
.linha--curta { width: 55%; }
.linha--texto { width: 90%; height: 7px; background: #b9bac0; margin-top: 16px; }
.linha--media { width: 64%; margin-top: 0; }

.navegador__botao {
  display: block;
  width: 130px;
  height: 30px;
  margin-top: 20px;
  border-radius: 999px;
  background: var(--rosa);
}

.navegador__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.navegador__cards i {
  display: block;
  height: 54px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e3e3e6;
}

.selo-no-ar {
  position: absolute;
  top: -16px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--preto);
  color: var(--branco-gelo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.selo-no-ar b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulso-verde 2s ease-out infinite;
}

@keyframes pulso-verde {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* celular com anúncio do Google, flutuando sobre o navegador */
.celular-ads {
  position: absolute;
  right: -34px;
  bottom: -10px;
  width: 196px;
  padding: 7px;
  border-radius: 30px;
  background: var(--preto);
  border: 1px solid #2f3033;
  box-shadow: 6px 6px 0 var(--rosa), 0 28px 60px rgba(0, 0, 0, 0.55);
  z-index: 2;
}

.celular-ads__tela {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  color: #202124;
  padding: 26px 12px 14px;
  font-family: Arial, Helvetica, sans-serif;
}

.celular-ads__notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 54px;
  height: 12px;
  margin-left: -27px;
  border-radius: 999px;
  background: var(--preto);
}

.busca__logo {
  display: block;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.busca__logo b:nth-child(1), .busca__logo b:nth-child(4) { color: #4285f4; }
.busca__logo b:nth-child(2), .busca__logo b:nth-child(6) { color: #ea4335; }
.busca__logo b:nth-child(3) { color: #fbbc05; }
.busca__logo b:nth-child(5) { color: #34a853; }

.busca__campo {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid #dfe1e5;
  box-shadow: 0 1px 4px rgba(32, 33, 36, 0.12);
  font-size: 9.5px;
  color: #3c4043;
  white-space: nowrap;
  overflow: hidden;
}

.busca__campo svg {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  fill: none;
  stroke: #9aa0a6;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.anuncio {
  position: relative;
  margin-top: 12px;
  padding: 10px;
  border-radius: 12px;
  background: #fff5f8;
  border: 1px solid rgba(255, 63, 127, 0.35);
}

.anuncio__patrocinado { display: block; font-size: 9px; font-weight: 700; color: #202124; margin-bottom: 5px; }

.anuncio__site { display: flex; align-items: center; gap: 5px; font-size: 9px; color: #4d5156; }

.anuncio__site i { width: 13px; height: 13px; border-radius: 50%; background: var(--rosa); }

.anuncio__titulo { margin: 5px 0 4px; font-size: 11.5px; line-height: 1.3; color: #1a0dab; }

.anuncio__texto { font-size: 9px; line-height: 1.45; color: #4d5156; }

.anuncio__links { display: flex; gap: 5px; margin-top: 7px; }

.anuncio__links span {
  font-size: 8.5px;
  color: #1a0dab;
  padding: 3px 7px;
  border-radius: 999px;
  border: 1px solid #dadce0;
  background: #fff;
}

/* mãozinha clicando no botão de orçamento */
.anuncio__mao {
  position: absolute;
  right: 6px;
  bottom: -14px;
  width: 30px;
  height: 30px;
  fill: #fff;
  stroke: var(--preto);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.25));
}

.anuncio__mao .anuncio__mao-clique { fill: none; stroke: var(--rosa); stroke-width: 1.6; }

/* a mão chega, aperta o botão e os risquinhos acendem no clique */
.anuncio__mao {
  transform-origin: 30% 20%;
  animation: mao-clica 2.6s ease-in-out infinite;
}

.anuncio__mao .anuncio__mao-clique { animation: mao-risquinhos 2.6s ease-out infinite; }

@keyframes mao-clica {
  0%, 100% { transform: translate(8px, 10px) scale(1); }
  35% { transform: translate(0, 0) scale(1); }
  45% { transform: translate(0, 1px) scale(0.86); }
  58% { transform: translate(0, 0) scale(1); }
  80% { transform: translate(8px, 10px) scale(1); }
}

@keyframes mao-risquinhos {
  0%, 42% { opacity: 0; }
  48%, 62% { opacity: 1; }
  75%, 100% { opacity: 0; }
}

.resultado { margin-top: 12px; }

.resultado i {
  display: block;
  height: 5px;
  width: 92%;
  margin-bottom: 5px;
  border-radius: 3px;
  background: #e8eaed;
}

.resultado i:first-child { width: 60%; height: 7px; background: #c6d4f7; }

.resultado i.curta { width: 70%; }

/* ================= POR QUE: celular com conversa ================= */

.celular-cena {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 24px 30px;
}

.celular {
  width: 290px;
  padding: 11px;
  border-radius: 46px;
  background: var(--preto);
  box-shadow: 0 30px 70px rgba(17, 17, 20, 0.28);
}

.celular__tela {
  border-radius: 36px;
  overflow: hidden;
  background: #f1ece6;
}

.celular__status {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 22px 8px;
  background: var(--preto);
  color: var(--branco-gelo);
  font-size: 12px;
  font-weight: 700;
}

.celular__notch {
  position: absolute;
  left: 50%;
  top: 0;
  width: 96px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #000;
}

.celular__contato {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 14px;
  background: var(--preto);
  color: var(--branco-gelo);
}

.celular__contato strong { display: block; font-size: 15px; }

.celular__contato small { font-size: 12px; color: rgba(245, 245, 245, 0.6); }

.celular__avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rosa);
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
}

.celular__avatar svg { width: 20px; height: 20px; fill: #fff; }

.celular__avatar b {
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid var(--preto);
}

.celular__conversa {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 12px;
  min-height: 250px;
}

.bolha {
  max-width: 82%;
  padding: 9px 12px 7px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--preto);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.bolha small {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #8b8c92;
  margin-top: 2px;
}

.bolha--entra { align-self: flex-start; background: #fff; border-top-left-radius: 4px; }

.bolha--sai { align-self: flex-end; background: #ffd6e4; border-top-right-radius: 4px; }

.bolha--digitando { display: flex; gap: 4px; padding: 12px 14px; }

.bolha--digitando i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a9aab0;
  animation: digitando 1.2s ease-in-out infinite;
}

.bolha--digitando i:nth-child(2) { animation-delay: 0.15s; }
.bolha--digitando i:nth-child(3) { animation-delay: 0.3s; }

@keyframes digitando {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.celular__campo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 16px;
}

.celular__campo span {
  flex: 1;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  color: #9a9ba1;
}

.celular__campo i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rosa);
}

.selo-resposta {
  position: absolute;
  bottom: 120px;
  left: 50%;
  margin-left: -200px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--preto);
  color: var(--branco-gelo);
  font-size: 13px;
  font-weight: 600;
  box-shadow: 4px 4px 0 var(--rosa), 0 16px 40px rgba(17, 17, 20, 0.3);
}

.selo-resposta b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 11px;
}

@media (max-width: 520px) {
  .selo-resposta { left: 12px; margin-left: 0; bottom: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  .selo-no-ar b, .bolha--digitando i, .anuncio__mao, .anuncio__mao .anuncio__mao-clique { animation: none; }
}

/* ================= O PROBLEMA (caixa branca sobre o hero) ================= */

.problema {
  padding-top: 0;
  margin-top: -90px;
  z-index: 2;
}

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

.caixa-branca .rotulo { color: var(--rosa-fundo); }

.caixa-branca .intro { color: #45464a; }

.problema__topo { display: grid; gap: 8px; }

.dores {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.dor {
  position: relative;
  border: 1px solid #e3e3e6;
  border-radius: var(--radius);
  padding: 26px 24px 26px 28px;
  background: #fff;
  overflow: hidden;
}

.dor::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--rosa);
}

.dor h3 { margin-bottom: 8px; }

.dor p { color: #45464a; font-size: 15px; }

.problema__fecho {
  margin-top: 36px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 24px);
  line-height: 1.35;
  max-width: 760px;
}

.destaque-rosa-escuro { color: var(--rosa-fundo); }

@media (min-width: 760px) {
  .dores { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (min-width: 960px) {
  .problema__topo { grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: end; }
  .problema__topo .intro { margin-top: 0; }
}

/* ================= MÉTODO ESCALADA QGE ================= */

.escalada { overflow: hidden; }

.escalada__topo { max-width: 760px; margin-bottom: 56px; }

.degraus {
  list-style: none;
  display: grid;
  gap: 14px;
}

/* celular: cartões alinhados, e a mini-escada de cada um mostra em que degrau a pessoa está */
.degrau {
  position: relative;
  background: var(--grafite);
  border: 1px solid var(--cinza-linha);
  border-radius: var(--radius);
  padding: 22px 22px 24px 26px;
}

.degrau::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--cinza-linha);
  transition: background 0.6s ease;
}

.degrau.is-visible::before { background: linear-gradient(to bottom, var(--rosa), var(--azul)); }

.degrau__num {
  display: block;
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--rosa);
  margin-bottom: 8px;
}

.degrau__cabeca {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.degrau__cabeca .degrau__num { margin-bottom: 0; margin-right: 12px; }

.degrau__mini {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-right: auto;
}

.degrau__mini i {
  display: block;
  width: 7px;
  border-radius: 2px;
  background: var(--cinza-linha);
}

.degrau__mini i:nth-child(1) { height: 20%; }
.degrau__mini i:nth-child(2) { height: 40%; }
.degrau__mini i:nth-child(3) { height: 60%; }
.degrau__mini i:nth-child(4) { height: 80%; }
.degrau__mini i:nth-child(5) { height: 100%; }

/* acende os degraus já subidos e destaca o atual */
.degrau[style*="--n:1"] .degrau__mini i:nth-child(-n+1),
.degrau[style*="--n:2"] .degrau__mini i:nth-child(-n+2),
.degrau[style*="--n:3"] .degrau__mini i:nth-child(-n+3),
.degrau[style*="--n:4"] .degrau__mini i:nth-child(-n+4),
.degrau[style*="--n:5"] .degrau__mini i:nth-child(-n+5) { background: rgba(255, 63, 127, 0.4); }

.degrau[style*="--n:1"] .degrau__mini i:nth-child(1),
.degrau[style*="--n:2"] .degrau__mini i:nth-child(2),
.degrau[style*="--n:3"] .degrau__mini i:nth-child(3),
.degrau[style*="--n:4"] .degrau__mini i:nth-child(4),
.degrau[style*="--n:5"] .degrau__mini i:nth-child(5) {
  background: var(--rosa);
  box-shadow: 0 0 10px rgba(255, 63, 127, 0.6);
}

.degrau__icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(255, 63, 127, 0.14);
  border: 1px solid rgba(255, 63, 127, 0.3);
  color: var(--rosa);
  transition: transform 0.35s ease, background 0.35s ease;
}

.degrau__icone svg,
.degrau__marca {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.degrau__icone svg { width: 20px; height: 20px; }

.degrau:hover .degrau__icone { transform: translateY(-3px) rotate(-6deg); background: rgba(255, 63, 127, 0.24); }

/* ícone grande de fundo: só aparece na escada do computador */
.degrau__marca { display: none; }

.degrau--topo .degrau__icone {
  background: var(--rosa);
  color: #fff;
  box-shadow: 0 0 24px rgba(255, 63, 127, 0.55);
}

.degrau h3 { margin-bottom: 8px; }

.degrau p { color: rgba(245, 245, 245, 0.72); font-size: 15px; }

.degrau--topo {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 63, 127, 0.25), transparent 60%),
    var(--grafite);
  border-color: rgba(255, 63, 127, 0.5);
}

/* computador: a escada sobe da esquerda pra direita e os textos ficam alinhados embaixo */
@media (min-width: 1000px) {
  .degraus { grid-template-columns: repeat(5, 1fr); gap: 12px; }

  .degrau,
  .degrau--topo {
    margin-left: 0;
    background: none;
    border: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }

  .degrau::before { display: none; }

  .degrau__mini { display: none; }

  .degrau__bloco {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: calc((5 - var(--n)) * 48px);
    height: calc(152px + (var(--n) - 1) * 48px);
    padding: 20px 18px;
    border-radius: 14px 14px 0 0;
    border: 1px solid var(--cinza-linha);
    border-bottom: 0;
    background: linear-gradient(to bottom, var(--grafite), rgba(25, 27, 28, 0.2));
    transition: background 0.6s ease, border-color 0.6s ease;
  }

  .degrau.is-visible .degrau__bloco {
    border-color: rgba(255, 63, 127, calc(0.15 + var(--n) * 0.1));
    background: linear-gradient(to bottom, rgba(255, 63, 127, calc(0.06 + var(--n) * 0.07)), rgba(255, 63, 127, 0));
  }

  .degrau h3 { margin-bottom: 0; }

  .degrau__bloco { position: relative; overflow: hidden; }

  .degrau__marca {
    display: block;
    position: absolute;
    right: -14px;
    bottom: -18px;
    width: calc(48px + var(--n) * 22px);
    height: calc(48px + var(--n) * 22px);
    color: var(--rosa);
    opacity: 0.12;
    stroke-width: 1.2;
    transform: rotate(-10deg);
    transition: opacity 0.4s ease, transform 0.6s ease;
    pointer-events: none;
  }

  .degrau:hover .degrau__marca { opacity: 0.22; transform: rotate(-4deg) scale(1.05); }

  .degrau--topo .degrau__marca { opacity: 0.2; }

  .degrau p {
    padding: 18px 4px 0;
    border-top: 2px solid var(--rosa);
  }

  .degrau:not(.is-visible) p { border-top-color: var(--cinza-linha); }
}

/* ================= SOLUÇÕES ================= */

.solucoes {
  background: var(--grafite);
  overflow: hidden;
}

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

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

.solucoes__header {
  display: grid;
  gap: 8px;
  margin-bottom: 40px;
}

.solucoes__header .rotulo { grid-column: 1 / -1; }

.solucoes__grid {
  display: grid;
  gap: 16px;
}

.solucao {
  background: var(--preto);
  border: 1px solid var(--cinza-linha);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.solucao:hover { border-color: rgba(255, 63, 127, 0.5); transform: translateY(-3px); }

.solucao { position: relative; overflow: hidden; }

/* mini-ilustração suave no canto de cada card */
.solucao__mock {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 112px;
  height: auto;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}

.solucao:hover .solucao__mock { opacity: 1; transform: translateY(-3px) rotate(-2deg); }

.solucao__icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 63, 127, 0.1);
  color: var(--rosa);
  margin-bottom: 20px;
}

.solucao__icone svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solucao h3 { margin-bottom: 10px; }

.solucao p { color: rgba(245, 245, 245, 0.72); font-size: 15px; }

.solucao--destaque {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 63, 127, 0.22), transparent 55%),
    var(--preto);
  border-color: rgba(255, 63, 127, 0.45);
}

.solucao__plataformas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.solucao__plataformas li {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 245, 0.2);
}

@media (min-width: 700px) {
  .solucoes__grid { grid-template-columns: repeat(2, 1fr); }
  .solucao--destaque { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .solucoes__header { grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: end; }
  .solucoes__header .intro { margin-top: 0; }
}

@media (min-width: 1000px) {
  .solucoes__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }

  /* destaque em faixa inteira, na horizontal */
  .solucao--destaque {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
  }

  .solucao--destaque .solucao__icone { margin-bottom: 0; }
  .solucao--destaque .solucao__plataformas { margin-top: 0; }

  /* no destaque o gráfico entra no fluxo, entre o texto e as plataformas */
  .solucao--destaque { grid-template-columns: auto 1fr auto auto; }
  .solucao--destaque .solucao__mock--largo { position: static; width: 150px; order: 2; }
  .solucao--destaque .solucao__texto { order: 1; }
  .solucao--destaque .solucao__plataformas { order: 3; }
  .solucao--destaque h3 { font-size: 24px; }
}

.faixa-estrategia {
  margin-top: 40px;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px);
  background: linear-gradient(135deg, var(--rosa-fundo), #6e1235);
  display: grid;
  gap: 24px;
  align-items: center;
}

.faixa-estrategia p {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.6vw, 26px);
  line-height: 1.3;
}

.faixa-estrategia .btn-cta {
  background: var(--branco-gelo);
  color: var(--preto);
  justify-self: start;
}

.faixa-estrategia .btn-cta:hover { background: #fff; }

@media (min-width: 900px) {
  .faixa-estrategia { grid-template-columns: 1fr auto; gap: 48px; }
}

/* ================= POR QUE A QGE ================= */

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

.porque .rotulo { color: var(--rosa-fundo); }

.porque .intro { color: #45464a; }

.porque__grid { display: grid; gap: 48px; }

.porque__conteudo { display: grid; gap: 36px; }

.pilares { list-style: none; display: grid; gap: 14px; }

.pilar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid #e3e3e6;
  border-radius: var(--radius);
  padding: 24px;
}

.pilar__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--preto);
  color: var(--rosa);
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: 14px;
}

.pilar h3 { margin-bottom: 6px; }

.pilar p { color: #45464a; font-size: 15px; }

@media (min-width: 900px) {
  .porque__grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
}

/* ================= TRABALHOS (cards do ads-psi, clica e amplia) ================= */

.trabalhos__topo { max-width: 760px; margin-bottom: 44px; }

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

/* carrossel dos trabalhos: desliza com o dedo, com setas e pontinhos */
.carrossel { position: relative; }

.carrossel__trilho {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
  outline: none;
}

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

.carrossel__trilho > .card-portfolio {
  flex: 0 0 88%;
  scroll-snap-align: start;
}

.carrossel__controles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.carrossel__seta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cinza-linha);
  background: var(--grafite);
  color: var(--branco-gelo);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.carrossel__seta svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.carrossel__seta:hover { border-color: var(--rosa); background: rgba(255, 63, 127, 0.12); }

.carrossel__seta:disabled { opacity: 0.35; cursor: default; }

.carrossel__pontos { display: flex; gap: 8px; }

.carrossel__pontos button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--cinza-linha);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.carrossel__pontos button.is-ativo { width: 24px; background: var(--rosa); }

/* computador: dois cards por vez, o celular do mockup um pouco maior */
@media (min-width: 760px) {
  .carrossel__trilho { gap: 24px; }
  /* dois cards e a pontinha do próximo aparecendo, pra ficar claro que desliza */
  .carrossel__trilho > .card-portfolio { flex-basis: calc((100% - 48px) / 2.18); }
  .trabalhos__cards .mockup__celular { width: 124px; bottom: -150px; }
  /* a área de texto precisa ser alta o bastante pro celular não vazar do card */
  .trabalhos__cards .card-portfolio .info { padding-right: 160px; min-height: 176px; }
}

/* celular: sem carrossel, os trabalhos ficam empilhados */
@media (max-width: 759px) {
  .carrossel__trilho {
    flex-direction: column;
    overflow: visible;
    scroll-snap-type: none;
  }
  .carrossel__trilho > .card-portfolio { flex-basis: auto; }
  .carrossel__controles { display: none; }
  /* do quarto trabalho em diante, só aparece depois do "Ver mais trabalhos" */
  .trabalhos__cards:not(.is-expandido) > .card-portfolio:nth-child(n+4) { display: none; }
}

.btn-ver-mais {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 63, 127, 0.45);
  border-radius: 999px;
  background: var(--grafite);
  color: var(--branco-gelo);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* ícone +: a linha vertical some quando abre e ele vira - */
.btn-ver-mais__icone {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -3px;
  fill: none;
  stroke: var(--rosa);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.btn-ver-mais__vertical { transform-box: fill-box; transform-origin: center; transition: transform 0.3s ease; }

.btn-ver-mais[aria-expanded="true"] .btn-ver-mais__vertical { transform: scaleY(0); }

.btn-ver-mais:hover { border-color: var(--rosa); background: rgba(255, 63, 127, 0.12); }

.btn-ver-mais[hidden] { display: none; }

.card-portfolio:focus { outline: none; }

/* computador tem o carrossel, e o botão só existe no celular */
@media (min-width: 760px) {
  .btn-ver-mais { display: none; }
}

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

/* ================= FAIXA DOS DIFERENCIAIS (marquee da ads-psi) ================= */

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

/* as pontas somem num degradê, para a faixa não parecer cortada */
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

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

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

.marquee__grupo {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--branco-gelo);
  white-space: nowrap;
}

.marquee__item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--rosa);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.marquee__sep { color: var(--rosa); font-size: 12px; opacity: 0.6; }

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

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

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

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

/* computador e celular viram dois botões: cada um abre a sua versão do site */
.card-portfolio .mockup__tela,
.card-portfolio .mockup__celular {
  display: block;
  padding: 0;
  font: inherit;
  cursor: zoom-in;
}

.card-portfolio .mockup__tela { border: 0; background: none; }



.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__tela:hover .mockup__overlay,
.card-portfolio .mockup__tela:focus-visible .mockup__overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.35);
}

.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__tela:hover img,
.card-portfolio .mockup__tela:focus-visible img {
  transform: scale(1.04);
}

/* 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__celular:hover,
.card-portfolio .mockup__celular:focus-visible {
  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;
}

.card-portfolio__link {
  display: inline-block;
  color: var(--rosa);
  font-size: 12px;
  font-weight: 400;
  font-family: inherit;
  text-decoration: none;
}

.card-portfolio__link:hover,
.card-portfolio__link:focus-visible {
  text-decoration: underline;
}

/* LIGHTBOX (portfolio) */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100; /* acima do botão flutuante do WhatsApp (999) e do dock */
  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);
}

/* versão celular: coluna estreita, e as partes do print emendadas sem fresta */
.lightbox--celular .lightbox__conteudo { max-width: 390px; }

.lightbox--celular .lightbox__conteudo img { border-radius: 0; box-shadow: none; }
.lightbox--celular .lightbox__conteudo img:first-of-type { border-radius: 22px 22px 0 0; }
.lightbox--celular .lightbox__conteudo img:last-of-type { border-radius: 0 0 22px 22px; }
.lightbox--celular .lightbox__conteudo img:only-of-type { border-radius: 22px; }

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


/* lupa com o nome da versão: "Desktop" na tela, "Mobile" no celular */
.mockup__lupa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: var(--branco-gelo);
  color: var(--preto);
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transform: scale(0.9);
  transition: transform 0.25s ease;
}

.mockup__lupa svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--rosa);
  stroke-width: 2.2;
  stroke-linecap: round;
}

.card-portfolio .mockup__overlay span.mockup__lupa { opacity: 1; }

.mockup__celular-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mockup__celular-overlay .mockup__lupa { padding: 6px 10px 6px 8px; font-size: 11px; gap: 5px; }
.mockup__celular-overlay .mockup__lupa svg { width: 14px; height: 14px; }

@media (hover: hover) {
  .card-portfolio .mockup__celular:hover .mockup__celular-overlay,
  .card-portfolio .mockup__celular:focus-visible .mockup__celular-overlay { opacity: 1; }

  .card-portfolio .mockup__tela:hover .mockup__lupa,
  .card-portfolio .mockup__celular:hover .mockup__lupa { transform: scale(1); }

  /* a área que não está com o mouse escurece, pra separar as duas versões */
  .card-portfolio .mockup:has(.mockup__celular:hover) .mockup__tela img { filter: brightness(0.55); }
  .card-portfolio .mockup:has(.mockup__tela:hover) .mockup__celular { filter: brightness(0.6); }
  .card-portfolio .mockup__tela img,
  .card-portfolio .mockup__celular { transition: filter 0.25s ease, transform 0.4s ease; }
}

/* toque (celular e tablet): sem mouse, as etiquetas Desktop e Mobile não aparecem */
@media (hover: none) {
  .card-portfolio .mockup__overlay,
  .mockup__celular-overlay { display: none; }
}

/* ================= QUEM FAZ ================= */

.quem-faz { background: var(--grafite); }

/* celular: título, foto e depois o texto. Computador: título e texto à esquerda, foto fixa à direita */
.quem-faz__grid {
  display: grid;
  gap: 32px;
  grid-template-areas: "topo" "cartao" "texto";
}

.quem-faz__topo { grid-area: topo; }

.quem-faz__texto { grid-area: texto; }

.quem-faz__cartao { grid-area: cartao; }

.quem-faz__texto p { color: rgba(245, 245, 245, 0.78); }

.quem-faz__texto p + p { margin-top: 18px; }

.quem-faz__cartao {
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px);
  background:
    radial-gradient(circle at 0% 100%, rgba(168, 205, 228, 0.14), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(255, 63, 127, 0.18), transparent 55%),
    var(--preto);
  border: 1px solid var(--cinza-linha);
  align-self: start;
}

.quem-faz__cartao { padding: 16px 16px 24px; }

.quem-faz__foto {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 6px 6px 0 var(--rosa);
}

.quem-faz__cartao .quem-faz__assinatura { margin-top: 22px; padding: 0 8px; }

.quem-faz__frase {
  font-family: 'Satoshi', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.quem-faz__assinatura { margin-top: 24px; font-size: 14px; color: rgba(245, 245, 245, 0.6); }

.quem-faz__assinatura strong { color: var(--branco-gelo); display: block; font-size: 16px; }

@media (min-width: 900px) {
  .quem-faz__grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: "topo cartao" "texto cartao";
    column-gap: 72px;
    row-gap: 18px;
  }
  .quem-faz__cartao { position: sticky; top: 120px; }
}

/* ================= FAQ (Acordeão da biblioteca) ================= */

/* título e texto centralizados em cima, perguntas numa coluna centralizada embaixo */
.faq__centro { max-width: 820px; }

.faq__topo { text-align: center; margin-bottom: 44px; }

.faq__topo .intro { margin-left: auto; margin-right: auto; }

/* a biblioteca limita o acordeão a 720px alinhado à esquerda; aqui ele ocupa a coluna, centralizado */
.faq__centro .fx-accordion { max-width: none; margin-inline: auto; }

/* ================= CTA FINAL COM FORMULÁRIO ================= */

.cta-final {
  overflow: clip;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.contato__grid { --fx-duo-cols: 0.85fr 1.15fr; --fx-duo-gap: 64px; --fx-duo-top: 110px; --fx-duo-gap-mob: 36px; }

.formulario {
  display: grid;
  gap: 16px;
  background: var(--grafite);
  border: 1px solid var(--cinza-linha);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 0 80px rgba(255, 63, 127, 0.12);
}

.campo { display: grid; gap: 8px; align-content: end; }

.campo label { font-size: 14px; font-weight: 600; }

.campo label span { font-weight: 400; color: rgba(245, 245, 245, 0.5); }

.campo input,
.campo select,
.campo textarea {
  width: 100%;
  font: inherit;
  font-size: 16px;
  color: var(--branco-gelo);
  background: var(--preto);
  border: 1px solid var(--cinza-linha);
  border-radius: 12px;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
}

.campo select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8CDE4' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}

.campo textarea { resize: vertical; min-height: 96px; }

.campo input::placeholder,
.campo textarea::placeholder { color: rgba(245, 245, 245, 0.35); }

.campo input:focus,
.campo select:focus,
.campo textarea:focus { outline: none; border-color: var(--rosa); }

.campo [aria-invalid="true"] { border-color: #ff6b6b; }

.formulario__erro { color: #ff8a8a; font-size: 14px; }

.campo-robo { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.formulario__botao { width: 100%; border: 0; cursor: pointer; margin-top: 4px; }

.formulario__nota { font-size: 12px; color: rgba(245, 245, 245, 0.5); text-align: center; }

.formulario__nota a { text-decoration: underline; }

@media (min-width: 640px) {
  .formulario { grid-template-columns: 1fr 1fr; }
  .campo--cheio,
  .formulario__erro,
  .formulario__botao,
  .formulario__nota { grid-column: 1 / -1; }
}


/* ================= POPUP DO FORMULÁRIO (botão flutuante do WhatsApp) ================= */

.popup-form {
  width: min(640px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--branco-gelo);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 245, 245, 0.2) transparent;
}

.popup-form::backdrop { background: rgba(10, 10, 11, 0.85); backdrop-filter: blur(4px); }

.popup-form[open] { animation: popup-entra 0.35s ease; }

@keyframes popup-entra { from { opacity: 0; transform: translateY(16px); } }

.popup-form__topo { padding: 8px 4px 20px; }

.popup-form__topo h2 { font-size: clamp(24px, 4vw, 32px); margin: 8px 0 10px; padding-right: 48px; }

.popup-form__topo p { color: rgba(245, 245, 245, 0.72); font-size: 15px; }

.popup-form__fechar {
  position: sticky;
  top: 0;
  float: right;
  z-index: 1;
  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;
}

.popup-form__fechar:hover { border-color: var(--rosa); }

.popup-form .formulario { opacity: 1; transform: none; }

html.popup-aberto { overflow: hidden; }

.popup-sair {
  width: min(380px, calc(100% - 32px));
  margin: auto;
  padding: 28px 24px 22px;
  border: 1px solid var(--cinza-linha);
  border-radius: 20px;
  background: var(--grafite);
  color: var(--branco-gelo);
  text-align: center;
}

.popup-sair::backdrop { background: rgba(10, 10, 11, 0.6); }

.popup-sair__titulo { font-size: 20px; font-weight: 700; margin-bottom: 6px; }

.popup-sair p:not(.popup-sair__titulo) { color: rgba(245, 245, 245, 0.72); font-size: 15px; }

.popup-sair__botoes { display: grid; gap: 8px; margin-top: 22px; }

.popup-sair__botoes .btn-cta { width: 100%; border: 0; cursor: pointer; justify-content: center; }

.popup-sair__sair {
  background: none;
  border: 0;
  color: rgba(245, 245, 245, 0.6);
  font: inherit;
  font-size: 14px;
  padding: 10px;
  cursor: pointer;
  text-decoration: underline;
}

.popup-sair__sair:hover { color: var(--branco-gelo); }

@media (prefers-reduced-motion: reduce) {
  .popup-form[open] { animation: none; }
}


/* ================= RODAPÉ ================= */

footer {
  border-top: 1px solid var(--cinza-linha);
  padding: 56px 0 100px;
  font-size: 14px;
}

.footer-grid { display: grid; gap: 32px; }

footer h3 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azul);
  margin-bottom: 14px;
}

footer p, footer a { display: block; color: rgba(245, 245, 245, 0.7); font-size: 14px; margin-bottom: 6px; }

footer a:hover { color: var(--rosa); }

.footer-logo { width: 64px; height: auto; margin-bottom: 16px; }

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

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ================= WHATSAPP FLUTUANTE ================= */

.fx-wa { bottom: calc(1.25rem + var(--qge-banner-altura, 0px)); transition: bottom 0.3s ease; }

/* ================= TEXTURA E MOVIMENTO ================= */

body::after {
  content: '';
  position: fixed;
  inset: 0;
  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");
}

.fx-fade { transition-delay: calc(var(--d, 0) * 90ms); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx-gradient { animation: none; }
  .solucao, .solucao__mock, .degrau::before, .degrau__bloco, .degrau__icone, .degrau__marca { transition: none; }
}


/* ================= HERO: sublinhado à mão em "potencial de compra" ================= */

.sublinhado {
  position: relative;
  white-space: nowrap;
}

.sublinhado__traco {
  position: absolute;
  left: -2%;
  bottom: -0.2em;
  width: 104%;
  height: 0.34em;
  overflow: visible;
  pointer-events: none;
}

/* o traço é revelado por recorte da esquerda pra direita: funciona em qualquer largura de texto */
.sublinhado__traco path {
  fill: none;
  stroke: var(--rosa);
  stroke-width: 4;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  clip-path: inset(-50% 100% -50% -5%);
  animation: traco 0.7s ease-out forwards;
  /* começa assim que a própria palavra termina de subir (--i vem do span do text reveal) */
  animation-delay: calc(var(--i, 0) * 120ms + 0.6s);
}

.sublinhado__traco path:nth-child(2) {
  stroke-width: 2.5;
  opacity: 0.75;
  animation-delay: calc(var(--i, 0) * 120ms + 1.05s);
  animation-duration: 0.5s;
}

@keyframes traco { to { clip-path: inset(-50% -5% -50% -5%); } }

@media (prefers-reduced-motion: reduce) {
  .sublinhado__traco path { animation: none; clip-path: none; }
}

/* ================= CELULAR: menu no rodapé (M3 Dock da biblioteca) ================= */

.dock-qge {
  --fx-dock-surface: #1c1d21;
  --fx-dock-ink: var(--branco-gelo);
  --fx-dock-ink-off: rgba(245, 245, 245, 0.5);
  --fx-dock-h: 68px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px) + var(--qge-banner-altura, 0px));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, bottom 0.3s ease;
}

/* brilho suave atrás do dock, pra ele se destacar das seções pretas */
.dock-qge::before {
  content: '';
  position: absolute;
  inset: -14px -18px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(255, 63, 127, 0.45) 0%, rgba(168, 205, 228, 0.16) 50%, transparent 75%);
  filter: blur(14px);
  pointer-events: none;
}

.dock-qge .fx-dock__bar {
  border: 1px solid rgba(245, 245, 245, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ícones sutis: traço fino e o ativo ganha um pontinho rosa embaixo do nome */
.dock-qge .fx-dock__item svg { stroke-width: 1.6; }

.dock-qge .fx-dock__item span { font-size: 10.5px; position: relative; }

.dock-qge .fx-dock__item.is-active span::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 4px;
  height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--rosa);
}

/* cinco itens do mesmo tamanho, sem cúpula: o WhatsApp é o último, em rosa */
.dock-qge .fx-dock__grid { grid-template-columns: repeat(5, 1fr); padding: 0 8px; }

.dock-qge .fx-dock__item--whats { color: var(--rosa); }

/* ícone do WhatsApp branco dentro de um círculo rosa.
   O desenho dele é por preenchimento, não por contorno como os outros */
.dock-qge .fx-dock__item--whats svg {
  box-sizing: content-box;
  width: 16px;
  height: 16px;
  padding: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--rosa);
  fill: #fff;
  stroke: none;
  box-shadow: 0 4px 12px rgba(255, 63, 127, 0.45);
}

.dock-qge .fx-dock__item--whats:hover { color: #ff6b9c; }
.dock-qge .fx-dock__item--whats:hover svg { background: #ff5890; }

.dock-qge.dock-escondido {
  transform: translate(-50%, 160%);
  opacity: 0;
  pointer-events: none;
}

/* no computador o dock não existe; no celular ele substitui o cabeçalho e o botão flutuante */
@media (min-width: 860px) {
  .dock-qge { display: none; }
}

@media (max-width: 859px) {
  .fx-header { display: none; }
  .fx-wa { display: none; }
  footer { padding-bottom: 130px; }
}

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

/* ================= PÁGINAS DE ERRO (404.html e erro.html) ================= */

.pagina-erro {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 48px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 63, 127, 0.14), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(168, 205, 228, 0.1), transparent 40%),
    var(--preto);
}

.pagina-erro__logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 40px;
}

.pagina-erro__codigo {
  display: block;
  font-family: 'Poppins', 'Satoshi', Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 18vw, 140px);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--rosa);
  margin-bottom: 8px;
}

.pagina-erro .intro { margin-bottom: 32px; }

@media (min-width: 900px) {
  .pagina-erro__logo { width: 220px; }
}
