
*{margin:0;padding:0;box-sizing:border-box}
body{
font-family:Arial,Helvetica,sans-serif;
background:#111;
color:#fff;
line-height:1.6;
}
header{
background:#181818;
padding:20px 40px;
display:flex;
justify-content:space-between;
align-items:center;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid #333;
}
.logo{
font-size:32px;
font-weight:bold;
color:#ff5a1f;
}
nav a{
color:#fff;
text-decoration:none;
margin-left:25px;
font-size:15px;
}
nav a:hover{color:#ff5a1f}
.hero{
padding:100px 40px;
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}
.hero h1{
font-size:62px;
font-weight:300;
line-height:1.1;
margin-bottom:20px;
}
.hero p{
font-size:20px;
color:#ccc;
margin-bottom:30px;
}
.btn{
display:inline-block;
padding:15px 30px;
background:#ff5a1f;
color:#fff;
text-decoration:none;
margin-right:15px;
border-radius:4px;
font-weight:bold;
}
.btn-outline{
background:transparent;
border:1px solid #666;
}
.box{
background:#1b1b1b;
padding:25px;
border:1px solid #2a2a2a;
margin-bottom:15px;
transition:0.3s;
}
.box:hover{
transform:translateY(-5px);
border-color:#ff5a1f;
}
section{
padding:80px 40px;
max-width:1200px;
margin:auto;
}
.title{
font-size:42px;
margin-bottom:20px;
font-weight:300;
}
.subtitle{
color:#aaa;
margin-bottom:40px;
font-size:18px;
}
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:20px;
}
.card{
background:#1a1a1a;
padding:30px;
border:1px solid #2d2d2d;
transition:0.3s;
}
.card:hover{
border-color:#ff5a1f;
transform:translateY(-6px);
}
.card h3{
margin-bottom:15px;
font-size:24px;
}
.projects{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
gap:25px;
}
.project{
background:#1b1b1b;
padding:35px;
border:1px solid #2d2d2d;
}
.project h3{
font-size:30px;
margin-bottom:10px;
}
.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
text-align:center;
}
.stat{
background:#1a1a1a;
padding:30px;
border:1px solid #2c2c2c;
}
.stat h2{
font-size:45px;
color:#ff5a1f;
}
.cta{
background:#ff5a1f;
padding:70px 40px;
text-align:center;
}
.cta h2{
font-size:44px;
margin-bottom:20px;
}
footer{
background:#181818;
padding:40px;
text-align:center;
color:#aaa;
}
.whatsapp{
position:fixed;
right:20px;
bottom:20px;
background:#25D366;
color:#000;
padding:15px 22px;
border-radius:50px;
font-weight:bold;
text-decoration:none;
}
@media(max-width:900px){
.hero{
grid-template-columns:1fr;
}
.hero h1{
font-size:42px;
}
header{
flex-direction:column;
gap:15px;
}
nav a{
margin:0 10px;
}
}

/* BARRA ESTILO CANONICAL */

.divider-canonical{
position:relative;
height:140px;
background:linear-gradient(to bottom,#111,#161616);
overflow:hidden;
margin-top:20px;
}

.divider-canonical .shape{
position:absolute;
bottom:0;
height:100px;
background:rgba(255,255,255,0.04);
filter:blur(0.3px);
}

.divider-canonical .left{
left:0;
width:38%;
clip-path:polygon(0 55%,100% 100%,0 100%);
}

.divider-canonical .center{
left:30%;
width:40%;
clip-path:polygon(0 100%,50% 20%,100% 100%);
background:rgba(255,255,255,0.03);
}

.divider-canonical .right{
right:0;
width:38%;
clip-path:polygon(100% 55%,0 100%,100% 100%);
}

.divider-canonical:after{
content:'';
position:absolute;
bottom:0;
left:0;
width:100%;
height:40px;
background:linear-gradient(to top,rgba(0,0,0,.35),transparent);
}

.projects-canonical{
padding:90px 40px;
max-width:1300px;
margin:auto;
}

.project-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
background:linear-gradient(to right,#181818,#202020);
border:1px solid #2e2e2e;
padding:55px;
margin-top:35px;
overflow:hidden;
position:relative;
}

.project-left h3{
font-size:48px;
font-weight:300;
margin-bottom:20px;
}

.project-left p{
font-size:21px;
color:#cfcfcf;
line-height:1.7;
max-width:520px;
margin-bottom:25px;
}

.project-link{
color:#ff5a1f;
text-decoration:none;
font-size:18px;
}

.project-right{
position:relative;
height:280px;
}

.mock{
position:absolute;
width:320px;
height:190px;
border-radius:2px;
box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.mock-front{
right:70px;
top:30px;
background:#303030;
color:#fff;
display:flex;
justify-content:center;
align-items:center;
font-size:24px;
z-index:3;
}

.mock-back.one{
right:20px;
top:55px;
background:#efefef;
z-index:2;
}

.mock-back.two{
right:-25px;
top:80px;
background:#ddd;
z-index:1;
}

@media(max-width:980px){

.project-box{
grid-template-columns:1fr;
padding:35px;
}

.project-left h3{
font-size:38px;
}

.project-right{
height:220px;
margin-top:25px;
}

.mock{
width:250px;
height:150px;
}

.mock-front{right:40px;}
.mock-back.one{right:10px;}
.mock-back.two{right:-15px;}

}

.projects-slider{
padding:90px 40px;
max-width:1350px;
margin:auto;
overflow:hidden;
}

.slider-head{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;
}

.slider-head h2{
font-size:52px;
font-weight:300;
}

.slider-buttons button{
width:50px;
height:50px;
background:#1f1f1f;
border:1px solid #333;
color:#fff;
font-size:22px;
cursor:pointer;
margin-left:10px;
}

.slider-buttons button:hover{
border-color:#ff5a1f;
color:#ff5a1f;
}

.slider-wrapper{
overflow:hidden;
}

.slides{
display:flex;
transition:0.6s ease;
}

.slide-item{
min-width:100%;
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
background:linear-gradient(to right,#181818,#222);
border:1px solid #2e2e2e;
padding:60px;
}

.slide-left h3{
font-size:48px;
font-weight:300;
margin-bottom:20px;
}

.slide-left p{
font-size:21px;
color:#ccc;
line-height:1.7;
margin-bottom:25px;
max-width:520px;
}

.slide-left a{
color:#ff5a1f;
text-decoration:none;
font-size:18px;
}

.slide-right{
position:relative;
height:280px;
}

.mock{
position:absolute;
width:320px;
height:190px;
box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.front{
right:70px;
top:30px;
background:#303030;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
z-index:3;
}

.back.one{
right:20px;
top:55px;
background:#efefef;
z-index:2;
}

.back.two{
right:-20px;
top:80px;
background:#dcdcdc;
z-index:1;
}

@media(max-width:980px){

.slide-item{
grid-template-columns:1fr;
padding:35px;
}

.slider-head h2{
font-size:36px;
}

.slide-left h3{
font-size:34px;
}

.slide-right{
height:220px;
}

.mock{
width:250px;
height:150px;
}

.front{right:40px;}
.back.one{right:10px;}
.back.two{right:-10px;}

}

/* tecnologia  */
/* SUBSTITUA TODO eco-map por este layout linear */

.eco-map{
position:relative;
max-width:1300px;
height:420px;
margin:auto;
display:flex;
justify-content:center;
align-items:center;
}

/* LOGO CENTRAL */

.core-logo{
position:absolute;
left:50%;
top:75%;
transform:translate(-50%,-50%);
width:130px;
height:130px;
border-radius:50%;
background:#ff2a06;
display:flex;
justify-content:center;
align-items:center;
font-size:54px;
font-weight:bold;
color:#fff;
box-shadow:0 0 35px rgba(255,90,31,.55);
z-index:10;
}

/* LINHA CENTRAL */

.eco-map:before{
content:'';
position:absolute;
left:0;
top:50%;
width:100%;
height:1px;
background:rgba(255,255,255,.12);
}

/* NODE PADRÃO */

.node{
position:absolute;
width:72px;
height:72px;
border:1px solid #555;
background:#111;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
cursor:pointer;
border-radius:8px;
transition:.3s;
z-index:5;
}

.node:hover{
border-color:#ff5a1f;
transform:scale(1.08);
}

.node span{
position:absolute;
background:#111;
padding:12px 18px;
white-space:nowrap;
font-size:15px;
top:-62px;
left:50%;
transform:translateX(-50%);
border:1px solid #444;
opacity:0;
visibility:hidden;
transition:.3s;
}

.node:hover span{
opacity:1;
visibility:visible;
top:-74px;
border-color:#ff5a1f;
}

/* POSIÇÕES LINEARES */

/* ESQUERDA */
.n1{left:80px;top:50%;transform:translateY(-50%);}
.n5{left:260px;top:50%;transform:translateY(-50%);}
.n4{left:440px;top:50%;transform:translateY(-50%);}

/* DIREITA */
.n2{right:440px;top:50%;transform:translateY(-50%);}
.n3{right:260px;top:50%;transform:translateY(-50%);}
.n6{right:80px;top:50%;transform:translateY(-50%);}

/* RESPONSIVO */

@media(max-width:1100px){

.eco-map{
height:auto;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
padding-top:20px;
}

.core-logo{
position:relative;
left:auto;
top:auto;
transform:none;
margin:auto;
grid-column:1/3;
margin-bottom:20px;
}

.node{
position:relative !important;
left:auto !important;
right:auto !important;
top:auto !important;
transform:none !important;
width:100%;
height:78px;
}

.node span{
display:none;
}

.eco-map:before{
display:none;
}

}

.blockchain-enterprise{
padding:110px 40px;
background:linear-gradient(to right,#1a1a1a,#222);
}

.block-wrap{
max-width:1400px;
margin:auto;
display:grid;
grid-template-columns:320px 1fr;
gap:70px;
align-items:center;
}

/* MENU */

.block-menu{
border-left:3px solid rgba(255,255,255,.25);
padding-left:28px;
}

.menu-item{
color:#fff;
opacity:.65;
padding:22px 0;
font-size:24px;
cursor:pointer;
display:flex;
gap:15px;
align-items:center;
transition:.3s;
letter-spacing:1px;
}

.menu-item:hover,
.menu-item.active{
opacity:1;
color:#ff5a1f;
transform:translateX(8px);
}

/* CONTENT */

.block-content h2{
font-size:64px;
font-weight:300;
line-height:1.15;
margin-bottom:25px;
}

.block-content p{
font-size:24px;
color:#ddd;
line-height:1.7;
max-width:950px;
}

.block-content hr{
border:none;
border-top:1px solid rgba(255,255,255,.12);
margin:35px 0;
}

.desc{
margin-bottom:25px;
}

.block-content a{
color:#ff5a1f;
font-size:24px;
text-decoration:none;
display:inline-block;
margin-bottom:45px;
}

.logos{
display:flex;
flex-wrap:wrap;
gap:35px;
font-size:36px;
font-weight:bold;
color:#fff;
opacity:.85;
}

.tab{
display:none;
animation:fade .4s ease;
}

.active-tab{
display:block;
}

@keyframes fade{
from{opacity:0;transform:translateY(10px);}
to{opacity:1;transform:none;}
}

@media(max-width:980px){

.block-wrap{
grid-template-columns:1fr;
gap:40px;
}

.block-menu{
border-left:none;
border-top:2px solid rgba(255,255,255,.15);
padding-left:0;
padding-top:20px;
display:grid;
grid-template-columns:1fr;
}

.menu-item{
font-size:18px;
padding:12px 0;
}

.block-content h2{
font-size:38px;
}

.block-content p,
.block-content a{
font-size:18px;
}

.logos{
font-size:22px;
gap:18px;
}

}
