/* ================================================================
   ALIANCAJUD — Design System Principal
   Paleta: Marinho · Branco · Dourado
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------------------------
   1. TOKENS DE DESIGN
   ---------------------------------------------------------------- */
:root {
  /* Cores Primárias */
  --marinho:        #0A1628;
  --marinho-medio:  #0D2045;
  --marinho-claro:  #1A3660;
  --marinho-400:    #2A4A80;

  /* Dourado */
  --dourado:        #C9A84C;
  --dourado-claro:  #E8C96B;
  --dourado-escuro: #A8873A;
  --dourado-suave:  rgba(201, 168, 76, 0.12);
  --dourado-borda:  rgba(201, 168, 76, 0.30);

  /* Neutros */
  --branco:         #FFFFFF;
  --branco-suave:   #F8F7F4;
  --cinza-claro:    #EEF0F5;
  --cinza-texto:    #94A3B8;
  --cinza-escuro:   #64748B;

  /* Semânticas */
  --sucesso:        #16A34A;
  --whatsapp:       #25D366;
  --whatsapp-hover: #128C7E;

  /* Tipografia */
  --font-titulo:    'Cormorant Garamond', Georgia, serif;
  --font-corpo:     'Inter', system-ui, sans-serif;

  /* Espaçamentos */
  --section-py:     90px;
  --section-py-sm:  60px;
  --container-max:  1200px;

  /* Bordas */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      28px;

  /* Sombras */
  --shadow-sm:      0 2px 8px rgba(10,22,40,0.10);
  --shadow-md:      0 8px 28px rgba(10,22,40,0.16);
  --shadow-lg:      0 20px 60px rgba(10,22,40,0.25);
  --shadow-dourado: 0 8px 32px rgba(201,168,76,0.25);

  /* Transições */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
  --duration:       0.3s;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-corpo);
  background-color: var(--branco-suave);
  color: var(--marinho);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

::selection {
  background: var(--dourado);
  color: var(--marinho);
}

/* ----------------------------------------------------------------
   3. TIPOGRAFIA
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-titulo);
  line-height: 1.2;
  color: var(--marinho);
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--cinza-escuro); font-size: 1rem; line-height: 1.75; }

.text-dourado    { color: var(--dourado); }
.text-marinho    { color: var(--marinho); }
.text-branco     { color: var(--branco); }
.text-muted-jud  { color: var(--cinza-texto); }

/* ----------------------------------------------------------------
   4. LAYOUT UTILITÁRIOS
   ---------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section          { padding: var(--section-py) 0; }
.section-sm       { padding: var(--section-py-sm) 0; }
.section-dark     { background: var(--marinho); }
.section-medio    { background: var(--marinho-medio); }
.section-branco   { background: var(--branco); }
.section-suave    { background: var(--branco-suave); }

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.col-half { flex: 1 1 calc(50% - 14px); min-width: 280px; }
.col-third { flex: 1 1 calc(33.333% - 19px); min-width: 260px; }
.col-quarter { flex: 1 1 calc(25% - 21px); min-width: 220px; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-col { flex-direction: column; }
.gap-sm { gap: 12px; }
.gap-md { gap: 24px; }
.gap-lg { gap: 40px; }

.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }

/* ----------------------------------------------------------------
   5. BOTÕES
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-corpo);
  font-size: 0.93rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--duration) var(--ease);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-align: center;
}

/* Botão Dourado (CTA Primário) */
.btn-dourado {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  color: var(--marinho);
  box-shadow: var(--shadow-dourado);
}
.btn-dourado:hover {
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.40);
  color: var(--marinho);
}

/* Botão Outline Branco */
.btn-outline-branco {
  background: transparent;
  color: var(--branco);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-branco:hover {
  border-color: var(--dourado);
  color: var(--dourado);
  background: rgba(201,168,76,0.08);
}

/* Botão Outline Dourado */
.btn-outline-dourado {
  background: transparent;
  color: var(--dourado);
  border: 1.5px solid var(--dourado-borda);
}
.btn-outline-dourado:hover {
  background: var(--dourado-suave);
  border-color: var(--dourado);
}

/* Botão Marinho */
.btn-marinho {
  background: var(--marinho);
  color: var(--branco);
}
.btn-marinho:hover {
  background: var(--marinho-claro);
  transform: translateY(-2px);
}

/* Botão WhatsApp */
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--branco);
  border-radius: var(--radius-md);
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.30);
  color: var(--branco);
}

/* Botão Hero (grande) */
.btn-hero {
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* ----------------------------------------------------------------
   6. HEADER / NAVBAR
   ---------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: box-shadow var(--duration) var(--ease);
}

.header.scrolled {
  box-shadow: 0 4px 32px rgba(10,22,40,0.40);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
}

/* Logo */
.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--marinho);
  box-shadow: var(--shadow-dourado);
  flex-shrink: 0;
}

.logo-texto {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-nome {
  font-family: var(--font-titulo);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--branco);
  letter-spacing: 0.04em;
}

.logo-nome span {
  color: var(--dourado);
}

.logo-slogan {
  font-size: 0.65rem;
  color: var(--cinza-texto);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 16px;
  color: rgba(255,255,255,0.80);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--dourado);
  border-radius: 2px;
  transition: width var(--duration) var(--ease);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Burger mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  outline: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}

.header-spacer {
  height: 75px;
}

/* ----------------------------------------------------------------
   7. HERO SECTION
   ---------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--marinho);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.95) 0%,
    rgba(13,32,69,0.80) 50%,
    rgba(10,22,40,0.90) 100%
  );
}

/* Linha dourada decorativa */
.hero-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dourado-suave);
  border: 1px solid var(--dourado-borda);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--branco);
  margin-bottom: 24px;
  font-weight: 700;
}

.hero h1 .destaque {
  background: linear-gradient(135deg, var(--dourado), var(--dourado-claro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero > .container > .hero-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 40px 0;
}

.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-lead strong {
  color: rgba(255,255,255,0.95);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.80);
  backdrop-filter: blur(8px);
  font-weight: 500;
}

.trust-badge i { color: var(--dourado); font-size: 0.75rem; }

/* Estatísticas animadas */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.hero-stat-number {
  font-family: var(--font-titulo);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--dourado);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: var(--cinza-texto);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Card lateral do hero */
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.20);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 440px;
  width: 100%;
  flex-shrink: 0;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.hero-card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--marinho);
  font-size: 1rem;
}

.hero-card-title {
  font-family: var(--font-titulo);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--branco);
}

.hero-area-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-area-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-area-icon {
  width: 38px;
  height: 38px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.20);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-area-nome {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--branco);
}

.hero-area-desc {
  font-size: 0.75rem;
  color: var(--cinza-texto);
  margin-top: 1px;
}

.hero-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cinza-texto);
}

.stars-gold i { color: #F59E0B; font-size: 0.7rem; }

/* ----------------------------------------------------------------
   8. SEÇÃO ÁREAS DO DIREITO (CHIPS)
   ---------------------------------------------------------------- */
.areas-section {
  background: var(--marinho-medio);
  padding: 48px 0;
  border-top: 1px solid rgba(201,168,76,0.10);
  border-bottom: 1px solid rgba(201,168,76,0.10);
}

.areas-label {
  text-align: center;
  margin-bottom: 24px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cinza-texto);
  font-weight: 600;
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  border: 1.5px solid transparent;
}

.area-chip-dourado {
  background: var(--dourado-suave);
  border-color: var(--dourado-borda);
  color: var(--dourado);
}
.area-chip-dourado:hover {
  background: var(--dourado);
  color: var(--marinho);
  border-color: var(--dourado);
  transform: translateY(-2px);
  box-shadow: var(--shadow-dourado);
}

.area-chip-branco {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
}
.area-chip-branco:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--dourado);
  color: var(--dourado);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------------
   9. SECTION TITLES
   ---------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--dourado-suave);
  border: 1px solid var(--dourado-borda);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dourado);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 16px;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; color: var(--cinza-escuro); }

/* Dark variant */
.section-header.dark h2 { color: var(--branco); }
.section-header.dark p  { color: rgba(255,255,255,0.60); }
.section-header.dark .section-badge {
  background: rgba(201,168,76,0.15);
}

/* ----------------------------------------------------------------
   10. COMO FUNCIONA — STEPS
   ---------------------------------------------------------------- */
.steps-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.step-card {
  flex: 1;
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.step-card:hover {
  border-color: var(--dourado-borda);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.step-number-badge {
  position: absolute;
  top: -16px;
  left: 32px;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--marinho);
  box-shadow: var(--shadow-dourado);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--dourado-suave);
  border: 1px solid var(--dourado-borda);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dourado);
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--marinho);
}

.step-card p { font-size: 0.95rem; }

/* Seta conectora */
.step-connector {
  display: flex;
  align-items: center;
  color: var(--dourado-borda);
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 20px;
}

/* ----------------------------------------------------------------
   11. CARDS DE ADVOGADOS
   ---------------------------------------------------------------- */
.advogados-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.advogado-card {
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.advogado-card:hover {
  border-color: var(--dourado-borda);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.advogado-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--marinho-claro), var(--marinho));
}

.advogado-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.advogado-card:hover .advogado-img-wrap img {
  transform: scale(1.05);
}

/* Placeholder quando não tem foto */
.advogado-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titulo);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.4);
  background: linear-gradient(135deg, var(--marinho-claro), var(--marinho-medio));
}

.disponivel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(22, 163, 74, 0.92);
  color: var(--branco);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(8px);
}

.disponivel-badge.indisponivel {
  background: rgba(100,116,139,0.85);
}

.disponivel-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  filter: brightness(1.5);
}

.area-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10,22,40,0.85);
  color: var(--dourado);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid var(--dourado-borda);
  backdrop-filter: blur(8px);
}

.advogado-body {
  padding: 24px;
}

.advogado-nome {
  font-family: var(--font-titulo);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--marinho);
  margin-bottom: 4px;
}

.advogado-oab {
  font-size: 0.78rem;
  color: var(--cinza-texto);
  font-weight: 500;
  margin-bottom: 8px;
}

.advogado-especialidade {
  display: inline-block;
  background: var(--dourado-suave);
  border: 1px solid var(--dourado-borda);
  color: var(--dourado-escuro);
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.advogado-cidade {
  font-size: 0.82rem;
  color: var(--cinza-texto);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.advogado-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.stars i { color: #F59E0B; font-size: 0.75rem; }
.rating-score { font-weight: 700; font-size: 0.9rem; color: var(--marinho); }
.rating-count { font-size: 0.78rem; color: var(--cinza-texto); }

.advogado-actions {
  display: flex;
  gap: 8px;
}

.btn-perfil {
  flex: 1;
  padding: 11px;
  text-align: center;
  border-radius: var(--radius-md);
  font-size: 0.84rem;
  font-weight: 600;
  background: transparent;
  border: 1.5px solid var(--dourado-borda);
  color: var(--dourado);
  transition: all var(--duration) var(--ease);
}
.btn-perfil:hover {
  background: var(--dourado-suave);
}

/* Filtros */
.filtros-wrap {
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filtro-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 180px;
}

.filtro-group label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cinza-escuro);
}

.filtro-group select {
  padding: 10px 14px;
  border: 1.5px solid var(--cinza-claro);
  border-radius: var(--radius-sm);
  font-family: var(--font-corpo);
  font-size: 0.9rem;
  color: var(--marinho);
  background: var(--branco);
  cursor: pointer;
  outline: none;
  transition: border-color var(--duration) var(--ease);
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.filtro-group select:focus {
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

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

.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--duration) var(--ease);
  text-align: center;
}

.feature-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.30);
  transform: translateY(-6px);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--marinho);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-dourado);
}

.feature-card h4 {
  color: var(--branco);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   13. DEPOIMENTOS
   ---------------------------------------------------------------- */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.depoimento-card {
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--duration) var(--ease);
}

.depoimento-card:hover {
  border-color: var(--dourado-borda);
  box-shadow: var(--shadow-md);
}

.depoimento-quote {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--dourado-borda);
  line-height: 1;
}

.depoimento-stars {
  margin-bottom: 16px;
}
.depoimento-stars i { color: #F59E0B; font-size: 0.85rem; }

.depoimento-texto {
  font-size: 0.95rem;
  color: var(--cinza-escuro);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marinho-claro), var(--marinho));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  font-family: var(--font-titulo);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.depoimento-nome {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--marinho);
}

.depoimento-area {
  font-size: 0.78rem;
  color: var(--cinza-texto);
}

/* ----------------------------------------------------------------
   14. CTA ADVOGADO (Seja um Parceiro)
   ---------------------------------------------------------------- */
.cta-parceiro {
  background: linear-gradient(135deg, var(--marinho-medio) 0%, var(--marinho-claro) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  border: 1px solid rgba(201,168,76,0.20);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-parceiro::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.10), transparent 70%);
  border-radius: 50%;
}

.cta-parceiro::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,168,76,0.07), transparent 70%);
  border-radius: 50%;
}

.cta-parceiro-content { position: relative; z-index: 1; }

.cta-parceiro h2 { color: var(--branco); margin-bottom: 16px; font-size: 2.4rem; }
.cta-parceiro p  {
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-vantagens {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-vantagem {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
}

.cta-vantagem i { color: var(--dourado); }

/* ----------------------------------------------------------------
   15. FAQ / ACCORDION
   ---------------------------------------------------------------- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--branco);
  border: 1px solid var(--cinza-claro);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.faq-item.active {
  border-color: var(--dourado-borda);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--marinho);
  user-select: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--dourado-suave);
  border: 1px solid var(--dourado-borda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dourado);
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease);
}

.faq-item.active .faq-icon {
  background: var(--dourado);
  color: var(--marinho);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--cinza-escuro);
  line-height: 1.75;
  border-top: 1px solid var(--cinza-claro);
  padding-top: 16px;
}

/* ----------------------------------------------------------------
   16. FOOTER
   ---------------------------------------------------------------- */
.footer {
  background: var(--marinho);
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-main {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-nome {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
}

.social-btn:hover {
  background: var(--dourado-suave);
  border-color: var(--dourado-borda);
  color: var(--dourado);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--branco);
  font-family: var(--font-corpo);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.50);
  transition: color var(--duration) var(--ease);
}

.footer-link:hover {
  color: var(--dourado);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--dourado);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--duration) var(--ease);
}
.footer-bottom-links a:hover { color: var(--dourado); }

/* ----------------------------------------------------------------
   17. ANIMAÇÕES
   ---------------------------------------------------------------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s var(--ease) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse dourado */
@keyframes pulseDourado {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0); }
}

.pulse-dourado {
  animation: pulseDourado 2.5s ease-in-out infinite;
}

/* Linha divisória dourada */
.divider-dourado {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  margin: 0;
  border: none;
  opacity: 0.4;
}

/* ----------------------------------------------------------------
   18. WHATSAPP FLUTUANTE
   ---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--branco);
  box-shadow: 0 8px 28px rgba(37,211,102,0.40);
  transition: all var(--duration) var(--ease);
  animation: pulseDourado 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
  background: var(--whatsapp-hover);
  color: var(--branco);
}

/* ----------------------------------------------------------------
   19. FORMULÁRIO DE CONTATO
   ---------------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cinza-escuro);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--cinza-claro);
  border-radius: var(--radius-md);
  font-family: var(--font-corpo);
  font-size: 0.95rem;
  color: var(--marinho);
  background: var(--branco);
  outline: none;
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--dourado);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* ----------------------------------------------------------------
   20. SCROLL BAR CUSTOMIZADA
   ---------------------------------------------------------------- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--marinho); }
::-webkit-scrollbar-thumb {
  background: var(--dourado-escuro);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--dourado); }

/* ----------------------------------------------------------------
   21. AVISOS LEGAIS OAB (TOPO E RODAPÉ)
   ---------------------------------------------------------------- */

/* --- Topo: banner compacto (imagem adv) --- */
.aviso-legal-topo {
  background: var(--marinho-medio);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  padding: 10px 0;
}

.aviso-legal-topo-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aviso-legal-topo p {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
  margin: 0;
}

.aviso-legal-topo p strong {
  color: rgba(255,255,255,0.90);
}

.aviso-legal-topo .aviso-legal-icon {
  color: var(--dourado);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.aviso-legal-link {
  color: var(--dourado);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: opacity var(--duration) var(--ease);
}
.aviso-legal-link:hover { opacity: 0.75; }

/* --- Rodapé: banner detalhado (imagem adv2) --- */
.aviso-legal-rodape {
  background: #07101e;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 18px 0;
}

.aviso-legal-rodape-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.aviso-legal-rodape p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin: 0;
}

.aviso-legal-rodape p strong {
  color: rgba(255,255,255,0.78);
}

.aviso-legal-rodape .aviso-legal-icon {
  color: var(--dourado);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.70;
}

/* Responsividade dos avisos legais */
@media (max-width: 640px) {
  .aviso-legal-topo-inner,
  .aviso-legal-rodape-inner {
    gap: 10px;
  }
  .aviso-legal-topo p,
  .aviso-legal-rodape p {
    font-size: 0.73rem;
  }
  .aviso-legal-topo .aviso-legal-icon,
  .aviso-legal-rodape .aviso-legal-icon {
    display: none;
  }
}

/* ----------------------------------------------------------------
   22. MODAL LEAD WHATSAPP
   ---------------------------------------------------------------- */
.wa-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.wa-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-modal {
  background: #fff;
  width: 90%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.wa-modal-overlay.active .wa-modal {
  transform: translateY(0);
}

.wa-modal-header {
  background: linear-gradient(135deg, var(--marinho), var(--marinho-medio));
  padding: 28px 28px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--dourado);
}

.wa-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.wa-modal-close:hover {
  opacity: 1;
}

.wa-modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 168, 76, 0.2);
  color: var(--dourado);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.8rem;
}

.wa-modal-title {
  margin: 0;
  font-weight: 700;
  font-size: 1.25rem;
}

.wa-modal-subtitle {
  margin: 6px 0 0;
  font-size: 0.88rem;
  opacity: 0.85;
}

.wa-modal-body {
  padding: 24px;
}
