/* ===================================================================
   Leandro Queiroz Advogados — Folha de estilo principal
   =================================================================== */

/* -------------------- 1. Variáveis e reset -------------------- */
:root {
  --navy-900: #0a1526;
  --navy-800: #0e1b2e;
  --navy-700: #16273f;
  --navy-600: #1f3454;
  --navy-500: #2c4568;
  --gold-600: #96733f;
  --gold-500: #b08d57;
  --gold-400: #c9a970;
  --gold-100: #f0e7d8;
  --paper: #f7f5f1;
  --paper-alt: #efece5;
  --white: #ffffff;
  --ink-900: #1b1b1b;
  --ink-700: #3d3d3d;
  --ink-500: #5f5f5f;
  --ink-300: #8d8d8d;
  --line: rgba(14, 27, 46, 0.12);
  --line-light: rgba(255, 255, 255, 0.16);

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1200px;
  --wrap-narrow: 880px;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(10, 21, 38, 0.06);
  --shadow-md: 0 8px 28px rgba(10, 21, 38, 0.1);
  --shadow-lg: 0 24px 60px rgba(10, 21, 38, 0.16);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-700);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
}

h2 {
  font-size: clamp(1.95rem, 3.8vw, 2.9rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.42rem);
}

p {
  margin: 0 0 1.15em;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  color: var(--navy-800);
  font-weight: 600;
}

/* -------------------- 2. Utilitários -------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap--narrow {
  max-width: var(--wrap-narrow);
}

.section {
  padding: 104px 0;
  position: relative;
}

.section--tight {
  padding: 76px 0;
}

.section--paper {
  background: var(--paper);
}

.section--alt {
  background: var(--paper-alt);
}

.section--white {
  background: var(--white);
}

.section--navy {
  background: var(--navy-800);
  color: rgba(255, 255, 255, 0.78);
}

.section--navy h2,
.section--navy h3,
.section--navy h4 {
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-500);
  flex: none;
}

.section--navy .eyebrow {
  color: var(--gold-400);
}

.section--navy .eyebrow::before {
  background: var(--gold-400);
}

.section-head {
  max-width: 760px;
  margin-bottom: 58px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.section-head p {
  font-size: 1.06rem;
  color: var(--ink-500);
}

.section--navy .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.rule {
  width: 56px;
  height: 2px;
  background: var(--gold-500);
  border: 0;
  margin: 0 0 26px;
}

/* -------------------- 3. Botões -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.28s var(--ease);
  text-align: center;
  line-height: 1.3;
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn--gold {
  background: var(--gold-500);
  color: var(--white);
  border-color: var(--gold-500);
}

.btn--gold:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--navy {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.btn--navy:hover {
  background: var(--navy-600);
  border-color: var(--navy-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--navy-800);
  border-color: rgba(14, 27, 46, 0.3);
}

.btn--outline:hover {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.btn--block {
  width: 100%;
}

/* -------------------- 4. Topbar -------------------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.79rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 6px 24px;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.22s;
}

.topbar a:hover {
  color: var(--gold-400);
}

.topbar svg {
  width: 14px;
  height: 14px;
  opacity: 0.85;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* -------------------- 5. Header / navegação -------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s;
}

.header.is-stuck {
  box-shadow: 0 4px 22px rgba(10, 21, 38, 0.09);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 12px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: none;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold-500);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.01em;
}

.brand__tag {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  position: relative;
  padding: 10px 11px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-700);
  transition: color 0.22s;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 1.5px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}

.nav a:hover,
.nav a.is-active {
  color: var(--navy-800);
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header__cta {
  flex: none;
  margin-left: 10px;
  padding: 12px 20px;
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  flex: none;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 1.6px;
  background: var(--navy-800);
  transition: all 0.3s var(--ease);
}

.burger span:nth-child(1) {
  top: 16px;
}

.burger span:nth-child(2) {
  top: 22px;
}

.burger span:nth-child(3) {
  top: 28px;
}

.burger.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 12px 24px 26px;
}

.mobile-nav.is-open {
  display: block;
  animation: fadeDown 0.3s var(--ease);
}

.mobile-nav a {
  display: block;
  padding: 13px 2px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-800);
  border-bottom: 1px solid var(--line);
}

.mobile-nav .btn {
  margin-top: 20px;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- 6. Hero -------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 22%;
  filter: grayscale(100%) contrast(1.05);
  opacity: 0.3;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgba(10, 21, 38, 0.97) 0%,
      rgba(10, 21, 38, 0.9) 42%,
      rgba(14, 27, 46, 0.72) 72%,
      rgba(14, 27, 46, 0.6) 100%
    ),
    radial-gradient(120% 90% at 12% 20%, rgba(176, 141, 87, 0.14), transparent 60%);
}

.hero__inner {
  width: 100%;
  padding: 112px 24px 96px;
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 64px;
  align-items: center;
}

.hero__inner > * {
  min-width: 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 26px;
}

.hero__eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold-400);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 26px;
  letter-spacing: -0.015em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}

.hero__lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px 26px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
  max-width: 700px;
}

.hero__badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.87rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

.hero__badge svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
  color: var(--gold-400);
}

/* Card lateral do hero */
.hero__card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-light);
  backdrop-filter: blur(6px);
  padding: 36px 34px;
  border-radius: var(--radius);
}

.hero__card h3 {
  color: var(--white);
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.hero__card > p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 24px;
}

.hero__list {
  display: grid;
  gap: 13px;
  margin-bottom: 28px;
}

.hero__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.hero__list li::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: none;
  margin-top: 9px;
  background: var(--gold-400);
  transform: rotate(45deg);
}

.hero__note {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  line-height: 1.55;
}

/* -------------------- 7. Faixa de especialidades -------------------- */
.strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  padding: 26px 24px;
}

.strip__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 26px;
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 600;
  color: var(--navy-700);
  white-space: nowrap;
  position: relative;
}

.strip__item + .strip__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  background: var(--gold-500);
}

/* -------------------- 8. Sobre -------------------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 72px;
  align-items: start;
}

.about__figure {
  position: sticky;
  top: 120px;
  margin: 0;
  padding: 16px 0 0 16px;
}

.about__figure-inner {
  position: relative;
}

.about__figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 74%;
  height: 78%;
  border: 1px solid var(--gold-500);
  z-index: 0;
}

.about__figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  box-shadow: var(--shadow-lg);
  filter: saturate(0.92);
}

.about__stamp {
  position: absolute;
  z-index: 2;
  right: -14px;
  bottom: 34px;
  background: var(--navy-800);
  color: var(--white);
  padding: 20px 24px;
  max-width: 232px;
  border-left: 3px solid var(--gold-500);
  box-shadow: var(--shadow-md);
}

.about__stamp strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 3px;
}

.about__stamp span {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-400);
  line-height: 1.5;
  display: block;
}

.about__body p {
  font-size: 1.03rem;
}

.about__quote {
  margin: 32px 0;
  padding: 22px 0 22px 28px;
  border-left: 2px solid var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.34rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--navy-700);
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.value__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 7px;
}

.value__title svg {
  width: 17px;
  height: 17px;
  color: var(--gold-500);
  flex: none;
}

.value p {
  font-size: 0.9rem;
  color: var(--ink-500);
  line-height: 1.65;
}

/* -------------------- 9. Áreas de atuação -------------------- */
.areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.area {
  background: var(--white);
  padding: 34px 30px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
}

.area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.34s var(--ease);
}

.area:hover {
  background: var(--paper);
}

.area:hover::after {
  transform: scaleY(1);
}

.area__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 12px;
}

.area__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--gold-600);
}

.area__icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.35;
}

.area h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.area p {
  font-size: 0.91rem;
  color: var(--ink-500);
  line-height: 1.68;
}

/* -------------------- 10. Blocos de prática (registral, contratos, etc.) -------------------- */
.practice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.practice + .practice {
  margin-top: 84px;
  padding-top: 84px;
  border-top: 1px solid var(--line);
}

.section--navy .practice + .practice {
  border-top-color: var(--line-light);
}

.practice--flip .practice__text {
  order: 2;
}

.practice__text p {
  font-size: 1.02rem;
}

.taglist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px 24px;
}

.taglist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--ink-700);
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.section--navy .taglist li {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: var(--line-light);
}

.taglist svg {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 3px;
  color: var(--gold-500);
}

.section--navy .taglist svg {
  color: var(--gold-400);
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  padding: 38px 34px;
  box-shadow: var(--shadow-sm);
}

.section--navy .panel {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-light);
  border-top-color: var(--gold-400);
}

.panel h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
}

/* -------------------- 11. Metodologia -------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-400);
  display: block;
  margin-bottom: 14px;
  opacity: 0.9;
}

.step h3 {
  font-size: 1.18rem;
  margin-bottom: 9px;
}

.step p {
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.68);
}

/* -------------------- 12. Diferenciais -------------------- */
.diffs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}

.diff {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.diff:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(176, 141, 87, 0.5);
}

.diff__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--gold-100);
  color: var(--gold-600);
  margin-bottom: 18px;
  border-radius: 2px;
}

.diff__icon svg {
  width: 23px;
  height: 23px;
}

.diff h3 {
  font-size: 1.14rem;
  margin-bottom: 9px;
}

.diff p {
  font-size: 0.91rem;
  color: var(--ink-500);
  line-height: 1.68;
}

/* -------------------- 13. Situações / checklist -------------------- */
.cases__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.cases__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-light);
}

.cases__list li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.97rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.cases__list svg {
  width: 19px;
  height: 19px;
  flex: none;
  margin-top: 2px;
  color: var(--gold-400);
}

/* -------------------- 14. Faixa CTA -------------------- */
.cta-band {
  background: var(--gold-500);
  color: #fff;
  padding: 60px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: var(--white);
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 1rem;
  max-width: 620px;
}

.cta-band .btn--navy:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

/* -------------------- 15. FAQ -------------------- */
.faq {
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.4;
  transition: color 0.22s;
}

.faq__q:hover {
  color: var(--gold-600);
}

.faq__sign {
  flex: none;
  width: 24px;
  height: 24px;
  position: relative;
  margin-top: 4px;
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: var(--gold-500);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.faq__sign::before {
  left: 0;
  top: 11px;
  width: 24px;
  height: 1.8px;
}

.faq__sign::after {
  top: 0;
  left: 11px;
  width: 1.8px;
  height: 24px;
}

.faq__item.is-open .faq__sign::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s var(--ease);
}

.faq__a-inner {
  padding: 0 60px 30px 4px;
  font-size: 0.99rem;
  color: var(--ink-500);
  line-height: 1.78;
}

/* -------------------- 16. Contato -------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 60px;
  align-items: start;
}

.contact__channels {
  display: grid;
  gap: 4px;
  margin-top: 34px;
}

.channel {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.channel:last-child {
  border-bottom: 0;
}

.channel__icon {
  width: 42px;
  height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-500);
  color: var(--gold-600);
  border-radius: 2px;
}

.channel__icon svg {
  width: 19px;
  height: 19px;
}

.channel__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-300);
  margin-bottom: 3px;
}

.channel__value {
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.4;
}

.channel__value a:hover {
  color: var(--gold-600);
}

.channel__hint {
  font-size: 0.84rem;
  color: var(--ink-500);
  margin-top: 2px;
}

/* Formulário */
.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-500);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.form h3 {
  font-size: 1.42rem;
  margin-bottom: 6px;
}

.form__intro {
  font-size: 0.93rem;
  color: var(--ink-500);
  margin-bottom: 28px;
}

.field {
  margin-bottom: 20px;
}

.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.14);
}

.field 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'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.81rem;
  color: var(--ink-500);
  line-height: 1.6;
  margin-bottom: 24px;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--gold-500);
}

.form__note {
  font-size: 0.78rem;
  color: var(--ink-300);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6;
}

.form__status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 0.89rem;
  line-height: 1.6;
}

.form__status.is-visible {
  display: block;
}

.form__status.is-ok {
  background: rgba(176, 141, 87, 0.12);
  border: 1px solid rgba(176, 141, 87, 0.4);
  color: var(--navy-800);
}

/* -------------------- 17. Mapa / horário -------------------- */
.hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.hours__item {
  font-size: 0.9rem;
  color: var(--ink-500);
}

.hours__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.04rem;
  color: var(--navy-800);
  margin-bottom: 2px;
}

/* -------------------- 18. Footer -------------------- */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding-top: 76px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 46px;
  padding-bottom: 56px;
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer__brand .brand__name {
  color: var(--white);
}

.footer__brand .brand__mark {
  background: transparent;
}

.footer__about {
  margin-top: 22px;
  font-size: 0.89rem;
  line-height: 1.72;
  max-width: 360px;
}

.footer__links li {
  margin-bottom: 11px;
}

.footer__links a {
  transition: color 0.22s, padding-left 0.22s;
}

.footer__links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer__contact li {
  margin-bottom: 15px;
  line-height: 1.65;
}

.footer__contact a:hover {
  color: var(--gold-400);
}

.social {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

.social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #fff;
}

.social svg {
  width: 17px;
  height: 17px;
}

.footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0 34px;
}

.footer__disclaimer {
  font-size: 0.79rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.42);
  max-width: 940px;
  margin-bottom: 22px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.81rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer__bottom a:hover {
  color: var(--gold-400);
}

/* -------------------- 19. WhatsApp flutuante e voltar ao topo -------------------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 20px;
  background: #1faa53;
  color: #fff;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(31, 170, 83, 0.36);
  transition: transform 0.26s var(--ease), box-shadow 0.26s;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(31, 170, 83, 0.46);
}

.wa-float svg {
  width: 22px;
  height: 22px;
  flex: none;
}

.to-top {
  position: fixed;
  right: 26px;
  bottom: 94px;
  z-index: 940;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.to-top svg {
  width: 18px;
  height: 18px;
}

/* -------------------- 20. Animação de entrada -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* -------------------- 21. Responsivo -------------------- */
@media (max-width: 1240px) {
  .nav a {
    padding: 10px 8px;
    font-size: 0.78rem;
  }
  .nav a::after {
    left: 8px;
    right: 8px;
  }
  .header__cta {
    padding: 11px 16px;
    font-size: 0.7rem;
  }
}

@media (max-width: 1120px) {
  .nav {
    display: none;
  }
  .header__cta {
    display: none;
  }
  .burger {
    display: block;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 80px 24px 72px;
  }
  .hero__card {
    max-width: 640px;
  }
  .about__grid,
  .practice,
  .cases__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .practice--flip .practice__text {
    order: 0;
  }
  .about__figure {
    position: relative;
    top: auto;
    max-width: 460px;
    margin-inline: auto;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 72px 0;
  }
  .section--tight {
    padding: 56px 0;
  }
  .topbar__left .topbar__item--hide,
  .topbar__right .topbar__item--hide {
    display: none;
  }
  .topbar {
    font-size: 0.74rem;
  }
  .topbar__inner {
    justify-content: center;
    gap: 14px;
  }
  .hero__inner {
    padding: 62px 24px 58px;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .strip__item {
    padding: 5px 16px;
    font-size: 0.94rem;
  }
  .about__figure {
    padding: 12px 0 0 12px;
  }
  .about__stamp {
    position: static;
    right: auto;
    bottom: auto;
    padding: 16px 20px;
    max-width: none;
    margin-top: -1px;
  }
  .about__quote {
    font-size: 1.16rem;
    padding-left: 20px;
  }
  .practice + .practice {
    margin-top: 56px;
    padding-top: 56px;
  }
  .form {
    padding: 30px 22px;
  }
  .field--row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field--row .field {
    margin-bottom: 20px;
  }
  .faq__a-inner {
    padding-right: 8px;
  }
  .cta-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band .btn {
    width: 100%;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 42px;
  }
  .wa-float span {
    display: none;
  }
  .wa-float {
    padding: 15px;
    right: 16px;
    bottom: 16px;
  }
  .to-top {
    right: 18px;
    bottom: 82px;
    width: 40px;
    height: 40px;
  }
  .area {
    padding: 28px 24px;
  }
}

/* -------------------- 20. Páginas legais -------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: #fff;
  padding: 12px 20px;
  z-index: 999;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.legal {
  padding: 132px 0 96px;
  background: var(--paper);
}

.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.16;
  margin: 14px 0 10px;
}

.legal h2 {
  font-size: 1.32rem;
  margin: 44px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.legal p {
  margin-bottom: 16px;
  color: var(--ink-700);
  line-height: 1.8;
}

.legal__meta {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-300);
}

.legal blockquote {
  margin: 22px 0;
  padding: 18px 24px;
  background: #fff;
  border-left: 3px solid var(--gold-500);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0 26px;
  background: #fff;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.legal th,
.legal td {
  text-align: left;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.legal th {
  background: var(--navy-900);
  color: #fff;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal__back {
  font-size: 0.9rem;
  margin-bottom: 26px;
}

.legal__back a {
  color: var(--gold-600);
  border-bottom: 1px solid transparent;
}

.legal__back a:hover {
  border-bottom-color: var(--gold-600);
}

.legal__back--end {
  margin-top: 46px;
}

.footer--slim {
  padding: 42px 0 34px;
  text-align: center;
}

.footer--slim .footer__disclaimer {
  max-width: 760px;
  margin: 0 auto 12px;
}

@media (max-width: 760px) {
  .legal {
    padding: 104px 0 72px;
  }
  .legal table,
  .legal thead,
  .legal tbody,
  .legal tr,
  .legal th,
  .legal td {
    display: block;
    width: 100%;
  }
  .legal thead {
    display: none;
  }
  .legal tr {
    border-bottom: 1px solid var(--line);
    padding: 6px 0;
  }
  .legal td {
    border: none;
    padding: 6px 16px;
  }
  .legal td:first-child {
    font-weight: 600;
    color: var(--navy-800);
    padding-top: 14px;
  }
  .legal td:last-child {
    padding-bottom: 14px;
  }
}

@media print {
  .header,
  .topbar,
  .wa-float,
  .to-top,
  .burger,
  .mobile-nav {
    display: none !important;
  }
  .hero {
    background: #fff;
    color: #000;
  }
  .faq__a {
    max-height: none !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
