
*{
   margin:0;
   padding:0;
   box-sizing:border-box;
 }

body{
    font-family:'Inter',sans-serif;
    background:#ffffff;
    color:#1e293b;
}

.container{
    max-width:1150px;
    margin:auto;
    padding:20px;
}



/* BUTTONS */
.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    margin:10px;
    transition:.2s;
}

.btn-primary{
    background:#5a72f6;
    color:#fff;
}

.btn-primary:hover{
    background:#5a72f6;
    color: var(--text);
}

.btn-outline{
    border:1px solid #e2e8f0;
    color:#1e293b;
}

/* TRUST */
.trust{
    margin-top:20px;
    color:#94a3b8;
    font-size:.9rem;
}



/* NAV */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    font-weight: 700;
    font-size: 20px;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    margin-left: 25px;
    transition: 0.2s;
}

nav a:hover {
    color: var(--text);
}
.cta-btn {
    background: var(--primary);
    padding: 10px 18px;
    border-radius: 10px;
    color: white !important;
    font-weight: 600;
}

.cta-btn:hover {
    background: var(--primary-hover);
}



/* FEATURES */
.features{
    margin-top:100px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border:1px solid #e2e8f0;
    padding:25px;
    border-radius:15px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* SPLIT */
.split{
    margin-top:120px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.split img{
    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* PRICING */
.section{
    margin-top:120px;
    text-align:center;
}

.plans{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.plan{
    background:#fff;
    border:1px solid #e2e8f0;
    padding:30px;
    border-radius:20px;
}

.highlight{
    border:2px solid #1e293b;
}

.price{
    font-size:2rem;
    margin:15px 0;
}

/* CTA */
.cta{
    margin-top:120px;
    padding:70px;
    text-align:center;
    background:#1e293b;
    color:#fff;
    border-radius:20px;
}


/* FOOTER */
.footer{
    margin-top:50px;
    text-align:center;
    color:#64748b;
}

/* ANIMAÇÃO */
.fade{
    opacity:0;
    transform:translateY(20px);
    transition:.6s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* RESPONSIVO */
@media(max-width:900px){
    .split{
        grid-template-columns:1fr;
    }
}

.flow-section{
    margin-top:120px;
    text-align:center;
}

.flow-section h2{
    font-size:2rem;
}

.flow-section p{
    color:#64748b;
    margin-top:10px;
}

.flow{
    margin-top:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
}

.step{
    text-align:center;
}

.circle{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#1e293b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:auto;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.line{
    width:80px;
    height:3px;
    background:#e2e8f0;
    position:relative;
    overflow:hidden;
}

/* ANIMAÇÃO DE FLUXO */
.line::after{
    content:'';
    position:absolute;
    width:20px;
    height:3px;
    background:#1e293b;
    animation:flow 2s linear infinite;
}

@keyframes flow{
    0%{left:-20px;}
    100%{left:100%;}
}

/* PULSE */
.pulse{
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{box-shadow:0 0 0 0 rgba(30,41,59,0.5);}
    70%{box-shadow:0 0 0 15px rgba(30,41,59,0);}
    100%{box-shadow:0 0 0 0 rgba(30,41,59,0);}
}


/* UNICORN */
.unicorn{
    margin-top:160px;
    text-align:center;
}

.unicorn h2{
    font-size:2.4rem;
}

.unicorn p{
    color:#64748b;
    margin-top:10px;
}

.unicorn-stage{
    margin-top:40px;
    display:flex;
    justify-content:center;
}

.dashboard-live{
    width:900px;
    background:#1e293b;
    border-radius:20px;
    padding:20px;
    box-shadow:0 40px 100px rgba(0,0,0,0.15);
}

/* TOPBAR */
.topbar{
    display:flex;
    gap:8px;
    margin-bottom:15px;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
}

.red{background:#ef4444;}
.yellow{background:#f59e0b;}
.green{background:#22c55e;}

/* CONTENT */
.content{
    background:#020617;
    border-radius:12px;
    padding:20px;
    color:#e2e8f0;
}

/* STATS */
.stats{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
}

.stats span{
    font-size:1.8rem;
    display:block;
}

/* GRAPH */
.graph{
    display:flex;
    gap:10px;
    align-items:flex-end;
    height:120px;
}

.bar{
    width:20px;
    background:#22c55e;
    animation:grow 1.5s infinite ease-in-out;
}

.bar:nth-child(2){animation-delay:.2s;}
.bar:nth-child(3){animation-delay:.4s;}
.bar:nth-child(4){animation-delay:.6s;}
.bar:nth-child(5){animation-delay:.8s;}

@keyframes grow{
    0%,100%{height:40px;}
    50%{height:100px;}
}

/* MAPA */
.map-live{
    margin-top:20px;
    height:150px;
    background:#020617;
    border-radius:10px;
    position:relative;
}

.ping{
    position:absolute;
    width:10px;
    height:10px;
    background:#22c55e;
    border-radius:50%;
    animation:ping 2s infinite;
}

@keyframes ping{
    0%{transform:scale(1);opacity:1;}
    100%{transform:scale(3);opacity:0;}
}