*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#333;
}

header{
    background:white;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

nav{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

.hero{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.4),
    rgba(0,0,0,.4)),
    url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
}

.hero-content{
    max-width:700px;
}

.hero h1{
    font-size:4rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    margin-bottom:30px;
}

.btn{
    background:#d4a373;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:50px;
    transition:.3s;
}

.btn:hover{
    background:#bc8a5f;
}

section{
    padding:100px 8%;
}

.container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:50px;
}

.container img{
    width:400px;
    border-radius:20px;
}

.sobre h2,
.servicos h2,
.portfolio h2,
.depoimentos h2,
.contato h2{
    text-align:center;
    margin-bottom:50px;
    font-size:2.5rem;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.galeria{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.galeria img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:15px;
}

.contato{
    text-align:center;
    background:#faf6f2;
}

footer{
    background:#222;
    color:white;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero h1{
        font-size:2.5rem;
    }

    .container{
        flex-direction:column;
    }

    .container img{
        width:100%;
    }
}