
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#faf7f3;
color:#1f2937;
}

.container{
width:min(1200px,92%);
margin:auto;
}

.topo{
background:#fff;
padding:18px 0;
border-bottom:1px solid #eee;
position:sticky;
top:0;
z-index:99;
}

.topo .container{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.logo{
font-size:28px;
font-weight:bold;
background:linear-gradient(90deg,#ff7b00,#7c1fff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

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

nav a{
text-decoration:none;
color:#333;
font-weight:600;
}

.hero{
padding:90px 0;
}

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

.tag{
display:inline-block;
padding:10px 16px;
border-radius:30px;
background:#fff;
border:1px solid #ddd;
margin-bottom:20px;
font-size:13px;
font-weight:bold;
}

h1{
font-size:64px;
line-height:1.05;
margin-bottom:25px;
}

.hero p{
font-size:20px;
line-height:1.7;
margin-bottom:30px;
}

.btn,.btn-outline{
display:inline-block;
padding:15px 26px;
border-radius:40px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn{
background:linear-gradient(90deg,#ff7b00,#ff2f92);
color:#fff;
}

.btn:hover{
opacity:.9;
}

.btn-outline{
border:2px solid #ddd;
color:#333;
margin-left:10px;
}

.mockup{
height:520px;
border-radius:30px;
background:linear-gradient(180deg,#fff,#f3e8ff);
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.grafico{
width:80%;
height:70%;
background:
linear-gradient(to top,#ff7b00 0 50%,transparent 50%),
linear-gradient(to top,#7c1fff 0 75%,transparent 75%),
linear-gradient(to top,#ff2f92 0 35%,transparent 35%);
background-size:20% 100%;
background-repeat:no-repeat;
background-position:10% bottom,45% bottom,80% bottom;
}

.secao{
padding:90px 0;
background:#fff;
}

.secao h2{
font-size:44px;
margin-bottom:20px;
}

.secao p{
font-size:18px;
line-height:1.7;
}

.cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:40px;
}

.card{
padding:35px;
border-radius:25px;
background:#faf7f3;
}

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

.cta{
padding:100px 0;
background:linear-gradient(90deg,#ff7b00,#7c1fff);
color:#fff;
text-align:center;
}

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

.cta p{
font-size:20px;
margin-bottom:35px;
}

.branco{
background:#fff;
color:#111;
}

footer{
padding:30px 0;
text-align:center;
background:#111827;
color:#fff;
}

@media(max-width:900px){

.hero-grid,
.cards{
grid-template-columns:1fr;
}

h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

nav{
display:none;
}

.mockup{
height:360px;
}

.cta h2{
font-size:36px;
}

}
