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

body{
  background:#0d1015;
  color:#ececec;
  font-family:'Inter',sans-serif;
  line-height:1.7;
}

.container{
  width:min(1120px,92%);
  margin:auto;
}

header{
  position:fixed;
  width:100%;
  top:0;
  backdrop-filter:blur(10px);
  background:rgba(13,16,21,0.86);
  border-bottom:1px solid rgba(255,255,255,0.05);
  z-index:999;
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1.2rem 0;
}

.logo{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  letter-spacing:6px;
  color:#d0b06f;
}

nav{
  display:flex;
  gap:1.5rem;
}

nav a{
  color:#d8d8d8;
  text-decoration:none;
  transition:.3s;
}

nav a:hover{
  color:#d0b06f;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  background:linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.75)),
  url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1200&auto=format&fit=crop') center/cover;
}

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

.tag{
  text-transform:uppercase;
  letter-spacing:3px;
  color:#d0b06f;
  font-size:.8rem;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(3rem,7vw,6rem);
  line-height:1;
  margin:1rem 0;
}
.hero{
  position:relative;
  overflow:hidden;
}

.hero p{
  color:#cfcfcf;
  font-size:1.2rem;
  margin-bottom:2rem;
}
.hero-signature{
  display:flex;
  align-items:center;
  gap:1.5rem;
  margin:2rem 0;
  flex-wrap:wrap;
}

.advocacia{
  font-size:3rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#f1f1f1;
}

.divider{
  width:1px;
  height:60px;
  background:rgba(255,255,255,.35);
}

.nome-oab{
  display:flex;
  flex-direction:column;
}

.nome-oab strong{
  font-size:1.1rem;
  color:#fff;
  font-weight:500;
}

.nome-oab span{
  color:#b7b7b7;
  font-size:.9rem;
  letter-spacing:2px;
}

.btn{
  display:inline-block;
  background:#d0b06f;
  color:#111;
  text-decoration:none;
  padding:1rem 1.5rem;
  border-radius:10px;
  font-weight:600;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-2px);
}

.section{
  padding:7rem 0;
}

.narrow{
  max-width:800px;
}

h2{
  font-family:'Cormorant Garamond',serif;
  font-size:3rem;
  margin-bottom:2rem;
  color:#d0b06f;
}

.narrow p{
  margin-bottom:1.5rem;
  color:#d6d6d6;
}

.cards{
  background:#11151b;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:1.5rem;
}

.card{
  background:#171c24;
  padding:2rem;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.05);
}

.card h3{
  margin-bottom:1rem;
  color:#fff;
}

.card p{
  color:#c9c9c9;
}

.quote{
  padding:7rem 0;
  text-align:center;
}

.latin{
  font-family:'Cormorant Garamond',serif;
  font-size:2rem;
  color:#f1f1f1;
  margin-bottom:1rem;
}

.translation{
  color:#a9a9a9;
}

.contact-box{
  background:#171c24;
  padding:2rem;
  border-radius:18px;
}

.contact-box p{
  margin-bottom:1.5rem;
}

.contact-note{
  font-size:0.5rem;
  color:#9a9a9a;
  line-height:1.6;
  margin-bottom:1.5rem;
  letter-spacing:.5px;
}
.email-link{
  color:#d0b06f;
  text-decoration:none;
  transition:.3s;
}

.email-link:hover{
  opacity:.8;
}

footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding:2rem 0;
}

.footer{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:1rem;
  color:#999;
}
.sobre-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  align-items:center;
  gap:4rem;
}
.sobre-foto{
  position:relative;
  order:2;
}

.sobre-foto img{
  width:120%;
  max-width:none;
  display:block;
}
.sobre-foto::after{
  content:'';
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to left,
      rgba(13,16,21,0) 45%,
      rgba(13,16,21,1) 100%
    );

  pointer-events:none;
}

.sobre-texto h2{
  margin-bottom:2rem;
}

.sobre-texto p{
  margin-bottom:1.4rem;
  color:#d2d2d2;
}

@media(max-width:900px){

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

}
@media(max-width:768px){

  .nav{
    flex-direction:column;
    gap:1rem;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    padding:8rem 0 4rem;
  }


}
