/* RESET */
*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:'Poppins',sans-serif;
    background:#020617;
    color:white;
}

/* LOADER */
#loader{
    position:fixed;
    width:100%;
    height:100%;
    background:#020617;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.spinner{
    width:50px;
    height:50px;
    border:5px solid #00eaff;
    border-top:5px solid transparent;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{transform:rotate(360deg);}
}

/* PARTICLES */
#particles-js{
    position:fixed;
    width:100%;
    height:100%;
    z-index:-2;
}

/* GRID */
body::before{
    content:"";
    position:fixed;
    width:100%;
    height:100%;
    background-image:
    linear-gradient(rgba(0,234,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,234,255,0.05) 1px, transparent 1px);
    background-size:40px 40px;
    z-index:-1;
}

/* HEADER */
.header{
    display:flex;
    justify-content:space-between;
    padding:20px 50px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
}

.logo{color:#00eaff;font-weight:bold}

nav a{
    margin:0 15px;
    color:white;
    text-decoration:none;
}

/* HERO */
.hero{
    height:100vh;
    position:relative;
}

.bg-video{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(to right, rgba(0,0,0,0.8), rgba(2,6,23,0.9));
}

.hero-content{
    position:relative;
    top:50%;
    transform:translateY(-50%);
    text-align:center;
}

.hero-content h1{
    font-size:60px;
    background:linear-gradient(90deg,#00eaff,#0077ff);
    -webkit-background-clip:text;
    color:transparent;
}

/* BUTTON */
.btn{
    padding:12px 25px;
    background:linear-gradient(90deg,#00eaff,#0077ff);
    border-radius:30px;
    color:black;
    text-decoration:none;
}

/* STATS */
.stats{
    display:flex;
    justify-content:space-around;
    padding:50px;
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    padding:50px;
}

.card{
    background:rgba(255,255,255,0.05);
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.3s;
}

.card:hover{
    box-shadow:0 0 20px #00eaff;
}

/* PRODUCTS */
.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    padding:40px;
}

.product-card{
    position:relative;
    border-radius:15px;
    overflow:hidden;
}

.product-card img{
    width:100%;
}

.product-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    background:rgba(0,0,0,0.7);
    padding:20px;
}

/* ANIMATION */
.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:1s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* WHATSAPP */
.whatsapp{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#00eaff;
    padding:15px;
    border-radius:50%;
}