/* ═══════════════════════════════════════════════════
   EBANI ADVOGADO — CSS Principal
   Paleta: Preto profundo + Ouro + Off-white quente
   ═══════════════════════════════════════════════════ */

/* ── RESET & VARIÁVEIS ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #080808;
  --black-2:    #0f0f0f;
  --black-3:    #171717;
  --black-4:    #1f1f1f;
  --gold:       #c8a84b;
  --gold-light: #e2c46a;
  --gold-dark:  #9a7e35;
  --gold-pale:  #c8a84b22;
  --white:      #f5f0e8;
  --white-2:    #d4cfc6;
  --gray:       #888;
  --gray-2:     #555;
  --gray-3:     #333;
  --radius:     6px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── TIPOGRAFIA ────────────────────────────────── */
.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ── UTILITÁRIOS ───────────────────────────────── */
.gold  { color: var(--gold); }
.container {
  width: min(1160px, 100% - 40px);
  margin-inline: auto;
}
.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;
}

/* ── ANIMAÇÕES ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,75,.4); }
  50%       { box-shadow: 0 0 0 12px rgba(200,168,75,0); }
}

.fade-up { animation: fadeUp .7s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .25s; }
.fade-up-3 { animation-delay: .4s; }
.fade-up-4 { animation-delay: .55s; }

/* ════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(200,168,75,.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo span { color: var(--gold); }
.header-logo::before {
  content: '';
  display: block;
  width: 3px;
  height: 28px;
  background: var(--gold);
  border-radius: 99px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-2);
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }
.header-phone svg { color: var(--gold); flex-shrink: 0; }
.header-badge {
  font-size: 10px;
  background: var(--gold);
  color: var(--black);
  padding: 2px 7px;
  border-radius: 99px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  padding-top: 80px;
}

/* Fundo texturizado */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200,168,75,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 0% 100%, rgba(200,168,75,.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Linha decorativa diagonal */
#hero::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: .15;
  transform: rotate(4deg) translateX(-50%);
  pointer-events: none;
}

/* LADO ESQUERDO — Copy */
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px clamp(20px, 4vw, 60px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 560px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  opacity: .4;
  transform-origin: left;
  animation: scaleIn .6s .9s ease both;
}

.hero-sub {
  font-size: 17px;
  color: var(--white-2);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: var(--radius);
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  animation: pulse-gold 2.5s 2s infinite;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,168,75,.3);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { flex-shrink: 0; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--gray);
}
.hero-trust::before {
  content: '';
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

/* LADO DIREITO — Foto */
.hero-photo-wrap {
  position: relative;
  overflow: hidden;
}

/* Gradiente que funde a foto com o fundo */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    rgba(8,8,8,.5) 18%,
    transparent 45%
  ),
  linear-gradient(
    to top,
    var(--black) 0%,
    transparent 25%
  );
  pointer-events: none;
}

/* Efeito de moldura dourada sutil */
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  top: 60px; right: 40px;
  bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: .3;
  z-index: 3;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%) contrast(1.05);
  transform: scale(1.02);
  transition: transform 8s ease;
}
#hero:hover .hero-photo {
  transform: scale(1);
}

/* Badge flutuante */
.hero-badge {
  position: absolute;
  bottom: 48px;
  left: 24px;
  z-index: 4;
  background: var(--black-3);
  border: 1px solid var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.hero-badge strong {
  display: block;
  font-size: 22px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  line-height: 1;
}
.hero-badge span {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ════════════════════════════════════════════════
   CREDIBILIDADE
════════════════════════════════════════════════ */
#credibilidade {
  background: var(--black-3);
  border-top: 1px solid rgba(200,168,75,.1);
  border-bottom: 1px solid rgba(200,168,75,.1);
  padding: 40px 0;
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.cred-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.cred-item + .cred-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(200,168,75,.15);
}
.cred-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.cred-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.4;
}

/* ════════════════════════════════════════════════
   URGÊNCIA
════════════════════════════════════════════════ */
#urgencia {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
#urgencia::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .3;
}
.urgencia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.urgencia-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.urgencia-label::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.urgencia-title {
  font-size: clamp(30px, 3.5vw, 46px);
  color: var(--white);
  margin-bottom: 24px;
}
.urgencia-body {
  font-size: 16px;
  color: var(--white-2);
  line-height: 1.75;
  margin-bottom: 36px;
}
.urgencia-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.urgencia-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.5;
}
.urgencia-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════════════ */
#servicos {
  padding: 100px 0;
  background: var(--black-2);
  position: relative;
}
#servicos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 400px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(200,168,75,.05) 0%, transparent 70%);
  pointer-events: none;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
}
.section-line {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 99px;
}

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

.servico-card {
  background: var(--black-3);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.servico-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.servico-card:hover {
  border-color: rgba(200,168,75,.25);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.5);
}
.servico-card:hover::before {
  transform: scaleX(1);
}

.servico-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.servico-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
  font-weight: 600;
}
.servico-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.servico-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
  font-style: italic;
}
.servico-items {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.servico-items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white-2);
  line-height: 1.4;
}
.servico-items li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: .7;
}

.servicos-cta {
  text-align: center;
  margin-top: 56px;
}

/* ════════════════════════════════════════════════
   SOBRE
════════════════════════════════════════════════ */
#sobre {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
#sobre::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,168,75,.04) 0%, transparent 70%);
  pointer-events: none;
}
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.8vw, 34px);
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 32px;
  padding-left: 28px;
  border-left: 3px solid var(--gold);
}
.sobre-text {
  font-size: 16px;
  color: var(--white-2);
  line-height: 1.8;
  margin-bottom: 36px;
}
.sobre-stats {
  display: flex;
  gap: 32px;
}
.sobre-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.sobre-stat span {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.sobre-image-wrap {
  position: relative;
}
.sobre-image-bg {
  position: absolute;
  inset: 20px;
  background: var(--gold-pale);
  border-radius: 8px;
  transform: rotate(2deg);
}
.sobre-image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  filter: grayscale(10%);
}

/* ════════════════════════════════════════════════
   DEPOIMENTOS
════════════════════════════════════════════════ */
#depoimentos {
  padding: 100px 0;
  background: var(--black-2);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.review-card {
  background: var(--black-3);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover {
  border-color: rgba(200,168,75,.2);
  transform: translateY(-3px);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: var(--gold);
  opacity: .12;
  line-height: 1;
  pointer-events: none;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.review-stars span {
  color: var(--gold);
  font-size: 16px;
}
.review-text {
  font-size: 15px;
  color: var(--white-2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border: 1px solid rgba(200,168,75,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.review-source {
  font-size: 11px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ════════════════════════════════════════════════
   DIFERENCIAIS
════════════════════════════════════════════════ */
#diferenciais {
  padding: 100px 0;
  background: var(--black);
}
.dif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-3);
  border: 1px solid var(--gray-3);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 56px;
}
.dif-item {
  background: var(--black-3);
  padding: 48px 36px;
  transition: background var(--transition);
}
.dif-item:hover { background: var(--black-4); }
.dif-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--gold);
  opacity: .3;
  line-height: 1;
  margin-bottom: 20px;
}
.dif-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.dif-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.dif-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════════ */
#cta-final {
  padding: 120px 0;
  background: var(--black-3);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,168,75,.06) 0%, transparent 70%);
  pointer-events: none;
}
#cta-final::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .4;
}
.cta-final-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.cta-final-title {
  font-size: clamp(32px, 4vw, 54px);
  color: var(--white);
  max-width: 640px;
  margin: 0 auto 20px;
}
.cta-final-sub {
  font-size: 16px;
  color: var(--white-2);
  margin-bottom: 44px;
}
.cta-final-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-final-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
}
.cta-final-trust::before {
  content: '';
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
#footer {
  background: var(--black);
  border-top: 1px solid rgba(200,168,75,.1);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .header-logo {
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--gray);
  max-width: 220px;
  line-height: 1.5;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--white-2);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--gold); }
.footer-link svg { color: var(--gold); flex-shrink: 0; }
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  transition: color var(--transition);
}
.social-link:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--gray-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-copy {
  font-size: 12px;
  color: var(--gray-2);
}
.footer-oab {
  font-size: 11px;
  color: var(--gray-2);
  text-align: right;
}

/* ════════════════════════════════════════════════
   MODAL
════════════════════════════════════════════════ */
#eq-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
#eq-overlay.active {
  display: flex;
  opacity: 1;
}

#eq-modal {
  background: var(--black-3);
  border: 1px solid var(--gray-3);
  border-top: 3px solid var(--gold);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 44px 40px 40px;
  position: relative;
  transform: translateY(24px);
  transition: transform .35s ease;
  box-shadow: 0 40px 100px rgba(0,0,0,.8), 0 0 0 1px rgba(200,168,75,.06);
}
#eq-overlay.active #eq-modal {
  transform: translateY(0);
}

#eq-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: var(--gray-2);
  font-size: 24px;
  padding: 4px 8px;
  line-height: 1;
  transition: color var(--transition);
}
#eq-close:hover { color: var(--white); }

.eq-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}
.eq-bar {
  height: 3px;
  flex: 1;
  background: var(--gray-3);
  border-radius: 99px;
  transition: background .4s ease;
}
.eq-bar.active { background: var(--gold-light); }
.eq-bar.done   { background: var(--gold); }

.eq-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.25;
}
.eq-sublabel {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
  display: block;
}

.eq-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.eq-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  background: var(--black-2);
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: left;
  width: 100%;
  color: var(--white-2);
  font-size: 14px;
  line-height: 1.45;
}
.eq-option:hover {
  border-color: rgba(200,168,75,.4);
  background: rgba(200,168,75,.04);
  color: var(--white);
}
.eq-option .opt-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.eq-option .opt-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 2px;
}
.eq-option .opt-text span { font-size: 12px; color: var(--gray); }

.eq-field { margin-bottom: 16px; }
.eq-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.eq-field input {
  width: 100%;
  background: var(--black-2);
  border: 1px solid var(--gray-3);
  border-radius: 6px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s;
}
.eq-field input:focus { border-color: var(--gold); }
.eq-field input::placeholder { color: var(--gray-2); }
.eq-field input.error { border-color: #ef4444; }

#eq-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 17px;
  border-radius: 6px;
  margin-top: 8px;
  transition: background .2s, transform .1s;
}
#eq-submit:hover { background: var(--gold-light); }
#eq-submit:active { transform: scale(.98); }

.eq-legal {
  font-size: 11px;
  color: var(--gray-2);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.eq-step { display: none; }
.eq-step.active { display: block; }

.eq-dq-icon { font-size: 44px; text-align: center; margin-bottom: 16px; }
.eq-dq-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  text-align: center;
  margin-bottom: 14px;
}
.eq-dq-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  text-align: center;
  margin-bottom: 28px;
}
.eq-dq-back {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid var(--gray-3);
  color: var(--gray);
  padding: 12px;
  border-radius: 6px;
  font-size: 13px;
  transition: color .2s, border-color .2s;
}
.eq-dq-back:hover { color: var(--white); border-color: var(--gray-2); }

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  #hero::after { display: none; }

  .hero-content {
    padding: 60px 20px 0;
    order: 1;
  }
  .hero-photo-wrap {
    order: 2;
    height: 480px;
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
  }
  .hero-photo-wrap::before {
    background: linear-gradient(to bottom,
      transparent 60%,
      var(--black) 100%
    );
  }
  .hero-badge { display: none; }

  .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .cred-item + .cred-item::before { display: none; }
  .cred-item:nth-child(even)::before {
    display: block;
    top: 10%; bottom: 10%;
    left: 0;
    height: auto;
    width: 1px;
  }

  .urgencia-inner,
  .sobre-inner { grid-template-columns: 1fr; gap: 48px; }
  .sobre-image-wrap { max-width: 400px; }

  .servicos-grid { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }

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

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-social { align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-oab { text-align: center; }
}

@media (max-width: 540px) {
  .hero-cta-group { align-items: stretch; }
  .btn-primary { justify-content: center; }
  .sobre-stats { flex-wrap: wrap; gap: 20px; }
  #eq-modal { padding: 32px 22px 28px; }
  .eq-label { font-size: 18px; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Scrollbar customizada ──────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-3); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }