/* ==========================================================================
   COMPONENTS CSS - NAVBAR, HERO, MOSAIC GRID, FAQ, FOOTER, WIDGET, BLOG
   ========================================================================== */

/* ==========================================================================
   1. NAVBAR INTELIGENTE
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: background-color var(--transition-normal), 
              backdrop-filter var(--transition-normal), 
              padding var(--transition-normal), 
              border-color var(--transition-normal),
              transform 0.4s var(--ease-premium),
              opacity 0.4s var(--ease-premium);
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.site-header--scrolled,
.site-header--blog-active,
.site-header--servico-active {
  background-color: rgba(7, 19, 38, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gold-subtle);
  box-shadow: 0 4px 24px rgba(5, 14, 28, 0.4);
}

.site-header.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo-link:hover .brand-logo-img {
  transform: scale(1.02);
}

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

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brand-text-light);
  letter-spacing: 0.2px;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--brand-gold-light);
}

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

.nav-cta-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
  min-height: 42px;
  border-radius: var(--radius-sm);
}

/* Hamburger Menu (Mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold-subtle);
  cursor: pointer;
  z-index: 1010;
  gap: 6px;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--brand-gold-light);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 991px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(7, 19, 38, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .nav-cta-btn {
    margin-top: 16px;
    font-size: 1rem;
    padding: 14px 28px;
  }
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--brand-navy-dark);
  color: var(--brand-white);
  padding-top: 130px;
  padding-bottom: 80px;
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero-law.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}

.section-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    var(--brand-navy-dark) 0%, 
    rgba(7, 19, 38, 0.88) 55%, 
    rgba(7, 19, 38, 0.45) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 15%;
  left: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 54, 100, 0.45) 0%, rgba(197, 160, 89, 0.08) 45%, transparent 70%);
  z-index: 3;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 4;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 660px;
}

.hero-logo-container {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
}

.hero-logo-img {
  height: 125px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--brand-gold-light);
  box-shadow: 0 0 10px var(--brand-gold);
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--brand-gold-light);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--brand-white);
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.7;
  color: var(--brand-text-light-muted);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid var(--border-dark);
}

.hero-trust-item {
  display: flex;
  flex-direction: column;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-gold-light);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.trust-label {
  font-size: 0.8rem;
  color: var(--brand-text-light-muted);
  line-height: 1.4;
  margin-top: 4px;
}

/* Card Visual Lateral da Hero */
.hero-card-preview {
  background: rgba(12, 30, 56, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 50px rgba(5, 14, 28, 0.45), 0 0 35px rgba(22, 54, 100, 0.2);
  position: relative;
}

.hero-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 16px;
}

.hero-card-title {
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--brand-white);
  margin-bottom: 16px;
}

.hero-card-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--brand-text-light-muted);
  line-height: 1.5;
}

.bullet-icon {
  width: 18px;
  height: 18px;
  fill: var(--brand-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: var(--brand-gold-light);
}

@media (max-width: 991px) {
  .section-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .section-hero::after {
    background: linear-gradient(180deg, 
      rgba(7, 19, 38, 0.95) 0%, 
      rgba(7, 19, 38, 0.85) 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-trust-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-logo-img {
    height: 96px;
  }
}

/* ==========================================================================
   3. SEÇÃO SOBRE O ADVOGADO
   ========================================================================== */
.sobre-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.sobre-image-col {
  position: relative;
}

.sobre-image-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold-subtle);
}

.sobre-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.sobre-image-frame:hover .sobre-photo {
  transform: scale(1.03);
}

.sobre-credencial-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background-color: var(--brand-navy);
  color: var(--brand-white);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  box-shadow: var(--shadow-gold);
  display: flex;
  flex-direction: column;
  z-index: 3;
  white-space: nowrap;
}

.credencial-oab {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-gold-light);
  letter-spacing: -0.01em;
}

.credencial-sub {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand-text-light-muted);
}

.sobre-content-col {
  display: flex;
  flex-direction: column;
}

.sobre-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brand-navy);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sobre-text {
  font-size: 0.95rem;
  color: var(--brand-text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

.sobre-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pillar-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon {
  width: 18px;
  height: 18px;
  fill: var(--brand-gold-dark);
}

.pillar-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.pillar-desc {
  font-size: 0.82rem;
  color: var(--brand-text-muted);
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-credencial-card {
    position: static;
    margin-top: 16px;
  }

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

/* ==========================================================================
   4. ÁREAS DE ATUAÇÃO - SEAMLESS BENTO MOSAIC GRID (#atuacao)
   ========================================================================== */
.mosaic-grid,
.atuacao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(12, 30, 56, 0.08);
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.mosaic-card,
.atuacao-card {
  position: relative;
  background-color: var(--brand-white);
  padding: clamp(28px, 3.2vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background-color var(--transition-fast);
}

.mosaic-card--span2,
.atuacao-card--featured {
  grid-column: span 2;
}

.mosaic-card:hover,
.atuacao-card:hover {
  background-color: #FAFBFD;
}

/* Header do Card */
.card-top,
.atuacao-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.card-icon-wrapper,
.atuacao-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(12, 30, 56, 0.04);
  border: 1px solid rgba(12, 30, 56, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-navy);
  flex-shrink: 0;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.card-icon,
.atuacao-icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.mosaic-card:hover .card-icon-wrapper,
.atuacao-card:hover .atuacao-icon-box {
  background-color: var(--brand-navy);
  color: var(--brand-gold-light);
  border-color: var(--brand-navy);
}

/* Badges / Tags */
.card-tag,
.atuacao-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-gold-dark);
  white-space: nowrap;
}

/* Títulos & Textos */
.card-title,
.atuacao-card-title {
  font-size: clamp(1.18rem, 1.35vw, 1.4rem);
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 12px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.card-desc,
.atuacao-card-desc {
  font-size: 0.88rem;
  color: var(--brand-text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.card-desc strong,
.atuacao-card-desc strong {
  color: var(--brand-text-dark);
  font-weight: 600;
}

/* Bullets Minimalistas */
.card-bullets,
.atuacao-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.card-bullet,
.atuacao-bullet {
  position: relative;
  padding-left: 14px;
  font-size: 0.82rem;
  color: var(--brand-text-body);
  line-height: 1.5;
  font-weight: 500;
}

.card-bullet::before,
.atuacao-bullet::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--brand-gold);
}

/* Ação / Botão Minimalista Moderno */
.card-action,
.card-link,
.atuacao-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
  transition: color var(--transition-fast), gap var(--transition-fast);
  margin-top: auto;
  padding-top: 14px;
  width: fit-content;
}

.card-action svg,
.card-link svg,
.atuacao-btn svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.card-action:hover,
.card-link:hover,
.atuacao-btn:hover {
  color: var(--brand-gold-dark);
  gap: 12px;
}

.card-action:hover svg,
.card-link:hover svg,
.atuacao-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .mosaic-grid,
  .atuacao-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-card--span2,
  .atuacao-card--featured {
    grid-column: span 1;
  }
}

/* ==========================================================================
   5. METODOLOGIA DE ATUAÇÃO
   ========================================================================== */
.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.metodologia-card {
  background-color: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.metodologia-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-md);
}

.metodologia-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--brand-navy);
  opacity: 0.12;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.metodologia-card:hover .metodologia-num {
  opacity: 0.4;
  color: var(--brand-gold);
}

.metodologia-title {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.metodologia-desc {
  font-size: 0.88rem;
  color: var(--brand-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .metodologia-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ==========================================================================
   6. FAQ - ACORDEÃO ULTRA-FLUIDO & CATEGORIAS POR NICHO
   ========================================================================== */
.faq-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 32px auto;
  max-width: 860px;
}

.faq-category-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 22px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: 9999px;
  cursor: pointer;
  transition: all var(--transition-normal);
  user-select: none;
}

.faq-category-btn:hover {
  color: var(--brand-dark);
  border-color: var(--brand-gold);
  background: rgba(212, 175, 55, 0.06);
}

.faq-category-btn.active {
  color: #121826;
  background: linear-gradient(135deg, #f3d88b 0%, #d4af37 100%);
  border-color: var(--brand-gold);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25);
}

.faq-item.faq-hidden {
  display: none !important;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

.faq-trigger {
  width: 100%;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--brand-navy);
  cursor: pointer;
  background: transparent;
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--brand-gold-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(10, 25, 47, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-normal), background var(--transition-fast);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  fill: var(--brand-navy);
  transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
  background: var(--brand-gold);
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
  fill: var(--brand-navy-dark);
}

.faq-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-premium);
}

.faq-item.active .faq-collapse {
  grid-template-rows: 1fr;
}

.faq-content {
  overflow: hidden;
}

.faq-content-inner {
  padding: 0 28px 24px 28px;
  font-size: 0.92rem;
  color: var(--brand-text-body);
  line-height: 1.7;
}

/* ==========================================================================
   7. CTA FINAL
   ========================================================================== */
.section-cta-final {
  background: linear-gradient(135deg, var(--brand-navy-dark) 0%, var(--brand-navy) 100%);
  color: var(--brand-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-final-box {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-final-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: var(--brand-white);
  margin-bottom: 20px;
}

.cta-final-desc {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--brand-text-light-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-final-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

/* ==========================================================================
   8. FOOTER MINIMALISTA (footer.md)
   ========================================================================== */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-footer);
  padding: 80px 24px 40px 24px;
  font-family: inherit;
  border-top: 1px solid var(--border-dark);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

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

.footer-logo {
  height: 66px;
  width: auto;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--brand-text-light-muted);
  max-width: 380px;
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand-white);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links, .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact-info li {
  margin-bottom: 12px;
}

.footer-links a, .footer-contact-info a {
  color: inherit;
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.25s var(--ease-premium), transform 0.25s var(--ease-premium);
  display: inline-block;
}

.footer-links a:hover, .footer-contact-info a:hover {
  color: var(--brand-gold-light);
  transform: translateX(3px);
}

.footer-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-dark);
  margin: 40px 0 28px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--brand-text-light-muted);
}

.credit-link,
.footer-credit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.25s ease;
}

.credit-link:hover,
.footer-credit-link:hover {
  color: var(--brand-white);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ==========================================================================
   9. WIDGET DE WHATSAPP INTELIGENTE (botaozap.md)
   ========================================================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-premium);
}

.whatsapp-widget.widget-visible {
  opacity: 1;
  pointer-events: none;
}

.whatsapp-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25D366;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s var(--ease-premium), background-color 0.2s var(--ease-premium);
  will-change: transform;
  pointer-events: auto;
}

.whatsapp-svg-icon {
  fill: #FFFFFF;
  width: 28px;
  height: 28px;
}

@media (hover: hover) and (pointer: fine) {
  .whatsapp-trigger-btn:hover {
    transform: scale(1.05);
    background-color: #128C7E;
  }
}

.whatsapp-chat-panel {
  width: 320px;
  background-color: var(--brand-white);
  border: 1px solid rgba(10, 25, 47, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s var(--ease-premium), 
              transform 0.3s var(--ease-premium), 
              max-height 0.3s var(--ease-premium), 
              margin-bottom 0.3s var(--ease-premium),
              visibility 0.3s;
  will-change: transform, opacity, max-height;
}

.whatsapp-chat-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 500px;
  margin-bottom: 16px;
  transform: translateY(0) scale(1);
}

.chat-header {
  background-color: var(--brand-navy);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--gold-gradient);
  color: var(--brand-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1.5px solid var(--gold-primary);
}

.chat-header-info {
  display: flex;
  flex-direction: column;
}

.chat-header-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: #FFFFFF;
}

.chat-header-status {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.chat-messages-container {
  padding: 16px;
  max-height: 340px;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #F4F6F9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.chat-bubble {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 85%;
  word-wrap: break-word;
  flex-shrink: 0;
}

.chat-bubble.received {
  background-color: var(--brand-white);
  color: var(--brand-text-dark);
  align-self: flex-start;
  border-top-left-radius: 2px;
  border: 1px solid rgba(10, 25, 47, 0.05);
}

.chat-bubble.sent {
  background-color: rgba(197, 160, 89, 0.18);
  color: var(--brand-navy);
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.chat-faq-options {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 8px;
  margin-top: 8px;
  opacity: 1;
  max-height: 300px;
  transition: opacity 0.3s var(--ease-premium), max-height 0.3s var(--ease-premium), margin-top 0.3s var(--ease-premium);
  overflow: hidden;
}

.chat-faq-options.hidden {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.chat-faq-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--brand-text-dark);
  opacity: 0.6;
  margin-bottom: 2px;
}

.chat-faq-opt {
  background-color: var(--brand-white);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--brand-navy);
  transition: background-color 0.2s var(--ease-premium), border-color 0.2s var(--ease-premium);
  min-height: 48px;
  display: flex;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .chat-faq-opt:hover {
    background-color: rgba(197, 160, 89, 0.08);
    border-color: var(--brand-gold);
  }
}

.chat-footer {
  padding: 12px;
  background-color: var(--brand-white);
  border-top: 1px solid rgba(10, 25, 47, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.chat-direct-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-gold-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease-premium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (hover: hover) and (pointer: fine) {
  .chat-direct-link:hover {
    color: var(--brand-navy);
  }
}

.typing-indicator {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 6px 0;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background-color: var(--brand-navy);
  border-radius: 50%;
  animation: typingDot 1.4s infinite ease-in-out;
  opacity: 0.4;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-4px); opacity: 1; }
}

@media (max-width: 767px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-chat-panel {
    display: none !important;
  }
}

/* ==========================================================================
   11. LGPD COOKIE BANNER
   ========================================================================== */
.lgpd-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 440px;
  background: rgba(10, 25, 47, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  color: var(--brand-white);
  z-index: 995;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s var(--ease-premium), opacity 0.4s var(--ease-premium), visibility 0.4s;
}

.lgpd-banner.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lgpd-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--brand-text-light-muted);
  margin-bottom: 0;
}

.lgpd-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lgpd-btn {
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.lgpd-btn-accept {
  background: var(--gold-gradient);
  color: var(--brand-navy-dark);
  border: none;
}

@media (max-width: 767px) {
  .lgpd-banner {
    left: 16px;
    right: 16px;
    bottom: 96px;
    max-width: none;
  }
}

/* ==========================================================================
   12. BLOG & ARTIGO (ajusteparablog.md)
   ========================================================================== */
#blog-secao, #artigo-secao {
  padding-top: 130px;
  padding-bottom: 90px;
  min-height: 80vh;
}

.blog-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.blog-title-section {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 48px;
  text-align: center;
}

.blog-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 32px;
}

.blog-card {
  background-color: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-premium), box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-md);
}

.blog-card-date {
  font-size: 0.82rem;
  color: var(--brand-gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--brand-navy);
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--brand-text-body);
  margin-bottom: 20px;
}

.blog-card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-gold-dark);
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Post Único */
.artigo-single-container {
  max-width: 1100px;
  margin: 0 auto;
}

.artigo-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.artigo-main {
  background-color: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}

.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-gold-dark);
  margin-bottom: 24px;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.btn-voltar:hover {
  transform: translateX(-4px);
}

.artigo-main-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 20px;
}

.artigo-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-light);
  margin-bottom: 28px;
}

.artigo-text-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--brand-text-body);
}

.artigo-text-body h2 {
  font-size: 1.6rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.artigo-text-body h3 {
  font-size: 1.3rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.artigo-text-body ul, .artigo-text-body ol {
  margin: 18px 0;
  padding-left: 24px;
  list-style: disc;
}

.artigo-text-body li {
  margin-bottom: 8px;
}

.blog-blockquote {
  border-left: 3px solid var(--brand-gold);
  background: var(--brand-surface);
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

/* Sidebar do Artigo Sticky */
.artigo-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background-color: var(--brand-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.autor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  border: 2px solid var(--brand-gold);
}

.autor-avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--brand-navy-dark);
  font-weight: 700;
  font-size: 1.4rem;
}

.autor-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-text-muted);
  display: block;
}

.autor-nome {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: -0.01em;
  display: block;
}

.autor-cargo {
  font-size: 0.8rem;
  color: var(--brand-gold-dark);
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.autor-bio {
  font-size: 0.85rem;
  color: var(--brand-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.sidebar-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-light);
  margin: 14px 0;
}

.sidebar-date {
  font-size: 0.8rem;
  color: var(--brand-text-muted);
  margin-bottom: 0;
}

.sidebar-heading {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.sidebar-post-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-post-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
}

.sidebar-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-post-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brand-navy);
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.sidebar-post-item:hover .sidebar-post-title {
  color: var(--brand-gold-dark);
}

.sidebar-post-date {
  font-size: 0.75rem;
  color: var(--brand-text-muted);
}

@media (max-width: 900px) {
  .artigo-layout {
    grid-template-columns: 1fr;
  }

  .artigo-sidebar {
    position: static;
  }
}

/* ==========================================================================
   PÁGINA COMPLETA DA ÁREA DE ATUAÇÃO (SPA DOM /servicos/:slug)
   ========================================================================== */
.servico-page-section {
  width: 100%;
  min-height: 100vh;
  background-color: var(--brand-bg);
  padding-top: 80px;
}

.servico-single-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Top Bar / Breadcrumb */
.servico-top-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(12, 30, 56, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 72px;
  z-index: 40;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.btn-voltar-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  background-color: rgba(12, 30, 56, 0.04);
  transition: all var(--transition-fast);
}

.btn-voltar-home svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-voltar-home:hover {
  background-color: var(--brand-navy);
  color: #FFFFFF;
}

.btn-voltar-home:hover svg {
  transform: translateX(-3px);
}

.servico-breadcrumb {
  font-size: 0.8rem;
  color: var(--brand-text-muted);
}

.servico-breadcrumb strong {
  color: var(--brand-navy);
}

/* Hero Completo */
.servico-hero-section {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(248, 249, 250, 0.8) 100%);
  border-bottom: 1px solid rgba(12, 30, 56, 0.08);
  padding: 60px 0 50px 0;
}

.servico-hero-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
  animation: servicoHeroFadeIn 0.4s var(--ease-premium) forwards;
}

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

.servico-main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand-navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 16px 0 20px 0;
}

.servico-main-lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--brand-text-body);
  line-height: 1.65;
  max-width: 820px;
  margin: 0 auto 36px auto;
}

/* Highlights Grid */
.servico-pills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
  text-align: left;
}

.servico-pill-item {
  background: #FFFFFF;
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.servico-pill-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-text-muted);
  font-weight: 600;
}

.servico-pill-value {
  font-size: 0.95rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.servico-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Layout Principal do Corpo */
.servico-body-section {
  padding: 60px 0 80px 0;
}

.servico-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.servico-content-col {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.servico-content-block {
  background: #FFFFFF;
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.servico-block-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(12, 30, 56, 0.06);
  letter-spacing: -0.01em;
}

.servico-text-block {
  font-size: 0.98rem;
  color: var(--brand-text-body);
  line-height: 1.7;
}

.servico-text-block p {
  margin-bottom: 16px;
}

.servico-text-block p:last-child {
  margin-bottom: 0;
}

.servico-text-block strong {
  color: var(--brand-navy);
}

/* Segmentos Elegíveis */
.servico-segmentos-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-segmento-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-navy);
  background-color: rgba(12, 30, 56, 0.02);
  border: 1px solid rgba(12, 30, 56, 0.06);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}

.servico-check-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-gold-dark);
  flex-shrink: 0;
}

/* Timeline Passo a Passo */
.servico-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.servico-timeline-step {
  display: flex;
  gap: 18px;
  position: relative;
}

.servico-step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-navy);
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.servico-step-content {
  flex: 1;
}

.servico-step-title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.servico-step-desc {
  font-size: 0.9rem;
  color: var(--brand-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Documentos */
.servico-docs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.servico-doc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--brand-text-body);
  line-height: 1.5;
  padding: 12px 16px;
  background: #FDFDFD;
  border: 1px solid rgba(12, 30, 56, 0.06);
  border-left: 3px solid var(--brand-gold);
  border-radius: var(--radius-sm);
}

.servico-doc-icon {
  width: 18px;
  height: 18px;
  color: var(--brand-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ Acordeão do Serviço */
.servico-faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.servico-faq-item {
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.servico-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #FAFAFA;
  border: none;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.servico-faq-trigger:hover {
  background-color: #F0F2F5;
}

.servico-faq-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
  color: var(--brand-gold-dark);
  flex-shrink: 0;
}

.servico-faq-trigger[aria-expanded="true"] .servico-faq-arrow {
  transform: rotate(180deg);
}

.servico-faq-answer {
  padding: 16px 18px;
  background: #FFFFFF;
  border-top: 1px solid rgba(12, 30, 56, 0.06);
  font-size: 0.9rem;
  color: var(--brand-text-body);
  line-height: 1.6;
}

.servico-faq-answer p {
  margin: 0;
}

/* Sidebar do Serviço */
.servico-sidebar-col {
  position: relative;
}

.servico-sidebar-sticky {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.servico-advogado-card {
  background: #FFFFFF;
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  text-align: center;
}

.servico-advogado-card .autor-avatar {
  margin: 0 auto 12px auto;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.servico-outras-areas-card {
  background: #FFFFFF;
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.outras-areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.outras-areas-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(12, 30, 56, 0.02);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--brand-navy);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.outras-areas-list a svg {
  width: 14px;
  height: 14px;
  color: var(--brand-gold-dark);
  transition: transform var(--transition-fast);
}

.outras-areas-list a:hover {
  background: var(--brand-navy);
  color: #FFFFFF;
}

.outras-areas-list a:hover svg {
  transform: translateX(3px);
  color: var(--brand-gold);
}

/* Footer da Página do Serviço */
.servico-page-footer {
  background: var(--brand-navy-dark);
  color: #FFFFFF;
  padding: 60px 0;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

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

.servico-footer-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.servico-footer-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.servico-footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsividade */
@media (max-width: 991px) {
  .servico-pills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servico-main-layout {
    grid-template-columns: 1fr;
  }

  .servico-sidebar-sticky {
    position: static;
  }

  .servico-segmentos-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .servico-pills-grid {
    grid-template-columns: 1fr;
  }

  .servico-content-block {
    padding: 24px;
  }

  .servico-page-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .servico-footer-actions {
    width: 100%;
    flex-direction: column;
  }

  .servico-footer-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   PÁGINA DE POLÍTICA DE PRIVACIDADE (SPA DOM /politica-de-privacidade)
   ========================================================================== */
.privacidade-page-section {
  width: 100%;
  min-height: 100vh;
  background-color: var(--brand-bg);
  padding-top: 80px;
}

.privacidade-single-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.privacidade-layout-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.privacidade-card-block {
  background: #FFFFFF;
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
}

.privacidade-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-text-muted);
  background: rgba(12, 30, 56, 0.04);
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: 8px;
}

.privacidade-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacidade-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.94rem;
  color: var(--brand-text-body);
  line-height: 1.6;
}

.privacidade-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--brand-gold);
}

.privacidade-contato-box {
  background: rgba(12, 30, 56, 0.02);
  border: 1px solid rgba(12, 30, 56, 0.08);
  border-left: 4px solid var(--brand-gold);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 16px;
}

.privacidade-contato-box p {
  margin-bottom: 6px;
  font-size: 0.92rem;
  color: var(--brand-navy);
}

.privacidade-contato-box p:last-child {
  margin-bottom: 0;
}

.privacidade-contato-box a {
  color: var(--brand-navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.privacidade-contato-box a:hover {
  color: var(--brand-gold-dark);
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
  margin-left: 6px;
}

.footer-legal-link:hover {
  color: var(--brand-gold-light);
  text-decoration: underline;
}

.lgpd-link {
  color: var(--brand-gold-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lgpd-link:hover {
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .privacidade-card-block {
    padding: 24px 20px;
  }
}
