:root{
  --bg: #0B1220;
  --bg2:#111A2E;
  --text:#E9EEF8;
  --muted:#AAB6D1;
  --gold:#C8A24A;
  --gold-25: rgba(200,162,74,.25);
}

*{ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body{ background: var(--bg); color: var(--text); font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

.site-header{
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand-logo{
  height: 60px;
  width: auto;
  display: block;
}
@media (max-width: 576px){
  .brand-logo{ height: 38px; }
}


.brand-title{ font-family: "Playfair Display", serif; letter-spacing:.3px; font-weight: 700; }
.brand-sub{ color: var(--muted); font-size: .85rem; }

.navbar .nav-link{ color: rgba(233,238,248,.85); }
.navbar .nav-link:hover{ color: var(--text); }

.btn-gold{
  background: var(--gold);
  color: #1a1406;
  border: 1px solid rgba(0,0,0,.15);
  font-weight: 600;
}
.btn-gold:hover{ filter: brightness(1.05); }

.hero{
  position: relative;
  padding: 92px 0 70px;
  min-height: 85vh; /* ocupa a dobra inteira */
  display: flex;
  align-items: center;

  /* imagem de fundo */
  background-image:
    linear-gradient(90deg, rgba(11,18,32,.92) 0%, rgba(11,18,32,.75) 45%, rgba(11,18,32,.35) 100%),
    url("/assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .container{
  position: relative;
  z-index: 2;
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 20% 20%, rgba(200,162,74,.18), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.kicker{ color: var(--muted); letter-spacing:.12em; text-transform: uppercase; font-size: .85rem; }
.hero-title{ font-family: "Playfair Display", serif; }
.hero-lead{ color: rgba(233,238,248,.85); 
            width: 100%;
  max-width: none !important;  /* remove qualquer limite */
  margin-left: 0 !important;
  margin-right: 0 !important;}
.hero-lead{
  
}

.section{ padding: 64px 0; }
.section-alt{
  background: #F5F6F8;          /* cinza bem próximo do branco */
  color: #0B1220;               /* texto escuro para contraste */
  border-top: 1px solid rgba(11,18,32,.10);
  border-bottom: 1px solid rgba(11,18,32,.10);
}

.section-alt .section-title{
  color: #0B1220;
}

.section-alt .text-soft,
.section-alt .section-subtitle,
.section-alt .kicker{
  color: rgba(11,18,32,.72) !important;
}

.section-head{ margin-bottom: 20px; }
.section-title{ font-family: "Playfair Display", serif; font-weight: 700; margin-bottom: 8px; }
.section-subtitle{ color: var(--muted);  }


.card-dark{
  background: linear-gradient(180deg, rgba(17,26,46,.9), rgba(17,26,46,.72));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.card-link{ text-decoration: none; display: block; }
.card-link:hover{ border-color: var(--gold-25); transform: translateY(-1px); transition: .15s ease; }

.card-light{
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  color: #0B1220;
}

.card-light .text-soft{
  color: rgba(11,18,32,.70) !important;
}


.text-soft{ color: var(--muted) !important; 
            text-align: justify;
    
}
.badge-soft{
  background: rgba(200,162,74,.12);
  border: 1px solid var(--gold-25);
  color: var(--text);
  padding: .45rem .6rem;
  border-radius: 999px;
  margin-right: .35rem;
}

.hero-card{ composes: card-dark; } /* (se seu editor não suportar, só ignore) */
.dot{
  display:inline-block; width:8px; height:8px; border-radius:999px;
  background: var(--gold); margin-right: 10px; box-shadow: 0 0 0 3px rgba(200,162,74,.18);
}

.cta-row .cta-box{
  border: 1px solid var(--gold-25);
  background: rgba(200,162,74,.07);
  border-radius: 18px;
  padding: 16px;
  display:flex; align-items:center; justify-content:space-between; gap: 12px;
}

.form-control-dark{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--text);
}
.form-control-dark:focus{
  border-color: var(--gold-25);
  box-shadow: 0 0 0 .25rem rgba(200,162,74,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
}

.lawyer-photo{
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center top; /* 👈 PRIORIZA O ROSTO */
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  flex: 0 0 auto;
}

/* Desktop */
@media (min-width: 992px){
  .lawyer-photo{
    width: 96px;
    height: 96px;
    border-radius: 16px;
  }
}



.footer{ border-top: 1px solid rgba(255,255,255,.06); }
.footer-link{ color: rgba(233,238,248,.8); text-decoration:none; }
.footer-link:hover{ color: var(--text); }


.section-full{
    text-align: justify;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0; /* mantém respiro */
}

.office-visual{
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  background: rgba(255,255,255,.03);
}

.office-map{
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

/* Ajuste para telas menores */
@media (max-width: 576px){
  .office-map{
    height: 360px;
  }
}
.post-content{
  max-width: 820px;
}

.post-body p{
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.post-body h2{
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.post-body ul{
  padding-left: 1.2rem;
}
.btn-outline-dark-soft{
  color: #0B1220;
  border: 1px solid rgba(11,18,32,.35);
  background: transparent;
  font-weight: 500;
}

.btn-outline-dark-soft:hover{
  background: #0B1220;
  color: #ffffff;
  border-color: #0B1220;
}
