
:root{
--neon-blue:#00e5ff;
--neon-purple:#8a2be2;
--neon-pink:#ff00ff;
--dark:#050816;
--dark-card:#0d1326;
--text:#ffffff;
}

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

html{scroll-behavior:smooth;}

body{
background:
radial-gradient(circle at top left,#112244 0%,transparent 35%),
radial-gradient(circle at bottom right,#32004d 0%,transparent 35%),
#050816;
color:var(--text);
overflow-x:hidden;
}

#particles-js{
position:fixed;
inset:0;
z-index:-10;
}

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
padding:15px 5%;
display:flex;
justify-content:space-between;
align-items:center;
backdrop-filter:blur(12px);
background:rgba(5,8,22,.7);
border-bottom:1px solid rgba(0,229,255,.2);
z-index:999;
}

.logo-nav{
font-family:'Orbitron',sans-serif;
font-weight:700;
color:var(--neon-blue);
}

.navbar ul{
display:flex;
gap:25px;
list-style:none;
}

.navbar a{
color:white;
text-decoration:none;
}

header{
min-height:100svh;
display:flex;
justify-content:center;
align-items:center;
position:relative;
overflow:hidden;
padding:100px 20px 40px;
}

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

.overlay{
position:absolute;
inset:0;
background:rgba(5,8,22,.75);
z-index:-1;
}

.hero-content{
text-align:center;
max-width:1200px;
}

.video-logo video{
width:100%;
max-width:320px;
aspect-ratio:1/1;
object-fit:cover;
border-radius:25px;
border:3px solid var(--neon-blue);
box-shadow:0 0 15px var(--neon-blue),0 0 35px var(--neon-blue);
}

.glow-title{
font-family:'Orbitron',sans-serif;
font-size:clamp(2.2rem,5vw,5rem);
margin-top:20px;
text-shadow:0 0 10px var(--neon-blue),0 0 30px var(--neon-blue);
}

#typing-text{
margin-top:15px;
font-size:1.2rem;
color:#d6f8ff;
min-height:40px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:15px;
margin-top:25px;
flex-wrap:wrap;
}

.btn-neon,.btn-outline,.cta a{
padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:bold;
transition:.4s;
}

.btn-neon,.cta a{
background:linear-gradient(90deg,#00e5ff,#8a2be2);
color:white;
box-shadow:0 0 15px #00e5ff;
}

.btn-outline{
border:2px solid var(--neon-blue);
color:white;
}

section{padding:90px 8%;}

h2{
text-align:center;
font-size:clamp(2rem,4vw,3rem);
margin-bottom:40px;
color:var(--neon-blue);
}

.historia-container{
max-width:1100px;
margin:auto;
background:rgba(13,19,38,.85);
backdrop-filter:blur(15px);
padding:50px;
border-radius:25px;
border:1px solid rgba(0,229,255,.3);
}

.badge-historia{
display:inline-block;
padding:10px 20px;
border-radius:30px;
background:linear-gradient(90deg,#00e5ff,#8a2be2);
margin-bottom:20px;
}

.frase-destacada{
text-align:center;
font-size:1.5rem;
margin-bottom:25px;
}

.historia p{line-height:1.9;margin-bottom:15px;}

.destacado{
padding:25px;
margin:25px 0;
border-radius:20px;
background:linear-gradient(135deg,#00e5ff,#8a2be2);
}

.mensaje-final{text-align:center;color:var(--neon-blue);}

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

.card{
background:var(--dark-card);
padding:30px;
border-radius:20px;
text-align:center;
transition:.4s;
border:1px solid rgba(0,229,255,.3);
}

.card h3{color:var(--neon-blue);margin:15px 0;}

.video-producto{text-align:center;}

.video-producto video{
width:100%;
max-width:1000px;
border-radius:20px;
border:2px solid var(--neon-blue);
}

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

.stat{
background:var(--dark-card);
padding:25px;
border-radius:20px;
}

.cta{
text-align:center;
background:linear-gradient(135deg,#091426,#130f40);
}

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

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
text-decoration:none;
font-size:28px;
background:#25D366;
z-index:999;
}

.visible{animation:fadeUp 1s ease forwards;}

@keyframes fadeUp{
from{opacity:0;transform:translateY(60px);}
to{opacity:1;transform:translateY(0);}
}

.neon-pulse{
text-shadow:0 0 10px #00e5ff,0 0 30px #00e5ff,0 0 80px #00e5ff;
}

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:10px;
}

.navbar ul{
gap:12px;
flex-wrap:wrap;
justify-content:center;
}

.video-logo video{
max-width:220px;
}

.glow-title{
font-size:2rem;
}

.hero-buttons{
flex-direction:column;
align-items:center;
}

.btn-neon,.btn-outline,.cta a{
width:280px;
text-align:center;
}

.historia-container{
padding:25px;
}

section{
padding:70px 20px;
}
}
