/*====================================================
 NOVASOFT TECHNOLOGIES
 Author: ChatGPT
 Version: 1.0
====================================================*/

/*==============================
 GOOGLE FONT
==============================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==============================
 VARIABLES
==============================*/

:root{

    --primary:#2563EB;
    --secondary:#38BDF8;
    --dark:#081120;
    --dark2:#0F172A;
    --dark3:#111827;
    --white:#ffffff;
    --gray:#94A3B8;
    --border:rgba(255,255,255,.08);

    --radius:18px;

    --shadow:

        0 20px 45px rgba(0,0,0,.35);

    --transition:.35s ease;

}

/*==============================
 RESET
==============================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:white;

    overflow-x:hidden;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

    display:block;

}

section{

    padding:110px 0;

}

.container{

    position:relative;

    z-index:2;

}

/*==============================
 SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#081120;

}

::-webkit-scrollbar-thumb{

    background:linear-gradient(

        var(--primary),

        var(--secondary)

    );

    border-radius:20px;

}

/*==============================
 BODY BACKGROUND
==============================*/

body::before{

    content:"";

    position:fixed;

    width:600px;

    height:600px;

    border-radius:50%;

    background:#2563eb20;

    filter:blur(130px);

    top:-200px;

    left:-200px;

    z-index:-2;

}

body::after{

    content:"";

    position:fixed;

    width:700px;

    height:700px;

    border-radius:50%;

    background:#06b6d420;

    bottom:-300px;

    right:-250px;

    filter:blur(180px);

    z-index:-2;

}

/*==============================
 PRELOADER
==============================*/

#preloader{

    position:fixed;

    inset:0;

    background:#081120;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.loader{

    display:flex;

    gap:10px;

}

.loader span{

    width:18px;

    height:18px;

    border-radius:50%;

    background:var(--primary);

    animation:loader .7s infinite alternate;

}

.loader span:nth-child(2){

    animation-delay:.2s;

}

.loader span:nth-child(3){

    animation-delay:.4s;

}

@keyframes loader{

    to{

        transform:translateY(-15px);

        opacity:.3;

    }

}

/*==============================
 NAVBAR
==============================*/

.navbar{

    padding:18px 0;

    transition:.4s;

    background:transparent;

}

.navbar.scrolled{

    background:rgba(8,17,32,.92);

    backdrop-filter:blur(20px);

    box-shadow:0 15px 40px rgba(0,0,0,.3);

}

.navbar-brand{

    color:#fff;

    font-size:30px;

    font-weight:700;

}

.navbar-brand i{

    color:var(--secondary);

    margin-right:8px;

}

.nav-link{

    color:#fff;

    margin-left:20px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    width:0;

    height:2px;

    left:0;

    bottom:-5px;

    background:var(--secondary);

    transition:.35s;

}

.nav-link:hover::after{

    width:100%;

}

.nav-link:hover{

    color:var(--secondary);

}

/*==============================
 BOTONES
==============================*/

.btn-primary{

    background:linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    border:none;

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

    box-shadow:0 12px 30px rgba(37,99,235,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(37,99,235,.55);

}

.btn-outline-light{

    border-radius:50px;

    padding:14px 34px;

}

/*====================================================
 HERO
====================================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,#2563eb22,transparent 35%),
        radial-gradient(circle at bottom right,#06b6d422,transparent 35%),
        linear-gradient(135deg,#081120,#0F172A);

}

.hero::before{

    content:"";

    position:absolute;

    width:550px;

    height:550px;

    background:#2563eb25;

    border-radius:50%;

    top:-180px;

    right:-180px;

    filter:blur(120px);

}

.hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:#38bdf820;

    border-radius:50%;

    bottom:-120px;

    left:-120px;

    filter:blur(120px);

}

.hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:30px;

}

.hero h1 span{

    color:var(--secondary);

}

.hero p{

    color:#CBD5E1;

    font-size:20px;

    line-height:34px;

    margin-bottom:40px;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-image{

    position:relative;

    animation:float 5s ease-in-out infinite;

}

.hero-image img{

    border-radius:24px;

    box-shadow:0 40px 70px rgba(0,0,0,.45);

}

/*====================================================
 HERO STATS
====================================================*/

.hero-stats{

    display:flex;

    gap:40px;

    margin-top:60px;

    flex-wrap:wrap;

}

.hero-stats div{

    position:relative;

}

.hero-stats h3{

    font-size:42px;

    font-weight:700;

    color:var(--secondary);

}

.hero-stats p{

    margin:0;

    color:#94A3B8;

    font-size:15px;

}

/*====================================================
 CLIENTES
====================================================*/

.clients{

    background:#0D1526;

    padding:70px 0;

}

.client-logo{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(255,255,255,.08);

    border-radius:16px;

    background:rgba(255,255,255,.03);

    font-size:22px;

    font-weight:700;

    color:#94A3B8;

    transition:.35s;

}

.client-logo:hover{

    transform:translateY(-8px);

    color:#fff;

    border-color:var(--secondary);

    box-shadow:0 20px 35px rgba(37,99,235,.25);

}

/*====================================================
 TITULOS
====================================================*/

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-title h2{

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

}

.section-title p{

    color:#94A3B8;

    max-width:760px;

    margin:auto;

}

/*====================================================
 SERVICES
====================================================*/

.services{

    background:#081120;

}

.service-card{

    position:relative;

    padding:40px;

    border-radius:22px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.35s;

    overflow:hidden;

    height:100%;

}

.service-card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:#2563eb18;

    border-radius:50%;

    right:-80px;

    top:-80px;

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:var(--secondary);

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.service-card:hover::before{

    transform:scale(1.4);

}

.service-card .icon{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    margin-bottom:30px;

    font-size:34px;

    color:#fff;

    box-shadow:0 20px 35px rgba(37,99,235,.35);

}

.service-card h4{

    font-size:28px;

    margin-bottom:18px;

    font-weight:700;

}

.service-card p{

    color:#94A3B8;

    line-height:30px;

}

.service-link{

    margin-top:25px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--secondary);

    font-weight:600;

}

.service-link:hover{

    color:#fff;

}

/*====================================================
 FLOAT ANIMATION
====================================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/*=========================================================
 TECNOLOGIAS
=========================================================*/

.technologies{

    position:relative;

    background:#0d1526;

}

.tech-card{

    position:relative;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    text-align:center;

    padding:35px 20px;

    transition:.35s;

    overflow:hidden;

}

.tech-card:hover{

    transform:translateY(-12px);

    border-color:#38BDF8;

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.tech-card i{

    font-size:55px;

    background:linear-gradient(135deg,#38BDF8,#2563EB);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    margin-bottom:20px;

    display:block;

}

.tech-card h5{

    font-weight:600;

}

/*=========================================================
 ESTADISTICAS
=========================================================*/

.statistics{

    background:linear-gradient(135deg,#2563EB,#0EA5E9);

    position:relative;

    overflow:hidden;

}

.statistics::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-250px;

    top:-250px;

}

.counter-box{

    text-align:center;

    color:#fff;

}

.counter-box h2{

    font-size:70px;

    font-weight:800;

}

.counter-box p{

    font-size:18px;

    opacity:.85;

}

/*=========================================================
 WHY US
=========================================================*/

.why-us{

    background:#081120;

}

.subtitle{

    color:#38BDF8;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.why-us h2{

    font-size:48px;

    font-weight:800;

    margin:20px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    margin:18px 0;

}

.feature i{

    color:#22C55E;

    font-size:22px;

}

/*=========================================================
 PROCESO
=========================================================*/

.process{

    background:#0f172a;

}

.process-card{

    position:relative;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.35);

}

.number{

    width:80px;

    height:80px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#38BDF8);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:700;

    margin:auto;

    margin-bottom:25px;

}

/*=========================================================
 PORTAFOLIO
=========================================================*/

.portfolio{

    background:#081120;

}

.portfolio-card{

    background:#111827;

    border-radius:24px;

    overflow:hidden;

    transition:.35s;

    border:1px solid rgba(255,255,255,.08);

}

.portfolio-card:hover{

    transform:translateY(-15px);

    box-shadow:0 30px 70px rgba(0,0,0,.45);

}

.portfolio-card img{

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-info{

    padding:30px;

}

.portfolio-info span{

    color:#38BDF8;

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

}

.portfolio-info h4{

    margin:15px 0;

    font-weight:700;

}

/*=========================================================
 TESTIMONIOS
=========================================================*/

.testimonials{

    background:#0f172a;

}

.testimonial-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

    transition:.35s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-12px);

}

.stars{

    color:#FFC107;

    font-size:20px;

    margin-bottom:20px;

}

.client{

    display:flex;

    align-items:center;

    gap:15px;

    margin-top:25px;

}

.client img{

    width:65px;

    height:65px;

    object-fit:cover;

    border-radius:50%;

}

/*=========================================================
 SUCCESS
=========================================================*/

.success{

    position:relative;

    overflow:hidden;

}

.success h3{

    font-size:45px;

    font-weight:800;

    color:#38BDF8;

}

/*=========================
 BOTÓN WHATSAPP
=========================*/

.whatsapp-float{
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:9999;

    transition:.35s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    background:#1ebe5d;
    color:#fff;
    transform:scale(1.12);
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        transform:scale(1.08);
        box-shadow:0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media(max-width:768px){

    .whatsapp-float{
        width:60px;
        height:60px;
        right:18px;
        bottom:18px;
        font-size:30px;
    }

}

.back-top{
    bottom:100px;
}