/* ==========================================================================
   CATEZANI ADVOCACIA - DESIGN SYSTEM & STYLESHEET
   Paleta: Grafite Escuro (#0A0A0D, #111116), Preto (#060608), Dourado (#C5A059, #DFBD69, #F3D68B)
   Tipografia: Cinzel & Plus Jakarta Sans
   ========================================================================== */

:root {
  /* Cores Base */
  --bg-primary: #0a0a0d;
  --bg-secondary: #111116;
  --bg-tertiary: #17171f;
  --bg-card: rgba(23, 23, 31, 0.75);
  --bg-card-hover: rgba(30, 30, 42, 0.9);
  --bg-glass: rgba(13, 13, 17, 0.88);
  
  /* Cores Douradas */
  --gold-light: #f3d68b;
  --gold-primary: #c5a059;
  --gold-deep: #9d7a36;
  --gold-dark: #6e5422;
  --gold-gradient: linear-gradient(135deg, #f3d68b 0%, #c5a059 50%, #9d7a36 100%);
  --gold-gradient-hover: linear-gradient(135deg, #fff0b8 0%, #dfbd69 50%, #b38b3f 100%);
  --gold-border: rgba(197, 160, 89, 0.28);
  --gold-border-glow: rgba(197, 160, 89, 0.6);
  --gold-glow: 0 0 25px rgba(197, 160, 89, 0.2);

  /* Cores de Texto */
  --text-main: #f5f5f7;
  --text-muted: #a3a3b0;
  --text-subtle: #70707e;
  --text-gold: #dfbd69;

  /* Bordas e Sombras */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-light: rgba(255, 255, 255, 0.14);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 10px 30px rgba(197, 160, 89, 0.18);

  /* Fontes */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Transições */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1240px;
  --header-height: 90px;
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Fundo com iluminação sutil dourada */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 0%, rgba(197, 160, 89, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(197, 160, 89, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(197, 160, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

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

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* Utilitários de Layout */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  z-index: 2;
}

.section {
  padding: 7rem 0;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* Tipografia */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 4.5rem;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.825rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-gradient);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.section-description {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 400;
}

.section-description strong {
  color: #fff;
  font-weight: 500;
}

/* Divisor Decorativo Dourado */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 0;
  max-width: 240px;
}

.gold-divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.gold-divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(197, 160, 89, 0.6);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition-smooth), backdrop-filter var(--transition-smooth), height var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 75px;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  border: 1px solid var(--gold-border);
}

.nav-brand:hover img {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.3);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ffffff;
  line-height: 1.1;
}

.nav-brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-primary);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  position: relative;
  padding: 0.35rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-gradient);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-main);
  transition: stroke var(--transition-fast);
}

.mobile-toggle:hover svg {
  stroke: var(--gold-primary);
}

/* ==========================================================================
   BOTÕES SOFISTICADOS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  z-index: 1;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.25);
  font-weight: 700;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  box-shadow: 0 6px 28px rgba(197, 160, 89, 0.45);
  transform: translateY(-2px);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--gold-primary);
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.15);
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.775rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 5rem;
  background-image: linear-gradient(to bottom, rgba(10, 10, 13, 0.84) 0%, rgba(10, 10, 13, 0.94) 70%, #0a0a0d 100%), url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero-overlay-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-wrapper {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.hero-logo-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0) 70%);
  border-radius: 50%;
  filter: blur(18px);
  animation: pulseGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.9; }
}

.hero-logo-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 2px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(197, 160, 89, 0.25);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.hero-logo-img:hover {
  transform: scale(1.03);
  border-color: var(--gold-primary);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.25rem;
  border-radius: 100px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  font-size: 0.775rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 820px;
  margin-bottom: 2.75rem;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 500;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-subtle);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  z-index: 2;
}

.hero-scroll-indicator:hover {
  color: var(--gold-primary);
}

.scroll-icon {
  width: 22px;
  height: 36px;
  border: 1px solid var(--gold-border);
  border-radius: 14px;
  position: relative;
}

.scroll-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 6px;
  background: var(--gold-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; }
}

/* ==========================================================================
   SEÇÃO ÁREAS DE ATUAÇÃO
   ========================================================================== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .practice-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .practice-grid .practice-card:nth-child(1),
  .practice-grid .practice-card:nth-child(2),
  .practice-grid .practice-card:nth-child(3) {
    grid-column: span 2;
  }
  .practice-grid .practice-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
  .practice-grid .practice-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.practice-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.practice-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.practice-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.practice-card:hover::before {
  opacity: 1;
}

.practice-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--gold-light);
  transition: all var(--transition-smooth);
}

.practice-card:hover .practice-icon-wrapper {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border-color: transparent;
  transform: scale(1.08);
}

.practice-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.practice-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.practice-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.practice-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.775rem;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  text-transform: uppercase;
  font-weight: 600;
  margin-top: auto;
}

.practice-card-tag svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-fast);
}

.practice-card:hover .practice-card-tag svg {
  transform: translateX(4px);
}

/* ==========================================================================
   SEÇÃO COMPETÊNCIAS & FORMAS DE OPERAÇÃO
   ========================================================================== */
.competencies-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 1rem;
}

.competency-box {
  background: linear-gradient(180deg, rgba(23, 23, 31, 0.9) 0%, rgba(14, 14, 18, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 2.25rem 1.75rem;
  text-align: left;
  position: relative;
  transition: all var(--transition-smooth);
}

.competency-box:hover {
  border-color: var(--gold-border-glow);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(197, 160, 89, 0.12);
}

.competency-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(197, 160, 89, 0.15);
  transition: color var(--transition-smooth);
}

.competency-box:hover .competency-number {
  color: rgba(197, 160, 89, 0.35);
}

.competency-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  transition: all var(--transition-smooth);
}

.competency-box:hover .competency-icon {
  background: var(--gold-primary);
  color: #0a0a0d;
}

.competency-icon svg {
  width: 24px;
  height: 24px;
}

.competency-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.85rem;
  letter-spacing: 0.03em;
}

.competency-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ==========================================================================
   SEÇÃO SOBRE NÓS
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-column {
  position: relative;
}

.about-image-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.about-image-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-image-frame:hover img {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  backdrop-filter: blur(16px);
  max-width: 240px;
}

.about-badge-icon {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.about-badge-icon svg {
  width: 28px;
  height: 28px;
}

.about-badge-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.about-badge-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.about-content-column {
  display: flex;
  flex-direction: column;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.about-lead strong {
  color: var(--gold-light);
  font-weight: 600;
}

.about-paragraph {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.pillar-icon {
  color: var(--gold-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.pillar-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   SEÇÃO ADVOGADO RESPONSÁVEL (DR. VITOR CATEZANI)
   ========================================================================== */
.lawyer-section {
  position: relative;
}

.lawyer-profile-card {
  background: linear-gradient(135deg, rgba(23, 23, 31, 0.95) 0%, rgba(14, 14, 19, 0.98) 100%);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lawyer-profile-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-gradient);
}

.lawyer-portrait-box {
  position: relative;
}

.lawyer-portrait-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gold-border);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(197, 160, 89, 0.15);
}

.lawyer-portrait-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-smooth);
}

.lawyer-profile-card:hover .lawyer-portrait-img {
  transform: scale(1.03);
}

.lawyer-oab-badge {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-secondary);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  padding: 0.45rem 1.25rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.lawyer-info-column {
  display: flex;
  flex-direction: column;
}

.lawyer-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lawyer-name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.lawyer-role-title {
  font-size: 0.95rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lawyer-role-title span.sep {
  color: var(--text-subtle);
}

.lawyer-bio-text {
  color: var(--text-muted);
  font-size: 1.025rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid var(--gold-primary);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
}

.lawyer-credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.credential-pill {
  background: rgba(10, 10, 14, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all var(--transition-fast);
}

.credential-pill:hover {
  border-color: var(--gold-border);
  background: rgba(25, 25, 35, 0.8);
}

.credential-pill svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.credential-pill-text {
  display: flex;
  flex-direction: column;
}

.credential-pill-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credential-pill-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.lawyer-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   SEÇÃO DE CONTATO (FALE CONOSCO)
   ========================================================================== */
.contact-section {
  position: relative;
}

.contact-container-center {
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  background: linear-gradient(180deg, rgba(23, 23, 31, 0.95) 0%, rgba(15, 15, 20, 0.98) 100%);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: var(--gold-gradient);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.form-label span {
  color: var(--gold-primary);
}

.form-input,
.form-textarea {
  width: 100%;
  background: rgba(10, 10, 14, 0.7);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 0.9rem 1.15rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  background: rgba(15, 15, 22, 0.95);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-subtle);
  font-size: 0.9rem;
}

.form-footer {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
}

.form-privacy-note {
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-align: center;
}

.contact-quick-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.quick-option-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.quick-option-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-primary);
}

.quick-option-item:hover {
  color: #ffffff;
}

/* Feedback de envio */
.form-status-msg {
  display: none;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  width: 100%;
}

.form-status-msg.success {
  display: block;
  background: rgba(46, 125, 50, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #a5d6a7;
}

/* ==========================================================================
   RODAPÉ (FOOTER)
   ========================================================================== */
.footer {
  background-color: #060608;
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.15);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
}

.footer-brand-subtitle {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-primary);
  text-transform: uppercase;
}

.footer-brand-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-social-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.social-icons-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: all var(--transition-smooth);
}

.social-icon-btn.instagram-highlight {
  background: rgba(197, 160, 89, 0.1);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(197, 160, 89, 0.2);
}

.social-icon-btn:hover {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.4);
}

.social-icon-btn svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text {
  font-size: 0.825rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   BOTÃO FLUTUANTE WHATSAPP & SCROLL TOP
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border-color: transparent;
  transform: translateY(-3px);
}

/* ==========================================================================
   ANIMAÇÕES DE ENTRADA (FADE IN ON SCROLL)
   ========================================================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.appear {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
  .competencies-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-image-badge {
    right: 1rem;
    bottom: 1rem;
  }

  .lawyer-profile-card {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    text-align: center;
  }

  .lawyer-portrait-box {
    max-width: 320px;
    margin: 0 auto;
  }

  .lawyer-portrait-img {
    height: 380px;
  }

  .lawyer-header-tag {
    justify-content: center;
  }

  .lawyer-role-title {
    justify-content: center;
  }

  .lawyer-bio-text {
    text-align: left;
  }

  .lawyer-actions {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 75px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-logo-img {
    width: 130px;
    height: 130px;
  }

  .section-title {
    font-size: 1.95rem;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-subtle);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

  .nav-menu.open {
    right: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-actions .btn-nav {
    display: none;
  }

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

  .competencies-wrapper {
    grid-template-columns: 1fr;
  }

  .lawyer-credentials-grid {
    grid-template-columns: 1fr;
  }

  .lawyer-profile-card {
    padding: 2rem 1.25rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .form-footer {
    grid-column: span 1;
  }

  .contact-card {
    padding: 2.25rem 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .about-pillars {
    grid-template-columns: 1fr;
  }
}
