/* ==========================================================================
   Clica Marketing — style.css
   Design system do site institucional. Mobile first.

   Índice
   01. Fontes locais
   02. Tokens (cores, tipografia, espaçamentos)
   03. Base e utilitários
   04. Botões, links e chips
   05. Header e navegação
   06. Hero e composição visual
   07. Cabeçalhos de seção
   08. Serviços (cards)
   09. Seções de serviço (Social Media, Tráfego, Sites)
   10. Como trabalhamos
   11. Sobre
   12. Dúvidas frequentes
   13. Contato
   14. Rodapé
   15. Botão flutuante de WhatsApp
   16. Páginas internas (política, 404)
   17. Animações e movimento reduzido
   ========================================================================== */

/* 01. Fontes locais ------------------------------------------------------- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("../fonts/bricolage-grotesque-latin.woff2") format("woff2");
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("../fonts/instrument-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* 02. Tokens --------------------------------------------------------------- */
:root {
  /* Cores extraídas do logotipo oficial */
  --brand: #3f51b5;
  --brand-700: #2f3e94;
  --brand-300: #a5aff2;
  --brand-100: #e1e5f7;
  --brand-50: #f0f2fb;
  --red: #e6332a;
  --red-700: #b3241c;
  --red-50: #fcecea;
  --orange: #f39200;
  --orange-700: #9a5c00;
  --orange-50: #fef2df;
  --green: #3aaa35;
  --green-hover: #4cbb47;
  --green-700: #237a20;
  --green-50: #e8f5e6;

  /* Neutros */
  --ink: #0e1128;
  --ink-2: #171b38;
  --ink-3: #252b52;
  --paper: #f6f5f0;
  --paper-2: #eeece4;
  --surface: #ffffff;
  --line: #e3e0d6;
  --line-strong: #cbc7b9;
  --text: #0e1128;
  --muted: #555a70;
  --on-dark: #f4f3ee;
  --on-dark-muted: #aeb2c9;

  /* Tipografia */
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 2.5rem);
  --section: clamp(4.5rem, 3rem + 6vw, 8.5rem);
  --header-h: 68px;
  --radius-s: 12px;
  --radius: 20px;
  --radius-l: 32px;

  /* Sombras e movimento */
  --shadow-1: 0 1px 2px rgba(14, 17, 40, 0.05), 0 6px 18px -6px rgba(14, 17, 40, 0.08);
  --shadow-2: 0 2px 6px rgba(14, 17, 40, 0.06), 0 28px 56px -18px rgba(14, 17, 40, 0.28);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (min-width: 960px) {
  :root { --header-h: 76px; }
}

/* 03. Base e utilitários --------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; }

:where(ul[role="list"], ol[role="list"]) { list-style: none; margin: 0; padding: 0; }

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.is-dark :focus-visible,
.site-footer :focus-visible,
.cta-panel :focus-visible { outline-color: #ffffff; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus { top: 1rem; }

/* Marcador de barras (referência às barras do logotipo) */
.bars-mark,
.eyebrow::before,
.ticks li::before {
  content: "";
  flex: none;
  width: 16px;
  height: 14px;
  background:
    linear-gradient(var(--red), var(--red)) 0 100% / 4px 55% no-repeat,
    linear-gradient(var(--orange), var(--orange)) 6px 100% / 4px 78% no-repeat,
    linear-gradient(var(--green), var(--green)) 12px 100% / 4px 100% no-repeat;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.is-dark .eyebrow { color: var(--brand-300); }
.cta-panel .eyebrow { color: rgba(255, 255, 255, 0.92); }

/* 04. Botões, links e chips ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.8rem 1.45rem;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background-color 0.2s, border-color 0.2s, box-shadow 0.25s, color 0.2s;
}

.btn svg { width: 20px; height: 20px; flex: none; }

.btn--lg { min-height: 58px; padding-inline: 1.7rem; font-size: 1.0625rem; }
.btn--sm { min-height: 44px; padding: 0.55rem 1.1rem; font-size: 0.9375rem; }
.btn--sm svg { width: 18px; height: 18px; }
.btn--block { width: 100%; }

.btn--wa { background: var(--green); color: var(--ink); }
.btn--wa:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -12px rgba(35, 122, 32, 0.65);
}

.btn--ink { background: var(--ink); color: #ffffff; }
.btn--ink:hover { background: var(--ink-3); transform: translateY(-1px); }

.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--surface); }

.btn--light { border-color: rgba(255, 255, 255, 0.34); color: #ffffff; background: transparent; }
.btn--light:hover { border-color: #ffffff; background: rgba(255, 255, 255, 0.08); }

.btn:active { transform: translateY(0); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1.5px no-repeat;
  transition: background-size 0.3s var(--ease);
}

.link-arrow svg { width: 18px; height: 18px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { background-size: 100% 1.5px; }
.link-arrow:hover svg { transform: translateX(3px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent, var(--brand));
}

.chip:hover { border-color: var(--ink); transform: translateY(-1px); }

/* Acentos por serviço (vermelho, laranja, verde e índigo do logotipo) */
.is-social { --accent: var(--red); --accent-50: var(--red-50); --accent-ink: var(--red-700); }
.is-ads { --accent: var(--orange); --accent-50: var(--orange-50); --accent-ink: var(--orange-700); }
.is-sites { --accent: var(--green); --accent-50: var(--green-50); --accent-ink: var(--green-700); }
.is-strategy { --accent: var(--brand); --accent-50: var(--brand-50); --accent-ink: var(--brand-700); }

/* 05. Header e navegação --------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}

/* O desfoque fica no pseudo-elemento para não prender o menu mobile (position: fixed) */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(246, 245, 240, 0.78);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  transition: background-color 0.25s;
}

.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header.is-scrolled::before { background: rgba(246, 245, 240, 0.92); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex: none;
  color: var(--ink);
  text-decoration: none;
}

.brand img { width: 30px; height: auto; }

.brand__name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}

.nav-list a:hover { background: rgba(14, 17, 40, 0.06); }
.nav-list a[aria-current] { background: var(--ink); color: #ffffff; }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.header-cta { display: none; }

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  margin-left: -9px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle__bars { top: 50%; margin-top: -1px; }
.nav-toggle__bars::before,
.nav-toggle__bars::after { content: ""; left: 0; margin-left: 0; }
.nav-toggle__bars::before { transform: translateY(-6px); }
.nav-toggle__bars::after { transform: translateY(6px); }

.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: rotate(45deg); background: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: rotate(-45deg); background: var(--ink); }

.nav-extra { display: none; }

/* Sem JavaScript: navegação simples e sempre visível */
html:not(.js) .header-inner { flex-wrap: wrap; padding-block: 0.75rem; }
html:not(.js) .site-nav { order: 3; width: 100%; }

/* Com JavaScript e abaixo de 960px: menu em painel */
@media (max-width: 959.98px) {
  .js .nav-toggle { display: inline-block; }

  .js .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    z-index: 49;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem var(--gutter) max(1.5rem, env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0s linear 0.3s;
  }

  .js.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: opacity 0.25s var(--ease), transform 0.3s var(--ease), visibility 0s;
  }

  .js.menu-open body { overflow: hidden; }

  .js .nav-list { flex-direction: column; gap: 0; }

  .js .nav-list a {
    padding: 0.9rem 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 1.4rem + 2vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
  }

  .js .nav-list a:hover,
  .js .nav-list a[aria-current] { background: none; color: var(--brand); }

  .js .nav-extra { display: grid; gap: 1rem; }

  .nav-extra__mail {
    justify-self: center;
    color: var(--muted);
    font-size: 0.975rem;
    text-decoration: none;
  }
}

@media (min-width: 640px) {
  .header-cta { display: inline-flex; }
}

@media (min-width: 960px) {
  .site-nav { margin-inline: auto; }
}

/* 06. Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-block: clamp(2.25rem, 1.5rem + 4vw, 5rem) clamp(3.5rem, 2.5rem + 5vw, 7rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2.75rem, 2rem + 4vw, 4.5rem);
  align-items: center;
}

.hero__title {
  margin-top: 1.25rem;
  font-size: clamp(2.35rem, 1.2rem + 4.2vw, 5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.036em;
}

.hl {
  position: relative;
  display: inline-block;
  color: var(--brand);
}

.hl__curve {
  position: absolute;
  left: -2%;
  bottom: -0.2em;
  width: 104%;
  height: 0.32em;
  overflow: visible;
  pointer-events: none;
}

.hero__lead {
  max-width: 40ch;
  margin-top: 1.6rem;
  font-size: clamp(1.0625rem, 0.98rem + 0.45vw, 1.3125rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.1rem;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.25rem;
}

@media (max-width: 479.98px) {
  .hero__actions .btn { width: 100%; }
}

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); }
}

/* Composição visual do hero: o balão do logotipo em escala ampliada */
.hero__visual { position: relative; width: 100%; max-width: 620px; margin-inline: auto; }

@media (min-width: 1024px) {
  .hero__visual { max-width: none; }
}

.stage-wrap {
  position: relative;
  margin-bottom: 11%;
}

.stage {
  position: relative;
  aspect-ratio: 1 / 1.04;
  container-type: inline-size;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 34px);
  background: var(--ink);
  isolation: isolate;
}

.stage__tail {
  position: absolute;
  top: calc(100% - 1px);
  left: 57%;
  width: 18%;
  aspect-ratio: 1.3;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 5% 100%);
}

.stage__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 82% 12%, rgba(63, 81, 181, 0.55), transparent 70%),
    radial-gradient(50% 40% at 8% 100%, rgba(58, 170, 53, 0.16), transparent 70%);
}

.stage__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 45%, #000 30%, transparent 85%);
  mask-image: radial-gradient(70% 70% at 50% 45%, #000 30%, transparent 85%);
}

.stage__bars {
  position: absolute;
  inset: 12% 14% 10%;
  z-index: -1;
  width: 72%;
  height: 78%;
  opacity: 0.2;
}

.mock {
  position: absolute;
  padding: 0.95em;
  border-radius: 1.1em;
  background: #ffffff;
  color: var(--ink);
  font-size: clamp(9px, 2.55cqi, 14px);
  line-height: 1.3;
  box-shadow: 0 1.4em 2.6em -1em rgba(0, 0, 0, 0.55), 0 0.2em 0.6em rgba(0, 0, 0, 0.18);
}

.mock p { text-wrap: wrap; }

.sk {
  display: block;
  height: 0.55em;
  border-radius: 1em;
  background: #e7e4db;
}

.sk + .sk { margin-top: 0.45em; }
.sk--dark { height: 0.8em; background: var(--ink); }
.w-90 { width: 90%; }
.w-80 { width: 80%; }
.w-70 { width: 70%; }
.w-60 { width: 60%; }
.w-50 { width: 50%; }
.w-40 { width: 40%; }

/* Card: publicação em rede social */
.mock--post { left: 5%; top: 7%; z-index: 1; width: 39%; padding: 0.8em; rotate: -4deg; }

.mp-head { display: flex; align-items: center; gap: 0.6em; margin-bottom: 0.7em; }
.mp-head .sk { flex: 1; margin: 0; }

.mp-avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 2.3em;
  height: 2.3em;
  border-radius: 50%;
  background: var(--brand);
}

.mp-avatar .bars-mark { width: 1em; height: 0.9em; background-size: 0.25em 55%, 0.25em 78%, 0.25em 100%; background-position: 0 100%, 0.375em 100%, 0.75em 100%; }

.mp-media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.75em;
  background: var(--orange-50);
}

.mp-sun {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.mp-block {
  position: absolute;
  left: 11%;
  bottom: 11%;
  width: 46%;
  height: 38%;
  border-radius: 0.55em;
  background: var(--brand);
}

.mp-block::after {
  content: "";
  position: absolute;
  right: -22%;
  bottom: 18%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
}

.mp-tag {
  position: absolute;
  left: 9%;
  top: 10%;
  padding: 0.3em 0.65em;
  border-radius: 1em;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78em;
  font-weight: 600;
}

.mp-actions { display: flex; gap: 0.7em; margin: 0.7em 0 0.65em; }
.mp-actions svg { width: 1.3em; height: 1.3em; }
.mp-actions svg:last-child { margin-left: auto; }
.mp-actions .is-red { color: var(--red); }

/* Card: campanha de anúncios */
.mock--ads { right: 5%; top: 5%; z-index: 2; width: 46%; rotate: 3deg; }

.ma-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9em; }

.ma-chip {
  padding: 0.3em 0.7em;
  border-radius: 1em;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 0.82em;
  font-weight: 600;
}

.ma-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--green-700);
}

.ma-switch::after {
  content: "";
  width: 2.3em;
  height: 1.3em;
  border-radius: 1em;
  background:
    radial-gradient(circle at calc(100% - 0.65em) 50%, #ffffff 0.42em, transparent 0.46em),
    var(--green);
}

.ma-label { font-size: 0.8em; color: var(--muted); }

.ma-value {
  margin: 0.1em 0 0.85em;
  font-family: var(--font-display);
  font-size: 1.08em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ma-chart {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.35em;
  height: 5.6em;
  padding-bottom: 1px;
  border-bottom: 1px solid var(--line);
}

.ma-chart span { flex: 1; border-radius: 0.25em 0.25em 0 0; background: var(--red); }
.ma-chart span:nth-child(3n + 2) { background: var(--orange); }
.ma-chart span:nth-child(3n) { background: var(--green); }
.ma-chart span:nth-child(1) { height: 28%; }
.ma-chart span:nth-child(2) { height: 40%; }
.ma-chart span:nth-child(3) { height: 36%; }
.ma-chart span:nth-child(4) { height: 52%; }
.ma-chart span:nth-child(5) { height: 60%; }
.ma-chart span:nth-child(6) { height: 72%; }
.ma-chart span:nth-child(7) { height: 88%; }

.ma-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }

/* Card: site */
.mock--site { right: 6%; bottom: 8%; z-index: 3; width: 52%; padding: 0; overflow: hidden; rotate: -2deg; }

.msite-bar { display: flex; align-items: center; gap: 0.35em; padding: 0.6em 0.8em; background: var(--paper-2); }
.msite-bar i { width: 0.6em; height: 0.6em; border-radius: 50%; background: var(--red); }
.msite-bar i:nth-child(2) { background: var(--orange); }
.msite-bar i:nth-child(3) { background: var(--green); }

.msite-url {
  flex: 1;
  margin-left: 0.5em;
  padding: 0.2em 0.7em;
  border-radius: 1em;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.74em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msite-body { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0.8em; padding: 0.95em 0.95em 0.8em; }

.msite-btn { display: block; width: 58%; height: 1.5em; margin-top: 0.8em; border-radius: 1em; background: var(--green); }

.msite-img { position: relative; overflow: hidden; min-height: 5.2em; border-radius: 0.6em; background: var(--brand-100); }

.msite-img::before {
  content: "";
  position: absolute;
  left: 18%;
  bottom: -30%;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brand);
}

.msite-img::after {
  content: "";
  position: absolute;
  right: 14%;
  top: 16%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
}

.msite-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5em; padding: 0 0.95em 0.95em; }
.msite-cards span { height: 2.3em; border-radius: 0.5em; background: var(--paper); }

/* Card: conversa no WhatsApp */
.mock--chat {
  left: 4%;
  bottom: 15%;
  z-index: 4;
  width: 41%;
  padding: 0.75em 0.9em 0.55em;
  border-radius: 1em 1em 1em 0.2em;
  background: #e3f6df;
  rotate: 2deg;
}

.mc-name { font-size: 0.78em; font-weight: 700; color: var(--green-700); }
.mc-text { margin-top: 0.2em; font-size: 0.95em; }

.mc-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.3em;
  margin-top: 0.3em;
  font-size: 0.72em;
  color: var(--muted);
}

.mc-meta svg { width: 1.3em; height: 1.3em; color: #34b7f1; }

@media (min-width: 640px) {
  .stage { aspect-ratio: 1.12 / 1; }
  .mock--post { width: 36%; }
  .mock--ads { width: 42%; }
  .mock--site { width: 48%; }
  .mock--chat { width: 36%; }
}

@media (min-width: 1024px) {
  .stage { aspect-ratio: 1 / 1.02; }
  .mock--post { width: 40%; }
  .mock--ads { width: 46%; }
  .mock--site { width: 52%; }
  .mock--chat { width: 40%; }
}

/* 07. Cabeçalhos de seção -------------------------------------------------- */
.section { padding-block: var(--section); }

.section-head {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 2rem + 3vw, 4.25rem);
}

.section-title {
  margin-top: 0.35rem;
  font-size: clamp(2rem, 1.35rem + 2.7vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-lead {
  max-width: 54ch;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  color: var(--muted);
}

.is-dark .section-lead { color: var(--on-dark-muted); }

@media (min-width: 900px) {
  .section-head--split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: end;
    gap: 3rem;
  }
}

/* 08. Serviços -------------------------------------------------------------- */
.services { padding-top: clamp(1rem, 2vw, 2rem); }

.services-grid { display: grid; gap: 1rem; }

@media (min-width: 720px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1.25rem; }
  .services-grid > :nth-child(1),
  .services-grid > :nth-child(4) { grid-column: span 7; }
  .services-grid > :nth-child(2),
  .services-grid > :nth-child(3) { grid-column: span 5; }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 1.2rem + 1.3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.service-card::before {
  content: "";
  position: absolute;
  left: clamp(1.5rem, 1.2rem + 1.3vw, 2.4rem);
  top: -1px;
  width: 56px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--accent);
  transition: width 0.45s var(--ease);
}

.service-card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-2); }
.service-card:hover::before { width: 120px; }

.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; }

.service-card__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--accent-50);
  color: var(--accent-ink);
}

.service-card__icon svg { width: 26px; height: 26px; }

.service-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.service-card h3 { margin-top: 0.5rem; font-size: clamp(1.5rem, 1.3rem + 0.8vw, 1.95rem); }

.service-card__benefit { font-size: 1.0625rem; color: var(--muted); max-width: 46ch; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.25rem; }

.tag-list li {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

.service-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.card-cta svg { width: 20px; height: 20px; color: var(--green-700); }
.card-cta span { background: linear-gradient(var(--accent), var(--accent)) 0 100% / 100% 2px no-repeat; padding-bottom: 2px; }
.card-cta:hover span { background-size: 100% 100%; background-image: linear-gradient(var(--accent-50), var(--accent-50)); }

.card-link { font-size: 0.9375rem; font-weight: 500; color: var(--muted); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line-strong); }
.card-link:hover { color: var(--ink); text-decoration-color: currentColor; }

/* 09. Seções de serviço ---------------------------------------------------- */
.feature__grid {
  display: grid;
  gap: clamp(2.5rem, 2rem + 4vw, 5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .feature__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); }
  .feature__grid--reverse > .feature__media { order: -1; }
}

.feature__copy .section-lead { margin-top: 1.25rem; }

.feature__media {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border-radius: var(--radius-l);
  background: var(--accent-50);
}

.feature__media img { width: 100%; }

.feature__actions { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center; margin-top: 2.25rem; }

.ticks { display: grid; margin: 2rem 0 0; padding: 0; list-style: none; }

.ticks li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 0.95rem;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.ticks li:last-child { border-bottom: 1px solid var(--line); }
.ticks li::before { margin-top: 0.3em; }
.ticks strong { font-weight: 600; font-size: 1.0625rem; }
.ticks span { grid-column: 2; color: var(--muted); font-size: 0.98rem; }

@media (min-width: 600px) {
  .ticks--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 2rem; }
  .ticks--2 li:nth-last-child(2) { border-bottom: 1px solid var(--line); }
}

.feature--social { background: var(--surface); }

/* Seção escura (Tráfego Pago) */
.is-dark { background: var(--ink); color: var(--on-dark); }

.is-dark .feature__media {
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.pillars {
  display: grid;
  gap: 1rem;
  margin-top: clamp(3rem, 2rem + 4vw, 5rem);
  counter-reset: pillar;
}

@media (min-width: 640px) { .pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .pillars { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.pillar {
  padding: 1.6rem 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.3s, background-color 0.3s;
}

.pillar:hover { border-color: rgba(165, 175, 242, 0.45); background: rgba(255, 255, 255, 0.05); }

.pillar__num {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--orange);
}

.pillar h3 { font-size: 1.3rem; letter-spacing: -0.02em; }
.pillar p { margin-top: 0.6rem; color: var(--on-dark-muted); font-size: 0.98rem; }

.note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.25rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(243, 146, 0, 0.1);
  border: 1px solid rgba(243, 146, 0, 0.28);
  color: var(--on-dark);
  font-size: 0.98rem;
}

.note svg { flex: none; width: 22px; height: 22px; margin-top: 0.1em; color: var(--orange); }
.note strong { color: #ffffff; }

/* 10. Como trabalhamos ----------------------------------------------------- */
.process-section { background: var(--surface); }

.process-wrap { position: relative; }

.process { display: grid; gap: 0; counter-reset: step; }

.process__step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  column-gap: 1.1rem;
  padding-block: 1.25rem;
  border-top: 1px solid var(--line);
}

.process__step:last-child { border-bottom: 1px solid var(--line); }

.process__bar {
  grid-row: span 3;
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 12px;
  height: 72px;
  margin-left: 16px;
  border-radius: 6px;
  background: var(--paper-2);
  overflow: hidden;
}

.process__bar span { display: block; width: 100%; border-radius: 6px; background: var(--brand); }
.process__step:nth-child(1) .process__bar span { height: 30%; background: #c8cef0; }
.process__step:nth-child(2) .process__bar span { height: 46%; background: #a3aee6; }
.process__step:nth-child(3) .process__bar span { height: 62%; background: #7d8bd8; }
.process__step:nth-child(4) .process__bar span { height: 80%; background: #5b6cc7; }
.process__step:nth-child(5) .process__bar span { height: 100%; background: var(--brand); }

.process__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand);
}

.process__step h3 { margin-top: 0.15rem; font-size: 1.35rem; letter-spacing: -0.02em; }
.process__step p { margin-top: 0.45rem; color: var(--muted); font-size: 0.98rem; }

.process__curve { display: none; }

@media (min-width: 960px) {
  .process { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1.25rem; }

  .process__step {
    display: block;
    padding: 0;
    border: 0;
  }

  .process__step:last-child { border: 0; }

  .process__bar {
    width: 100%;
    height: 200px;
    margin: 0 0 1.5rem;
    border-radius: 14px;
    background: var(--paper);
  }

  .process__bar span { border-radius: 14px; }

  .process__curve {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 200px;
    overflow: visible;
    pointer-events: none;
  }
}

/* 11. Sobre ----------------------------------------------------------------- */
.about__statement {
  max-width: 22ch;
  margin-top: 1.25rem;
  font-size: clamp(2rem, 1.2rem + 3.4vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.034em;
}

.about__statement em { font-style: normal; color: var(--brand); }

.about__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(2.5rem, 2rem + 3vw, 4.5rem);
}

@media (min-width: 960px) {
  .about__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: start; }
}

.about__brand {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--surface);
}

.about__brand img { width: min(100%, 300px); }

.about__text > p + p { margin-top: 1rem; }
.about__text > p { font-size: 1.125rem; color: var(--muted); }
.about__text > p:first-child { color: var(--ink); }

.principles {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 600px) { .principles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.principles li {
  padding: 1.35rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.principles h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
}

.principles h3::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--accent, var(--brand));
}

.principles p { margin-top: 0.5rem; color: var(--muted); font-size: 0.98rem; }

/* 12. Dúvidas frequentes --------------------------------------------------- */
.faq-section { padding-top: 0; }

.faq__grid { display: grid; gap: 2.5rem; }

@media (min-width: 960px) {
  .faq__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 4rem; }
  .faq__intro { position: sticky; top: calc(var(--header-h) + 2rem); align-self: start; }
}

.faq__intro .section-lead { margin-top: 1.1rem; }
.faq__intro .btn { margin-top: 1.75rem; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "";
  flex: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) 50% 50% / 12px 1.75px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 50% 50% / 1.75px 12px no-repeat;
  transition: transform 0.3s var(--ease), background-color 0.2s;
}

.faq-item[open] summary::after { transform: rotate(45deg); background-color: var(--brand-50); }
.faq-item summary:hover::after { border-color: var(--ink); }

.faq-item__body { padding: 0 3rem 1.5rem 0; color: var(--muted); }
.faq-item__body a { color: var(--brand); font-weight: 600; }

/* 13. Contato --------------------------------------------------------------- */
.contact { padding-top: 0; }

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.5rem);
  padding: clamp(2rem, 1.25rem + 4vw, 4.75rem);
  border-radius: var(--radius-l);
  background: var(--brand);
  color: #ffffff;
  isolation: isolate;
}

@media (min-width: 1024px) {
  .cta-panel { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: center; }
}

.cta-panel__deco {
  position: absolute;
  right: -4%;
  bottom: -30%;
  z-index: -1;
  display: none;
  width: min(46%, 460px);
  opacity: 0.09;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .cta-panel__deco { display: block; }
}

.cta-panel .section-title { max-width: 16ch; }
.cta-panel p.section-lead { margin-top: 1.1rem; color: rgba(255, 255, 255, 0.86); }

.cta-panel__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.1rem; }

@media (max-width: 479.98px) {
  .cta-panel__actions .btn { width: 100%; }
}

.contact-list { display: grid; gap: 0.75rem; }

.contact-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: #4c5dba;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}

.contact-item:hover { background: #5a69bf; border-color: rgba(255, 255, 255, 0.5); transform: translateX(3px); }

.contact-item__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--brand);
}

.contact-item__icon svg { width: 22px; height: 22px; }
.contact-item__label { display: block; font-size: 0.8125rem; color: rgba(255, 255, 255, 0.92); }
.contact-item__value { display: block; font-weight: 600; overflow-wrap: break-word; }
.contact-item > svg { width: 18px; height: 18px; opacity: 0.8; }

@media (max-width: 479.98px) {
  .cta-panel { padding: 2.25rem 1.25rem 1.5rem; }
  .contact-item { grid-template-columns: 42px minmax(0, 1fr); gap: 0.85rem; padding: 0.8rem 0.9rem; }
  .contact-item__icon { width: 42px; height: 42px; border-radius: 12px; }
  .contact-item > svg { display: none; }
  .contact-item__value { font-size: 0.975rem; }
}

/* 14. Rodapé ---------------------------------------------------------------- */
.site-footer {
  padding-block: clamp(3.5rem, 3rem + 3vw, 5.5rem) 6.5rem;
  background: var(--ink);
  color: var(--on-dark-muted);
  font-size: 0.975rem;
}

@media (min-width: 960px) { .site-footer { padding-bottom: 2.5rem; } }

.footer-top { display: grid; gap: 2.5rem; }

@media (min-width: 720px) {
  .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (min-width: 1024px) {
  .footer-top { grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 3rem; }
  .footer-brand { grid-column: auto; }
}

.footer-brand img { width: 128px; }
.footer-brand p { max-width: 34ch; margin-top: 1.25rem; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }

.footer-social a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--on-dark);
  transition: background-color 0.2s, border-color 0.2s;
}

.footer-social a:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.4); }
.footer-social svg { width: 20px; height: 20px; }

.footer-col h2 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
}

.footer-col ul { display: grid; gap: 0.35rem; }

.footer-col a {
  display: inline-block;
  padding-block: 0.2rem;
  color: var(--on-dark-muted);
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 0.2s;
}

.footer-col a:hover { color: #ffffff; }

.footer-bottom {
  display: grid;
  gap: 0.75rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

@media (min-width: 960px) {
  .footer-bottom { grid-template-columns: auto 1fr; align-items: center; column-gap: 2rem; }
  .footer-credit { justify-self: end; text-align: right; }
}

.footer-bottom a { color: var(--on-dark); text-underline-offset: 3px; }
.footer-bottom a:hover { color: #ffffff; }

.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; }

/* 15. Botão flutuante de WhatsApp ----------------------------------------- */
.wa-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 10px 28px -8px rgba(14, 17, 40, 0.45);
  transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0s, background-color 0.2s;
}

.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { background: var(--green-hover); transform: scale(1.06); }

.js .wa-fab:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0s linear 0.3s;
}

.js.menu-open .wa-fab { opacity: 0; visibility: hidden; }

/* 16. Páginas internas ------------------------------------------------------ */
.page-hero {
  padding-block: clamp(2.5rem, 2rem + 4vw, 5rem) clamp(2rem, 1.5rem + 2vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 4rem);
  letter-spacing: -0.04em;
}

.page-hero p { margin-top: 1rem; color: var(--muted); }

.legal {
  max-width: 760px;
  padding-block: clamp(2.5rem, 2rem + 3vw, 4.5rem) var(--section);
}

.legal h2 {
  margin-top: 2.75rem;
  font-size: clamp(1.4rem, 1.25rem + 0.6vw, 1.75rem);
  letter-spacing: -0.025em;
}

.legal h2:first-child { margin-top: 0; }
.legal p,
.legal ul { margin-top: 1rem; color: #33374d; }
.legal ul { padding-left: 1.25rem; }
.legal li + li { margin-top: 0.4rem; }
.legal a { color: var(--brand); font-weight: 600; }

.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  padding-block: 4rem;
  text-align: center;
}

.error-page__mark { width: 84px; margin: 0 auto 2rem; }

.error-page__code {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.error-page h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  letter-spacing: -0.04em;
}

.error-page p { max-width: 44ch; margin: 1rem auto 0; color: var(--muted); }

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.footer-mini {
  padding-block: 1.75rem;
  background: var(--ink);
  color: var(--on-dark-muted);
  font-size: 0.9rem;
}

.footer-mini .container { display: grid; gap: 0.5rem; }
.footer-mini a { color: var(--on-dark); text-underline-offset: 3px; }

@media (min-width: 960px) {
  .footer-mini .container { grid-template-columns: auto 1fr; }
  .footer-mini .footer-credit { justify-self: end; }
}

/* 17. Animações ------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hl__curve path { animation: draw 1.1s 0.35s var(--ease) both; }

  .mock { animation: mock-in 0.9s var(--ease) both, float 6.5s ease-in-out infinite alternate; }
  .mock--post { animation-delay: 0.15s, 1.05s; }
  .mock--ads { animation-delay: 0.3s, 1.2s; }
  .mock--site { animation-delay: 0.45s, 1.35s; }
  .mock--chat { animation-delay: 0.75s, 1.65s; animation-duration: 0.9s, 5.5s; }

  .js [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }

  .js [data-reveal].is-visible { opacity: 1; transform: none; }
  .js [data-reveal="2"] { transition-delay: 0.08s; }
  .js [data-reveal="3"] { transition-delay: 0.16s; }
  .js [data-reveal="4"] { transition-delay: 0.24s; }

  .js .process__bar span { transform: scaleY(0); transform-origin: bottom; transition: transform 0.9s var(--ease); }
  .js .process-wrap.is-visible .process__bar span { transform: none; }
  .js .process__step:nth-child(2) .process__bar span { transition-delay: 0.08s; }
  .js .process__step:nth-child(3) .process__bar span { transition-delay: 0.16s; }
  .js .process__step:nth-child(4) .process__bar span { transition-delay: 0.24s; }
  .js .process__step:nth-child(5) .process__bar span { transition-delay: 0.32s; }

  .js .process__curve path { stroke-dashoffset: 1; transition: stroke-dashoffset 1.4s 0.35s var(--ease); }
  .js .process-wrap.is-visible .process__curve path { stroke-dashoffset: 0; }
}

@keyframes draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
@keyframes mock-in { from { opacity: 0; translate: 0 1.6em; } to { opacity: 1; translate: 0 0; } }
@keyframes float { from { translate: 0 0; } to { translate: 0 -0.55em; } }
