*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
}

body{
background:radial-gradient(circle at top, #0b2a2f, #02090b);
color:#fff;
}

/* CONTAINER */
.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* NAV */
.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 30px;
margin-top:20px;
border-radius:20px;
background:rgba(255,255,255,0.03);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,0.05);
}

/* LOGO */
.logo{
font-weight:bold;
}

/* LINKS */
.nav-links a{
color:#aaa;
text-decoration:none;
margin:0 12px;
transition:.3s;
}

.nav-links a:hover

/* BUTTON */
.btn{
padding:10px 22px;
border-radius:30px;
background:linear-gradient(135deg,#00E5C2,#00a8ff);
border:none;
color:#000;
cursor:pointer;
font-weight:bold;
box-shadow:0 0 25px rgba(0,229,194,0.3);
transition:.3s;
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 0 35px rgba(0,229,194,0.6);
}

.btn.outline{
background:transparent;
border:1px solid #00E5C2;
color:#00E5C2;
}

.btn.big{
padding:14px 30px;
font-size:16px;
}

/* HERO */
.hero{
display:flex;
align-items:center;
justify-content:space-between;
gap:60px;
padding:100px 0;
flex-wrap:wrap;
}

.hero-text{
flex:1;
min-width:280px;
}

.hero-text h1{
font-size:44px;
margin-bottom:15px;
}

.hero-text p{
color:#aaa;
margin-bottom:20px;
}

/* HERO ACTIONS */
.hero-actions{
display:flex;
gap:10px;
}

/* INFO STRIP */
.info-strip{
display:flex;
gap:15px;
margin-top:20px;
font-size:14px;
color:#aaa;
}

/* VIDEO */
.hero-video{
flex:1;
min-width:280px;
background:rgba(255,255,255,0.05);
padding:12px;
border-radius:20px;
box-shadow:0 0 50px rgba(0,229,194,0.1);
}

.hero-video video{
width:100%;
border-radius:15px;
}

/* SECTION */
.section{
padding:80px 0;
margin-top:40px;
}

.section-title{
font-size:28px;
margin-bottom:25px;
}

/* GRID */
.grid-3{
display:flex;
gap:20px;
flex-wrap:wrap;
}

/* CARD */
.card{
flex:1;
min-width:220px;
padding:25px;
border-radius:18px;
background:linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
border:1px solid rgba(255,255,255,0.08);
transition:.3s;
}

.card:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 0 40px rgba(0,229,194,0.15);
}

.card h3{
margin-bottom:10px;
}

.card p{
color:#aaa;
font-size:14px;
}

/* VIDEO */
.video-wrapper{
background:rgba(255,255,255,0.05);
padding:12px;
border-radius:20px;
}

.video-wrapper video{
width:100%;
border-radius:15px;
}

/* TRUST */
.trust-logos{
display:flex;
justify-content:center;
gap:30px;
margin-top:20px;
color:#888;
}

/* CENTER */
.center{
text-align:center;
}

/* WHATSAPP */
.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
color:white;
text-decoration:none;
box-shadow:0 0 20px rgba(0,0,0,0.4);
}

/* RESPONSIVE */
@media(max-width:768px){
.hero{
flex-direction:column;
text-align:center;
}

.hero-text h1{
font-size:28px;
}

.hero-actions{
justify-content:center;
}

.info-strip{
justify-content:center;
flex-wrap:wrap;
}
}
