*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fafdf9;
color:#444;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
position:fixed;
width:100%;
top:0;
box-shadow:0 2px 15px rgba(0,0,0,.05);
z-index:1000;
}

.logo{
font-size:1.3rem;
font-weight:700;
color:#5c8d62;
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#444;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.3),
rgba(0,0,0,.3)),
url("banner-nutricao.jpg");
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:20px 0;
}

.btn{
background:#5c8d62;
color:white;
padding:15px 35px;
border-radius:50px;
text-decoration:none;
display:inline-block;
margin-top:20px;
}

section{
padding:100px 8%;
}

h2{
text-align:center;
margin-bottom:40px;
color:#5c8d62;
}

.sobre{
display:flex;
align-items:center;
gap:50px;
}

.sobre img{
width:100%;
border-radius:20px;
}

.sobre-img,
.sobre-texto{
flex:1;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.beneficios{
background:#eef7ef;
}

.beneficios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.beneficio{
background:white;
padding:25px;
border-radius:15px;
text-align:center;
}

.contato{
background:#5c8d62;
color:white;
text-align:center;
}

.contato h2{
color:white;
}

footer{
background:#2e4731;
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;
}

}