*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{

background:
radial-gradient(circle at top,
rgba(255,214,0,.12),
transparent 35%),

radial-gradient(circle at bottom,
rgba(0,255,140,.08),
transparent 35%),

#050505;

color:white;
overflow-x:hidden;
}

header{

position:sticky;
top:0;

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 8%;

background:rgba(10,10,10,.8);

backdrop-filter:blur(12px);

border-bottom:1px solid rgba(255,255,255,.05);

z-index:1000;

}

.logo{

max-height:85px;
width:auto;
object-fit:contain;

}

nav{

display:flex;
gap:30px;

}

nav a{

color:white;
text-decoration:none;
font-weight:600;

transition:.3s;

}

nav a:hover{

color:#FFD600;

text-shadow:
0 0 10px #FFD600;

}

.hero{

min-height:90vh;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;

padding:0 10%;

}

.tag{

padding:12px 24px;

background:rgba(255,214,0,.1);

border:1px solid rgba(255,214,0,.3);

border-radius:999px;

color:#FFD600;

font-weight:600;

margin-bottom:25px;

}

.hero h1{

font-size:5rem;
font-weight:800;

line-height:1;

max-width:1200px;

margin-bottom:25px;

text-shadow:

0 0 20px rgba(255,214,0,.2);

}

.hero p{

max-width:850px;

font-size:1.25rem;

color:#BFBFBF;

line-height:1.8;

}

.buttons{

margin-top:40px;

display:flex;
gap:20px;
flex-wrap:wrap;

justify-content:center;

}

.discord{

padding:18px 40px;

background:#FFD600;

color:black;

font-weight:700;

text-decoration:none;

border-radius:14px;

box-shadow:

0 0 20px rgba(255,214,0,.5);

transition:.3s;

}

.discord:hover{

transform:translateY(-4px);

box-shadow:

0 0 35px rgba(255,214,0,.8);

}

.whatsapp{

padding:18px 40px;

background:#00D26A;

color:white;

font-weight:700;

text-decoration:none;

border-radius:14px;

box-shadow:

0 0 20px rgba(0,210,106,.4);

transition:.3s;

}

.whatsapp:hover{

transform:translateY(-4px);

box-shadow:

0 0 35px rgba(0,210,106,.8);

}

.pioneiros{

margin-top:35px;

padding:15px 25px;

background:rgba(255,214,0,.08);

border:1px solid rgba(255,214,0,.2);

border-radius:12px;

color:#FFD600;

font-weight:700;

}

section{

padding:120px 10%;

}

section h2{

font-size:3rem;

text-align:center;

margin-bottom:60px;

}

.cards{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(260px,1fr));

gap:30px;

}

.card{

background:rgba(20,20,20,.8);

border:1px solid rgba(255,255,255,.05);

padding:35px;

border-radius:22px;

transition:.35s;

backdrop-filter:blur(8px);

}

.card:hover{

transform:translateY(-8px);

border-color:#FFD600;

box-shadow:

0 0 25px rgba(255,214,0,.15);

}

.card h3{

margin:15px 0;

font-size:1.4rem;

}

.card p{

color:#BFBFBF;

line-height:1.6;

}

.timeline{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(220px,1fr));

gap:20px;

}

.timeline div{

background:#111;

padding:25px;

border-radius:18px;

font-weight:600;

border:1px solid rgba(255,255,255,.05);

}

.timeline div:hover{

border-color:#00D26A;

box-shadow:

0 0 20px rgba(0,210,106,.15);

}

#pioneiros{

text-align:center;

background:rgba(255,255,255,.02);

border-top:1px solid rgba(255,255,255,.05);

border-bottom:1px solid rgba(255,255,255,.05);

}

#pioneiros p{

max-width:700px;

margin:auto;

margin-bottom:35px;

color:#BFBFBF;

line-height:1.8;

}

footer{

padding:50px;

text-align:center;

color:#777;

border-top:1px solid rgba(255,255,255,.05);

}

footer a{

color:#FFD600;

text-decoration:none;

margin:0 10px;

}

footer a:hover{

text-shadow:

0 0 10px #FFD600;

}

@media(max-width:768px){

header{

flex-direction:column;
gap:20px;

}

.hero h1{

font-size:2.8rem;

}

.hero p{

font-size:1rem;

}

section h2{

font-size:2rem;

}

}
