/* ============================================================
   Portfólio Fernando Selau
   Réplica do template "Majd" (Framer) — conteúdo próprio.
   Tokens e medidas: ver AUDITORIA-DIFERENCAS.md (fonte de verdade).
   Fonte única Archivo · fundo #FAF7F3 · tinta #111
   ============================================================ */

:root {
  --cream: #faf7f3;
  --ink: #111111;
  --ink-50: rgba(17, 17, 17, 0.5);
  --border: rgba(17, 17, 17, 0.12);
  --cream-border: rgba(250, 247, 243, 0.25);
  --radius: 20px;

  --font: "Archivo", system-ui, sans-serif;

  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 64px);
  --page-width: min(var(--maxw), calc(100% - (2 * var(--pad))));
  --mobile-gutter: 20px;
  --mobile-width: calc(100% - (2 * var(--mobile-gutter)));
  --fixed-ui-clearance: calc(96px + env(safe-area-inset-bottom));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  scroll-padding-bottom: var(--fixed-ui-clearance);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

section[id] { scroll-margin-top: 112px; }
#sobre { scroll-margin-top: -112px; }

/* Grão do original (textura-grao.png é opaca — vira overlay bem sutil) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: url("assets/textura-grao.png") repeat;
  opacity: 0.05;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Títulos de seção: 76px · weight 600 (tabela de tokens) */
.section-title {
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 76px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 3rem;
}

/* ============================================================
   BLUR-IN POR PALAVRA (receita A — On Appear)
   opacity 0 + blur 2px + y10 → natural · stagger 0.25s/palavra
   ============================================================ */
[data-animate] .w {
  display: inline-block;
  opacity: 0;
  filter: blur(2px);
  transform: translateY(10px);
  transition:
    opacity 2.8s var(--ease-out),
    filter 2.8s var(--ease-out),
    transform 2.8s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.25s);
}
[data-animate].is-in .w {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

/* ============================================================
   NAV — pílula radius 20 que expande em card ~320×259 (receita D)
   ============================================================ */
.pill-nav {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 320px;
  height: 60px;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  border-radius: 20px;
  padding: 8px 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.pill-nav--open { height: 284px; }
.pill-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
  height: 44px;
}
.pill-nav__brand {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  isolation: isolate;
  will-change: transform;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
/* Botão branco com 3 pontos HORIZONTAIS que vira X (itens 5-6) */
.pill-nav__toggle {
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}
.pill-nav__dots {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: opacity 0.2s, transform 0.25s;
}
.pill-nav__dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}
.pill-nav__x {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: rotate(-45deg) scale(0.6);
  transition: opacity 0.2s, transform 0.25s;
}
.pill-nav__x::before,
.pill-nav__x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: var(--ink);
}
.pill-nav__x::before { transform: translate(-50%, -50%) rotate(45deg); }
.pill-nav__x::after { transform: translate(-50%, -50%) rotate(-45deg); }
.pill-nav--open .pill-nav__dots { opacity: 0; transform: scale(0.5); }
.pill-nav--open .pill-nav__x { opacity: 1; transform: rotate(0) scale(1); }

/* Itens = chips claros empilhados à esquerda */
.pill-nav__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 18px 2px 2px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-out);
}
.pill-nav--open .pill-nav__menu {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  transition-delay: 0.08s;
}
.pill-nav__menu a {
  background: var(--cream);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.rolling-text {
  display: flex;
  flex-direction: column;
  height: 1.25em;
  line-height: 1.25;
  overflow: hidden;
}
.rolling-text > span {
  flex: 0 0 1.25em;
  transition: transform 0.55s var(--ease-out);
}
.pill-nav__menu a:hover .rolling-text > span,
.pill-nav__menu a:focus-visible .rolling-text > span,
.footer__links a:hover .rolling-text > span,
.footer__links a:focus-visible .rolling-text > span {
  transform: translateY(-1.25em);
}

/* CTA flutuante: acompanha o scroll após o fim da rotação do retrato. */
.whatsapp-cta {
  position: fixed;
  left: 50%;
  bottom: max(28px, env(safe-area-inset-bottom));
  z-index: 110;
  width: 320px;
  min-height: 60px;
  padding: 10px 14px 10px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(7, 29, 16, 0.12);
  border-radius: 20px;
  background: #25d366;
  color: #071d10;
  box-shadow: 0 16px 44px rgba(7, 29, 16, 0.26);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 48px)) scale(0.96);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.55s var(--ease-out),
    background 0.2s ease;
}
.whatsapp-cta.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}
.whatsapp-cta::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 2px solid rgba(37, 211, 102, 0.72);
  border-radius: 26px;
  opacity: 0;
  pointer-events: none;
}
.whatsapp-cta::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -2;
  border-radius: 18px;
  background: rgba(37, 211, 102, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
}
.whatsapp-cta.is-visible::after {
  animation: whatsapp-cta-pulse 3.8s ease-in-out infinite;
}
.whatsapp-cta.is-project-highlight {
  box-shadow:
    0 18px 50px rgba(7, 29, 16, 0.3),
    0 0 0 7px rgba(37, 211, 102, 0.13);
  animation: whatsapp-cta-attention 1.15s var(--ease-out) both;
}
.whatsapp-cta.is-project-highlight::before {
  animation: whatsapp-cta-ring 1.15s var(--ease-out) both;
}
.whatsapp-cta.is-project-highlight .whatsapp-cta__arrow {
  animation: whatsapp-cta-arrow 1.15s var(--ease-out) both;
}
.whatsapp-cta.is-project-idle {
  animation: whatsapp-cta-idle 5.6s ease-in-out infinite;
}
.whatsapp-cta:hover { background: #38dc76; }
.whatsapp-cta:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
}
.whatsapp-cta svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.whatsapp-cta__arrow {
  width: 36px;
  height: 36px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(7, 29, 16, 0.1);
  font-size: 18px;
  transition: transform 0.25s var(--ease-out), background 0.2s ease;
}
.whatsapp-cta:hover .whatsapp-cta__arrow {
  background: rgba(7, 29, 16, 0.16);
  transform: translate(2px, -2px);
}

.whatsapp-cta__prompt {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(306px, calc(100vw - 40px));
  padding: 14px 17px 15px;
  border: 1px solid rgba(250, 247, 243, 0.16);
  border-radius: 18px 18px 5px 18px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.94) rotate(2deg);
  transform-origin: calc(100% - 24px) 100%;
}
.whatsapp-cta__prompt::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  border-right: 1px solid rgba(250, 247, 243, 0.16);
  border-bottom: 1px solid rgba(250, 247, 243, 0.16);
  background: var(--ink);
  transform: rotate(45deg);
}
.whatsapp-cta__prompt-kicker,
.whatsapp-cta__prompt-copy {
  position: relative;
  z-index: 1;
  display: block;
}
.whatsapp-cta__prompt-kicker {
  margin-bottom: 3px;
  color: #52e58a;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.whatsapp-cta__prompt-copy {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.whatsapp-cta.is-project-highlight .whatsapp-cta__prompt {
  visibility: visible;
  animation: whatsapp-prompt-entry 1.15s var(--ease-out) both;
}
.whatsapp-cta.is-project-idle .whatsapp-cta__prompt {
  opacity: 1;
  visibility: visible;
  transform: none;
  animation: whatsapp-prompt-idle 5.6s ease-in-out infinite;
}
.whatsapp-cta.is-project-leaving .whatsapp-cta__prompt {
  visibility: visible;
  animation: whatsapp-prompt-exit 0.48s ease-in both;
}

@keyframes whatsapp-cta-attention {
  0%, 100% { transform: translate(-50%, 0) scale(1); }
  34% { transform: translate(-50%, -7px) scale(1.035); }
  58% { transform: translate(-50%, 1px) scale(0.995); }
  78% { transform: translate(-50%, -2px) scale(1.012); }
}
@keyframes whatsapp-cta-ring {
  0% { opacity: 0; transform: scale(0.96); }
  28% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.1); }
}
@keyframes whatsapp-cta-arrow {
  0%, 100% { transform: translate(0, 0); }
  35% { transform: translate(4px, -4px); }
  62% { transform: translate(1px, -1px); }
}
@keyframes whatsapp-prompt-entry {
  0% { opacity: 0; transform: translateY(12px) scale(0.94) rotate(2deg); }
  44% { opacity: 1; transform: translateY(-5px) scale(1.025) rotate(-0.8deg); }
  72% { transform: translateY(2px) scale(0.995) rotate(0.35deg); }
  100% { opacity: 1; transform: none; }
}
@keyframes whatsapp-cta-idle {
  0%, 100% { transform: translate(-50%, 0) rotate(0); }
  50% { transform: translate(-50%, -1.5px) rotate(-0.18deg); }
}
@keyframes whatsapp-prompt-idle {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-2px) rotate(0.25deg); }
}
@keyframes whatsapp-prompt-exit {
  0% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
  100% { opacity: 0; transform: translateY(10px) scale(0.96) rotate(-1.2deg); }
}
@keyframes whatsapp-cta-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.24; transform: scale(1.035, 1.1); }
}

/* ============================================================
   HERO — título #111 sólido, foto em 2 camadas, ornamentos 3D
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.hero__center {
  position: relative;
  z-index: 2;
  width: var(--page-width);
  transform: translateY(-5vh);
}
.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 800;
  /* ~11.3vw, cap 174px; o JS ajusta fino para ocupar ~85% da largura (item 10) */
  font-size: clamp(2.6rem, 11.3vw, 174px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink); /* sólido nas DUAS linhas (item 9) */
}
.hero__title .w { white-space: nowrap; }
.hero__mobile-break { display: none; }

/* ============================================================
   CARTÃO 3D STICKY (receita C) — foto compartilhada hero/sobre
   Wrapper hero+bio ≈ 200vh · sticky 100vh · flip Y + escala no scroll
   O texto pinta POR CIMA do cartão (seções em z:2, cartão em z:1)
   ============================================================ */
.hero-bio { position: relative; }
.hero-bio > .hero,
.hero-bio > .about {
  position: relative;
  z-index: 2;
}
.sticky-avatar {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.sticky-avatar__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  perspective: 1200px;
}
.avatar-card {
  position: relative;
  width: min(400px, 64vw);
  height: min(456px, 58vh);
  transform: rotateY(180deg);
  transform-origin: 50% 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
.avatar-card__face {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 18%, #e53935 0%, #7a0d0d 62%, #1a0303 100%);
  display: grid;
  place-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
/* Verso do cartão: mesma imagem, espelhada durante o giro */
.avatar-card__face--back { transform: rotateY(180deg); }
.avatar-card__face--back img { filter: grayscale(1) contrast(1.04); }
.avatar-card__face img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@keyframes mobile-avatar-intro {
  0% {
    transform: scale(0.94) rotateY(180deg);
  }
  14% {
    transform: scale(0.96) rotateY(180deg);
  }
  30% {
    transform: scale(0.98) rotateY(180deg);
  }
  100% {
    transform: scale(1) rotateY(360deg);
  }
}

/* Recorte da pessoa na frente do título (item 11) — o JS o esvanece no início do scroll */
.hero__photo--front {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(400px, 64vw);
  height: min(456px, 58vh);
  z-index: 3;
  pointer-events: none;
}
.hero__photo--front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero__photo-ph {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

/* Ornamentos 3D: permanecem estáticos após a entrada. */
.hero__ornament {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero__ornament--star {
  width: clamp(70px, 9.1vw, 140px);
  top: -16%;
  left: -1%;
}
.hero__ornament--bolt {
  width: clamp(94px, 12.9vw, 198px);
  right: -5%;
  bottom: -18%;
  transform: translate(72px, 118px) rotate(16deg);
}

/* Assinatura temporal no rodapé do hero. */
.hero__meta {
  position: absolute;
  left: 50%;
  width: var(--page-width);
  transform: translateX(-50%);
  bottom: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
  z-index: 2;
}
.hero__since {
  font-size: 20px;
  line-height: 1.2;
}

/* ============================================================
   SOBRE — lead esq. · foto centro · parágrafos dir. (item 14)
   ============================================================ */
.about {
  width: var(--page-width);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: 0 0 20px;
  display: flex;
  align-items: flex-end;
}
.about__grid {
  width: 100%;
  height: 456px;
  display: grid;
  grid-template-columns: 300px 90px 400px 30px 360px;
  grid-template-rows: auto 1fr auto;
}
.about__hi {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin: -3px 0 0;
}
.about__lead {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}
.about__photo {
  grid-column: 3;
  grid-row: 1 / -1;
  position: relative;
  margin: 0;
  width: 400px;
  height: 456px;
  border-radius: var(--radius);
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 20%, #e53935 0%, #7a0d0d 60%, #1a0303 100%);
  display: grid;
  place-content: center;
}
.about__photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about__photo-ph {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
/* No desktop a foto do "Sobre" é o cartão 3D sticky — a figure só reserva o espaço */
@media (min-width: 810px) {
  .about__photo { visibility: hidden; }
}
.about__text p {
  margin: 0 0 1.2rem;
  font-size: 18px;
  line-height: 1.4;
}
.about__text {
  grid-column: 5;
  grid-row: 1 / -1;
  align-self: end;
}
.about .link-arrow {
  position: relative;
  min-height: 30px;
}
.about .link-arrow::before {
  content: "";
  position: absolute;
  inset: -7px 0;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  min-height: 44px;
}
.link-arrow span {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.link-arrow:hover span {
  transform: translate(2px, -2px);
  background: var(--ink);
  color: var(--cream);
}

/* ============================================================
   MANIFESTO — ~30px/500, cor palavra a palavra via JS (receita B)
   ============================================================ */
.manifesto {
  position: relative;
  height: 180vh;
  padding: 0 var(--pad);
  text-align: center;
}
.manifesto__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  display: grid;
  place-items: center;
}
.manifesto p {
  width: min(900px, 100%);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
/* Estado inicial de cada palavra: Black 10% — o JS interpola até #111 */
.manifesto .mw { color: rgba(17, 17, 17, 0.1); }

/* ============================================================
   SERVIÇOS — LISTA com divisórias de 1px (item 19)
   ============================================================ */
.services {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 100px) 0;
}
.services__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 136px;
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
}
.service-row h3 {
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  transition: transform 0.3s var(--ease-out);
}
.service-row:hover h3 { transform: translateX(6px); }
.service-row__tags {
  margin: 0;
  font-size: 18px;
  color: var(--ink-50);
  text-align: right;
}

/* ============================================================
   PROJETOS — thumbs reais 16:11, radius 16 (itens 20-22)
   ============================================================ */
.projects {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 100px) 0;
}
.projects__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.25rem;
}
.projects__head .section-title { margin: 0; }
.projects__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.project-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.project-card__link:focus-visible {
  outline: none;
}
.project-card__link:focus-visible .project-card__thumb {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}
.project-card__thumb {
  aspect-ratio: 16 / 11;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
}
.project-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card:hover .project-card__thumb img { transform: scale(1.04); }
.project-card h3 {
  font-size: clamp(1.4rem, 2.1vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.2rem;
}
.project-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink-50);
}

/* ============================================================
   DEPOIMENTOS — citação no topo, avatar+nome+cargo na base (itens 23-25)
   ============================================================ */
.testimonials {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 100px) 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.testimonial-card {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 340px;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}
.testimonial-card figcaption {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card figcaption strong {
  display: block;
  font-weight: 400;
  font-size: 16px;
}
.testimonial-card figcaption span {
  display: block;
  font-weight: 300;
  font-size: 16px;
  color: rgba(250, 247, 243, 0.65);
}

/* ============================================================
   BLOG — fotos P&B com overlay + botão no card CTA (itens 26-28)
   ============================================================ */
.blog {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(80px, 10vh, 100px) 0;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  color: var(--cream);
}
.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.3) 55%, rgba(0, 0, 0, 0.45) 100%),
    var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.blog-card:not(.blog-card--cta):hover::before { transform: scale(1.035); }
.blog-card time { font-size: 16px; color: rgba(250, 247, 243, 0.7); }
.blog-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
}
.blog-card p { margin: 0; font-size: 16px; color: rgba(250, 247, 243, 0.8); }
.blog-card--cta {
  background-color: var(--ink);
  justify-content: flex-start;
}
.blog-card--cta::before { display: none; }
.blog-card--cta p {
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.blog-card__btn {
  margin-top: auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  background: var(--cream);
  color: var(--ink);
  border-radius: 10px;
  font-size: 1.1rem;
  transition: transform 0.5s var(--ease-out), background 0.3s ease;
}
.blog-card--cta:hover .blog-card__btn { transform: translate(3px, -3px); }

/* ============================================================
   CONTATO — form em card ESCURO + ícones sociais (itens 29-31)
   ============================================================ */
.contact {
  width: var(--page-width);
  margin: 0 auto;
  padding: clamp(90px, 11vh, 120px) 0;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 508px);
  gap: 32px;
  align-items: stretch;
}
.contact__intro {
  display: flex;
  flex-direction: column;
}
.contact__intro p {
  font-size: 18px;
  color: rgba(17, 17, 17, 0.7);
  max-width: 32ch;
}
.contact__social {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 48px;
}
.contact__social a {
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  color: #111111;
  background: #ffffff;
  border-radius: 12px;
  transition: transform 0.2s;
}
.contact__social a:hover { transform: translateY(-3px); }
.contact__social a:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 3px;
}
.contact__social svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: currentColor;
}

.contact__form {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  min-height: 536px;
  overflow: hidden;
  isolation: isolate;
  container-type: inline-size;
}

.contact-form__progress {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  width: 100%;
  margin-bottom: 26px;
}
.contact-form__progress span {
  position: relative;
  height: 3px;
  overflow: hidden;
  border-radius: 100px;
  background: rgba(250, 247, 243, 0.16);
}
.contact-form__progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.contact-form__progress span.is-complete::after,
.contact-form__progress span.is-current::after { transform: scaleX(1); }
.contact-form__progress span.is-current::after { opacity: 0.62; }

.contact-form__viewport {
  display: grid;
  flex: 1;
  min-height: 447px;
}
.form-step {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(34px);
}
.form-step.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  z-index: 1;
}
.contact__form[data-direction="forward"] .form-step.is-active {
  animation: form-step-forward 0.52s var(--ease-out) both;
}
.contact__form[data-direction="back"] .form-step.is-active {
  animation: form-step-back 0.52s var(--ease-out) both;
}
@keyframes form-step-forward {
  from { opacity: 0; transform: translateX(42px); }
  to { opacity: 1; transform: none; }
}
@keyframes form-step-back {
  from { opacity: 0; transform: translateX(-42px); }
  to { opacity: 1; transform: none; }
}

.form-step__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding-top: clamp(22px, 8cqi, 46px);
}
.form-step__content--cover { justify-content: center; padding-top: 0; }
.form-step__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(250, 247, 243, 0.2);
  border-radius: 100px;
  color: rgba(250, 247, 243, 0.65);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.form-step h3,
.form-step__question,
.form-step__fieldset legend {
  max-width: 15ch;
  margin: 0;
  color: var(--cream);
  font-family: var(--font);
  font-size: clamp(28px, 7.2cqi, 38px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.form-step h3:focus { outline: none; }
.form-step__content > p,
.form-step__hint {
  max-width: 39ch;
  margin: 18px 0 0;
  color: rgba(250, 247, 243, 0.58);
  font-size: 15px;
  line-height: 1.5;
}
.form-step__hint { margin-top: 10px; }

.contact__form input[type="text"],
.contact__form input[type="email"],
.contact__form textarea {
  width: 100%;
  margin-top: 28px;
  font-family: var(--font);
  font-size: 18px;
  background: rgba(250, 247, 243, 0.04);
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  color: var(--cream);
  padding: 0 16px;
  height: 54px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.contact__form textarea {
  min-height: 142px;
  padding: 15px 16px;
  resize: none;
  line-height: 1.45;
}
.contact__form ::placeholder { color: rgba(250, 247, 243, 0.34); }
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--cream);
  background: rgba(250, 247, 243, 0.07);
}
.form-step.has-error input {
  border-color: #ff9c89;
  background: rgba(255, 156, 137, 0.06);
}
.form-step__error {
  min-height: 20px;
  margin: 7px 0 0 !important;
  color: #ffb4a5 !important;
  font-size: 13px !important;
}

.form-step__fieldset {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
}
.project-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
}
.project-options label { cursor: pointer; }
.project-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.project-options label span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 11px 13px;
  border: 1px solid var(--cream-border);
  border-radius: 10px;
  color: rgba(250, 247, 243, 0.72);
  font-size: 14px;
  line-height: 1.2;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.project-options label:hover span { border-color: rgba(250, 247, 243, 0.55); }
.project-options input:checked + span {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--cream);
}
.project-options input:focus-visible + span {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}

.form-step__footer,
.form-step__actions,
.form-step__actions-end {
  display: flex;
  align-items: center;
}
.form-step__footer,
.form-step__actions {
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
}
.form-step:first-child .form-step__footer {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.form-step__actions-end { gap: 12px; }
.form-step__actions--optional {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
}
.form-step__actions--optional .form-step__actions-end { display: contents; }
.form-step__actions--optional .form-step__back {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}
.form-step__actions--optional .form-step__skip {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
}
.form-step__actions.form-step__actions--optional .btn-submit {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
}
.form-step__time {
  color: rgba(250, 247, 243, 0.42);
  font-size: 12px;
  line-height: 1.3;
}
.form-step__back,
.form-step__skip,
.form-step__restart {
  min-height: 44px;
  padding: 0;
  color: rgba(250, 247, 243, 0.58);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s ease;
}
.form-step__back:hover,
.form-step__skip:hover,
.form-step__restart:hover { color: var(--cream); }
.form-step__back:focus-visible,
.form-step__skip:focus-visible,
.form-step__restart:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 3px;
}
.form-step__skip { text-decoration: underline; text-underline-offset: 3px; }
.form-step__restart { color: var(--cream); text-decoration: underline; text-underline-offset: 4px; }
.form-honeypot { position: absolute !important; left: -9999px !important; }
.form-step__submit-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #ffb4ab;
  font-size: 13px;
  line-height: 1.45;
}

.form-step--success .form-step__content { justify-content: center; padding-top: 0; }
.form-step__success-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 50%;
  font-size: 25px;
}
.form-step--success h3 { max-width: 13ch; }

/* Botão principal claro do formulário conversacional. */
.btn-submit {
  width: min(100%, 218px);
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 0 0 auto;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
}
.form-step:first-child .btn-submit { width: 100%; }
.btn-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-submit:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
.btn-submit:disabled { cursor: wait; opacity: 0.66; transform: none; }

/* ============================================================
   RODAPÉ — título 68/600, watermark cream 0.1 (itens 32-34)
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--cream);
  min-height: 624px;
  padding: clamp(76px, 9vh, 96px) 0 0;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.footer__top {
  position: relative;
  z-index: 2;
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.8fr) minmax(280px, 1fr);
  gap: 40px;
  align-items: start;
}
.footer__cta h2 {
  font-weight: 600;
  font-size: clamp(2.4rem, 4.4vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
}
.footer__col h3 {
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 1.2rem;
}
.footer__links { display: flex; flex-wrap: wrap; gap: 10px; }
.footer__links a {
  padding: 9px 18px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 8px;
  font-size: 0.95rem;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer__contact-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer__contact-link {
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(250, 247, 243, 0.3);
  padding-bottom: 2px;
  overflow-wrap: anywhere;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
/* Igualamos primeiro a altura tipográfica do original; o corte lateral é intencional. */
.footer__watermark {
  position: absolute;
  bottom: -0.22em;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: clamp(11rem, 27vw, 417px);
  letter-spacing: -0.04em;
  color: rgba(250, 247, 243, 0.1);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   REVEAL ON SCROLL (blocos) + acessibilidade de movimento
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  [data-animate] .w {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .manifesto { height: auto; }
  .manifesto__sticky {
    position: static;
    height: auto;
    min-height: 80svh;
    padding-block: 90px;
  }
}

/* ============================================================
   RESPONSIVO (breakpoints do original: 1280 / 810)
   ============================================================ */
@media (max-width: 809px) {
  :root {
    --pad: var(--mobile-gutter);
    --page-width: var(--mobile-width);
  }
  .pill-nav {
    top: 33px;
    width: var(--mobile-width);
    max-height: calc(100dvh - 49px);
  }
  .pill-nav--open {
    height: min(284px, calc(100dvh - 49px));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .about {
    min-height: 0;
    width: 100%;
    padding: clamp(72px, 12svh, 100px) var(--mobile-gutter) 0;
    display: block;
  }
  .about__grid {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    align-items: start;
    gap: 0;
  }
  .about__hi {
    grid-column: 1;
    grid-row: auto;
    width: 300px;
    margin: 0 0 100px;
    font-size: 46px;
    line-height: 1;
  }
  .about__lead {
    grid-column: 1;
    grid-row: auto;
    width: min(300px, 100%);
    margin-bottom: 40px;
    line-height: 1.4;
  }
  .about__photo {
    display: none;
  }
  .about__text {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
  }
  .about__text p {
    min-width: 0;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
  }
  .manifesto {
    height: 155svh;
    padding-inline: var(--mobile-gutter);
  }
  .manifesto__sticky { height: 100svh; }
  .projects__grid { grid-template-columns: 1fr; gap: 36px; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: 1fr; }
  .contact {
    grid-template-columns: 1fr;
    padding-bottom: calc(120px + env(safe-area-inset-bottom));
  }
  .contact__social { margin-top: 28px; padding-top: 0; }
  .contact__form { width: 100%; min-height: 0; }
  .contact-form__viewport { min-height: 0; }
  .form-step { min-height: clamp(420px, 60svh, 500px); }
  .projects__head { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 22px 0;
    min-height: 0;
  }
  .service-row__tags { text-align: left; }
  .footer__top {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }
  .footer {
    min-height: 680px;
    padding-bottom: var(--fixed-ui-clearance);
  }
  .footer__cta { grid-column: auto; }
  /* Em telas menores o flip é simplificado: o cartão permanece pequeno na
     base do hero e a bio segue apenas com a hierarquia textual. */
  .sticky-avatar { inset: 0 0 auto 0; height: 100svh; }
  .sticky-avatar__viewport {
    align-items: end;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
  .avatar-card,
  .hero__photo--front { width: 260px; height: 296px; }
  .avatar-card { transform: none; }
  .whatsapp-cta {
    bottom: max(18px, env(safe-area-inset-bottom));
  }
}
@media (max-width: 809px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-start;
  }
  .hero__center {
    position: absolute;
    top: clamp(180px, 28svh, 250px);
    transform: none;
  }
  .hero__title {
    font-size: clamp(36px, calc(12.73px + 7.27vw), 44px);
    line-height: 0.9;
    letter-spacing: -0.05em;
  }
  .hero__title .w { white-space: normal; }
  .hero__title .w:first-child { white-space: nowrap; }
  .hero__mobile-break { display: block; }
  .avatar-card,
  .hero__photo--front {
    width: clamp(168px, calc(21.71px + 45.71vw), 200px);
    height: auto;
    aspect-ratio: 180 / 205;
  }
  .avatar-card {
    opacity: 1;
    transform: scale(0.94) rotateY(180deg);
  }
  .avatar-card.is-intro-ready {
    animation: mobile-avatar-intro 3s var(--ease-out) both;
  }
  .hero__ornament--star {
    width: 60px;
    top: -70px;
    left: 4px;
  }
  .hero__ornament--bolt {
    width: 94px;
    top: calc(100% + 16px);
    right: 12px;
    bottom: auto;
    transform: rotate(16deg);
  }
  .hero__meta {
    bottom: calc(24px + env(safe-area-inset-bottom));
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .whatsapp-cta { width: var(--mobile-width); }
  .whatsapp-cta__prompt {
    right: 0;
    width: 100%;
  }
  .testimonials__grid { grid-template-columns: 1fr; }
  .contact__form {
    padding: 20px;
    border-radius: 16px;
  }
  .contact-form__progress { gap: 4px; margin-bottom: 18px; }
  .form-step__content { padding-top: 24px; }
  .form-step__content--cover,
  .form-step--success .form-step__content { padding-top: 0; }
  .form-step h3,
  .form-step__question,
  .form-step__fieldset legend { font-size: clamp(27px, 8.2vw, 34px); }
  .project-options { grid-template-columns: 1fr; gap: 7px; margin-top: 20px; }
  .project-options label span { min-height: 48px; }
  .form-step__footer { align-items: flex-end; }
  .form-step:first-child .form-step__footer { align-items: stretch; }
  .form-step__actions { gap: 10px; }
  .form-step__actions-end { gap: 8px; }
  .form-step__back { font-size: 0; width: 44px; flex: 0 0 44px; }
  .form-step__back::before { content: "←"; font-size: 18px; }
  .form-step__skip { padding-inline: 5px; }
  .form-step__actions:not(.form-step__actions--optional) .btn-submit { width: min(100%, 150px); }
  .hero__since { font-size: 18px; }
  .footer { min-height: 720px; }
  .footer__top { grid-template-columns: 1fr; row-gap: 42px; }
  .footer__cta { grid-column: auto; }
}

@media (min-width: 810px) and (max-width: 1279px) {
  .about__grid {
    grid-template-columns: minmax(0, 0.85fr) clamp(260px, 31vw, 360px) minmax(0, 1fr);
    column-gap: clamp(20px, 3vw, 36px);
  }
  .about__hi,
  .about__lead { grid-column: 1; }
  .about__photo {
    grid-column: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 456;
    align-self: end;
  }
  .about__text { grid-column: 3; }
  .avatar-card,
  .hero__photo--front {
    width: clamp(260px, 31vw, 360px);
    height: auto;
    aspect-ratio: 400 / 456;
  }
  .hero__ornament--star {
    top: -80px;
    left: 0;
  }
  .hero__ornament--bolt {
    top: calc(100% + 20px);
    right: 12px;
    bottom: auto;
    transform: rotate(16deg);
  }
}

@media (max-width: 359px) {
  .hero__title { font-size: 34px; }
  .contact__form { padding: 16px; }
  .whatsapp-cta {
    gap: 8px;
    padding-inline: 12px;
    font-size: 13px;
  }
  .whatsapp-cta__arrow { width: 34px; height: 34px; }
  .hero__since { font-size: 16px; }
}

.form-step__back,
.form-step__skip,
.form-step__restart { min-width: 44px; }

@media (max-height: 520px) {
  .whatsapp-cta__prompt { display: none !important; }
}

@media (max-width: 809px) and (max-height: 520px) {
  .hero__center {
    top: 110px;
    left: var(--mobile-gutter);
    width: calc(100% - 210px);
  }
  .hero__title {
    align-items: flex-start;
    text-align: left;
    font-size: clamp(34px, 6vw, 40px);
  }
  .hero__mobile-break { display: none; }
  .sticky-avatar__viewport {
    place-items: center end;
    padding: 0 var(--mobile-gutter) 0 0;
  }
  .avatar-card,
  .hero__photo--front { width: 150px; }
  .hero__ornament { display: none; }
  .manifesto__sticky { padding-bottom: var(--fixed-ui-clearance); }
  .about { padding-block: 64px; }
}

@container (max-width: 300px) {
  .form-step h3,
  .form-step__question,
  .form-step__fieldset legend { font-size: 27px; }
  .form-step__content { padding-top: 18px; }
  .project-options { grid-template-columns: 1fr; }
}

.contact__form input,
.contact__form textarea,
.form-step__actions,
.form-step__footer {
  scroll-margin-block: 112px var(--fixed-ui-clearance);
}

@media (prefers-reduced-motion: reduce) {
  .avatar-card,
  .avatar-card.is-intro-ready {
    opacity: 1;
    transform: rotateY(360deg);
    animation: none;
  }
  .whatsapp-cta { transition-duration: 0.01ms; }
  .whatsapp-cta.is-visible::after,
  .whatsapp-cta.is-project-highlight,
  .whatsapp-cta.is-project-idle,
  .whatsapp-cta.is-project-leaving .whatsapp-cta__prompt,
  .whatsapp-cta.is-project-highlight::before,
  .whatsapp-cta.is-project-highlight .whatsapp-cta__arrow,
  .whatsapp-cta.is-project-highlight .whatsapp-cta__prompt,
  .whatsapp-cta.is-project-idle .whatsapp-cta__prompt {
    animation: none;
  }
  .whatsapp-cta.is-visible::after { display: none; }
  .whatsapp-cta.is-project-highlight .whatsapp-cta__prompt,
  .whatsapp-cta.is-project-idle .whatsapp-cta__prompt {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .whatsapp-cta.is-project-leaving .whatsapp-cta__prompt {
    opacity: 0;
    visibility: hidden;
  }
  .contact__form .form-step.is-active { animation: none; }
  .contact-form__progress span::after { transition: none; }
}
