@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

body{
background:#f5f7fb;
color:#222;
}

header{

position:fixed;
width:100%;
top:0;
left:0;
background:#071a35;
padding:20px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:999;
}

header h2{
color:white;
}

.menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 25px;
}

.menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.menu a:hover {
    color: #00C896;
}

/* Botão Login */
.btn-login {
    background: #00C896;
    color: white !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-login:hover {
    background: #00A67A;
    color: white !important;
}

.hero{

padding-top:140px;
padding-bottom:100px;
padding-left:8%;
padding-right:8%;

display:flex;
align-items:center;
justify-content:space-between;
gap:40px;

background:linear-gradient(120deg,#0B3C91,#0052CC);

color:white;
}

.hero h1{

font-size:52px;
line-height:1.1;
margin-bottom:20px;

}

.hero p{

font-size:20px;
margin-bottom:30px;

}

button{

padding:15px 30px;
border:none;
border-radius:8px;
cursor:pointer;
font-size:16px;
margin-right:10px;
transition:.3s;

}

.btn-primary{
background:#25D366;
color:white;
}

.btn-secondary{
background:white;
color:#0B3C91;
}

button:hover{

transform:translateY(-3px);

}

.mockup{

width:420px;
background:white;
border-radius:15px;
padding:25px;
color:black;
box-shadow:0 15px 30px rgba(0,0,0,.2);

}

.mockup h3{

margin-bottom:15px;

}

.chat{

background:#ECECEC;
padding:12px;
border-radius:10px;
margin:10px 0;

}

section{

padding:80px 8%;

}

.titulo{

text-align:center;
font-size:35px;
margin-bottom:50px;

}

.cards{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;

}

.card{

background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
transition:.3s;

}

.card:hover{

transform:translateY(-8px);

}

.card h3{

margin-bottom:15px;
color:#0B3C91;

}

.stats{

display:flex;
justify-content:center;
gap:80px;
text-align:center;
background:#071a35;
color:white;

}

.stat h2{

font-size:45px;

}

.timeline{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
text-align:center;

}

.step{

background:white;
padding:25px;
border-radius:10px;
box-shadow:0 5px 12px rgba(0,0,0,.08);

}

.tech{

display:flex;
flex-wrap:wrap;
gap:15px;
justify-content:center;

}

.tech span{

padding:12px 20px;
background:#0B3C91;
color:white;
border-radius:30px;

}

footer{

background:#071a35;
color:white;
padding:40px;
text-align:center;

}

.reveal{

opacity:0;
transform:translateY(50px);
transition:1s;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}

@media(max-width:900px){

.hero{

flex-direction:column;

}

.hero h1{

font-size:40px;

}

.mockup{

width:100%;

}

.stats{

flex-direction:column;
gap:30px;

}

}
