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

body{
    font-family:'Inter',sans-serif;
    background: #ffffff;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
    background:rgba(15,23,42,.92);
    backdrop-filter:blur(8px);
    padding:18px 0;
    transition:.3s;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo h2{
    color:white;
    font-size:30px;
    margin-bottom:3px;
}

.logo span{
    color:#C9A14A;
    letter-spacing: 2px;
    text-transform:uppercase;
}

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

nav a{
    text-decoration:none;
    color:white;
    font-weight:bold;
}

nav a:hover{
    color:#C9A14A;
}

.btn-whatsapp{
    background:#25D366;
    color:white;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

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

.hero{
    min-height: 100vh;
    display:flex;
    align-items:center;
    background: linear-gradient(135deg,#ffffff,#f8f8f8);
    padding-top:100px;
}

.hero .container{
    display:flex;
    justify-content:space-between;
    align-items: center;
    gap:60px;
}

.hero-texto{
    flex:1;
}

.hero-imagem{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero h1{
    font-size:64px;
    line-height:72px;
    margin-bottom:25px;
    color:#0F172A;
    font-weight:700;
}

.hero p{
    font-size:20px;
    line-height:34px;
    color:#555;
    margin-bottom:40px;
}

.btn-principal{
   display:inline-block;

    background:#C9A14A;

    color:#fff;

    text-decoration:none;

    padding:18px 40px;

    border-radius:12px;

    font-weight:700;

    transition:.3s;
}

.btn-principal:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 25px rgba(0,0,0,.2);

}

.hero-imagem img{
    width:100%;
    max-width:430px;
    height:auto;
    border-radius:20px;
    box-shadow:0 30px 70px rgba(0,0,0,.25);
}

/* ============================
   ÁREAS DE ATUAÇÃO
============================ */

.areas{

    padding:100px 0;

    background:#f8f8f8;

}

.areas h2{

    text-align:center;

    font-size:42px;

    color:#0F172A;

    margin-bottom:15px;

}

.subtitulo{

    text-align:center;

    color:#777;

    margin-bottom:60px;

    font-size:18px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.card{

    background:white;

    padding:35px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

}

.card span{

    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#C9A14A;
    color:white;
    border-radius:50%;
    font-size:28px;
    margin-bottom:25px;

}

.card h3{

    margin:20px 0;

    color:#0F172A;

}

.card p{

    color:#666;

    line-height:28px;

}


/* ============================
   SOBRE
============================ */

.sobre{

    padding:120px 0;

    background:white;

}

.sobre .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.sobre-imagem img{

    width:100%;

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.titulo-pequeno{

    color:#C9A14A;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.sobre h2{

    font-size:48px;

    margin:15px 0;

    color:#0F172A;

}

.sobre h3{

    margin-bottom:25px;

    color:#666;

    font-weight:500;

}

.sobre p{

    margin-bottom:25px;

    color:#555;

    line-height:32px;

    font-size:18px;

}


