
:root {
  --gold: #B8972A;
  --gold-light: #D4AF4A;
  --gold-bright: #E8C855;
  --gold-pale: #F0DFA0;
  --marble-bg: #F4F1EC;
  --marble-dark: #E8E3DA;
  --off-white: #FAF8F4;
  --charcoal: #1A1A18;
  --text-dark: #2C2C28;
  --text-mid: #5A5A52;
  --text-light: #8A8A7A;
  --border: rgba(184,151,42,0.25);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--marble-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* MARBLE TEXTURE via CSS */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600'%3E%3Cfilter id='m'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012 0.008' numOctaves='5' seed='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.1'/%3E%3CfeBlend in='SourceGraphic' mode='multiply'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23m)' opacity='0.18'/%3E%3C/svg%3E");
  opacity: 0.6;
}

/* Veias marmore */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0px,
      transparent 120px,
      rgba(180,165,140,0.07) 120px,
      rgba(180,165,140,0.07) 122px,
      transparent 122px,
      transparent 280px,
      rgba(160,145,120,0.05) 280px,
      rgba(160,145,120,0.05) 281px,
      transparent 281px,
      transparent 400px
    ),
    repeating-linear-gradient(
      -20deg,
      transparent 0px,
      transparent 200px,
      rgba(170,155,130,0.06) 200px,
      rgba(170,155,130,0.06) 201px,
      transparent 201px,
      transparent 500px
    );
}

section, nav, footer, header { position: relative; z-index: 1; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(244,241,236,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

nav .logo img {
  height: 52px;
  display: block;
}

nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}

nav ul a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--gold); }

nav .nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

nav .nav-cta:hover {
  background: var(--gold);
  color: white;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184,151,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-eyebrow span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(46px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 28px;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 48px;
  max-width: 520px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  background: var(--gold);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn-primary:hover::after { transform: translateX(0); }

.btn-secondary {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--gold); }

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

.hero-logo {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  width: 420px;
  pointer-events: none;
  animation: fadeIn 1.2s 0.5s ease both;
}

.hero-stats {
  display: flex;
  gap: 52px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
}

/* ─── URGÊNCIA STRIP ─── */
.urgency-strip {
  background: var(--charcoal);
  color: var(--gold-pale);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

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

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

/* ─── PROBLEMA / DOR ─── */
.dor-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

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

.dor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}

.dor-item {
  background: var(--off-white);
  padding: 44px 48px;
  transition: background 0.25s;
}

.dor-item:hover { background: white; }

.dor-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}

.dor-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.dor-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ─── SERVIÇOS ─── */
.servicos-section {
  padding: 100px 60px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.servicos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 80px,
      rgba(255,255,255,0.012) 80px,
      rgba(255,255,255,0.012) 81px
    );
}

.servicos-section .section-label { color: var(--gold-light); }
.servicos-section .section-label::before { background: var(--gold-light); }
.servicos-section .section-title { color: var(--off-white); }
.servicos-section .section-title em { color: var(--gold-light); }

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 60px;
  background: rgba(184,151,42,0.15);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.servico-card {
  background: rgba(26,26,24,0.95);
  padding: 52px 44px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.servico-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.servico-card:hover::after { width: 100%; }
.servico-card:hover { background: rgba(40,38,32,0.98); }

.servico-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184,151,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 18px;
  color: var(--gold);
}

.servico-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 14px;
}

.servico-card p {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,248,244,0.55);
}

/* ─── PROVA SOCIAL ─── */
.prova-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.depoimento {
  background: white;
  padding: 44px 40px;
  border-top: 3px solid var(--gold);
  position: relative;
}

.depoimento-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.6;
  margin-bottom: 20px;
}

.depoimento p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 28px;
}

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

.depoimento-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.depoimento-info strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}

.depoimento-info span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ─── RESULTADOS ─── */
.resultados-section {
  padding: 100px 60px;
  background: var(--marble-dark);
  position: relative;
}

.resultados-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}

.resultado-item {
  background: var(--off-white);
  padding: 52px 36px;
  text-align: center;
}

.resultado-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.resultado-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── PROCESSO ─── */
.processo-section {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.processo-steps {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.processo-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold-pale) 50%, var(--gold) 100%);
  opacity: 0.4;
}

.step {
  padding: 0 28px;
  text-align: center;
  position: relative;
}

.step-num {
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--gold);
  margin: 0 auto 28px;
  background: var(--marble-bg);
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.step p {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

/* ─── FAQ ─── */
.faq-section {
  padding: 100px 60px;
  background: var(--charcoal);
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-section .section-label { color: var(--gold-light); }
.faq-section .section-label::before { background: var(--gold-light); }
.faq-section .section-title { color: var(--off-white); }
.faq-section .section-title em { color: var(--gold-light); }

.faq-list { margin-top: 52px; }

.faq-item {
  border-bottom: 1px solid rgba(184,151,42,0.15);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  cursor: pointer;
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--gold-light); }

.faq-q .faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(184,151,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-a {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,248,244,0.6);
  padding: 0 0 28px;
  display: none;
}

.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ─── CTA FINAL ─── */
.cta-section {
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,151,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section .section-label {
  justify-content: center;
}

.cta-section .section-label::before { display: none; }

.cta-section .section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

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

.wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.wpp-btn:hover { background: #1ebe5a; }

.cta-garantia {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.garantia-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

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

/* ─── FOOTER ─── */
footer {
  background: #141412;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-logo img { height: 48px; opacity: 0.85; }

.footer-text {
  font-size: 11px;
  font-weight: 300;
  color: rgba(250,248,244,0.35);
  text-align: center;
  line-height: 1.8;
}

.footer-oab {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(184,151,42,0.6);
  text-align: right;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── STICKY WPP ─── */
.sticky-wpp {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  text-decoration: none;
  transition: transform 0.2s;
}

.sticky-wpp:hover { transform: scale(1.08); }

.sticky-wpp svg { width: 26px; height: 26px; fill: white; }


/* ─── ADVOGADAS ─── */
.advogadas-section {
  padding: 100px 60px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.advogadas-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.advogadas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.advogada-card {
  display: flex;
  flex-direction: column;
  background: white;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advogada-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(26,26,24,0.10);
}

.advogada-foto-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.advogada-foto-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.advogada-card:hover .advogada-foto-wrap img {
  transform: scale(1.03);
}

.advogada-foto-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,26,24,0.45), transparent);
  pointer-events: none;
}

.advogada-info {
  padding: 36px 40px 40px;
}

.advogada-nome {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.advogada-oab {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.advogada-bio {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 28px;
}

.advogada-linha {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}


/* ─── NAV LOCATION ─── */
.nav-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── HERO FORM ─── */
.hero-form-wrap {
  position: relative;
  margin-top: 52px;
  padding: 44px 44px 38px;
  background: white;
  border: 1px solid rgba(184,151,42,0.45);
  border-top: 4px solid var(--gold);
  max-width: 640px;
  box-shadow: 0 28px 70px rgba(26,26,24,0.14), 0 4px 18px rgba(184,151,42,0.10);
  animation: fadeUp 0.8s 0.5s ease both;
}

.hero-form-badge {
  position: absolute;
  top: -14px;
  left: 44px;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 6px 16px;
}

.hero-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 10px;
}

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

.hero-form-label {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.hero-input {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--marble-bg);
  border: 1px solid var(--border);
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
}

.hero-input:focus { border-color: var(--gold); }
.hero-input::placeholder { color: var(--text-light); }

.hero-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8972A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.hero-form-btn {
  background: var(--gold);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 19px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 6px;
  box-shadow: 0 10px 26px rgba(184,151,42,0.32);
}
.hero-form-btn:hover { box-shadow: 0 12px 30px rgba(184,151,42,0.45); transform: translateY(-1px); }

.hero-form-btn:hover { background: var(--gold-light); }

.hero-form-note {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* ─── DIFERENCIAL ─── */
.diferencial-section {
  padding: 100px 60px;
  background: var(--marble-bg);
}

.diferencial-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.diferencial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
}

.diferencial-item {
  background: var(--off-white);
  padding: 48px 44px;
  transition: background 0.25s;
}

.diferencial-item:hover { background: white; }

.diferencial-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
}

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

.diferencial-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.diferencial-item p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-mid);
}


/* ─── HERO SPLIT LAYOUT ─── */
.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "text  photo"
    "form  photo";
  gap: 0;
  padding: 140px 0 0 0;
  align-items: stretch;
  overflow: hidden;
}

.hero-split .hero-line-accent {
  position: absolute;
  left: 0; top: 0;
  width: 4px;
  height: 100%;
}

.hero-split .hero-bg-accent {
  display: none;
}

.hero-split .hero-content {
  grid-area: text;
  padding: 60px 60px 0 60px;
  max-width: none;
}

.hero-split .hero-form-wrap {
  grid-area: form;
  margin: 52px 60px 80px;
}

.hero-split .hero-office-photo {
  grid-area: photo;
}

/* ─── OFFICE PHOTO ─── */
.hero-office-photo {
  position: relative;
  overflow: hidden;
}

.hero-office-photo-inner {
  position: relative;
  height: 100%;
  min-height: 480px;
}

.hero-office-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-office-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(244,241,236,0.18) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

.hero-office-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: rgba(26,26,24,0.7);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
}

.hero-office-caption span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}


/* ─── BLOG TEASER ─── */
.blog-teaser-section {
  padding: 100px 60px;
  background: var(--charcoal);
  position: relative;
}
.blog-teaser-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg,transparent 0,transparent 80px,rgba(255,255,255,0.012) 80px,rgba(255,255,255,0.012) 81px);
}
.blog-teaser-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.blog-teaser-section .section-label { color: var(--gold-light); }
.blog-teaser-section .section-label::before { background: var(--gold-light); }
.blog-teaser-section .section-title { color: var(--off-white); }
.blog-teaser-section .section-title em { color: var(--gold-light); }
.blog-teaser-desc {
  font-size: 14px; font-weight: 300; line-height: 1.8;
  color: rgba(250,248,244,0.5); max-width: 520px; margin-top: 16px;
}
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px; margin-top: 52px;
  background: rgba(184,151,42,0.15);
}
.blog-teaser-card {
  background: rgba(26,26,24,0.95);
  padding: 44px 40px;
  text-decoration: none;
  display: block;
  transition: background 0.25s;
  position: relative;
}
.blog-teaser-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.blog-teaser-card:hover::after { width: 100%; }
.blog-teaser-card:hover { background: rgba(40,38,32,0.98); }
.btc-tag {
  font-size: 9px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.blog-teaser-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--off-white); margin-bottom: 10px; line-height: 1.3;
}
.blog-teaser-card p {
  font-size: 12.5px; font-weight: 300; line-height: 1.75;
  color: rgba(250,248,244,0.45); margin-bottom: 20px;
}
.btc-cta {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.blog-teaser-more {
  text-align: center; margin-top: 44px;
}



/* ─── ACESSIBILIDADE / UTILITÁRIOS ─── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hp-field {
  position: absolute; left: -9999px; top: -9999px;
  height: 0; width: 0; opacity: 0; pointer-events: none;
}

/* ─── FORM: CONSENTIMENTO + STATUS ─── */
.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; font-weight: 400; line-height: 1.6;
  color: var(--text-mid); cursor: pointer; margin-top: 4px;
}
.consent input[type="checkbox"] {
  width: 15px; height: 15px; margin-top: 2px;
  accent-color: var(--gold); flex-shrink: 0; cursor: pointer;
}
.consent a { color: var(--gold); text-decoration: underline; }
.hero-form-status {
  font-size: 12px; font-weight: 500; color: var(--gold);
  text-align: center; min-height: 0; margin-top: 4px;
}
.hero-form-status.error { color: #B0432E; }
.hero-form-btn:disabled { opacity: 0.65; cursor: wait; }


/* ─── LOCALIZAÇÃO / MAPA ─── */
.mapa-section {
  padding: 100px 60px;
  background: var(--marble-dark);
}
.mapa-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.mapa-endereco {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mapa-endereco-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}
.mapa-endereco-item svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.mapa-endereco-item strong { font-weight: 600; color: var(--charcoal); }
.mapa-endereco-item a { color: var(--gold); text-decoration: none; font-weight: 500; }
.mapa-endereco-item a:hover { text-decoration: underline; }
.mapa-rota { margin-top: 40px; }
.mapa-embed {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(26,26,24,0.12);
  background: var(--off-white);
}
.mapa-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.25) sepia(0.08);
}

/* ─── RESPONSIVO ─── */
@media (max-width: 1100px) {
  .hero-split {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "photo"
      "form";
    padding-top: 130px;
  }
  .hero-split .hero-content { padding: 24px 40px 0; }
  .hero-split .hero-form-wrap { margin: 40px 40px 48px; }
  .hero-office-photo-inner { min-height: 320px; max-height: 380px; }
  .hero-office-photo::before { display: none; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .mapa-inner { grid-template-columns: 1fr; gap: 40px; }
  .mapa-embed { min-height: 340px; }
  .processo-steps { grid-template-columns: repeat(2, 1fr); row-gap: 52px; }
  .processo-steps::before { display: none; }
  nav { padding: 16px 28px; }
  nav ul { gap: 22px; }
}

@media (max-width: 820px) {
  nav { padding: 13px 18px; }
  nav ul { display: none; }
  nav .nav-cta { padding: 9px 16px; font-size: 9px; letter-spacing: 0.14em; }
  .nav-location { font-size: 9px; letter-spacing: 0.1em; }
  .urgency-strip { padding: 11px 18px; font-size: 10px; text-align: center; line-height: 1.6; }
  .urgency-strip .dot { display: none; }

  .hero-split { padding-top: 108px; }
  .hero-split .hero-content { padding: 20px 22px 0; }
  .hero-split .hero-form-wrap { margin: 32px 22px 40px; }
  .hero-office-photo-inner { min-height: 260px; max-height: 300px; }
  .hero-office-caption { bottom: 18px; left: 18px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 46px); }
  .hero-desc { font-size: 14px; margin-bottom: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .btn-primary { text-align: center; padding: 15px 24px; }
  .btn-secondary { justify-content: center; }
  .hero-form-wrap { margin-top: 40px; padding: 34px 22px 28px; max-width: none; }
  .hero-form-badge { left: 22px; }
  .hero-form-title { font-size: 25px; }
  .hero-form-row { grid-template-columns: 1fr; }

  .dor-section, .servicos-section, .prova-section, .diferencial-section,
  .advogadas-section, .processo-section, .faq-section, .cta-section,
  .blog-teaser-section, .mapa-section { padding: 68px 22px; }

  .section-title { font-size: clamp(30px, 8vw, 40px); }

  .dor-grid, .servicos-grid, .diferencial-grid, .depoimentos-grid,
  .advogadas-grid, .blog-teaser-grid, .resultados-grid,
  .processo-steps { grid-template-columns: 1fr; }

  .dor-item, .diferencial-item { padding: 32px 24px; }
  .servico-card { padding: 36px 26px; }
  .depoimento { padding: 32px 26px; }
  .advogada-info { padding: 26px 22px 30px; }
  .advogadas-grid { gap: 28px; }
  .step { padding: 0 12px; }

  .faq-q { font-size: 17px; padding: 22px 0; }
  .faq-a { font-size: 13px; }

  .cta-section { padding: 80px 22px; }
  .cta-actions { flex-direction: column; }
  .wpp-btn { width: 100%; justify-content: center; }

  .blog-teaser-card { padding: 32px 24px; }

  footer { padding: 44px 22px; flex-direction: column; text-align: center; }
  .footer-oab { text-align: center; }

  .sticky-wpp { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .sticky-wpp svg { width: 23px; height: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
