
:root{
--bg:#f6f0e8;
--bege:#efe3d0;
--gold:#c7a24b;
--brown:#3c2d1e;
--text:#5a4a38;
--white:#ffffff;
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.7;
}

.container{
width:min(1180px,90%);
margin:auto;
}

.header{
position:fixed;
width:100%;
top:0;
background:rgba(246,240,232,0.95);
backdrop-filter:blur(10px);
z-index:1000;
border-bottom:1px solid rgba(0,0,0,0.05);
}

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

.logo{
height:58px;
border-radius:10px;
}

nav{
display:flex;
gap:35px;
}

nav a{
text-decoration:none;
color:var(--brown);
font-weight:600;
}

.btn-whats{
background:var(--brown);
color:white;
padding:12px 20px;
text-decoration:none;
border-radius:4px;
font-weight:600;
}

.hero{
padding:160px 0 90px;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:70px;
align-items:center;
}

.mini{
color:var(--gold);
font-size:12px;
letter-spacing:3px;
font-weight:700;
}

h1,h2,h3{
font-family:'Cinzel',serif;
color:var(--brown);
}

h1{
font-size:58px;
line-height:1.15;
margin:20px 0;
}

.hero p{
font-size:18px;
max-width:620px;
}

.hero-buttons{
display:flex;
gap:16px;
margin-top:35px;
flex-wrap:wrap;
}

.hero-buttons a{
padding:16px 28px;
text-decoration:none;
font-weight:600;
border-radius:4px;
}

.primary{
background:var(--brown);
color:white;
}

.secondary{
border:1px solid var(--brown);
color:var(--brown);
}

.hero-info{
display:flex;
gap:50px;
margin-top:50px;
}

.hero-info strong{
display:block;
color:var(--brown);
}

.hero-photo img{
width:100%;
border-radius:10px;
box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

.sobre{
background:var(--brown);
padding:100px 0;
}

.sobre-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.sobre h2,
.sobre p{
color:white;
}

.sobre p{
opacity:.85;
margin-top:20px;
}

.sobre-foto{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}

.sobre-img{
width:320px;
height:420px;
object-fit:cover;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.sobre-oab{
margin-top:18px;
color:white;
font-weight:600;
letter-spacing:1px;
font-size:18px;
}

.atuacao{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:42px;
margin-top:10px;
}

.cards{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.card{
background:white;
padding:45px;
border-radius:10px;
border:1px solid rgba(0,0,0,0.06);
box-shadow:0 15px 30px rgba(0,0,0,0.05);
}

.card h3{
margin-bottom:25px;
font-size:28px;
}

.card ul{
display:flex;
flex-direction:column;
gap:14px;
padding-left:18px;
}

.cta{
padding:100px 0;
background:linear-gradient(135deg,#c7a24b,#a57f2d);
text-align:center;
}

.cta h2{
font-size:42px;
margin-bottom:20px;
}

.cta p{
max-width:650px;
margin:auto;
font-size:18px;
}

.cta a{
display:inline-block;
margin-top:35px;
background:var(--brown);
color:white;
padding:18px 32px;
text-decoration:none;
font-weight:700;
border-radius:4px;
}

footer{
background:#24190f;
padding:70px 0 30px;
color:rgba(255,255,255,.8);
}

.footer-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

footer h3{
color:white;
margin-bottom:20px;
}

.copy{
margin-top:50px;
text-align:center;
opacity:.6;
font-size:14px;
}

@media(max-width:900px){

.hero-grid,
.sobre-grid,
.cards,
.footer-grid{
grid-template-columns:1fr;
}

.hero{
padding-top:140px;
}

h1{
font-size:42px;
}

nav{
display:none;
}

.hero-info{
flex-direction:column;
gap:20px;
}
}


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

.hero p{
max-width:800px;
}

.hero-buttons{
margin-bottom:40px;
}
