*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#fafafa;
    color:#222;
}

header{
    position:fixed;
    top:0;
    width:100%;
    padding:22px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
    transition:.4s;
}

header.ativo{
    background:#fff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.logo{
    color:#fff;
    font-size:28px;
    font-weight:800;
}

header.ativo .logo{
    color:#222;
}

.logo span{
    color:#d4af37;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:600;
    transition:.3s;
}

header.ativo nav a{
    color:#222;
}

nav a:hover{
    color:#d4af37;
}

.hero{
    height:100vh;
    background:url("imagens/hero.jpg") center center/cover;
    display:flex;
    align-items:center;
    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.58);
}

.hero-content{
    position:relative;
    color:white;
    max-width:700px;
    margin-left:8%;
    animation:fade 1.2s;
}

.hero h1{
    font-size:65px;
    line-height:75px;
    margin-bottom:25px;
}

.hero p{
    font-size:21px;
    line-height:34px;
    opacity:.9;
}

.botoes{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn,.btn2{
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    transition:.4s;
    font-weight:700;
}

.btn{
    background:#d4af37;
    color:white;
}

.btn:hover{
    transform:translateY(-5px);
}

.btn2{
    border:2px solid white;
    color:white;
}

.btn2:hover{
    background:white;
    color:#111;
}

.numeros{
    padding:90px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    text-align:center;
    background:white;
}

.numeros h2{
    font-size:55px;
    color:#d4af37;
}

.sobre{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
    padding:100px 8%;
}

.sobre img{
    width:100%;
    border-radius:18px;
    transition:.5s;
}

.sobre img:hover{
    transform:scale(1.03);
}

.sobre h2,
.servicos h2,
.galeria h2,
.contato h2{
    font-size:42px;
    margin-bottom:30px;
}

.sobre p{
    line-height:33px;
    color:#666;
}

.servicos{
    padding:100px 8%;
    background:#f7f7f7;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.card{
    background:white;
    border-radius:20px;
    padding:45px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.card i{
    font-size:45px;
    color:#d4af37;
    margin-bottom:25px;
}

.galeria{
    padding:100px 8%;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));
    gap:25px;
}

.grid img{
    width:100%;
    height:320px;
    object-fit:cover;
    border-radius:18px;
    transition:.5s;
    cursor:pointer;
}

.grid img:hover{
    transform:scale(1.05);
}

.contato{
    padding:100px 8%;
    background:#111;
    color:white;
}

form{
    display:grid;
    gap:20px;
    max-width:700px;
}

input,
textarea,
select{
    padding:18px;
    border:none;
    border-radius:10px;
    font-size:16px;
}

textarea{
    height:180px;
    resize:none;
}

button{
    background:#d4af37;
    color:white;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    transition:.4s;
}

button:hover{
    transform:translateY(-4px);
}

footer{
    background:#000;
    color:white;
    text-align:center;
    padding:45px;
}

.whatsapp{
    position:fixed;
    right:30px;
    bottom:30px;
    width:70px;
    height:70px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    text-decoration:none;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
    transition:.4s;
}

.whatsapp:hover{
    transform:scale(1.12);
}

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:900px){

.hero h1{
font-size:42px;
line-height:50px;
}

nav{
display:none;
}

.sobre{
grid-template-columns:1fr;
}

.numeros{
grid-template-columns:1fr;
gap:40px;
}

}