*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:#050505;
    color:#ffffff;
    overflow-x:hidden;
}

/* FONDO */
#sinapsis-canvas{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
    background:#050505;
}

/* HEADER */
header{
    width:100%;
    padding:22px 70px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    z-index:999;
    background:rgba(0,0,0,.75);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.logo{
    font-family:'Orbitron', sans-serif;
    font-size:30px;
    letter-spacing:5px;
    font-weight:700;
    color:#ffffff;
}

nav{
    display:flex;
    gap:28px;
}

nav a{
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:#009dff;
}

/* HERO */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:140px 8%;
    gap:60px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

/* TITULOS */
.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    max-width:700px;
}

.hero p{
    font-size:17px;
    color:#cfcfcf;
    line-height:1.8;
    max-width:620px;
    margin-bottom:40px;
}

/* BOTONES */
.buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    padding:15px 34px;
    border-radius:50px;
    background:#009dff;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    box-shadow:0 0 20px rgba(0,157,255,.35);
}

.btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 28px rgba(0,157,255,.55);
}

.secondary{
    background:transparent;
    border:1px solid #009dff;
}

/* SLIDER */
.slider{
    position:relative;
    width:100%;
    max-width:600px;
    height:420px;
    border-radius:25px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 0 35px rgba(255,255,255,.08);
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1s ease;
}

.slide.active{
    opacity:1;
}

/* ANALITICA */
.dashboard{
    width:100%;
    height:100%;
    background:#0b0b0b;
    padding:35px;
}

.dashboard-top{
    display:flex;
    gap:20px;
}

.dashboard-card{
    flex:1;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:20px;
}

.dashboard-card span{
    color:#009dff;
    font-size:28px;
    font-weight:700;
}

.dashboard-card p{
    margin-top:10px;
    color:#d7d7d7;
}

.dashboard-chart{
    margin-top:50px;
}

.chart-line{
    height:12px;
    border-radius:20px;
    margin-bottom:22px;
    background:linear-gradient(90deg,#009dff,#00d4ff);
}

.line1{
    width:95%;
}

.line2{
    width:75%;
}

.line3{
    width:88%;
}

/* CYBER */
.cyber-box{
    width:100%;
    height:100%;
    background:#0b0b0b;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.cyber-box i{
    font-size:110px;
    color:#009dff;
    margin-bottom:35px;
}

.cyber-box h3{
    font-size:34px;
    margin-bottom:18px;
}

.cyber-box p{
    color:#d7d7d7;
    max-width:350px;
}

/* SECCIONES */
section{
    padding:100px 8%;
}

section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:55px;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:28px;
}

.card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:35px;
    transition:.3s;
    backdrop-filter:blur(5px);
}

.card:hover{
    transform:translateY(-8px);
    border-color:#009dff;
    box-shadow:0 0 25px rgba(0,157,255,.15);
}

.card h3{
    margin-bottom:18px;
    color:#009dff;
    font-size:22px;
}

.card p{
    line-height:1.8;
    color:#d7d7d7;
    font-size:16px;
}

/* ABOUT */
.about-box{
    max-width:950px;
    margin:auto;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:50px;
}

.about-box h3{
    margin-top:28px;
    margin-bottom:12px;
    color:#009dff;
}

.about-box p{
    line-height:1.9;
    color:#dcdcdc;
}

/* CONTACTO */
.contact{
    padding:100px 8%;
}

.contact-container{
    display:flex;
    justify-content:center;
}

.contact-card{
    background:rgba(10,10,10,.95);
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:60px;
    max-width:700px;
    width:100%;
    text-align:center;
}

.contact-card h3{
    font-size:32px;
    margin-bottom:25px;
}

.contact-description{
    line-height:1.8;
    color:#d7d7d7;
    margin-bottom:35px;
}

/* ICONOS */
.social-icons{
    display:flex;
    justify-content:center;
    gap:18px;
}

.social-btn{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#009dff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.social-btn i{
    color:#ffffff;
    font-size:24px;
}

.social-btn:hover{
    transform:translateY(-5px);
}

/* FOOTER */
footer{
    padding:28px;
    text-align:center;
    color:#8f8f8f;
    font-size:14px;
    border-top:1px solid rgba(255,255,255,.06);
}

/* RESPONSIVE */
@media(max-width:1000px){

.hero{
    flex-direction:column;
    text-align:center;
}

.hero-left{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.hero h1{
    font-size:46px;
}

header{
    padding:20px;
    flex-direction:column;
    gap:15px;
}

nav{
    flex-wrap:wrap;
    justify-content:center;
}

.slider{
    height:340px;
}

}