/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#07090d;

    color:#fff;

    overflow-x:hidden;

}

/* ==========================
   BACKGROUND
========================== */

.background{

    position:fixed;

    inset:0;

    z-index:-2;

    background:
    radial-gradient(circle at top right,#00d26a22,transparent 30%),
    radial-gradient(circle at bottom left,#3b82f622,transparent 35%),
    linear-gradient(#07090d,#111827);

}

.background::before{

    content:"";

    position:absolute;

    inset:0;

    background-image:

    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),

    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

    background-size:45px 45px;

    mask-image:linear-gradient(to bottom,black,transparent);

}

/* ==========================
   HEADER
========================== */

header{

    width:100%;

    position:fixed;

    top:0;

    left:0;

    z-index:999;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 8%;

    backdrop-filter:blur(16px);

    background:rgba(10,10,10,.45);

    border-bottom:1px solid rgba(255,255,255,.06);

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:55px;

}

.logo span{

    font-size:22px;

    font-weight:700;

}

nav{

    display:flex;

    gap:35px;

    align-items:center;

}

nav a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

nav a:hover{

    color:#00d26a;

}

.login{

    padding:12px 22px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:40px;

}

.teste{

    padding:12px 28px;

    border-radius:40px;

    background:#00d26a;

    color:#fff!important;

    font-weight:700;

    box-shadow:0 0 25px rgba(0,210,106,.35);

}

.teste:hover{

    transform:translateY(-2px);

}

/* ==========================
   HERO
========================== */

.hero{

    width:100%;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:clamp(20px,5vw,100px);

    gap:70px;

}

.hero-left{

    flex:1;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:25px;

}

.badge i{

    color:#00d26a;

}

.hero h1{

    font-size:clamp(2rem,5vw,4.5rem);

    line-height:1.05;

    margin-bottom:25px;

    font-weight:800;

}

.hero p{

    font-size:20px;

    color:#b8b8b8;

    line-height:1.8;

    max-width:650px;

}

.botoes{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.btn-verde{

    text-decoration:none;

    background:#00d26a;

    color:#fff;

    padding:18px 34px;

    border-radius:50px;

    font-weight:700;

    transition:.3s;

    box-shadow:0 0 30px rgba(0,210,106,.35);

}

.btn-verde:hover{

    transform:translateY(-5px);

}

.btn-video{

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

    padding:18px 30px;

    border-radius:50px;

}

.btn-video:hover{

    background:rgba(255,255,255,.05);

}

/* ==========================
   NÚMEROS
========================== */

.numeros{

    display:flex;

    gap:60px;

    margin-top:60px;

}

.numeros h2{

    font-size:38px;

    color:#00d26a;

}

.numeros span{

    color:#aaa;

}

/* ==========================
   MOCKUPS
========================== */

.hero-right{

    flex:1;

    position:relative;

    display:flex;

    justify-content:center;

}

.notebook{

    width:100%;
    max-width:760px;

    animation:flutuar 4s ease-in-out infinite;

}

.celular{

    position:absolute;

    width:180px;

    right:20px;

    bottom:-20px;

    animation:flutuar2 5s ease-in-out infinite;

}

/* ==========================
   CARDS
========================== */

.card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:12px;

    padding:16px 22px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.card i{

    color:#00d26a;

    font-size:22px;

}

.card1{

    top:40px;

    left:-10px;

}

.card2{

    bottom:110px;

    left:20px;

}

.card3{
    
    margin-right: 30px;

    top:180px;

    right:-10px;

}

/* ==========================
   CLIENTES
========================== */

.clientes{

    padding:60px;

    text-align:center;

    color:#cfcfcf;

    font-size:22px;

}

.texto{

    display:inline-block;

    padding:18px 35px;

    border-radius:50px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

}

/* ==========================
   ANIMAÇÕES
========================== */

@keyframes flutuar{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

@keyframes flutuar2{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(20px);

    }

}

/* ==========================
   RESPONSIVO
========================== */

@media(max-width:1100px){

.hero{

flex-direction:column;

text-align:center;

}

.hero p{

margin:auto;

}

.botoes{

justify-content:center;

}

.numeros{

justify-content:center;

}

.hero-right{

margin-top:60px;

}

.notebook{

width:100%;

max-width:650px;

}

.celular{

width:140px;

right:30px;

}

nav{

display:none;

}

}