body{
margin:0;
font-family:'Playfair Display', serif;
background:#0b0b0b;
color:white;
padding-top:80px;
}

/* HEADER */
.header{
position:fixed;
top:0;
width:100%;
background:rgba(0,0,0,0.95);
backdrop-filter: blur(6px);
border-bottom:1px solid rgba(201,169,110,0.2);
z-index:1000;
}

.container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px 20px;
}

.logo-area{
display:flex;
align-items:center;
gap:10px;
}

.logo{
width:45px;
}

.logo-area span{
color:#c9a96e;
font-size:18px;
font-weight:bold;
}

/* MENU */
.menu{
display:flex;
gap:25px;
}

.menu a{
color:#ccc;
text-decoration:none;
font-size:14px;
letter-spacing:1px;
transition:0.3s;
}

.menu a:hover{
color:#c9a96e;
}

.menu a::after{
content:'';
display:block;
height:2px;
background:#c9a96e;
width:0%;
transition:0.3s;
}

.menu a:hover::after{
width:100%;
}

/* HERO */
.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:60px;
color:#c9a96e;
max-width:900px;
margin:auto;
line-height:1.2;
}

.hero p{
font-size:22px;
color:#ddd;
margin-top:20px;
}

/* BOTÃO */
.botao{
display:inline-block;
margin-top:30px;
padding:16px 32px;
background:#c9a96e;
color:black;
text-decoration:none;
border-radius:4px;
font-weight:bold;
transition:0.3s;
}

.botao:hover{
background:#e0bf86;
transform:scale(1.05);
}

/* SEÇÕES */
section{
padding:120px 20px;
text-align:center;
}

h2{
color:#c9a96e;
font-size:36px;
margin-bottom:30px;
}

/* INTRO */
.intro{
max-width:700px;
margin:auto;
color:#bbb;
margin-bottom:60px;
}

/* ===== EQUIPE (ADVOGADOS) ===== */
.equipe-sobre{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.advogado{
width:300px;
background:#111;
padding:20px;
border-radius:12px;
border:1px solid rgba(201,169,110,0.2);
transition:0.3s;
}

.advogado:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.advogado img{
width:100%;
height:320px;
object-fit:cover;
border-radius:10px;
margin-bottom:15px;
}

.advogado h3{
color:#c9a96e;
margin-bottom:10px;
font-size:18px;
}

.advogado p{
color:#ccc;
font-size:14px;
line-height:1.6;
}

/* ATUAÇÃO */
.atuacao{
background:#111;
}

.atuacao-grid{
display:flex;
justify-content:center;
gap:35px;
flex-wrap:wrap;
}

.atuacao-box{
width:300px;
padding:30px;
border:1px solid rgba(201,169,110,0.2);
border-radius:12px;
background:#0b0b0b;
}

.atuacao-box h3{
color:#c9a96e;
}

/* FOOTER */
footer{
background:black;
padding:60px 20px;
text-align:center;
}

.copy{
color:#777;
}

/* WHATS */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
padding:14px 20px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:bold;
}

/* RESPONSIVO */
@media(max-width:768px){

.menu{
flex-direction:column;
gap:10px;
}

.hero h1{
font-size:32px;
}

.advogado{
width:90%;
}

}
.instagram{
position:fixed;
bottom:80px; /* fica acima do WhatsApp */
right:20px;
background:#E1306C;
padding:14px 20px;
border-radius:30px;
color:white;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.instagram:hover{
background:#ff4d88;
transform:scale(1.05);
}


