/* ==========================================================================
   Vasconcellos & Almeida — Sociedade de Advogados
   style.css
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Utilidades (container, eyebrow, section, links, botões)
   4.  Preloader
   5.  Navbar & menu mobile
   6.  Hero
   7.  Indicadores
   8.  Institucional & timeline horizontal
   9.  Áreas de atuação
   10. Diferenciais
   11. Advogados
   12. Processo de atendimento
   13. Depoimentos (Swiper)
   14. Artigos
   15. FAQ
   16. CTA final
   17. Footer
   18. Responsividade
   19. Acessibilidade & reduced motion
   ========================================================================== */

/* 1. Tokens
   ========================================================================== */
:root {
  /* Paleta */
  --vinho: #7A0E16;
  --rubi: #A1141C;
  --preto: #0D0D0D;
  --grafite: #1E1E1E;
  --gelo: #F8F8F8;
  --ouro: #C5A46D;

  /* Derivados */
  --vinho-escuro: #560A10;
  --grafite-claro: #2A2A2A;
  --texto: #2B2B2B;
  --texto-suave: #6B6B6B;
  --texto-claro: rgba(248, 248, 248, 0.72);
  --linha: rgba(13, 13, 13, 0.1);
  --linha-clara: rgba(248, 248, 248, 0.12);

  /* Tipografia */
  --font-display: "Playfair Display", Georgia, serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-ui: "Manrope", -apple-system, sans-serif;

  /* Escala */
  --fs-hero: clamp(2.5rem, 5.6vw, 4.75rem);
  --fs-h2: clamp(1.9rem, 3.4vw, 3rem);
  --fs-h3: clamp(1.1rem, 1.5vw, 1.3rem);
  --fs-lead: clamp(1.05rem, 1.4vw, 1.2rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.78rem;

  /* Espaçamento */
  --section-pad: clamp(6rem, 11vw, 10.5rem);
  --container: 82.5rem;

  /* Superfícies */
  --sombra-card: 0 24px 60px -28px rgba(13, 13, 13, 0.28);
  --sombra-suave: 0 12px 40px -20px rgba(13, 13, 13, 0.2);
  --radius: 4px;

  /* Movimento */
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. Reset & base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--texto);
  background-color: var(--gelo);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  color: var(--preto);
}

h1 em, h2 em, h3 em, .cta-title em {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
}

::selection {
  background: var(--vinho);
  color: var(--gelo);
}

/* 3. Utilidades
   ========================================================================== */
.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}

.container-narrow {
  max-width: 54rem;
}

.section {
  padding-block: var(--section-pad);
}

.section-dark {
  background: var(--preto);
  color: var(--texto-claro);
}

.section-dark h2,
.section-dark h3 {
  color: var(--gelo);
}

.section-header {
  max-width: 42rem;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.section-title {
  font-size: var(--fs-h2);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: var(--fs-lead);
  color: var(--texto-suave);
  font-weight: 300;
}

.section-dark .section-sub {
  color: var(--texto-claro);
}

.lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--texto);
  margin-bottom: 1.25rem;
}

/* Eyebrow — etiqueta de seção */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vinho);
  margin-bottom: 1.4rem;
}

.section-dark .eyebrow {
  color: var(--ouro);
}

.eyebrow-rule {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* Link com seta */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--vinho);
  transition: color 0.35s var(--ease-lux);
}

.link-arrow i {
  transition: transform 0.35s var(--ease-lux);
}

.link-arrow:hover {
  color: var(--rubi);
}

.link-arrow:hover i {
  transform: translateX(6px);
}

.link-arrow-light {
  color: var(--gelo);
}

.link-arrow-light:hover {
  color: var(--ouro);
}

/* Botões */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    background-color 0.4s var(--ease-lux),
    color 0.4s var(--ease-lux),
    border-color 0.4s var(--ease-lux),
    transform 0.4s var(--ease-lux),
    box-shadow 0.4s var(--ease-lux);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--vinho);
  color: var(--gelo);
  box-shadow: 0 14px 34px -14px rgba(122, 14, 22, 0.55);
}

.btn-primary:hover {
  background: var(--rubi);
  box-shadow: 0 20px 44px -14px rgba(161, 20, 28, 0.6);
}

.btn-ghost {
  color: var(--gelo);
  border: 1px solid rgba(248, 248, 248, 0.35);
  background: rgba(248, 248, 248, 0.02);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--ouro);
  color: var(--ouro);
}

.btn-light {
  background: var(--gelo);
  color: var(--vinho);
}

.btn-light:hover {
  background: #ffffff;
  box-shadow: 0 22px 50px -18px rgba(13, 13, 13, 0.5);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
}

.btn-xl {
  padding: 1.25rem 3.2rem;
  font-size: 0.88rem;
}

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.25;
  transform: scale(0);
  pointer-events: none;
}

/* 4. Preloader
   ========================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--preto);
  transition: opacity 0.9s var(--ease-lux), visibility 0.9s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.preloader-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.preloader-monogram {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gelo);
  letter-spacing: 0.08em;
}

.preloader-monogram em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--ouro);
}

.preloader-rule {
  width: 8rem;
  height: 1px;
  background: rgba(248, 248, 248, 0.15);
  position: relative;
  overflow: hidden;
}

.preloader-rule::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--vinho);
  transform-origin: left;
  animation: preload-line 1.6s var(--ease-lux) infinite;
}

@keyframes preload-line {
  0%   { transform: scaleX(0); transform-origin: left; }
  55%  { transform: scaleX(1); transform-origin: left; }
  56%  { transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* 5. Navbar & menu mobile
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.4rem;
  transition: padding 0.5s var(--ease-lux), background-color 0.5s var(--ease-lux),
    box-shadow 0.5s var(--ease-lux);
}

.navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--linha-clara);
  opacity: 0;
  transition: opacity 0.5s var(--ease-lux);
  pointer-events: none;
}

.navbar.is-scrolled {
  padding-block: 0.85rem;
}

.navbar.is-scrolled::before {
  opacity: 1;
}

.navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Marca */
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--gelo);
}

.brand-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid rgba(197, 164, 109, 0.5);
  color: var(--gelo);
  transition: border-color 0.4s var(--ease-lux);
}

.brand:hover .brand-monogram {
  border-color: var(--ouro);
}

.brand-monogram em,
.brand-name em {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--ouro);
}

.brand-name {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  white-space: nowrap;
}

.brand-name small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.55);
  margin-top: 0.2rem;
}

/* Navegação desktop */
.nav-list {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-link {
  position: relative;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.78);
  padding-block: 0.4rem;
  transition: color 0.35s var(--ease-lux);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ouro);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gelo);
}

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

.btn-nav {
  padding: 0.75rem 1.6rem;
  font-size: 0.74rem;
}

/* Toggle mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding-inline: 0.55rem;
  z-index: 120;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--gelo);
  transition: transform 0.45s var(--ease-lux), opacity 0.3s, width 0.45s var(--ease-lux);
}

.nav-toggle span:nth-child(2) {
  width: 70%;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95; /* abaixo do navbar: marca e botão de fechar permanecem acessíveis */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  padding: 6rem 2rem 3rem;
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  visibility: hidden;
  opacity: 0;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  color: var(--gelo);
  padding-block: 0.35rem;
  transition: color 0.35s var(--ease-lux), transform 0.35s var(--ease-lux);
}

.mobile-link:hover {
  color: var(--ouro);
  transform: translateX(8px);
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-menu-footer p {
  font-size: var(--fs-small);
  color: rgba(248, 248, 248, 0.5);
}

/* 6. Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--preto);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: -12% 0;
  width: 100%;
  height: 124%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 13, 13, 0.62) 0%, rgba(13, 13, 13, 0.38) 45%, rgba(13, 13, 13, 0.88) 100%),
    linear-gradient(100deg, rgba(13, 13, 13, 0.75) 0%, rgba(13, 13, 13, 0.15) 65%),
    radial-gradient(120% 90% at 85% 10%, rgba(122, 14, 22, 0.22) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  padding-block: 10rem 8rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-ui);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 2rem;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.12;
  color: var(--gelo);
  max-width: 16ch;
  margin-bottom: 2rem;
}

.hero-title em {
  color: var(--ouro);
}

/* linhas do SplitType precisam de máscara */
.hero-title .line {
  overflow: hidden;
}

.hero-sub {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: var(--texto-claro);
  max-width: 34rem;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

/* Indicador de scroll */
.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.hero-scroll-line {
  width: 1px;
  height: 3.4rem;
  background: rgba(248, 248, 248, 0.18);
  position: relative;
  overflow: hidden;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ouro);
  animation: scroll-cue 2.2s var(--ease-lux) infinite;
}

@keyframes scroll-cue {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.hero-scroll-label {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(248, 248, 248, 0.55);
  transition: color 0.35s var(--ease-lux);
}

.hero-scroll:hover .hero-scroll-label {
  color: var(--ouro);
}

/* 7. Indicadores
   ========================================================================== */
.stats {
  background: var(--gelo);
  border-bottom: 1px solid var(--linha);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: clamp(3rem, 5vw, 4.5rem) 2rem;
  text-align: center;
  border-left: 1px solid var(--linha);
}

.stat:first-child {
  border-left: none;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 500;
  color: var(--vinho);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--texto-suave);
}

/* 8. Institucional & timeline horizontal
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-figure {
  position: relative;
  overflow: hidden;
  box-shadow: var(--sombra-card);
}

.about-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform-origin: center;
}

.about-frame {
  position: absolute;
  inset: 1.6rem -1.6rem -1.6rem 1.6rem;
  border: 1px solid rgba(122, 14, 22, 0.35);
  z-index: -1;
  pointer-events: none;
}

.about-copy p {
  margin-bottom: 1.25rem;
  color: var(--texto-suave);
}

.about-copy .lead {
  color: var(--texto);
}

.about-copy .link-arrow {
  margin-top: 1rem;
}

/* Timeline horizontal */
.history {
  margin-top: clamp(5rem, 9vw, 8.5rem);
}

.history-track {
  position: relative;
}

.history-line {
  position: absolute;
  top: 0.45rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--linha);
}

.history-line-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--vinho), var(--rubi));
  transform: scaleX(0);
  transform-origin: left;
}

.history-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.history-item {
  position: relative;
  padding-top: 2.4rem;
}

.history-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  border: 1px solid var(--vinho);
  background: var(--gelo);
}

.history-item::after {
  content: "";
  position: absolute;
  top: 0.28rem;
  left: 0.28rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--vinho);
}

.history-year {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ouro);
}

.history-title {
  font-size: var(--fs-h3);
  margin: 0.5rem 0 0.6rem;
}

.history-item p {
  font-size: var(--fs-small);
  color: var(--texto-suave);
}

/* 9. Áreas de atuação
   ========================================================================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2.6rem 2.1rem 2.9rem;
  background: var(--grafite);
  border: 1px solid rgba(248, 248, 248, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.55s var(--ease-lux),
    border-color 0.55s var(--ease-lux),
    box-shadow 0.55s var(--ease-lux),
    background-color 0.55s var(--ease-lux);
}

/* brilho discreto no hover */
.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -70%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(248, 248, 248, 0.045), transparent);
  transform: skewX(-18deg);
  transition: left 0.9s var(--ease-lux);
  pointer-events: none;
}

.area-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 164, 109, 0.28);
  background-color: var(--grafite-claro);
  box-shadow: 0 32px 60px -30px rgba(0, 0, 0, 0.7);
}

.area-card:hover::before {
  left: 130%;
}

.area-icon {
  font-size: 1.5rem;
  color: var(--ouro);
  margin-bottom: 0.4rem;
}

.area-card h3 {
  font-size: var(--fs-h3);
}

.area-card p {
  font-size: var(--fs-small);
  color: rgba(248, 248, 248, 0.6);
}

/* linha vermelha animada */
.area-line {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--vinho), var(--rubi));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-lux);
}

.area-card:hover .area-line {
  transform: scaleX(1);
}

/* card CTA */
.area-card-cta {
  justify-content: center;
  gap: 1.4rem;
  background: linear-gradient(150deg, var(--vinho), var(--vinho-escuro));
  border-color: rgba(197, 164, 109, 0.2);
}

.area-card-cta:hover {
  background: linear-gradient(150deg, var(--rubi), var(--vinho));
}

.area-card-cta h3 {
  font-size: 1.35rem;
  line-height: 1.3;
}

/* 10. Diferenciais
   ========================================================================== */
.diff {
  position: relative;
  background:
    radial-gradient(90% 70% at 110% -10%, rgba(122, 14, 22, 0.05) 0%, transparent 60%),
    var(--gelo);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.diff-card {
  padding: 2.8rem 2.3rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(13, 13, 13, 0.06);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--sombra-suave);
  transition: transform 0.55s var(--ease-lux), box-shadow 0.55s var(--ease-lux),
    border-color 0.55s var(--ease-lux);
}

.diff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(122, 14, 22, 0.18);
  box-shadow: var(--sombra-card);
}

.diff-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.6rem;
}

.diff-icon i {
  font-size: 1.35rem;
  color: var(--vinho);
  transition: transform 0.5s var(--ease-lux);
}

.diff-card:hover .diff-icon i {
  transform: scale(1.12);
}

.diff-lottie {
  position: absolute;
  inset: 0;
}

.diff-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0.7rem;
}

.diff-card p {
  font-size: var(--fs-small);
  color: var(--texto-suave);
}

/* 11. Advogados
   ========================================================================== */
.team {
  background:
    radial-gradient(80% 60% at -10% 110%, rgba(122, 14, 22, 0.12) 0%, transparent 60%),
    var(--preto);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--grafite);
  outline: none;
}

.team-photo {
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.01);
  transition: filter 0.7s var(--ease-lux), transform 0.7s var(--ease-lux);
}

.team-card:hover .team-photo img,
.team-card:focus-visible .team-photo img,
.team-card:focus-within .team-photo img {
  filter: grayscale(0);
  transform: scale(1.06);
}

.team-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.8rem 1.6rem 1.6rem;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.55) 22%, rgba(13, 13, 13, 0.94) 100%);
  transform: translateY(calc(100% - 5.4rem));
  transition: transform 0.6s var(--ease-lux);
}

.team-card:hover .team-info,
.team-card:focus-visible .team-info,
.team-card:focus-within .team-info {
  transform: translateY(0);
}

.team-info h3 {
  font-size: 1.25rem;
  color: var(--gelo);
}

.team-role {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-top: 0.35rem;
}

.team-bio {
  font-size: var(--fs-small);
  color: rgba(248, 248, 248, 0.65);
  margin-top: 0.9rem;
  opacity: 0;
  transition: opacity 0.5s var(--ease-lux) 0.15s;
}

.team-card:hover .team-bio,
.team-card:focus-visible .team-bio,
.team-card:focus-within .team-bio {
  opacity: 1;
}

.team-linkedin {
  position: absolute;
  top: -1.4rem;
  right: 1.4rem;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--vinho);
  color: var(--gelo);
  font-size: 0.9rem;
  transition: background-color 0.4s var(--ease-lux), transform 0.4s var(--ease-lux);
}

.team-linkedin:hover {
  background: var(--rubi);
  transform: translateY(-3px);
}

/* 12. Processo de atendimento
   ========================================================================== */
.process-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4.2rem);
  padding-left: 3.4rem;
}

.process-line {
  position: absolute;
  top: 0.6rem;
  bottom: 0.6rem;
  left: 0.55rem;
  width: 1px;
  background: var(--linha);
}

.process-line-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--vinho), var(--rubi));
  transform: scaleY(0);
  transform-origin: top;
}

.process-step {
  position: relative;
  display: flex;
  gap: 1.8rem;
  align-items: baseline;
}

.process-dot {
  position: absolute;
  top: 0.35rem;
  left: -3.4rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 1px solid rgba(122, 14, 22, 0.4);
  background: var(--gelo);
  transition: border-color 0.5s var(--ease-lux), box-shadow 0.5s var(--ease-lux);
}

.process-dot::after {
  content: "";
  position: absolute;
  inset: 0.3rem;
  border-radius: 50%;
  background: var(--vinho);
  transform: scale(0);
  transition: transform 0.5s var(--ease-lux);
}

.process-step.is-active .process-dot {
  border-color: var(--vinho);
  box-shadow: 0 0 0 5px rgba(122, 14, 22, 0.08);
}

.process-step.is-active .process-dot::after {
  transform: scale(1);
}

.process-num {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 2.1rem;
  color: rgba(122, 14, 22, 0.35);
  line-height: 1;
  min-width: 3rem;
  transition: color 0.5s var(--ease-lux);
}

.process-step.is-active .process-num {
  color: var(--ouro);
}

.process-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.process-body p {
  color: var(--texto-suave);
  max-width: 34rem;
}

/* 13. Depoimentos (Swiper)
   ========================================================================== */
.testimonials-swiper {
  overflow: hidden;
  padding-bottom: 4rem;
}

.testimonial {
  position: relative;
  height: 100%;
  padding: 3rem 2.5rem 2.6rem;
  background: var(--grafite);
  border: 1px solid rgba(248, 248, 248, 0.07);
  border-radius: var(--radius);
  transition: border-color 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}

.swiper-slide {
  height: auto;
}

.testimonial:hover {
  border-color: rgba(197, 164, 109, 0.25);
}

.testimonial-quote {
  position: absolute;
  top: 0.6rem;
  left: 1.6rem;
  font-family: var(--font-accent);
  font-size: 6.5rem;
  line-height: 1;
  color: rgba(122, 14, 22, 0.55);
  pointer-events: none;
}

.testimonial p {
  position: relative;
  font-family: var(--font-accent);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--gelo);
  margin-bottom: 2rem;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid rgba(248, 248, 248, 0.08);
  padding-top: 1.4rem;
}

.testimonial cite {
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gelo);
}

.testimonial footer span {
  font-size: 0.8rem;
  color: rgba(248, 248, 248, 0.5);
}

.stars {
  margin-top: 0.7rem;
  display: flex;
  gap: 0.25rem;
  font-size: 0.6rem;
  color: var(--ouro);
  opacity: 0.85;
}

/* paginação */
.testimonials-swiper .swiper-pagination-bullet {
  width: 2.2rem;
  height: 2px;
  border-radius: 0;
  background: rgba(248, 248, 248, 0.25);
  opacity: 1;
  transition: background-color 0.4s var(--ease-lux);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--ouro);
}

/* 14. Artigos
   ========================================================================== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--linha);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.55s var(--ease-lux), box-shadow 0.55s var(--ease-lux);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sombra-card);
}

.article-media {
  display: block;
  overflow: hidden;
}

.article-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.8s var(--ease-lux);
}

.article-card:hover .article-media img {
  transform: scale(1.05);
}

.article-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.9rem 1.8rem 2.1rem;
  flex: 1;
}

.article-tag {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vinho);
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(122, 14, 22, 0.25);
  border-radius: 2px;
}

.article-body h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}

.article-body h3 a {
  transition: color 0.35s var(--ease-lux);
}

.article-body h3 a:hover {
  color: var(--vinho);
}

.article-body p {
  font-size: var(--fs-small);
  color: var(--texto-suave);
  flex: 1;
}

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

.faq-item {
  border-bottom: 1px solid var(--linha);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.7rem 0.2rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  color: var(--preto);
  transition: color 0.35s var(--ease-lux);
}

.faq-q:hover {
  color: var(--vinho);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.85rem;
  color: var(--vinho);
  transition: transform 0.5s var(--ease-lux);
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease-lux);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
}

.faq-a-inner p {
  padding: 0 0.2rem 1.8rem;
  color: var(--texto-suave);
  max-width: 46rem;
}

/* 16. CTA final
   ========================================================================== */
.cta-final {
  position: relative;
  padding-block: clamp(6.5rem, 11vw, 10rem);
  background:
    radial-gradient(90% 120% at 15% 0%, rgba(197, 164, 109, 0.1) 0%, transparent 50%),
    linear-gradient(140deg, var(--vinho) 0%, var(--vinho-escuro) 60%, #3d070c 100%);
  text-align: center;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(248, 248, 248, 0.1);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  color: var(--gelo);
  max-width: 22ch;
  margin: 0 auto 1.6rem;
}

.cta-title em {
  color: var(--ouro);
}

.cta-sub {
  font-size: var(--fs-lead);
  font-weight: 300;
  color: rgba(248, 248, 248, 0.72);
  margin-bottom: 3rem;
}

/* 17. Footer
   ========================================================================== */
.footer {
  background: var(--preto);
  color: var(--texto-claro);
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
  border-bottom: 1px solid var(--linha-clara);
}

.brand-footer {
  margin-bottom: 1.6rem;
}

.footer-desc {
  font-size: var(--fs-small);
  color: rgba(248, 248, 248, 0.55);
  max-width: 22rem;
  margin-bottom: 1.8rem;
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--linha-clara);
  border-radius: 50%;
  color: rgba(248, 248, 248, 0.7);
  font-size: 0.85rem;
  transition: border-color 0.4s var(--ease-lux), color 0.4s var(--ease-lux),
    transform 0.4s var(--ease-lux);
}

.footer-social a:hover {
  border-color: var(--ouro);
  color: var(--ouro);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: var(--fs-small);
  color: rgba(248, 248, 248, 0.62);
  transition: color 0.35s var(--ease-lux), padding-left 0.35s var(--ease-lux);
}

.footer-links a:hover {
  color: var(--gelo);
  padding-left: 6px;
}

.footer-contact li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  margin-bottom: 1.1rem;
  font-size: var(--fs-small);
  color: rgba(248, 248, 248, 0.62);
}

.footer-contact i {
  color: var(--vinho);
  font-size: 0.85rem;
  translate: 0 1px;
}

.footer-contact a:hover {
  color: var(--gelo);
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--linha-clara);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 13rem;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 1.8rem;
  font-size: 0.78rem;
  color: rgba(248, 248, 248, 0.45);
}

.footer-legal {
  display: flex;
  gap: 1.8rem;
}

.footer-legal a {
  transition: color 0.35s var(--ease-lux);
}

.footer-legal a:hover {
  color: var(--ouro);
}

/* 18. Responsividade
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-desktop {
    display: none;
  }

  .btn-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    max-width: 30rem;
  }

  .history-list {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    padding-left: 2.2rem;
  }

  .history-line {
    top: 0;
    bottom: 0;
    left: 0.45rem;
    right: auto;
    width: 1px;
    height: auto;
  }

  .history-line-fill {
    transform: scaleY(0);
    transform-origin: top;
  }

  .history-item {
    padding-top: 0;
  }

  .history-item::before {
    top: 0.3rem;
    left: -2.2rem;
  }

  .history-item::after {
    top: 0.58rem;
    left: -1.92rem;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-media img {
    aspect-ratio: 16 / 8;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-left: none;
    border-top: 1px solid var(--linha);
  }

  .stat:nth-child(-n+2) {
    border-top: none;
  }

  .stat:nth-child(even) {
    border-left: 1px solid var(--linha);
  }
}

@media (max-width: 560px) {
  .brand-name {
    display: none;
  }

  .hero-content {
    padding-block: 8.5rem 7rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .areas-grid,
  .team-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  /* Sem hover no toque: informação do advogado sempre visível */
  .team-info {
    position: relative;
    inset: auto;
    transform: none;
    background: var(--grafite);
    padding-top: 1.4rem;
  }

  .team-bio {
    opacity: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    padding-left: 2.6rem;
  }

  .process-dot {
    left: -2.6rem;
  }

  .process-num {
    min-width: 2.4rem;
    font-size: 1.7rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* 19. Acessibilidade & reduced motion
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 300;
  padding: 0.8rem 1.4rem;
  background: var(--vinho);
  color: var(--gelo);
  font-family: var(--font-ui);
  font-size: var(--fs-small);
  border-radius: var(--radius);
  transition: top 0.3s;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--ouro);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
