@charset "UTF-8";
/* =========================================================================
   Francisco Ventura — Advocacia especializada em legislação de armas de fogo
   Paleta: gunmetal / marfim / bronze (balança) + oliva tática
   Tipografia: Fraunces (títulos, serifa moderna) + Inter (texto)
   ========================================================================= */

:root {
  /* cores */
  --ink: #121519;
  --ink-soft: #1a1e24;
  --ink-2: #232830;
  --paper: #f7f3ec;
  --paper-2: #efe9dd;
  --paper-3: #e7dfce;
  --line: #ddd3c0;
  --text: #22262c;
  --text-soft: #565d66;
  --text-inverse: #f4efe6;
  --text-inverse-soft: #b3ada0;
  --brass: #a87f4a;
  --brass-strong: #916b3a;
  --brass-light: #cdae7f;
  --wine: #43492f;          /* oliva profunda — brilho tático dos gradientes */
  --wine-strong: #343924;
  --steel: #2f3843;
  --focus: #cdae7f;

  /* medidas */
  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 2.75rem);
  --radius: 12px;
  --radius-sm: 8px;
  --section-y: clamp(4.5rem, 10vw, 8.5rem);
  --header-h: 76px;

  --shadow-sm: 0 1px 2px rgba(20, 23, 28, .06), 0 6px 18px rgba(20, 23, 28, .06);
  --shadow-md: 0 18px 48px rgba(20, 23, 28, .14);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --font-serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  overflow-x: clip;
}
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 2px solid var(--brass-strong);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
  overflow-wrap: break-word;
}
h1, h2 { text-wrap: balance; }
h1 { font-size: clamp(2.1rem, 1.2rem + 4.1vw, 4.15rem); font-weight: 460; }
h2 { font-size: clamp(1.9rem, 1.25rem + 2.7vw, 3rem); }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem); }
h1 em, h2 em { font-style: italic; color: var(--brass-strong); }

p { text-wrap: pretty; }
strong { font-weight: 650; }

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .6rem;
  max-width: 100%;
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-strong);
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: none;
  background: currentColor;
  opacity: .55;
}
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 3.75rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; color: var(--text-soft); font-size: 1.075rem; }

.lede { font-size: clamp(1.075rem, 1rem + .4vw, 1.28rem); color: var(--text-soft); }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); }
.section--ink { background: var(--ink); color: var(--text-inverse); }
.section--ink .section-head p,
.section--ink .lede { color: var(--text-inverse-soft); }
.section--ink .eyebrow { color: var(--brass-light); }
.section--paper-2 { background: var(--paper-2); }
.divider-top { border-top: 1px solid var(--line); }

/* ---------- botões ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: var(--text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.65rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); }

.btn--brass { --btn-bg: var(--brass); --btn-fg: #1b140a; border-color: var(--brass); }
.btn--brass:hover { --btn-bg: var(--brass-light); }
.btn--whats { --btn-bg: #1f8f5f; --btn-fg: #fff; border-color: #1f8f5f; }
.btn--whats:hover { --btn-bg: #1aa06a; }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--text);
  border-color: color-mix(in srgb, var(--text) 28%, transparent);
}
.btn--ghost:hover { --btn-bg: color-mix(in srgb, var(--text) 6%, transparent); }
.section--ink .btn--ghost,
.hero .btn--ghost { --btn-fg: var(--text-inverse); border-color: color-mix(in srgb, #fff 34%, transparent); }
.section--ink .btn--ghost:hover,
.hero .btn--ghost:hover { --btn-bg: color-mix(in srgb, #fff 10%, transparent); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--brass-strong);
  border-bottom: 1px solid color-mix(in srgb, var(--brass-strong) 40%, transparent);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease), gap .2s var(--ease);
}
.textlink:hover { gap: .7rem; border-color: var(--brass-strong); }
.section--ink .textlink { color: var(--brass-light); border-color: color-mix(in srgb, var(--brass-light) 45%, transparent); }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header .btn { white-space: nowrap; padding-block: .7rem; }
.site-header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(20,23,28,.02);
}

.brand { display: flex; align-items: center; gap: .8rem; }
.brand__mark { width: 34px; height: 34px; flex: none; color: var(--brass); }
.brand__name {
  font-family: var(--font-serif);
  font-weight: 550;
  font-size: 1.12rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text-inverse);
  transition: color .3s var(--ease);
}
.brand__name span {
  display: block;
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--brass-light);
  margin-top: .34rem;
}
.is-scrolled .brand__name { color: var(--text); }

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 2.4vw, 2rem); }
.nav__list { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.8rem); }
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-inverse);
  opacity: .82;
  transition: opacity .2s var(--ease), color .3s var(--ease);
}
.nav__link:hover { opacity: 1; }
.is-scrolled .nav__link { color: var(--text); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid color-mix(in srgb, #fff 30%, transparent);
  border-radius: 10px;
  cursor: pointer;
}
.is-scrolled .nav__toggle { border-color: var(--line); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span::before { transform: translateY(-6px); }
.nav__toggle span::after { transform: translateY(4px); }
.nav__toggle { color: var(--text-inverse); }
.is-scrolled .nav__toggle { color: var(--text); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-inverse);
  padding-top: calc(var(--header-h) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(168,127,74,.22), transparent 60%),
    radial-gradient(52% 48% at 4% 92%, rgba(67,73,47,.40), transparent 62%);
  pointer-events: none;
}
/* alvo/mira sutil ao fundo do hero */
.hero__scope {
  position: absolute;
  right: -8%;
  top: 50%;
  translate: 0 -50%;
  width: min(680px, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: .5;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle, transparent 0 58px, color-mix(in srgb, var(--brass) 16%, transparent) 58px 59px);
  -webkit-mask: radial-gradient(circle, #000 0 62%, transparent 72%);
          mask: radial-gradient(circle, #000 0 62%, transparent 72%);
}
.hero__scope::before,
.hero__scope::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: color-mix(in srgb, var(--brass) 22%, transparent);
}
.hero__scope::before { width: 100%; height: 1px; }
.hero__scope::after { width: 1px; height: 100%; }
@media (max-width: 1000px) { .hero__scope { display: none; } }
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__content { max-width: 36rem; min-width: 0; }
.hero h1 { margin-top: 1.4rem; }
.hero__sub { margin-top: 1.5rem; font-size: clamp(1.05rem, 1rem + .35vw, 1.22rem); color: var(--text-inverse-soft); }
.hero__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__trust {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid color-mix(in srgb, #fff 14%, transparent);
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2rem;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .86rem;
  color: var(--text-inverse-soft);
}
.hero__trust svg { width: 16px; height: 16px; color: var(--brass-light); flex: none; }

.hero__figure { position: relative; justify-self: end; min-width: 0; max-width: 100%; }
.hero__figure img {
  width: min(370px, 76vw);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 180px 180px var(--radius) var(--radius);
  border: 1px solid color-mix(in srgb, var(--brass) 45%, transparent);
}
.hero__figure::after {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 1px solid var(--brass);
  border-radius: 180px 180px var(--radius) var(--radius);
  z-index: -1;
  opacity: .45;
}
@media (max-width: 480px) {
  .hero__figure::after { inset: 12px 0 -12px 12px; }
}
.hero__badge {
  position: absolute;
  left: -18px;
  bottom: 26px;
  background: var(--paper);
  color: var(--text);
  padding: .8rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  font-size: .78rem;
  line-height: 1.35;
}
.hero__badge b { display: block; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; }

/* ---------- strip de áreas (marquee) ---------- */
.strip {
  background: var(--ink-soft);
  color: var(--text-inverse-soft);
  border-top: 1px solid color-mix(in srgb, #fff 8%, transparent);
  border-bottom: 1px solid color-mix(in srgb, #fff 8%, transparent);
  overflow: hidden;
  padding-block: 1.1rem;
}
.strip__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: .02em;
  white-space: nowrap;
}
.strip__track span::after { content: "◆"; color: var(--brass); font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- grid de áreas ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.section--paper-2 .card { background: #fbf8f2; }
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brass) 40%, var(--line)); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--brass) 14%, transparent);
  color: var(--brass-strong);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.22rem; }
.card p { color: var(--text-soft); font-size: .98rem; }
.card__tags { margin-top: auto; padding-top: .4rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.card__tags li {
  font-size: .74rem;
  font-weight: 500;
  color: var(--text-soft);
  background: color-mix(in srgb, var(--text) 6%, transparent);
  border-radius: 999px;
  padding: .2rem .7rem;
}

/* ---------- sobre ---------- */
.about .container {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.about__media { position: relative; min-width: 0; }
.about__body { min-width: 0; }
.about__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
  border-radius: var(--radius);
  filter: grayscale(.18) contrast(1.04);
}
.about__media figcaption {
  position: absolute;
  right: 14px;
  bottom: 18px;
  background: var(--ink);
  color: var(--text-inverse);
  padding: .9rem 1.15rem;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--brass) 40%, transparent);
  font-size: .78rem;
  box-shadow: var(--shadow-md);
}
.about__media figcaption b { font-family: var(--font-serif); font-size: 1.02rem; display: block; color: var(--brass-light); }
.about__body h2 { margin-bottom: 1.2rem; }
.about__body p + p { margin-top: 1rem; }
.about__body .lede { color: var(--text); }
.about__list {
  margin-top: 1.8rem;
  display: grid;
  gap: .8rem;
}
.about__list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .98rem; color: var(--text-soft); }
.about__list svg { width: 20px; height: 20px; color: var(--brass-strong); flex: none; margin-top: 3px; }
.about__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- processo ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--brass-light);
}
.step::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 3.2rem;
  right: 1rem;
  height: 1px;
  background: color-mix(in srgb, #fff 16%, transparent);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.step p { color: var(--text-inverse-soft); font-size: .96rem; }

/* ---------- diferenciais ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
}
.feature { display: flex; flex-direction: column; gap: .7rem; }
.feature__icon { width: 40px; height: 40px; color: var(--brass-strong); }
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 { font-size: 1.14rem; }
.feature p { color: var(--text-soft); font-size: .96rem; }

/* ---------- depoimentos ---------- */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}
@media (min-width: 760px) {
  .quotes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.quote {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: var(--ink-soft);
  border: 1px solid color-mix(in srgb, #fff 10%, transparent);
  border-radius: var(--radius);
}
.quote__stars { display: flex; gap: .18rem; color: var(--brass-light); }
.quote__stars svg { width: 16px; height: 16px; }
.quote blockquote { font-family: var(--font-serif); font-size: 1.12rem; line-height: 1.5; font-style: italic; }
.quote figcaption { font-size: .85rem; color: var(--text-inverse-soft); margin-top: auto; }
.quote figcaption b { color: var(--text-inverse); font-style: normal; font-family: var(--font-sans); display: block; }

/* ---------- faq ---------- */
.faq { max-width: 58rem; }
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.35rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.06rem, 1rem + .4vw, 1.24rem);
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  width: 12px; height: 12px;
  flex: none;
  border-right: 2px solid var(--brass-strong);
  border-bottom: 2px solid var(--brass-strong);
  transform: rotate(45deg);
  transition: transform .3s var(--ease);
  margin-bottom: 4px;
}
.faq__item[open] summary::after { transform: rotate(-135deg); margin-bottom: -2px; }
.faq__item p {
  padding: 0 0 1.5rem;
  color: var(--text-soft);
  max-width: 42rem;
}
.faq__item p a { color: var(--brass-strong); border-bottom: 1px solid; }

/* ---------- contato ---------- */
.contact .container {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}
.contact__aside { min-width: 0; }
.contact__aside h2 { margin-bottom: 1.1rem; }
.contact__aside > p { color: var(--text-inverse-soft); }
.contact__channels { margin-top: 2rem; display: grid; gap: 1rem; }
.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--ink-soft);
  border: 1px solid color-mix(in srgb, #fff 10%, transparent);
  border-radius: 12px;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.contact__channel:hover { border-color: color-mix(in srgb, var(--brass) 50%, transparent); transform: translateX(3px); }
.contact__channel svg { width: 22px; height: 22px; color: var(--brass-light); flex: none; }
.contact__channel span { min-width: 0; display: block; }
.contact__channel small {
  display: block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-inverse-soft);
  white-space: nowrap;
  margin-bottom: 2px;
}
.contact__channel b { display: block; font-weight: 600; font-size: clamp(.82rem, .76rem + .3vw, .95rem); overflow-wrap: anywhere; }
.contact__hours {
  margin-top: 1.6rem;
  font-size: .86rem;
  color: var(--text-inverse-soft);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.contact__hours svg { width: 16px; height: 16px; color: var(--brass-light); }

.form {
  background: var(--paper);
  color: var(--text);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.form__row { display: grid; gap: 1.1rem; min-width: 0; }
@media (min-width: 560px) { .form__row--2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; min-width: 0; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .02em; }
.field input, .field textarea, .field select {
  width: 100%;
  max-width: 100%;
  padding: .85rem .95rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--brass);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brass) 22%, transparent);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--consent { flex-direction: row; align-items: flex-start; gap: .6rem; font-size: .82rem; color: var(--text-soft); }
.field--consent input { width: auto; max-width: none; flex: none; margin-top: 3px; padding: 0; }
/* Turnstile (interaction-only): invisível por padrão; o respiro só entra
   quando o desafio realmente aparece (classe adicionada via callback no JS). */
.field--captcha { margin-bottom: 0; transition: margin-bottom .2s var(--ease); }
.field--captcha.is-showing { margin-bottom: .9rem; }
.field--captcha .cf-turnstile { display: flex; }
.form .btn { width: 100%; margin-top: .4rem; }
.form__note { margin-top: 1rem; font-size: .78rem; color: var(--text-soft); text-align: center; }
.form__ok {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--text);
  padding: 1rem 0;
}
.form__ok::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  margin-bottom: .9rem;
  border-radius: 50%;
  background: color-mix(in srgb, #1f8f5f 16%, transparent);
  color: #1f8f5f;
  font-size: 1.2rem;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- footer ---------- */
.site-footer {
  background: #0f1216;
  color: var(--text-inverse-soft);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: .9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid color-mix(in srgb, #fff 9%, transparent);
}
.site-footer__grid a { overflow-wrap: anywhere; }
.site-footer .brand__name { color: var(--text-inverse); }
.site-footer__about { margin-top: 1.1rem; max-width: 32ch; }
.site-footer__social { margin-top: 1.3rem; display: flex; gap: .7rem; }
.site-footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid color-mix(in srgb, #fff 16%, transparent);
  border-radius: 10px;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.site-footer__social a:hover { background: color-mix(in srgb, var(--brass) 22%, transparent); border-color: var(--brass); }
.site-footer__social svg { width: 18px; height: 18px; }
.site-footer h4 {
  font-family: var(--font-sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-inverse);
  margin-bottom: 1.1rem;
}
.site-footer li + li { margin-top: .6rem; }
.site-footer a:hover { color: var(--brass-light); }
.site-footer__legal {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: .8rem;
}
.site-footer__disclaimer {
  margin-top: 1.4rem;
  font-size: .78rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--text-inverse-soft) 80%, transparent);
  max-width: 70ch;
}

/* ---------- botão flutuante whatsapp ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: #1f8f5f;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(31,143,95,.4);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.wa-float:hover { transform: scale(1.06); background: #1aa06a; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #1f8f5f;
  animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .8; } 70%,100% { transform: scale(1.7); opacity: 0; } }

/* ---------- skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: 8px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .06s; }
.reveal:nth-child(3) { transition-delay: .12s; }
.reveal:nth-child(4) { transition-delay: .18s; }
.reveal:nth-child(5) { transition-delay: .24s; }
.reveal:nth-child(6) { transition-delay: .3s; }

/* ======================================================================
   COMPONENTES — especialização em legislação de armas
   ====================================================================== */

/* ---------- faixa de números ---------- */
.stats {
  background: var(--ink);
  color: var(--text-inverse);
  border-block: 1px solid color-mix(in srgb, #fff 8%, transparent);
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding-block: clamp(2.6rem, 5vw, 3.6rem);
}
.stat { text-align: center; position: relative; }
.stat + .stat::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(.6rem, 1.5vw, 1.25rem));
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 46px;
  background: color-mix(in srgb, #fff 12%, transparent);
}
.stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  font-weight: 500;
  line-height: 1;
  color: var(--brass-light);
  letter-spacing: -.02em;
}
.stat__num span { font-size: .6em; }
.stat__label {
  margin-top: .6rem;
  font-size: .82rem;
  color: var(--text-inverse-soft);
  line-height: 1.4;
}
@media (max-width: 720px) {
  .stats .container { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .stat:nth-child(3)::before { display: none; }
}
@media (max-width: 400px) {
  .stats .container { grid-template-columns: 1fr; }
  .stat + .stat::before { display: none; }
  .stat + .stat { border-top: 1px solid color-mix(in srgb, #fff 10%, transparent); padding-top: 1.6rem; }
}

/* ---------- "para quem é" ---------- */
.needs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(.8rem, 1.6vw, 1.15rem);
}
.need {
  display: flex;
  gap: .9rem;
  padding: 1.15rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--brass);
  border-radius: var(--radius-sm);
}
.section--paper-2 .need { background: #fbf8f2; }
.need svg { width: 22px; height: 22px; color: var(--brass-strong); flex: none; margin-top: 2px; }
.need p { font-size: .96rem; }
.need b { display: block; font-family: var(--font-serif); font-size: 1.02rem; font-weight: 550; margin-bottom: .15rem; }

/* ---------- timeline "como funciona" ---------- */
.timeline {
  display: grid;
  gap: 0;
  counter-reset: tl;
  max-width: 60rem;
}
.tl {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.3rem;
  padding-bottom: 2.4rem;
}
.tl:last-child { padding-bottom: 0; }
.tl::before {
  counter-increment: tl;
  content: counter(tl);
  grid-row: 1 / 3;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--brass-light);
  border: 1px solid color-mix(in srgb, var(--brass) 45%, transparent);
  border-radius: 50%;
  background: var(--ink);
  position: relative;
  z-index: 1;
}
.tl::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 1px;
  background: color-mix(in srgb, #fff 14%, transparent);
}
.tl:last-child::after { display: none; }
.tl h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.tl p { color: var(--text-inverse-soft); font-size: .97rem; }
.section:not(.section--ink) .tl::before { background: var(--paper); color: var(--brass-strong); }
.section:not(.section--ink) .tl::after { background: var(--line); }
.section:not(.section--ink) .tl p { color: var(--text-soft); }

/* ---------- destaque de frase ---------- */
.pull {
  margin: 2rem 0 0;
  padding: 1.4rem 0 .3rem 1.5rem;
  border-left: 3px solid var(--brass);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem);
  line-height: 1.4;
  color: var(--text);
}
.section--ink .pull { color: var(--text-inverse); }
.pull cite { display: block; margin-top: .6rem; font-size: .8rem; font-style: normal; letter-spacing: .12em; text-transform: uppercase; color: var(--brass-strong); }
.section--ink .pull cite { color: var(--brass-light); }

/* ---------- "além das armas" ---------- */
.also {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.also__text .eyebrow { margin-bottom: 1.1rem; }
.also__text h2 { margin-bottom: 1.1rem; }
.also__list { display: flex; flex-wrap: wrap; gap: .6rem; }
.also__list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem .95rem;
  background: color-mix(in srgb, var(--brass) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--brass) 28%, transparent);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
}
.also__list svg { width: 15px; height: 15px; color: var(--brass-strong); }
@media (max-width: 820px) { .also { grid-template-columns: minmax(0, 1fr); } }

/* ---------- selos / credenciais ---------- */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.8rem;
}
.creds li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-soft);
}
.creds svg { width: 16px; height: 16px; color: var(--brass-strong); }
.about__body .creds li { border-color: var(--line); }

/* ---------- responsivo ---------- */
@media (max-width: 1000px) {
  .hero .container { grid-template-columns: minmax(0, 1fr); }
  .hero__content { max-width: none; }
  .hero__figure { justify-self: start; margin-top: 2.5rem; }
  .about .container { grid-template-columns: minmax(0, 1fr); }
  .about__media { max-width: 420px; }
  .contact .container { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 1000px) {
  :root { --header-h: 66px; }
  .nav__toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gutter) 1.6rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .28s var(--ease), opacity .28s var(--ease), visibility .28s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    color: var(--text) !important;
    opacity: 1;
    padding: .95rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav .btn { margin-top: 1.1rem; }
  .site-footer__grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
}

@media (max-width: 480px) {
  .hero__badge { left: auto; right: 8px; }
  .btn { width: 100%; }
  .hero__actions .btn, .about__cta .btn { width: 100%; }
}

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

@media print {
  .site-header, .wa-float, .nav__toggle, .hero__figure, .strip { display: none; }
  body { color: #000; background: #fff; }
  .section { padding-block: 1.5rem; }
}
