*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fffaf7;
color:#4a3b35;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
position:sticky;
top:0;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.logo{
font-size:1.5rem;
font-weight:700;
color:#d98f8f;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#555;
}

.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,.3),
rgba(0,0,0,.3)),
url('banner-bolo.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-content{
max-width:700px;
}

.hero h1{
font-size:4rem;
font-family:'Playfair Display',serif;
margin:20px 0;
}

.btn{
display:inline-block;
background:#d98f8f;
color:white;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
margin-top:20px;
}

section{
padding:90px 8%;
}

h2{
text-align:center;
margin-bottom:50px;
font-size:2.5rem;
font-family:'Playfair Display',serif;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
border-radius:20px;
overflow:hidden;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.card img{
width:100%;
height:300px;
object-fit:cover;
}

.card h3,
.card p,
.card span{
padding:10px 20px;
}

.card span{
display:block;
color:#d98f8f;
font-weight:600;
padding-bottom:20px;
}

.sobre{
display:flex;
align-items:center;
gap:50px;
}

.sobre .texto,
.sobre .imagem{
flex:1;
}

.sobre img{
width:100%;
border-radius:20px;
}

.card-depoimento{
background:white;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.contato{
background:#f8e8e8;
text-align:center;
}

footer{
background:#4a3b35;
color:white;
text-align:center;
padding:40px;
}

@media(max-width:768px){

header{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:2.5rem;
}

.sobre{
flex-direction:column;
}

}