/* ==========================================================================
   PDR — Programa de Diagnóstico Rural · Rabello Teixeira Advogados
   Design system: preto · branco · cinza · dourado discreto
   Mobile first · tipografia grande (público 55+) · alto contraste
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Escala de preto/cinza (idêntica ao site institucional RT) */
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #1a1a1a;
  --line-dark: #2c2c2c;
  --line-dark-strong: #3a3a3a;

  /* Escala clara — leitura confortável ao sol e para baixa visão */
  --white: #ffffff;
  --paper: #faf9f7;
  --paper-2: #f3f1ed;
  --line: #e4e1da;
  --line-strong: #cfcabf;

  /* Dourado — discreto, sempre como acento (nunca como fundo de texto longo) */
  --gold: #c9a45a;
  --gold-bright: #f0c97a;
  --gold-deep: #a8853d;
  --gold-dim: #6e5a32;
  --gold-tint: rgba(201, 164, 90, 0.10);

  /* Texto */
  --ink: #141414;
  --ink-2: #3d3d3d;
  --ink-dim: #5f5f5f;
  --on-dark: #ffffff;
  --on-dark-dim: #a8a8a8;
  --on-dark-faint: #6a6a6a;

  /* Semânticos (uso pontual: validação do formulário) */
  --ok: #3f7d4e;
  --ok-tint: #eef6f0;
  --err: #a83232;
  --err-tint: #fbf0f0;

  --max: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(10, 10, 10, 0.05);
  --shadow: 0 14px 40px -18px rgba(10, 10, 10, 0.22);
  --shadow-lg: 0 30px 70px -26px rgba(10, 10, 10, 0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Foto do herói. Troque o arquivo e o herói inteiro muda. */
  --hero-img: url("../img/hero-rural.jpg");

  --font: "Montserrat", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

/* --------------------------------------------------------------------------
   2. RESET / BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--black);
  color: var(--gold-bright);
  padding: 14px 20px;
  font-weight: 700;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT / UTILITÁRIOS
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}
.wrap--narrow {
  max-width: 860px;
}

.section {
  padding: 72px 0;
  position: relative;
}
.section--paper {
  background: var(--paper);
}
.section--paper2 {
  background: var(--paper-2);
}
.section--dark {
  background: var(--black);
  color: var(--on-dark);
}
.section--dark-soft {
  background: var(--black-soft);
  color: var(--on-dark);
}

.section-head {
  max-width: 760px;
}
.section-head--center {
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.section--dark .eyebrow,
.section--dark-soft .eyebrow {
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}
.section-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

h1,
h2,
h3,
h4 {
  line-height: 1.14;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.h-section {
  font-size: clamp(27px, 4.4vw, 44px);
  font-weight: 800;
}
.h-section em {
  font-style: normal;
  color: var(--gold-deep);
}
.section--dark .h-section em,
.section--dark-soft .h-section em {
  color: var(--gold);
}

.lead {
  margin-top: 18px;
  font-size: clamp(16px, 2.1vw, 18.5px);
  color: var(--ink-dim);
  max-width: 68ch;
  text-wrap: pretty;
}
.section--dark .lead,
.section--dark-soft .lead {
  color: var(--on-dark-dim);
}
.section-head--center .lead {
  margin-left: auto;
  margin-right: auto;
}

.note {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* Ícones (sprite SVG) */
.ico {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ico--sm {
  width: 20px;
  height: 20px;
}
.ico--lg {
  width: 34px;
  height: 34px;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 17px 30px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold-deep);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
  text-align: center;
  line-height: 1.25;
}
.btn:hover {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 12px 28px -14px rgba(201, 164, 90, 0.8);
}
.btn:active {
  transform: translateY(1px) scale(0.995);
}

.btn--solid {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--solid:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--dark:hover {
  background: var(--black-card);
  border-color: var(--black-card);
  color: var(--gold-bright);
}

.btn--ghost-light {
  color: var(--gold-bright);
  border-color: var(--gold-dim);
}
.btn--ghost-light:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--lg {
  padding: 22px 44px;
  font-size: clamp(14px, 2.2vw, 17px);
  letter-spacing: 0.1em;
  border-radius: 5px;
  width: 100%;
}
.btn--block {
  width: 100%;
}

/* pulso discreto no CTA principal */
.btn--pulse {
  position: relative;
}
.btn--pulse::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  border-radius: inherit;
  animation: haloPulse 3.2s var(--ease) infinite;
  pointer-events: none;
}
@keyframes haloPulse {
  0% {
    opacity: 0.55;
    transform: scale(1);
  }
  70% {
    opacity: 0;
    transform: scale(1.07);
  }
  100% {
    opacity: 0;
    transform: scale(1.07);
  }
}

/* Reveal ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }
.reveal[data-delay="5"] { transition-delay: 0.45s; }

/* O herói não espera o JavaScript: anima sozinho, já no primeiro paint
   (melhor LCP e nada de tela preta se o script demorar). */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero .reveal {
  opacity: 1;
  transform: none;
  transition: none;
  animation: fadeUp 0.8s var(--ease) both;
}
.hero .reveal[data-delay="1"] { animation-delay: 0.1s; }
.hero .reveal[data-delay="2"] { animation-delay: 0.2s; }
.hero .reveal[data-delay="3"] { animation-delay: 0.3s; }
.hero .reveal[data-delay="4"] { animation-delay: 0.4s; }
.hero .reveal[data-delay="5"] { animation-delay: 0.5s; }

/* --------------------------------------------------------------------------
   4. HEADER
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s, padding 0.3s;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-dark);
  padding: 9px 22px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand img {
  height: 42px;
  width: auto;
  transition: height 0.3s;
}
.nav.is-scrolled .nav__brand img {
  height: 34px;
}
.nav__menu {
  display: none;
  align-items: center;
  gap: 26px;
}
.nav__menu a:not(.btn) {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  transition: color 0.2s;
}
.nav__menu a:not(.btn):hover {
  color: var(--gold-bright);
}
.nav__toggle {
  background: none;
  border: 0;
  color: var(--gold-bright);
  cursor: pointer;
  display: inline-flex;
  padding: 8px;
}
.nav__cta {
  padding: 12px 18px;
  font-size: 12px;
}

/* --------------------------------------------------------------------------
   5. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 118px 0 64px;
  background: var(--black);
  overflow: hidden;
}
/* Camada de imagem — troque a URL em --hero-img (ver README-IMAGENS.md).
   Sem foto, o degradê + a ilustração de horizonte já entregam um visual pronto. */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: 74% 32%;
  filter: grayscale(0.12) contrast(1.03);
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) forwards;
}
@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
      ellipse at 72% 18%,
      rgba(201, 164, 90, 0.14) 0%,
      transparent 58%
    ),
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.84) 40%,
      rgba(10, 10, 10, 0.93) 78%,
      var(--black) 100%
    ),
    linear-gradient(
      to right,
      rgba(10, 10, 10, 0.86) 0%,
      rgba(10, 10, 10, 0.7) 60%,
      rgba(10, 10, 10, 0.82) 100%
    );
}
/* Horizonte ilustrado (placeholder elegante enquanto não há foto) */
.hero__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  color: var(--on-dark);
  max-width: 780px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  padding: 8px 16px;
  background: rgba(201, 164, 90, 0.07);
}
.hero h1 {
  margin-top: 22px;
  font-size: clamp(36px, 7.4vw, 64px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero h1 .accent {
  display: block;
  color: var(--gold);
}
.hero__sub {
  margin-top: 22px;
  font-size: clamp(17px, 3.4vw, 22px);
  color: var(--on-dark-dim);
  font-weight: 400;
  max-width: 34ch;
  line-height: 1.5;
}
.hero__sub strong {
  color: var(--white);
  font-weight: 600;
}
.hero__cta {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
}
.hero__checks {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 26px;
  max-width: 520px;
}
.hero__checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--on-dark-dim);
}
.hero__checks .ico {
  color: var(--gold);
  width: 19px;
  height: 19px;
}
.hero__disclaimer {
  margin-top: 26px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--on-dark-faint);
  max-width: 52ch;
  border-left: 2px solid var(--gold-dim);
  padding-left: 14px;
}
.scroll-hint {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.scroll-hint__line {
  width: 1px;
  height: 36px;
  background: linear-gradient(var(--gold), transparent);
  animation: drop 2.4s infinite;
}
@keyframes drop {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* Fotos ------------------------------------------------------------------ */
.foto {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: var(--shadow);
  margin: 0;
}
.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.foto:hover img {
  transform: scale(1.045);
}
.foto__legenda {
  position: absolute;
  inset: auto 0 0 0;
  padding: 46px 18px 16px;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.88) 0%,
    rgba(10, 10, 10, 0.45) 55%,
    rgba(10, 10, 10, 0) 100%
  );
}
.foto__legenda span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--on-dark-dim);
}

/* Faixa de atividades (Quem pode participar) */
.atividades {
  margin-top: 44px;
  display: grid;
  gap: 14px;
}
.atividades .foto {
  aspect-ratio: 4 / 5;
}

/* Foto da seção "O que é o PDR" */
.foto--about {
  aspect-ratio: 4 / 3.3;
}

/* Banner da seção de documentos */
.docs__foto {
  margin-top: 44px;
  aspect-ratio: 16 / 10;
}

/* --------------------------------------------------------------------------
   6. O QUE É O PDR
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  gap: 42px;
  align-items: center;
}
.about__logo {
  width: clamp(190px, 42vw, 260px);
  height: auto;
  margin-bottom: 22px;
}
.about__body p + p {
  margin-top: 16px;
}
.about__body p {
  color: var(--ink-2);
  font-size: 17px;
}
.about__body strong {
  font-weight: 700;
  color: var(--ink);
}
.about__quote {
  margin-top: 28px;
  border-left: 3px solid var(--gold);
  background: var(--gold-tint);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
}
.about__art {
  position: relative;
}
.about__art .foto {
  width: 100%;
}
.about__stat {
  position: absolute;
  right: -14px;
  bottom: -30px;
  background: var(--black);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
  max-width: 240px;
}
.about__stat b {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  color: var(--gold-bright);
  font-weight: 700;
}
.about__stat span {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-dim);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   7. COMO FUNCIONA (timeline)
   -------------------------------------------------------------------------- */
.steps {
  margin-top: 46px;
  display: grid;
  gap: 18px;
  position: relative;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 26px 76px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.step__icon {
  position: absolute;
  left: 22px;
  top: 26px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  background: var(--white);
}
.step__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.step h3 {
  margin-top: 7px;
  font-size: 19px;
  font-weight: 700;
}
.step p {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--ink-dim);
}
.step__connector {
  display: grid;
  place-items: center;
  color: var(--line-strong);
}

/* --------------------------------------------------------------------------
   8. QUEM PODE PARTICIPAR
   -------------------------------------------------------------------------- */
.who {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.who__item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.who__item .ico {
  color: var(--gold-deep);
  width: 22px;
  height: 22px;
}
.who__item:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
  background: #fffdf8;
}
.who__more {
  margin-top: 24px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-dim);
}
.who__more b {
  color: var(--ink);
}

/* --------------------------------------------------------------------------
   9. VOCÊ SABIA?
   -------------------------------------------------------------------------- */
.facts {
  margin-top: 44px;
  display: grid;
  gap: 16px;
}
.fact {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--line-dark);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 26px 24px 26px 26px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.fact:hover {
  transform: translateX(5px);
  border-left-color: var(--gold-bright);
  background: #202020;
}
.fact__n {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
}
.fact h3 {
  margin-top: 10px;
  font-size: 18.5px;
  font-weight: 700;
  color: var(--white);
}
.fact p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--on-dark-dim);
  line-height: 1.62;
}

/* --------------------------------------------------------------------------
   10. REQUISITOS
   -------------------------------------------------------------------------- */
.req {
  margin-top: 44px;
  display: grid;
  gap: 20px;
}
.req__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.req__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.req__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  background: var(--gold-tint);
}
.req__card h3 {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-dim);
}
.req__big {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 66px;
  line-height: 1.06;
  font-weight: 700;
  color: var(--ink);
}
.req__big small {
  display: block;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 12px;
}
.req__plus {
  margin: 18px auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink-dim);
  font-weight: 700;
}
.req__second {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.req__second span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-dim);
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.req__obs {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 15px;
  color: var(--ink-2);
}
.req__obs .ico {
  color: var(--gold-deep);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   11. DOCUMENTOS
   -------------------------------------------------------------------------- */
.docs {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.doc {
  background: var(--white);
  padding: 22px 18px;
  transition: background 0.25s var(--ease);
}
.doc:hover {
  background: #fffdf8;
}
.doc .ico {
  color: var(--gold-deep);
}
.doc h3 {
  margin-top: 12px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.3;
}
.doc p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.docs__foot {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--ink-2);
}
.docs__foot .ico {
  color: var(--gold-deep);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   12. FORMULÁRIO / DIAGNÓSTICO
   -------------------------------------------------------------------------- */
.diag {
  background: radial-gradient(
      ellipse at 20% 0%,
      rgba(201, 164, 90, 0.13) 0%,
      transparent 55%
    ),
    var(--black);
  color: var(--on-dark);
  padding: 72px 0;
}
.diag__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 34px;
}
.diag__card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

/* A marca assina o cartão do diagnóstico, discreta, acima do progresso. */
.diag__logo {
  width: 132px;
  height: auto;
  margin: 24px auto 0;
}

/* Barra de progresso */
.progress {
  padding: 18px 22px 0;
}
.progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.progress__meta strong {
  color: var(--gold-deep);
}
.progress__track {
  margin-top: 10px;
  height: 6px;
  background: var(--paper-2);
  border-radius: 100px;
  overflow: hidden;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  border-radius: 100px;
  transition: width 0.5s var(--ease);
}
.progress__steps {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--line-strong);
}
.progress__steps li.is-done {
  color: var(--gold-deep);
}
.progress__steps li.is-current {
  color: var(--ink);
}

/* Corpo do formulário */
.diag__body {
  padding: 26px 22px 30px;
}
.fstep {
  animation: stepIn 0.45s var(--ease) both;
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fstep__title {
  font-size: clamp(21px, 4vw, 27px);
  font-weight: 800;
}
.fstep__hint {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-dim);
}

.field {
  margin-top: 26px;
}
.field__label {
  display: block;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}
.field__req {
  color: var(--gold-deep);
  margin-left: 4px;
}
.field__help {
  display: block;
  font-size: 14px;
  color: var(--ink-dim);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.5;
}
.input,
.select {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 16px 16px;
  font-size: 17px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.input::placeholder {
  color: #a5a09a;
}
.input:hover,
.select:hover {
  border-color: var(--gold);
}
.input:focus,
.select:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px var(--gold-tint);
  outline: none;
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f5f5f' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 44px;
}
.field.is-ok .input,
.field.is-ok .select {
  border-color: var(--ok);
  background: var(--ok-tint);
}
.field.is-error .input,
.field.is-error .select {
  border-color: var(--err);
  background: var(--err-tint);
}
.field__error {
  display: none;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--err);
  align-items: center;
  gap: 7px;
}
.field.is-error .field__error {
  display: flex;
  animation: shake 0.35s var(--ease);
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Opções (radio / checkbox) */
.options {
  display: grid;
  gap: 10px;
}
.options--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  background: var(--white);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
    transform 0.15s var(--ease), box-shadow 0.2s var(--ease);
}
.option:hover {
  border-color: var(--gold);
  background: #fffdf8;
  transform: translateY(-1px);
}
.option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.option__mark {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 0.2s, background 0.2s;
}
.option--check .option__mark {
  border-radius: 6px;
}
.option__mark::after {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold-deep);
  transform: scale(0);
  transition: transform 0.2s var(--ease);
}
.option--check .option__mark::after {
  border-radius: 2px;
}
.option input:checked ~ .option__mark {
  border-color: var(--gold-deep);
  background: var(--gold-tint);
}
.option input:checked ~ .option__mark::after {
  transform: scale(1);
}
.option:has(input:checked) {
  border-color: var(--gold-deep);
  background: var(--gold-tint);
  box-shadow: 0 0 0 3px rgba(201, 164, 90, 0.14);
}
.option input:focus-visible ~ .option__mark {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Consentimento */
.consent {
  margin-top: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.consent .option {
  border: 0;
  background: transparent;
  padding: 0;
  align-items: flex-start;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.55;
}
.consent .option:hover {
  transform: none;
  background: transparent;
}
.consent .option:has(input:checked) {
  box-shadow: none;
  background: transparent;
}
.consent a {
  text-decoration: underline;
  color: var(--gold-deep);
  font-weight: 700;
}

/* Navegação do formulário */
.fnav {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.fnav .btn {
  flex: 1 1 auto;
}
.fnav .btn--back {
  flex: 0 0 auto;
  border-color: var(--line-strong);
  color: var(--ink-dim);
  padding: 17px 20px;
}
.fnav .btn--back:hover {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}
.fnav__safe {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--ink-dim);
}
.fnav__safe .ico {
  color: var(--gold-deep);
}

/* Estado de envio */
.is-sending {
  pointer-events: none;
  opacity: 0.72;
}
.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 0.25);
  border-top-color: var(--black);
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Sucesso */
.done {
  text-align: center;
  padding: 16px 4px 6px;
  animation: stepIn 0.5s var(--ease) both;
}
.done__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold-tint);
  border: 1px solid var(--gold);
  color: var(--gold-deep);
  animation: popIn 0.6s var(--ease) both;
}
@keyframes popIn {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  60% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.done h2 {
  margin-top: 22px;
  font-size: clamp(23px, 4.5vw, 31px);
  font-weight: 800;
}
.done p {
  margin: 14px auto 0;
  font-size: 17px;
  color: var(--ink-2);
  max-width: 52ch;
}
.done__proto {
  margin: 24px auto 0;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  background: var(--paper);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 14px 26px;
}
.done__proto span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 700;
}
.done__proto b {
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.done__next {
  margin-top: 26px;
  text-align: left;
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.done__next h3 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 700;
}
.done__next li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--ink-2);
}
.done__next .ico {
  color: var(--gold-deep);
  margin-top: 3px;
}
.done .btn {
  margin-top: 24px;
}

/* Aviso de fallback (falha de envio) */
.alert {
  margin-top: 20px;
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--err-tint);
  border: 1px solid rgba(168, 50, 50, 0.3);
  color: #7d2727;
}
.alert .ico {
  margin-top: 2px;
}
.alert a {
  font-weight: 700;
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   13. DIFERENCIAIS
   -------------------------------------------------------------------------- */
.perks {
  margin-top: 44px;
  display: grid;
  gap: 14px;
}
.perk {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.perk:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}
.perk__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-tint);
  color: var(--gold-deep);
}
.perk h3 {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
}
.perk p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   14. DEPOIMENTOS
   -------------------------------------------------------------------------- */
.quotes {
  margin-top: 44px;
  display: grid;
  gap: 16px;
}
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.quote:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.quote__mark {
  font-family: var(--serif);
  font-size: 62px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
}
.quote__text {
  margin-top: 12px;
  font-size: 16px;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.7;
}
.quote__person {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper-2);
  display: grid;
  place-items: center;
  color: var(--line-strong);
  flex: 0 0 auto;
}
.quote__name {
  font-size: 15px;
  font-weight: 700;
}
.quote__meta {
  font-size: 13px;
  color: var(--ink-dim);
}
.quote--placeholder .quote__text,
.quote--placeholder .quote__name,
.quote--placeholder .quote__meta {
  color: var(--ink-dim);
}
.skeleton-line {
  height: 11px;
  border-radius: 100px;
  background: linear-gradient(
    90deg,
    var(--paper-2) 0%,
    #e9e6e0 50%,
    var(--paper-2) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2.4s linear infinite;
  margin-top: 10px;
}
.skeleton-line--short {
  width: 58%;
}
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.quotes__note {
  margin-top: 26px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-dim);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* --------------------------------------------------------------------------
   15. FAQ
   -------------------------------------------------------------------------- */
.faq {
  margin-top: 44px;
  display: grid;
  gap: 10px;
  max-width: 880px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq__item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  font-size: 16.5px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s, color 0.2s;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q:hover {
  background: var(--paper);
  color: var(--gold-deep);
}
.faq__q .ico {
  color: var(--gold-deep);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] .faq__q .ico {
  transform: rotate(180deg);
}
.faq__a {
  padding: 0 20px 22px;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.68;
  animation: stepIn 0.35s var(--ease) both;
}
.faq__a p + p {
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   16. CTA FINAL
   -------------------------------------------------------------------------- */
.cta-final {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 164, 90, 0.16) 0%, transparent 60%),
    linear-gradient(rgba(10, 10, 10, 0.93), rgba(10, 10, 10, 0.9)),
    var(--hero-img) center 34% / cover no-repeat,
    var(--black);
  color: var(--on-dark);
  padding: 84px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(200px, 40vw, 520px);
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.024);
  pointer-events: none;
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final h2 {
  font-size: clamp(30px, 6.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.cta-final h2 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}
.cta-final p {
  margin-top: 20px;
  font-size: clamp(16px, 2.4vw, 19px);
  color: var(--on-dark-dim);
}
.cta-final .btn {
  margin-top: 34px;
}
.cta-final__micro {
  margin-top: 18px;
  font-size: 13px;
  color: var(--on-dark-faint);
}

/* --------------------------------------------------------------------------
   17. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--black-soft);
  color: var(--on-dark-dim);
  border-top: 1px solid var(--line-dark);
  padding: 54px 0 34px;
  font-size: 14.5px;
}
.footer__grid {
  display: grid;
  gap: 34px;
}
.footer img.footer__logo {
  height: 52px;
  width: auto;
}
.footer__pdr {
  width: 172px;
  height: auto;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.footer h3 {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer p {
  line-height: 1.7;
}
.footer a:hover {
  color: var(--gold-bright);
}
.footer li + li {
  margin-top: 9px;
}
.footer li a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.footer__legal {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 10px;
  font-size: 12.5px;
  color: var(--on-dark-faint);
  line-height: 1.6;
}
.footer__legal a {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   18. WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--gold-bright);
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
  padding: 13px 18px;
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.wa-float:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.wa-float span {
  display: none;
}

/* --------------------------------------------------------------------------
   19. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (min-width: 560px) {
  .wrap {
    padding: 0 28px;
  }
  .hero__checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero__cta {
    flex-direction: row;
    max-width: none;
  }
  .hero__cta .btn {
    width: auto;
  }
  .who {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .atividades {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .docs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .options--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .btn--lg {
    width: auto;
  }
  .wa-float span {
    display: inline;
  }
  .diag__body {
    padding: 32px 34px 36px;
  }
  .progress {
    padding: 24px 34px 0;
  }
}

@media (min-width: 860px) {
  body {
    font-size: 17.5px;
  }
  .section {
    padding: 104px 0;
  }
  .diag {
    padding: 104px 0;
  }
  .nav__menu {
    display: flex;
  }
  .nav__toggle {
    display: none;
  }
  .scroll-hint {
    display: flex;
  }
  .hero__bg {
    background-position: 58% 34%;
  }
  .hero__scrim {
    background: radial-gradient(
        ellipse at 72% 18%,
        rgba(201, 164, 90, 0.14) 0%,
        transparent 58%
      ),
      linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.88) 0%,
        rgba(10, 10, 10, 0.62) 38%,
        rgba(10, 10, 10, 0.86) 78%,
        var(--black) 100%
      ),
      linear-gradient(
        to right,
        rgba(10, 10, 10, 0.94) 0%,
        rgba(10, 10, 10, 0.5) 58%,
        rgba(10, 10, 10, 0.74) 100%
      );
  }
  .nav__menu a:not(.btn) {
    font-size: 12px;
  }
  .about {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 66px;
  }
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .steps::before {
    content: "";
    position: absolute;
    top: 56px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--line-strong) 12%,
      var(--line-strong) 88%,
      transparent
    );
    z-index: 0;
  }
  .step {
    padding: 30px 22px 26px;
    text-align: center;
    z-index: 1;
  }
  .step__icon {
    position: static;
    margin: 0 auto 14px;
    width: 52px;
    height: 52px;
  }
  .who {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fact--wide {
    grid-column: 1 / -1;
  }
  .req {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
  }
  .docs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .docs__foto {
    aspect-ratio: 21 / 8;
  }
  .perks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  .quotes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 42px;
  }
  .diag__body {
    padding: 38px 48px 44px;
  }
  .progress {
    padding: 28px 48px 0;
  }
  .options--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .field--half {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* --------------------------------------------------------------------------
   20. PREFERÊNCIAS DE MOVIMENTO / IMPRESSÃO
   -------------------------------------------------------------------------- */
@media (min-width: 1160px) {
  .nav__menu {
    gap: 26px;
  }
  .nav__menu a:not(.btn) {
    font-size: 12.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .nav,
  .wa-float,
  .scroll-hint,
  .diag {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
