@charset "UTF-8";

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

:root {
  /* Paleta principal */
  --navy-deep:   #14161B;
  --navy:        #1A1D24;
  --navy-mid:    #5B1E28;
  --gold:        #A67C52;
  --gold-light:  #C4976A;
  --gold-pale:   #F5F2EC;

  /* Neutros */
  --white:       #ffffff;
  --off-white:   #F5F2EC;
  --light-gray:  #EBE6DC;
  --border:      #D4CEC4;
  --text-dark:   #14161B;
  --text-mid:    #3D4048;
  --text-muted:  #6D6C70;

  /* Tipografia */
  --font-h:  'EB Garamond', Georgia, serif;
  --font-b:  'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-w:   1200px;
  --sec-py:  100px;

  /* Transições */
  --tr:      0.28s ease;
  --tr-slow: 0.55s ease;
}

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

body {
  font-family: var(--font-b);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background var(--tr), padding var(--tr), box-shadow var(--tr);
  padding: 22px 0;
}

.navbar.scrolled {
  background: rgba(14, 16, 20, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.25);
  padding: 14px 0;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 48px;
  width: auto;
  transition: opacity var(--tr);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255,255,255,0.80);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.4px;
  transition: color var(--tr);
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  padding: 10px 22px;
  border-radius: 2px;
  letter-spacing: 0.3px;
  transition: background var(--tr), transform var(--tr) !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* Menu mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: var(--tr);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(11, 24, 40, 0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 28px 28px;
  gap: 4px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: rgba(255,255,255,0.80);
  font-size: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--tr);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold-light); }

.mobile-cta {
  margin-top: 12px;
  background: var(--gold) !important;
  color: var(--navy-deep) !important;
  font-weight: 700 !important;
  text-align: center;
  padding: 13px 20px !important;
  border-radius: 2px;
  border-bottom: none !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('Imagem de fundo - sessão hero.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(14, 16, 20, 0.90) 0%,
    rgba(14, 16, 20, 0.80) 55%,
    rgba(14, 16, 20, 0.60) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 140px 28px 130px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.38);
  color: var(--gold-light);
  font-family: var(--font-b);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 2px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeDown 0.8s ease 0.25s forwards;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.45s forwards;
}

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

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 18px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.62s forwards;
}

.hero-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  margin-bottom: 44px;
  letter-spacing: 0.2px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.76s forwards;
}

.btn-hero {
  opacity: 0;
  animation: fadeUp 0.9s ease 0.92s forwards;
}

/* Indicador de scroll */
.hero-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.40);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(201,169,110,0.7), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #1FAF5A;
  color: #fff;
  font-family: var(--font-b);
  font-size: 15.5px;
  font-weight: 700;
  padding: 16px 38px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
  letter-spacing: 0.2px;
  text-decoration: none;
  border: none;
}

.btn-whatsapp:hover {
  background: #16924A;
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(31,175,90,0.32);
}

.btn-whatsapp.btn-full {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px 20px;
  margin-bottom: 14px;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--tr);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--tr);
  text-decoration: none;
}

.btn-instagram:hover {
  background: rgba(255,255,255,0.09);
  color: var(--white);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 68px;
}

.section-header.light .section-title { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.66); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 14px;
  position: relative;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-label.left::after {
  left: 0;
  transform: none;
}

.section-label.gold { color: var(--gold-light); }
.section-label.gold::after { background: var(--gold-light); }

.section-title {
  font-family: var(--font-h);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.18;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ============================================================
   SESSÃO 2 — ÁREAS DE ATUAÇÃO
   ============================================================ */
.areas {
  padding: var(--sec-py) 0;
  background: var(--off-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 34px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  cursor: default;
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
  opacity: 0;
  transform: translateY(22px);
}

.area-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--tr-slow), transform var(--tr-slow),
              border-color var(--tr), box-shadow var(--tr);
}

.area-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 28px rgba(201,169,110,0.13);
  transform: translateY(-3px);
}

.area-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  color: var(--gold);
}

.area-icon svg { width: 100%; height: 100%; }

.area-card h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  padding-top: 6px;
}

.areas-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 14px 30px;
  border-radius: 2px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0;
  transform: translateY(16px);
}

.service-badge.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-badge svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================================
   SESSÃO 3 — DIFERENCIAIS
   ============================================================ */
.diferenciais {
  padding: var(--sec-py) 0;
  background: var(--navy-deep);
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  border: 1px solid rgba(255,255,255,0.06);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}

.diferencial-item {
  background: var(--navy-deep);
  padding: 48px 40px;
  display: flex;
  align-items: flex-start;
  gap: 26px;
  transition: background var(--tr);
  opacity: 0;
  transform: translateY(20px);
}

.diferencial-item.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--tr-slow), transform var(--tr-slow),
              background var(--tr);
}

.diferencial-item:hover { background: rgba(255,255,255,0.03); }

.diferencial-num {
  font-family: var(--font-h);
  font-size: 46px;
  font-weight: 400;
  color: rgba(201,169,110,0.20);
  line-height: 1;
  flex-shrink: 0;
  transition: color var(--tr);
  user-select: none;
}

.diferencial-item:hover .diferencial-num { color: rgba(201,169,110,0.42); }

.diferencial-body h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.28;
  margin-bottom: 10px;
}

.diferencial-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.57);
  line-height: 1.72;
}

/* ============================================================
   SESSÃO 4 — SOBRE O ESCRITÓRIO
   ============================================================ */
.sobre {
  padding: var(--sec-py) 0;
  background: var(--white);
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}

.sobre-texto[data-animate] {
  opacity: 0;
  transform: translateX(-24px);
}

.sobre-texto.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
}

.sobre-texto h2 {
  font-family: var(--font-h);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 26px;
}

.sobre-texto h2 em {
  font-style: italic;
  color: var(--gold);
}

.sobre-divider {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 28px;
}

.sobre-texto p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 16px;
}

.sobre-destaque {
  font-size: 15.5px;
  font-style: italic;
  color: var(--text-dark);
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: var(--light-gray);
  border-radius: 0 3px 3px 0;
  margin: 28px 0 !important;
  line-height: 1.8;
}

.sobre-destaque strong {
  font-weight: 700;
  font-style: normal;
  color: var(--navy);
}

/* Cards do lado direito */
.sobre-cards[data-animate] {
  opacity: 0;
  transform: translateX(24px);
}

.sobre-cards.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--tr-slow) 0.15s, transform var(--tr-slow) 0.15s;
}

.sobre-card-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  margin-bottom: 16px;
  background: var(--off-white);
  transition: background var(--tr), border-color var(--tr), transform var(--tr);
  cursor: default;
}

.sobre-card-item:last-child { margin-bottom: 0; }

.sobre-card-item:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateX(4px);
}

.sobre-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}

.sobre-card-icon svg { width: 100%; height: 100%; }

.sobre-card-item h4 {
  font-family: var(--font-h);
  font-size: 18.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.sobre-card-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   SESSÃO 5 — ADVOGADOS
   ============================================================ */
.advogados {
  padding: var(--sec-py) 0;
  background: var(--light-gray);
}

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

.advogado-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  cursor: default;
  transition: box-shadow var(--tr), transform var(--tr), border-color var(--tr);
  opacity: 0;
  transform: translateY(28px);
}

.advogado-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--tr-slow), transform var(--tr-slow),
              box-shadow var(--tr), border-color var(--tr);
}

.advogado-card:hover {
  box-shadow: 0 14px 44px rgba(11,24,40,0.11);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.advogado-foto {
  height: 310px;
  overflow: hidden;
  background: var(--light-gray);
}

.advogado-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.65s ease;
}

.advogado-card:hover .advogado-foto img { transform: scale(1.04); }

.advogado-info {
  padding: 26px 26px 30px;
}

.advogado-info h3 {
  font-family: var(--font-h);
  font-size: 21px;
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1.22;
  margin-bottom: 7px;
}

.oab-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.oab-badge.estagiario { color: var(--text-muted); }

.advogado-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 14px;
}

.advogado-formacao {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.advogado-espec {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SESSÃO 6 — DEPOIMENTOS / PROVA SOCIAL
   ============================================================ */
.depoimentos {
  padding: var(--sec-py) 0;
  background: var(--navy);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 52px;
}

.depoimento-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 44px 40px;
  transition: background var(--tr), border-color var(--tr);
  cursor: default;
  opacity: 0;
  transform: translateY(22px);
}

.depoimento-card.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--tr-slow), transform var(--tr-slow),
              background var(--tr), border-color var(--tr);
}

.depoimento-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,169,110,0.28);
}

.quote-mark {
  color: var(--gold);
  opacity: 0.38;
  margin-bottom: 20px;
}

.depoimento-card blockquote p {
  font-family: var(--font-h);
  font-size: 20px;
  font-style: italic;
  color: rgba(255,255,255,0.90);
  line-height: 1.62;
  margin-bottom: 30px;
}

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

.autor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.depoimento-autor strong {
  display: block;
  color: var(--white);
  font-size: 14px;
}

.depoimento-autor span {
  color: rgba(255,255,255,0.46);
  font-size: 12.5px;
}

/* Stats bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 48px 56px;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
}

.stat-item.animated {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,169,110,0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.stat-icon svg { width: 22px; height: 22px; }

.stat-item p {
  color: rgba(255,255,255,0.84);
  font-size: 15.5px;
  font-weight: 600;
}

.stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.09);
}

/* ============================================================
   SESSÃO 7 — FORMULÁRIO / CAPTAÇÃO
   ============================================================ */
.captacao {
  padding: var(--sec-py) 0;
  background: var(--off-white);
}

.captacao-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 88px;
  align-items: flex-start;
}

.captacao-texto[data-animate] {
  opacity: 0;
  transform: translateX(-20px);
}

.captacao-texto.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--tr-slow), transform var(--tr-slow);
}

.captacao-texto h2 {
  font-family: var(--font-h);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  color: var(--navy-deep);
  line-height: 1.2;
  margin-bottom: 14px;
}

.captacao-texto > p {
  font-size: 16px;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.ou-linha {
  text-align: center;
  position: relative;
  margin-top: 22px;
  color: var(--text-muted);
  font-size: 13px;
}

.ou-linha::before,
.ou-linha::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: calc(50% - 105px);
  background: var(--border);
}

.ou-linha::before { left: 0; }
.ou-linha::after  { right: 0; }

/* Formulário */
.captacao-form[data-animate] {
  opacity: 0;
  transform: translateX(20px);
}

.captacao-form.animated {
  opacity: 1;
  transform: translateX(0);
  transition: opacity var(--tr-slow) 0.12s, transform var(--tr-slow) 0.12s;
}

.captacao-form form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 48px 44px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.13);
}

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

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}

.btn-submit:hover:not(:disabled) {
  background: var(--navy-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(11,24,40,0.22);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.form-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 2px;
  font-size: 14px;
  display: none;
}

.form-feedback.sucesso {
  background: #dcfce7;
  color: #14532d;
  border: 1px solid #86efac;
  display: block;
}

.form-feedback.erro {
  background: #fef2f2;
  color: #7f1d1d;
  border: 1px solid #fca5a5;
  display: block;
}

/* ============================================================
   SESSÃO 8 — CONTATO E LOCALIZAÇÃO
   ============================================================ */
.contato {
  padding: var(--sec-py) 0;
  background: var(--navy-deep);
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.footer-logo {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
}

.contato-tagline {
  color: rgba(255,255,255,0.42);
  font-size: 12.5px;
  letter-spacing: 0.4px;
  margin-bottom: 40px;
}

.contato-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contato-lista li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contato-lista li svg {
  width: 19px;
  height: 19px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contato-lista li strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  margin-bottom: 2px;
}

.contato-lista li span {
  color: rgba(255,255,255,0.50);
  font-size: 13px;
}

.contato-cta-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 52px 48px;
  text-align: center;
}

.contato-cta-box h3 {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.28;
  margin-bottom: 12px;
}

.contato-cta-box p {
  color: rgba(255,255,255,0.54);
  font-size: 15px;
  margin-bottom: 36px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0E1014;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner p {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
}

/* ============================================================
   WHATSAPP FAB (Botão flutuante)
   ============================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 190;
  width: 58px;
  height: 58px;
  background: #1FAF5A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 22px rgba(31,175,90,0.42);
  cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr);
  text-decoration: none;
}

.whatsapp-fab:hover {
  transform: scale(1.09);
  box-shadow: 0 8px 36px rgba(31,175,90,0.56);
}

.whatsapp-fab:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.fab-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy-deep);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--tr), transform var(--tr);
  pointer-events: none;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--navy-deep);
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%       { opacity: 0.35; transform: scaleY(0.6); transform-origin: top; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  :root { --sec-py: 80px; }

  .sobre-inner,
  .captacao-inner,
  .contato-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sobre-cards { max-width: 640px; }
}

@media (max-width: 768px) {
  :root { --sec-py: 64px; }

  .nav-links  { display: none; }
  .menu-toggle { display: flex; }

  .hero-content { padding: 110px 20px 90px; }

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

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

  .diferencial-item { padding: 36px 28px; }

  .advogados-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

  /* depoimentos mantém 3 colunas até mobile pequeno */

  .stats-bar {
    flex-direction: column;
    gap: 28px;
    padding: 36px 28px;
  }

  .stat-sep { display: none; }

  .captacao-form form { padding: 32px 26px; }

  .contato-cta-box { padding: 40px 30px; }

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

  .whatsapp-fab { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  :root { --sec-py: 52px; }

  .hero-title { font-size: 34px; }

  .btn-whatsapp { padding: 14px 24px; font-size: 15px; }

  .diferencial-item { flex-direction: column; gap: 10px; }
  .diferencial-num  { font-size: 36px; }

  .depoimento-card { padding: 24px 18px; }
  .depoimentos-grid { grid-template-columns: 1fr; }

  .areas-badges { flex-direction: column; align-items: stretch; }
  .service-badge { justify-content: center; }
}

/* Respeita preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-badge, .hero-title, .hero-subtitle,
  .hero-tagline, .btn-hero, .hero-scroll {
    opacity: 1;
    animation: none;
  }
}
