/* ============================================================
   Static Progress Studio
   Sistema visual derivado da identidade real do estúdio:
   papel creme (#FAF8F3, amostrado dos arquivos de marca),
   tinta preta, serifa de alto contraste e o set de ícones
   próprio das cinco etapas.
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* Papel e tinta — amostrados dos arquivos originais da marca */
  --paper:    #FAF8F3;
  --paper-2:  #F1EDE4;
  --paper-3:  #E8E2D6;
  --rule:     #DFD9CC;
  --rule-soft:#EBE6DA;

  --ink:      #12110F;   /* 17.8:1 sobre papel */
  --ink-2:    #4A463E;   /*  8.9:1 */
  --ink-3:    #6E685F;   /*  5.2:1 — mínimo para rótulos pequenos */

  /* Placas escuras — o preto da marca, usado com parcimônia */
  --night:    #131210;
  --night-2:  #1C1A17;
  --night-rule:#302C26;
  --on-night: #F2EFE8;
  --on-night-2:#A79F92;

  --font-display: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, serif;
  --font-body:    "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1240px;
  --gut: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.04; text-wrap: balance; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Rolagem nativa; suavização só nos saltos de âncora */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- 3. Tipografia ---------- */
/* Bodoni Moda é fonte variável: em corpos grandes o eixo óptico (opsz)
   automático afina demais os traços e o título parece frágil. Travamos
   o opsz num valor de miolo e subimos o peso — o desenho fica com o
   corpo do logotipo, sem perder o contraste da serifa. */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 24;
  letter-spacing: -.01em;
}
.d1 { font-size: clamp(2.1rem, 4.6vw, 4.2rem); line-height: 1.04; }
.d2 { font-size: clamp(1.65rem, 3.1vw, 2.7rem); line-height: 1.08; }
.d3 { font-size: clamp(1.25rem, 1.9vw, 1.6rem); line-height: 1.16; }
.italic { font-style: italic; }

.label {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 26px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--ink-3);
  flex: none;
  transform-origin: left;
}

.lead {
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 60ch;
}
.body-col { max-width: 64ch; color: var(--ink-2); }
.muted { color: var(--ink-3); }

/* ---------- 4. Estrutura ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 880px; }
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--tight { padding: clamp(56px, 7vw, 96px) 0; }
.section--paper2 { background: var(--paper-2); }
.rule { height: 1px; background: var(--rule); border: 0; margin: 0; transform-origin: left; }

.head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 56px); }
.head .d2 { margin-bottom: 18px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 88px); align-items: center; }
.split--top { align-items: start; }
.split--sidebar { grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); }
@media (max-width: 900px) { .split, .split--sidebar { grid-template-columns: 1fr; } }

/* ---------- 5. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: transparent; color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn:hover { transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.on-night .btn { border-color: var(--on-night); color: var(--on-night); }
.on-night .btn--solid { background: var(--on-night); color: var(--night); }
.on-night .btn--solid:hover { background: transparent; color: var(--on-night); }
.on-night .btn--line:hover { background: var(--on-night); color: var(--night); }

/* ---------- 6. Cabeçalho ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 248, 243, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: 84px;
}
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; flex: none; }
.brand img { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.brand__sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-2);
  white-space: nowrap;
  transition: color .2s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--ink); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.header-cta { margin-left: 14px; padding: 13px 22px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  background: none;
  border: 1px solid var(--rule);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span { display: block; width: 18px; height: 1px; background: var(--ink); transition: transform .35s var(--ease), opacity .2s; }
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 84px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 8px var(--gut) 32px;
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s, transform .3s var(--ease), visibility .3s;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 17px 0; font-size: 18px; border-bottom: 1px solid var(--rule-soft); }
  .nav__link::after { display: none; }
  .header-cta { margin: 24px 0 0; justify-content: center; }
}

/* ---------- 7. Hero editorial ---------- */
.hero { padding: clamp(44px, 6vw, 80px) 0 0; }
/* Centralizado: com alinhamento pelo pé, a coluna de texto deixava
   um vazio estranho acima de si sempre que o título era mais alto */
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; align-items: start; } }
.hero__title { margin-bottom: 24px; }
.hero__meta {
  display: flex; flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3);
}
.hero__meta li { display: flex; align-items: center; gap: 10px; }
.hero__meta li + li::before { content: ""; width: 3px; height: 3px; background: var(--ink-3); border-radius: 50%; }

/* Placa fotográfica full-bleed com paralaxe */
.plate { position: relative; overflow: hidden; background: var(--paper-3); }
.plate--full { margin-top: clamp(32px, 4.5vw, 56px); }
.plate__media { position: relative; overflow: hidden; }
.plate__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.plate--hero .plate__media { aspect-ratio: 21 / 9; }
.plate--tall .plate__media { aspect-ratio: 3 / 4; }
.plate--square .plate__media { aspect-ratio: 1 / 1; }
.plate--wide .plate__media { aspect-ratio: 16 / 10; }
@media (max-width: 700px) { .plate--hero .plate__media { aspect-ratio: 4 / 3; } }
.plate__cap {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 6px 20px;
  padding-top: 14px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- 8. Etapas com os ícones da marca ---------- */
.stages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.stages--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .stages, .stages--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stages, .stages--4 { grid-template-columns: 1fr; } }
.stage {
  padding: 40px 28px 44px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .35s var(--ease);
}
.stage:last-child { border-right: 0; }
@media (max-width: 1000px) { .stage:nth-child(2n) { border-right: 0; } }
@media (max-width: 560px) { .stage { border-right: 0; } }
.stage:hover { background: var(--paper-2); }
.stage__icon { height: 62px; display: flex; align-items: flex-start; }
.stage__icon img { height: 100%; width: auto; object-fit: contain; }
.stage__n { font-size: 11px; font-weight: 600; letter-spacing: .2em; color: var(--ink-3); }
.stage__t { font-family: var(--font-display); font-size: 1.15rem; }
.stage p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }

/* ---------- 9. Cards de serviço ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 34px); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }
.card {
  display: flex; flex-direction: column;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--rule);
  transition: border-color .35s var(--ease), transform .45s var(--ease);
}
.card:hover { border-color: var(--ink); transform: translateY(-4px); }
.card__media { overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-3); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card__k { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.card__t { font-family: var(--font-display); font-size: 1.35rem; }
.card p { font-size: 15px; color: var(--ink-2); }
.card__go {
  margin-top: auto; padding-top: 8px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.card__go::after { content: ""; width: 22px; height: 1px; background: currentColor; transition: width .35s var(--ease); }
.card:hover .card__go::after { width: 40px; }

/* ---------- 10. Placas escuras ---------- */
.night { background: var(--night); color: var(--on-night); }
.night .eyebrow, .night .label, .night .muted { color: var(--on-night-2); }
.night .eyebrow::before { background: var(--on-night-2); }
.night .lead, .night .body-col { color: var(--on-night-2); }
.night .rule { background: var(--night-rule); }

/* ---------- 11. Especificações / equipamento ---------- */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); border-top: 1px solid var(--night-rule); }
.spec { padding: 26px 26px 30px; border-right: 1px solid var(--night-rule); border-bottom: 1px solid var(--night-rule); }
.spec:last-child { border-right: 0; }
.spec__k { font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--on-night-2); margin-bottom: 12px; }
.spec__v { font-family: var(--font-display); font-size: 1.15rem; color: var(--on-night); }

.gear { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--night-rule); border: 1px solid var(--night-rule); }
.gear__i { background: var(--night); padding: 22px 24px; }
.gear__b { font-family: var(--font-display); font-size: 1.05rem; color: var(--on-night); }
.gear__d { font-size: 13px; color: var(--on-night-2); margin-top: 5px; }

/* ---------- 12. Listas ---------- */
.ticks { display: grid; gap: 15px; }
/* li em bloco, não em grid: itens com <strong> + texto corrido quebravam
   o conteúdo em colunas erradas quando eram tratados como células */
.ticks li {
  position: relative;
  padding: 0 0 15px 30px;
  color: var(--ink-2); font-size: 15.5px; line-height: 1.6;
  border-bottom: 1px solid var(--rule-soft);
}
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 12px;
  width: 16px; height: 1px;
  background: var(--ink);
}
.night .ticks li { color: var(--on-night-2); border-bottom-color: var(--night-rule); }
.night .ticks li::before { background: var(--on-night); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); border-top: 1px solid var(--rule); }
.stat { padding: 34px 26px 38px; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.stat:last-child { border-right: 0; }
.stat__n { font-family: var(--font-display); font-size: clamp(1.9rem, 3.4vw, 2.5rem); line-height: 1; font-variant-numeric: tabular-nums; }
.stat__l { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-top: 14px; }

/* ---------- 13. Portfólio ---------- */
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.2vw, 30px); }
@media (max-width: 980px) { .works { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .works { grid-template-columns: 1fr; } }
.work { display: block; text-decoration: none; }
.work__media { overflow: hidden; aspect-ratio: 4 / 3; background: var(--night-2); }
.work__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.work:hover .work__media img { transform: scale(1.06); }
.work__body { padding-top: 18px; display: grid; gap: 6px; }
.work__k { font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--on-night-2); }
.work__t { font-family: var(--font-display); font-size: 1.25rem; color: var(--on-night); }
.work__m { font-size: 13.5px; color: var(--on-night-2); }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--night-rule);
  color: var(--on-night-2);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer;
  transition: all .28s var(--ease);
}
.filter:hover { border-color: var(--on-night); color: var(--on-night); }
.filter.is-active { background: var(--on-night); border-color: var(--on-night); color: var(--night); }

/* ---------- 14. Comparador A/B ----------
   Remove-se sozinho via JS se os arquivos de áudio não existirem. */
.ab { border: 1px solid var(--night-rule); }
.ab__head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px; padding: 24px 28px; border-bottom: 1px solid var(--night-rule);
}
.ab__track { display: grid; gap: 5px; }
.ab__name { font-family: var(--font-display); font-size: 1.1rem; color: var(--on-night); }
.ab__meta { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-night-2); }
.ab__switch { display: flex; border: 1px solid var(--night-rule); }
.ab__opt {
  padding: 12px 24px; background: transparent; border: 0; cursor: pointer;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--on-night-2);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.ab__opt + .ab__opt { border-left: 1px solid var(--night-rule); }
.ab__opt:hover { color: var(--on-night); }
.ab__opt[aria-pressed="true"] { background: var(--on-night); color: var(--night); }
.ab__body { display: flex; align-items: center; gap: 22px; padding: 28px; }
.ab__play {
  width: 60px; height: 60px; flex: none;
  border: 1px solid var(--on-night); background: transparent; color: var(--on-night);
  cursor: pointer; display: grid; place-items: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.ab__play:hover { background: var(--on-night); color: var(--night); }
.ab__play svg { width: 18px; height: 18px; fill: currentColor; }
.ab__wave { flex: 1; display: flex; align-items: center; gap: 2px; height: 60px; cursor: pointer; min-width: 0; }
.ab__wave i { flex: 1; min-width: 2px; background: var(--night-rule); transition: background .12s linear; }
.ab__wave i.is-played { background: var(--on-night); }
.ab__time { font-size: 12.5px; color: var(--on-night-2); font-variant-numeric: tabular-nums; flex: none; }
.ab__foot { padding: 16px 28px; border-top: 1px solid var(--night-rule); font-size: 14px; color: var(--on-night-2); }
@media (max-width: 640px) {
  .ab__body { flex-wrap: wrap; gap: 16px; }
  .ab__wave { order: 3; flex-basis: 100%; height: 46px; }
}

/* ---------- 15. Formulário ---------- */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 9px; }
.field label { font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 0; border-bottom: 1px solid var(--rule);
  color: var(--ink);
  padding: 12px 2px;
  font: inherit; font-size: 16px;
  border-radius: 0;
  transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--ink-2) 50%),linear-gradient(135deg,var(--ink-2) 50%,transparent 50%); background-position: calc(100% - 14px) 22px, calc(100% - 8px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }
.field--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 640px) { .field--2 { grid-template-columns: 1fr; } }
.form__note { font-size: 13.5px; color: var(--ink-3); }
.form__msg { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.hp { position: absolute; left: -9999px; opacity: 0; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.info-list { border-top: 1px solid var(--rule); }
.info { display: grid; gap: 6px; padding: 22px 0; border-bottom: 1px solid var(--rule); text-decoration: none; transition: padding-left .3s var(--ease); }
a.info:hover { padding-left: 10px; }
.info__k { font-size: 10.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.info__v { font-size: 16.5px; color: var(--ink); }

/* ---------- 16. Marquee ---------- */
.marquee { overflow: hidden; padding: 20px 0; border-block: 1px solid var(--rule); }
.marquee__track {
  display: flex; gap: 40px; width: max-content;
  animation: slide 38s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--ink-3);
  white-space: nowrap;
}
.marquee__track span { display: flex; align-items: center; gap: 40px; }
.marquee__track span::after { content: "—"; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 17. Rodapé ---------- */
.site-footer { background: var(--night); color: var(--on-night); padding-top: clamp(64px, 8vw, 100px); }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: clamp(30px, 4vw, 60px); padding-bottom: 60px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand img { height: 52px; filter: invert(1); }
.site-footer .brand__sub { color: var(--on-night-2); }
.footer__h { font-size: 10.5px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--on-night-2); margin-bottom: 20px; }
.footer-links { display: grid; gap: 12px; }
.footer-links a { text-decoration: none; color: var(--on-night-2); font-size: 15px; transition: color .2s; }
.footer-links a:hover { color: var(--on-night); }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a { width: 44px; height: 44px; border: 1px solid var(--night-rule); display: grid; place-items: center; color: var(--on-night-2); transition: all .28s var(--ease); }
.socials a:hover { border-color: var(--on-night); color: var(--on-night); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--night-rule);
  padding: 26px 0 30px;
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-night-2);
}

/* ---------- 18. WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 300;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  box-shadow: 0 10px 34px rgba(18, 17, 15, .26);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- 19. Movimento ----------
   O estado escondido só existe quando o JS marcou <html class="js">.
   Sem JS (ou com JS falhando), todo o conteúdo fica visível. */
.reveal-lines { display: block; }
/* A máscara da animação cortava descendentes e itálicos da Bodoni
   (g, ç, j, p). O respiro em padding, devolvido em margin negativa,
   dá espaço para o desenho completo da letra sem alterar o ritmo. */
.reveal-lines .ln {
  display: block;
  overflow: hidden;
  padding: 0.1em 0.12em 0.18em;
  margin: -0.1em -0.12em -0.18em;
}
.reveal-lines .ln > span { display: block; transition: transform 1s var(--ease-out); }
html.js .reveal-lines:not(.is-in) .ln > span { transform: translateY(140%); }
.reveal-lines .ln:nth-child(2) > span { transition-delay: .09s; }
.reveal-lines .ln:nth-child(3) > span { transition-delay: .18s; }
.reveal-lines .ln:nth-child(4) > span { transition-delay: .27s; }

.reveal { transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
html.js .reveal:not(.is-in) { opacity: 0; transform: translateY(26px); }

.draw { transition: transform 1.1s var(--ease-out); transform-origin: left; }
html.js .draw:not(.is-in) { transform: scaleX(0); }

.mask-in { transition: clip-path 1.2s var(--ease-out); }
html.js .mask-in:not(.is-in) { clip-path: inset(0 0 100% 0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .draw, .mask-in { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .reveal-lines .ln > span { transform: none !important; }
}

/* ---------- 20. Acessibilidade ---------- */
.skip {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper);
  padding: 14px 22px; z-index: 500;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
}
.skip:focus { left: 14px; top: 14px; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }
.night :focus-visible, .site-footer :focus-visible { outline-color: var(--on-night); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
