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

body{
background:#060b18;
color:white;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#020617;
position:sticky;
top:0;
}

.logo{
font-size:26px;
font-weight:bold;
color:#00c3ff;
}

nav a{
color:white;
margin-left:20px;
text-decoration:none;
font-weight:bold;
}

.hero{
position:relative;
height:90vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.video-bg{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
}

.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{
font-size:60px;
margin-bottom:10px;
}

.hero p{
font-size:22px;
color:#ccc;
}

.btn{
display:inline-block;
margin-top:20px;
padding:15px 35px;
background:#00c3ff;
color:white;
border-radius:8px;
text-decoration:none;
font-weight:bold;
}

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

.grid{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
margin-top:40px;
}

.card{
background:#0b1a3a;
padding:25px;
border-radius:10px;
width:220px;
}

.plan{
background:#0b1a3a;
padding:30px;
border-radius:10px;
width:240px;
}

.plan h1{
font-size:36px;
margin:10px 0;
}

.plan ul{
list-style:none;
margin:20px 0;
}

.plan li{
margin:10px 0;
}

.destaque{
border:2px solid #00c3ff;
transform:scale(1.05);
}

.carousel{
overflow:hidden;
margin-top:40px;
}

.track{
display:flex;
gap:20px;
animation:scroll 30s linear infinite;
}

.track img{
width:180px;
border-radius:10px;
}

@keyframes scroll{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-50%);
}

}

.whatsapp{
position:fixed;
bottom:30px;
right:30px;
background:#25D366;
padding:15px 25px;
border-radius:30px;
text-decoration:none;
color:white;
font-weight:bold;
}

footer{
text-align:center;
padding:30px;
background:#020617;
}