:root{
--verde:#4e8c7d;
--verde-claro:#eef6f3;
--escuro:#2d3a36;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#fafafa;
color:#444;
}

header{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:white;
box-shadow:0 2px 15px rgba(0,0,0,.05);
z-index:1000;
}

.logo{
font-size:1.3rem;
font-weight:700;
color:var(--verde);
}

nav{
display:flex;
gap:25px;
}

nav a{
text-decoration:none;
color:#444;
}

.hero{
height:100vh;
background:
linear-gradient(rgba(0,0,0,.35),
rgba(0,0,0,.35)),
url("banner-fisioterapia.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
}

.hero-content{
max-width:800px;
}

.hero h1{
font-size:4rem;
margin:20px 0;
}

.btn{
display:inline-block;
background:var(--verde);
color:white;
padding:15px 35px;
border-radius:40px;
text-decoration:none;
margin-top:20px;
}

section{
padding:100px 8%;
}

h2{
text-align:center;
margin-bottom:50px;
color:var(--verde);
}

.sobre{
display:flex;
align-items:center;
gap:50px;
}

.sobre-img,
.sobre-texto{
flex:1;
}

.sobre img{
width:100%;
border-radius:20px;
}

.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:var(--verde-claro);
}

.beneficios-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.beneficio{
background:white;
padding:25px;
border-radius:15px;
text-align:center;
}

.etapas{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.etapa{
text-align:center;
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.etapa span{
width:60px;
height:60px;
background:var(--verde);
color:white;
display:flex;
justify-content:center;
align-items:center;
margin:auto;
border-radius:50%;
font-size:1.5rem;
font-weight:700;
margin-bottom:15px;
}

.contato{
background:var(--verde);
color:white;
text-align:center;
}

.contato h2{
color:white;
}

footer{
background:var(--escuro);
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;
}

}