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

:root {
  /* Color Palette — Luxury Law */
  --navy-deep:   #0a0e1a;
  --navy-mid:    #111827;
  --navy-light:  #1c2539;
  --gold:        #c9a84c;
  --gold-light:  #e8c97e;
  --gold-pale:   #f5e9cc;
  --cream:       #faf7f2;
  --white:       #ffffff;
  --text-dark:   #0f172a;
  --text-mid:    #374151;
  --text-muted:  #8fa4b8;
  --text-light:  #b8c8d8;

  /* Typography */
  --font-serif:  'Noto Serif', Georgia, serif;
  --font-sans:   'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;
  --gap-md:      clamp(40px, 5vw, 64px);

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body {
  font-family: var(--font-sans);
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ==============================================
   UTILITIES
   ============================================== */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
  text-wrap: balance;
}

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

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.06rem);
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
  text-wrap: pretty;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 6px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
  filter: brightness(1.08);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.925rem;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.06);
}

/* AOS-like animations */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos][data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-aos-delay="400"] { transition-delay: 0.4s; }

[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ==============================================
   NAVBAR
   ============================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s, padding 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-acn {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 10px;
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 10px 22px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
}

/* ==============================================
   HERO
   ============================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #060a12 0%, #0c1220 40%, #111827 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(28,37,57,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(120px, 15vw, 160px) clamp(20px, 5vw, 64px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 100px;
  padding: 7px 16px;
  margin-bottom: 28px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}

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

.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 40px;
  text-wrap: pretty;
}

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

.hero-trust {
  display: flex;
  gap: 28px;
  align-items: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.trust-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a8bccf;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: clamp(300px, 40vw, 480px);
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  filter: brightness(0.88) contrast(1.05);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.hero-scroll-hint {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 0 40px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.85;
}

.scroll-arrow {
  width: 3px;
  height: 52px;
  border-radius: 99px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.15));
  box-shadow: 0 0 10px rgba(201,168,76,0.5);
  animation: scrollArrow 1.6s ease-in-out infinite;
}

@keyframes scrollArrow {
  0%   { transform: scaleY(0) translateY(0); transform-origin: top; opacity: 1; }
  45%  { transform: scaleY(1) translateY(0); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1) translateY(6px); transform-origin: top; opacity: 0.7; }
  100% { transform: scaleY(0) translateY(10px); transform-origin: top; opacity: 0; }
}

/* ==============================================
   DOR SECTION
   ============================================== */
.dor-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.dor-headline {
  text-align: center;
  margin-bottom: var(--gap-md);
}

.dor-headline .section-title { color: var(--text-dark); }
.dor-headline .section-subtitle {
  color: var(--text-mid);
  margin: 0 auto;
}

.dor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.dor-card {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.dor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.10);
  border-color: rgba(201,168,76,0.25);
}

.dor-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.dor-icon--1 { background: #fef3c7; color: #92400e; }
.dor-icon--2 { background: #fee2e2; color: #991b1b; }
.dor-icon--3 { background: #e0e7ff; color: #3730a3; }
.dor-icon--4 { background: #d1fae5; color: #065f46; }

.dor-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.dor-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.dor-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.dor-cta-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto;
}

/* ==============================================
   SERVIÇOS SECTION
   ============================================== */
.servicos-section {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.servicos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.servicos-header {
  text-align: center;
  margin-bottom: var(--gap-md);
}

.servicos-header .section-subtitle {
  margin: 0 auto;
  color: var(--text-light);
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.servico-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 36px 28px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s var(--ease);
  transform-origin: left;
}

.servico-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(255,255,255,0.05);
}

.servico-card:hover::after { transform: scaleX(1); }

.servico-card--featured {
  border-color: rgba(201, 168, 76, 0.2);
  background: rgba(201, 168, 76, 0.04);
}

.servico-card--featured::after { transform: scaleX(1); }

.servico-number {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: rgba(201, 168, 76, 0.4);
  margin-bottom: 16px;
}

.servico-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 16px;
}

.servico-tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.servico-tag--new {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
  border-color: rgba(99, 102, 241, 0.2);
}

.servico-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.servico-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.servico-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.servico-list li {
  font-size: 0.83rem;
  color: #a8bccf;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.servico-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.servico-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  transition: gap 0.2s, color 0.2s;
}

.servico-cta:hover { color: var(--gold); gap: 6px; }

/* ==============================================
   SOBRE SECTION
   ============================================== */
.sobre-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.sobre-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
}

.sobre-images {
  position: relative;
}

.sobre-img-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

.sobre-img-main img {
  width: 100%;
  height: clamp(400px, 50vh, 560px);
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.6s var(--ease);
}

.sobre-img-main:hover img { transform: scale(1.02); }

.sobre-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 45%;
  border-radius: 10px;
  overflow: hidden;
  border: 4px solid var(--navy-deep);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.sobre-img-secondary img {
  width: 100%;
  height: clamp(160px, 20vh, 220px);
  object-fit: cover;
  object-position: top;
  filter: brightness(0.88);
  transition: transform 0.6s var(--ease);
}

.sobre-img-secondary:hover img { transform: scale(1.05); }

.sobre-experience-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(201,168,76,0.35);
}

.exp-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 4px;
}

.sobre-content { padding-top: 32px; }

.sobre-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 18px;
}

.sobre-text strong { color: var(--white); font-weight: 600; }

.sobre-diferenciais {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.diferencial-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.diferencial-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.diferencial-item span {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==============================================
   PROCESSO SECTION
   ============================================== */
.processo-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.processo-header {
  text-align: center;
  margin-bottom: var(--gap-md);
}

.processo-header .section-title { color: var(--text-dark); }
.processo-header .section-subtitle { color: var(--text-mid); margin: 0 auto; }

.processo-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}

.step {
  position: relative;
  padding: 32px 24px;
  text-align: center;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.step-connector {
  display: none;
}

.processo-cta {
  display: flex;
  justify-content: center;
}

/* ==============================================
   DEPOIMENTOS SECTION
   ============================================== */
.depoimentos-section {
  padding: var(--section-pad) 0;
  background: var(--navy-mid);
  position: relative;
}

.depoimentos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

.depoimentos-header {
  text-align: center;
  margin-bottom: var(--gap-md);
}

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

.depoimento-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  position: relative;
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: rgba(201, 168, 76, 0.08);
  line-height: 1;
}

.depoimento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.15);
}

.depoimento-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.depoimento-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

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

.autor-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.autor-nome {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.autor-fonte {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==============================================
   FAQ SECTION
   ============================================== */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--navy-deep);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--gap-md);
}

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

.faq-item {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(201, 168, 76, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-question span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(201, 168, 76, 0.15);
}

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

.faq-answer.open {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ==============================================
   CTA FINAL SECTION
   ============================================== */
.cta-final-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #080c15 0%, #111827 50%, #0d1628 100%);
  overflow: hidden;
}

.cta-final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta-final-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-final-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-final-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 40px;
}

.cta-final-actions {
  margin-bottom: 20px;
}

.btn-cta-final {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 40px;
  border-radius: 8px;
  transition: transform 0.2s, box-shadow 0.3s, filter 0.2s;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3), 0 0 0 0 rgba(201,168,76,0.4);
  animation: ctaPulse 3s infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(201,168,76,0.3), 0 0 0 0 rgba(201,168,76,0.35); }
  50% { box-shadow: 0 8px 48px rgba(201,168,76,0.45), 0 0 0 12px rgba(201,168,76,0); }
}

.btn-cta-final:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.cta-final-detalhe {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.no-break {
  white-space: nowrap;
}

.sobre-text-highlight {
  margin: 32px 0;
  line-height: 1.6;
}

.hero-badge--moved {
  margin-top: 8px;
  display: flex !important;
  justify-content: center;
  align-self: center; /* Garantir centralização se o container pai for flex */
}

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

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 260px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.footer-info h4, .footer-links h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-info ul, .footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-info li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); opacity: 0.7; }

.footer-links li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==============================================
   WHATSAPP FLOAT
   ============================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { order: 2; }
  .hero-image-wrapper { order: 1; }

  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .hero-image-frame {
    width: clamp(260px, 70vw, 380px);
  }

  .hero-image-badge { left: 0; }

  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre-images {
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-tagline { max-width: 100%; }
}

@media (max-width: 640px) {
  /* ==============================================
     MOBILE HERO REORDER (640px)
     Sequence: Title -> Photo -> Description -> Tag
     ============================================== */
  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px; /* Reduz espaçamento no mobile */
  }

  /* hero-content wrapper loses its box behavior, children become direct flex items */
  .hero-content {
    display: contents;
  }

  .hero-title {
    order: 1;
    width: 100%;
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 24px;
  }

  .hero-image-wrapper {
    order: 2;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    order: 4;
    width: 100%;
    margin-bottom: 8px;
    text-align: center;
  }

  .hero-badge {
    order: 3;
    align-self: center;
    margin-bottom: 0px;
    font-size: 10px;
  }

  .hero-actions {
    order: 5;
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
  }

  .hero-trust {
    order: 6;
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  /* OAB Badge shift for mobile */
  .hero-image-badge {
    left: 0;
    bottom: 12px;
  }

  /* Other Mobile Adjustments */
  .logo-text { display: none; }

  .sobre-img-secondary {
    right: -16px;
    bottom: -16px;
  }

  .sobre-experience-badge {
    left: -12px;
    top: 16px;
  }

  .processo-steps,
  .dor-grid,
  .servicos-grid,
  .depoimentos-grid {
    grid-template-columns: 1fr;
  }

  .faq-question { padding: 18px 16px; }
  .faq-answer p { padding: 0 16px 20px; }
}
