:root{
    --gold:#b08b57;
    --dark:#044239;
    --light:#f7f5f2;
    --text:#d7d2ca;
}

*{margin:0; padding:0; box-sizing:border-box;}

body{
    font-family:'Inter', sans-serif;
    background:#111;
    color:white;
    overflow-x:hidden;
}

/* NAVBAR */

header{
    background:var(--dark);
    display: flex;
    padding: 1rem 10rem;
    justify-content: space-between;
    align-items: center;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    backdrop-filter:blur(8px);
    border-bottom:3px solid rgba(170,107,63,.2);
}

.nav{
    padding:10px 6%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    color:var(--gold);
    letter-spacing:2px;
}

.logo img{
    width: 300px;
    display: flexbox;}

nav{
    display:flex;
    gap:40px;
}

nav a{
    color:#ddd;
    text-decoration:none;
    font-size:14px;
    text-transform:uppercase;
    letter-spacing:1px;
    transition:.3s;
}

nav a:hover{color:var(--gold);}

/* HERO */

.hero{
    min-height:100vh;

    background:
    linear-gradient(to right, rgba(4,66,57,.92), rgba(89,135,96,.55)),
    url('/Logotipos/Negativos Especiais/Para fundo verde/Logo_MBN-Adv_FundoVerde_Símbolo.png');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
}

.hero-content{
    max-width:1400px;
    margin:auto;
    width:100%;
    padding:0 6%;
}

.hero small{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:13px;
}

.hero h1{
    font-family:'Cormorant Garamond', serif;
    font-size:82px;
    line-height:1;
    max-width:750px;
    margin:25px 0;
    font-weight:500;
}

.hero p{
    max-width:580px;
    color:#c7c7c7;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    border:1px solid var(--gold);
    color:white;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    transition:.4s;
}

.btn:hover{
    background:var(--gold);
    color:#111;
}

/* SECTION BASE */

.section{
    padding:120px 6%;
}

.container{
    max-width:1400px;
    margin:auto;
}

.section-top{
    margin-bottom:10px;
}

.section-top small{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:3px;
}

.section-top h2{
    font-family:'Cormorant Garamond', serif;
    font-size:58px;
    margin-top:10px;
    font-weight:500;
}

/* SOBRE */

.about-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap: 70px;
    align-items:center;
}

.about-image{
    position:relative;
}

.about-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    filter:brightness(.8);
}

.gold-border{
    position:absolute;
    width:100%;
    height:100%;
    border:1px solid var(--gold);
    top:30px;
    left:30px;
    z-index:-1;
}

.about-text p{
    color:#bfbfbf;
    line-height:2;
    margin-bottom:25px;
    font-size:16px;
    text-align: justify;
    text-indent: 1.5em;
}

/* AREAS */

.areas{
    background:var(--light);
    color:#111;
}

.area-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.area-card{
    padding:50px;
    background:white;
    border-left:3px solid var(--gold);
    transition:.4s;
}

.area-card:hover{
    transform:translateY(-8px);
}

.area-card h3{
    font-family:'Cormorant Garamond', serif;
    font-size:34px;
    margin-bottom:20px;
    font-weight:600;
}

.area-card p{
    color:#666;
    line-height:1.8;
}

/* DIFERENCIAL */

.banner{
    padding:140px 6%;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.8), rgba(0,0,0,.8)),
    url('https://images.unsplash.com/photo-1521791136064-7986c2920216?q=80&w=1800');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.banner h2{
    font-family:'Cormorant Garamond', serif;
    font-size:68px;
    max-width:900px;
    margin:auto;
    font-weight:500;
    line-height:1.2;
}

/* FOOTER */

footer{
    background:var(--dark);
    border-top:1px solid rgba(176,139,87,.15);
    padding:80px 6% 40px;
}

.footer-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:40px;
}

.footer-title{
    color:var(--gold);
    margin-bottom:20px;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

.footer-col p{
    color:#999;
    line-height:2;
}

.copy{
    text-align:center;
    margin-top:60px;
    color:#666;
    font-size:14px;
}

/* RESPONSIVO */

@media(max-width:980px){

    .hero h1{
        font-size:52px;
    }

    .about-grid,
    .area-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    nav{
        display:flex;
    }

    .section-top h2{
        font-size:42px;
    }

    .banner h2{
        font-size:42px;
    }

    .about-image img{
        height:450px;
    }

}

/* sócios */
.lawyer-grid{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.lawyer-card{
    display:flex;
    align-items:center;
    gap:35px;

    background:#fff;
    padding:30px;

    border-left:3px solid var(--gold);

    transition:.3s;
}

.lawyer-card:hover{
    transform:translateY(-5px);
}

.lawyer-card img{
    width:180px;
    height:220px;

    object-fit:cover;

    border:1px solid rgba(176,139,87,.3);
}

.lawyer-info h3{
    font-family:'Cormorant Garamond', serif;
    font-size:36px;
    margin-bottom:8px;
}

.lawyer-info span{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;

    display:block;
    margin-bottom:20px;
}

.lawyer-info p{
    color:#666;
    line-height:1.8;
}

@media(max-width:768px){

    .lawyer-card{
        flex-direction:column;
        text-align:center;
    }

    .lawyer-card img{
        width:220px;
        height:270px;
    }

}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 60%;
    height: 60%;
}

/* Responsividade para celular */
@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
}