:root {
  --black: #000000;
  --white: #ffffff;
  --gray-light: #f8f9fa;
  --gray-mid: #e0e0e0;
  --gray-dark: #333333;
  --accent: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Times New Roman", Times, serif;
} /* Fonte clássica para Advocacia */
body {
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

/* HEADER INSTITUCIONAL */
header {
  padding: 25px 0;
  border-bottom: 1px solid var(--gray-mid);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.brand-logo {
  height: 48px;
  width: auto;
}

/* HERO - FOCO INSTITUCIONAL */
.hero {
  display: flex;
  align-items: center;
  min-height: 80vh;
  gap: 50px;
  padding: 60px 0;
}
.hero-text {
  flex: 1.2;
}
.hero-text span {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--gray-dark);
}
.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 15px 0;
  line-height: 1;
}
.hero-image {
  flex: 0.8;
}
.hero-image img {
  width: 100%;
  border-radius: 2px;
  filter: grayscale(100%);
  box-shadow: 30px -30px 0 var(--gray-light);
}
.hero-logo {
  flex: 0.8;
  display: flex;
  justify-content: center;
  box-shadow: 30px -30px 0 var(--gray-light);
}
.hero-logo img {
  width: 100%;
  max-width: 380px;
  height: auto;
}

/* SEÇÃO DE NÚMEROS (AUTORIDADE) */
.stats {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.stat-item h2 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-mid);
}

/* DEPARTAMENTOS (GRID DE SERVIÇOS) */
.areas {
  padding: 100px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: var(--gray-dark);
  margin-bottom: 15px;
}

/* SÓCIOS (EQUIPE) */
.socios {
  padding: 100px 0;
  background: var(--gray-light);
}
.socios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}
.socio-card {
  background: var(--white);
  text-align: center;
  padding-bottom: 40px;
  border: 1px solid var(--gray-mid);
}
.socio-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 25px;
}
.socio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.socio-card h3 {
  font-size: 1.4rem;
}
.socio-cargo {
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--gray-dark);
  margin: 8px 0 15px;
}
.socio-card p {
  padding: 0 30px;
  color: var(--gray-dark);
  font-size: 0.95rem;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: var(--gray-mid);
  border: 1px solid var(--gray-mid);
}
.area-card {
  background: var(--white);
  padding: 50px;
  transition: 0.4s;
}
.area-card:hover {
  background: var(--gray-light);
}
.area-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* CTA & BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  padding: 20px 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.3s;
}
.btn:hover {
  background: var(--gray-dark);
}

/* FOOTER */
footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-col h4 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
}
.social-links {
  display: flex;
  gap: 20px;
}
.social-icon {
  width: 20px;
  height: 20px;
  fill: var(--white);
}
.copyright {
  border-top: 1px solid #222;
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: #666;
}

/* WHATSAPP FLUTUANTE */
.wa-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #000;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border: 1px solid #fff;
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-image img {
    box-shadow: none;
  }
  .hero-logo {
    box-shadow: none;
  }
}
