*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
background:#0f172a;
color:white;
}

/* MENU */

.menu{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#020617;
}

.menu h2{
color:#22c55e;
}

.menu ul{
display:flex;
gap:25px;
list-style:none;
}

.menu a{
text-decoration:none;
color:white;
transition:0.3s;
}

.menu a:hover{
color:#22c55e;
}

/* HERO */

.hero{
height:60vh;
background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
url('img/gettyimages.jpg');
background-size:cover;
background-position:center;
text-align: center;
padding:120px 20px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
opacity:0.8;
}

/* BOTÃO */

.botao{
display:inline-block;
margin-top:25px;
padding:14px 35px;
background:#22c55e;
color:white;
text-decoration:none;
border-radius:30px;
transition:0.3s;
}

.botao:hover{
background:#16a34a;
transform:scale(1.05);
}

/* SEÇÕES */

section{
padding:80px 20px;
text-align:center;
}

/* SERVIÇOS */

.servicos h2{
margin-bottom:40px;
font-size:32px;
}

.cards{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.card{
background:#1e293b;
padding:25px;
border-radius:12px;
width:250px;
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 10px 25px rgba(0,0,0,0.5);
}



/* SOBRE */

.sobre{
background:#020617;
}

/* CONTATO */

.contato{
background:#0f172a;
}

/* FOOTER */

footer{
text-align:center;
padding:20px;
background:#020617;
opacity:0.8;
}