*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#0A4DB3;
    --secondary:#22D3EE;
    --dark:#020617;
    --dark-card:#0F172A;
    --text:#E2E8F0;
    --white:#FFFFFF;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--dark);
    color:var(--white);
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0f172a;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
        var(--primary),
        var(--secondary)
    );
    border-radius:20px;
}

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

/* HEADER */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(2,6,23,.90);
    backdrop-filter: blur(20px);

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

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    width:180px;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:.3s;
}

nav a:hover{
    color:var(--secondary);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:140px;
}

.hero::before{
    content:'';
    position:absolute;

    width:600px;
    height:600px;

    background:#22d3ee;

    filter:blur(250px);

    opacity:.15;

    top:-200px;
    right:-150px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.badge{
    display:inline-block;

    padding:10px 18px;

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

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

    border-radius:30px;

    margin-bottom:25px;
}

.hero h1{
    font-size:4rem;
    line-height:1.1;
    margin-bottom:25px;
}

.hero p{
    color:#cbd5e1;
    font-size:1.1rem;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

/* BOTÕES */
.btn-primary,
.btn-whatsapp,
.btn-instagram{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:55px;

    padding:15px 30px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;
}

.btn-primary{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    color:white;
}

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

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

.btn-instagram{
    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
    color:white;
}

.btn-whatsapp:hover,
.btn-instagram:hover{
    transform:translateY(-4px);
}

/* CARD HERO */

.hero-image{
    position:relative;
}

.glow{
    position:absolute;
    width:400px;
    height:400px;

    background:#22d3ee;

    filter:blur(180px);

    opacity:.25;

    top:-50px;
    left:0;
}

.card-tech{
    position:relative;

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

    backdrop-filter:blur(25px);

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

    border-radius:25px;

    padding:50px;
}

.card-tech h2{
    margin-bottom:25px;
    font-size:2rem;
}

.card-tech p{
    margin-bottom:15px;
}

/* SEÇÕES */

section{
    padding:120px 0;
}

section h2{
    text-align:center;
    font-size:2.8rem;
    margin-bottom:20px;
}

section > .container > p{
    text-align:center;
    max-width:800px;
    margin:auto;
    color:#cbd5e1;
}

/* CARDS */

.cards,
.servicos-grid,
.steps{
    margin-top:60px;

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

.card,
.service-card,
.step{
    background:var(--dark-card);

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

    border-radius:20px;

    padding:30px;

    transition:.4s;
}

.card:hover,
.service-card:hover,
.step:hover{
    transform:translateY(-10px);

    border-color:#22d3ee;

    box-shadow:0 10px 30px rgba(34,211,238,.15);
}

.card h3,
.service-card h3{
    margin-bottom:15px;
}

.card p,
.service-card p{
    color:#cbd5e1;
}

/* DIFERENCIAL */

.diferencial{
    background:linear-gradient(
        135deg,
        #031B5A,
        #0A4DB3
    );
}

.lista{
    margin-top:50px;

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

.lista div{
    background:rgba(255,255,255,.08);

    padding:20px;

    border-radius:15px;

    text-align:center;
}

/* PROCESSO */

.step{
    text-align:center;
}

.step span{
    width:60px;
    height:60px;

    margin:auto auto 20px;

    border-radius:50%;

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

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

    font-size:1.3rem;
    font-weight:bold;
}

/* CTA */

.cta{
    text-align:center;

    background:linear-gradient(
        135deg,
        #031B5A,
        #22D3EE
    );

    padding:120px 20px;
}

.cta h2{
    margin-bottom:20px;
}

.cta p{
    margin-bottom:35px;
    line-height:1.8;
}

.cta .btn-primary{
    display:inline-block;
    margin-top:15px;
}

/* FOOTER */

footer{
    background:#010409;
    text-align:center;
    padding:60px 20px;
}

footer img{
    width:160px;
    margin-bottom:20px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:25px;
}

.social-links a{
    text-decoration:none;
    color:var(--secondary);
    transition:.3s;
}

.social-links a:hover{
    color:white;
}

/* BOTÃO FLUTUANTE */

.whatsapp-float{
    position:fixed;

    right:25px;
    bottom:25px;

    width:65px;
    height:65px;

    border-radius:50%;

    background:#25D366;

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

    text-decoration:none;

    font-size:28px;

    z-index:999;

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

    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* RESPONSIVO */

@media(max-width:900px){

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:2.7rem;
    }
}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:2rem;
    }

    section{
        padding:80px 0;
    }

    section h2{
        font-size:1.9rem;
    }

    .logo img{
        width:90px;
    }

    .btn-primary,
    .btn-whatsapp,
    .btn-instagram{
        width:100%;
    }

    html{
    scroll-behavior:smooth;
    }

    #servicos,
    #diferencial,
    #processo,
    #contato{
        scroll-margin-top:120px;
    }

}