*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{

background-image:url("background.png");
background-size:cover;
background-position:center;
background-attachment:fixed;

color:white;

}

/* MENU */

header{

display:flex;
justify-content:space-between;
align-items:center;
padding:20px 80px;

}

.logo img{

height:300px;

}

nav a{

margin:0 20px;
text-decoration:none;
color:blue;
font-weight:bold;

}

.btn{

background:linear-gradient(45deg,#00c853,#009688);
border:none;
width: 150px;
height: 50px;
padding:12px 30px;
border-radius:30px;
color:white;
font-size:20px;
cursor:pointer;

}

/* HERO */

.hero{

height:250px;
display:flex;
align-items:center;
padding-left:200px;
color:black;

}

.hero h1{

font-size:48px;
margin-bottom:20px;
color:black;

}

.hero p{

font-size:20px;
margin-bottom:20px;

}

.btn-planos{
background:linear-gradient(45deg,#007bff, #00ff88);
border:none;
width: 180px;
height: 50px;
padding:12px 30px;
border-radius:30px;
color:white;
font-size:18px;
cursor:pointer;
}

/* PLANOS */

.planos{

text-align:center;
padding:80px 20px;

}

.planos h2{

font-size:36px;
margin-bottom:40px;
color:black;
}

.cards{

display:flex;
justify-content:center;
gap:40px;

}

.card{

background:white;
color:#333;
width:260px;
padding:30px;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.3);

}

.card h3{

color:#009688;
font-size:28px;
margin-bottom:15px;

}

.preco{

font-size:24px;
margin-bottom:15px;

}

.card ul{

list-style:none;
margin-bottom:20px;

}

.card ul li{

margin:8px 0;


}

.card button{

background:linear-gradient(45deg,#007bff, #00ff88);
border:none;
padding:12px 25px;
border-radius:30px;
color:white;
cursor:pointer;

}

.destaque{

transform:scale(1.05);


}

/* FOOTER */

footer{

margin-top:100px;
background:rgba(0,0,0,0.5);
text-align:center;
padding:20px;

}