*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#f8f9fc;
line-height:1.6;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

/* HEADER */

header{
background:rgba(2,16,46,.95);
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 20px rgba(0,0,0,.25);
}
nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
position:relative;
}
.logo img{
height:55px;
max-width:200px;
object-fit:contain;
}

/* MENU */

.menu{
display:flex;
align-items:center;
}

.menu a{
color:#fff;
text-decoration:none;
margin-left:30px;
font-weight:600;
transition:.3s;
}

.menu a:hover{
color:#ffc107;
}

.menu a:last-child{
background:#ffc107;
color:#000;
padding:10px 18px;
border-radius:8px;
}

.menu a:last-child:hover{
background:#fff;
}

/* MOBILE MENU */

.menu-toggle{
display:none;
font-size:30px;
color:#fff;
cursor:pointer;
transition:.3s ease;
user-select:none;
}

.menu-toggle:hover{
transform:rotate(90deg);
}

/* HERO */

.hero{
background:linear-gradient(135deg,#02102e,#081126);
padding:100px 0;
color:#fff;
}

.hero-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
flex-wrap:wrap;
}

.hero-text{
flex:1;
min-width:320px;
}

.tag{
display:inline-block;
background:rgba(255,193,7,.15);
color:#ffc107;
padding:10px 20px;
border-radius:30px;
font-weight:600;
margin-bottom:20px;
}

.hero-text h1{
font-size:68px;
line-height:1.1;
font-weight:800;
margin-bottom:20px;
}

.hero-text span{
color:#ffc107;
}

.hero-text p{
font-size:20px;
margin-bottom:30px;
opacity:.95;
}

.btn{
display:inline-block;
padding:15px 32px;
border-radius:12px;
text-decoration:none;
font-weight:600;
margin-right:10px;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

.btn-demo{
background:#ffc107;
color:#000;
}

.btn-whatsapp{
background:#25D366;
color:#fff;
}

.hero-stats{
display:flex;
gap:50px;
margin-top:50px;
}

.hero-stats h3{
font-size:30px;
color:#ffc107;
}

.hero-image{
flex:1;
text-align:center;
}

.hero-image img{
width:100%;
max-width:700px;
border-radius:20px;
animation:float 4s ease-in-out infinite;
}

@keyframes float{
0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}
}

/* SECTION */

.section{
padding:90px 0;
}

.title{
text-align:center;
margin-bottom:50px;
}

.title h2{
font-size:42px;
color:#081126;
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
transition:.3s;
text-align:center;
}

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

.card h3{
margin-bottom:15px;
font-size:22px;
}

/* STATS */

.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
}

.stat-box{
background:#081126;
color:#fff;
padding:35px;
border-radius:20px;
text-align:center;
}

.stat-box h2{
color:#ffc107;
font-size:35px;
}

/* CTA */

.cta{
background:#ffc107;
padding:90px 20px;
text-align:center;
}

.cta h2{
font-size:45px;
margin-bottom:15px;
color:#081126;
}

/* FOOTER */

footer{
background:#02102e;
color:#fff;
text-align:center;
padding:50px 20px;
}

footer h2{
margin-bottom:15px;
color:#ffc107;
}

/* WHATSAPP */

.whatsapp-float{
position:fixed;
bottom:20px;
right:20px;
width:65px;
height:65px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,.3);
z-index:999;
animation:pulse 2s infinite;
}

@keyframes pulse{
0%{transform:scale(1);}
50%{transform:scale(1.1);}
100%{transform:scale(1);}
}
/* MOBILE */
@media(max-width:768px){

.logo img{
height:60px;
}

.menu-toggle{
display:block;
font-size:32px;
color:#fff;
cursor:pointer;
}

/* Premium Mobile Menu */

.menu{
position:absolute;
top:75px;
left:0;
width:100%;
background:#02102e;
border-radius:0 0 15px 15px;
box-shadow:0 10px 25px rgba(0,0,0,.25);
z-index:999;

display:flex;
flex-direction:column;
align-items:center;

overflow:hidden;
max-height:0;
opacity:0;

transition:all .4s ease;

padding:0;
}

.menu.active{
max-height:500px;
opacity:1;
padding:20px 0;
}

.menu a{
display:block;
width:100%;
text-align:center;
margin:0;
padding:14px 0;
color:#fff;
font-size:18px;
border-bottom:1px solid rgba(255,255,255,.08);
}

.menu a:last-child{
width:auto;
margin-top:15px;
padding:12px 30px;
border-radius:10px;
border:none;
background:#ffc107;
color:#000;
}

.hero{
padding:50px 0 70px;
}

.hero-content{
flex-direction:column;
text-align:center;
}

.hero-text{
min-width:auto;
}

.hero-text h1{
font-size:34px;
line-height:1.2;
}

.hero-text p{
font-size:16px;
}

.hero-stats{
display:flex;
justify-content:space-between;
align-items:center;
gap:10px;
margin-top:30px;
}

.hero-stats div{
flex:1;
}

.hero-stats h3{
font-size:22px;
}

.hero-image{
margin-top:25px;
}

.hero-image img{
max-width:100%;
}

.title h2{
font-size:30px;
}

.cta h2{
font-size:30px;
}

.whatsapp-float{
width:58px;
height:58px;
font-size:26px;
bottom:15px;
right:15px;
}

}