:root{
  --bg:#0b0f14;
  --card:#0f1622;
  --text:#e8eef6;
  --muted:#a8b3c2;
  --line:#223146;
  --orange:#ff7a00;
  --orange2:#ff9a3d;
  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius:22px;
  --max:1120px;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:'Poppins',system-ui,sans-serif;
  background:linear-gradient(180deg,#070a0f,#0b0f14);
  color:var(--text);
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

/* HEADER */
header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter:blur(10px);
  background:rgba(11,15,20,.7);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.brand img{
  height:42px;
}

.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  margin-left:18px;
}

/* BUTTONS */
.btn{
  padding:10px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#111;
  color:var(--text);
  font-weight:700;
  text-decoration:none;
}

.btn.primary{
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#111;
  border:none;
}

/* HERO */
.hero{
  padding:70px 0 40px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
  align-items:center;
}

.hero h1{
  font-size:42px;
  line-height:1.1;
  margin:0 0 14px;
}

.hero h1 span{
  color:var(--orange);
}

.hero p{
  color:var(--muted);
  max-width:520px;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin-top:22px;
}

.hero-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
}

.mascot{
  width:100%;
  max-width:280px;
  display:block;
  margin:auto;
  animation:float 3s ease-in-out infinite;
}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}

/* FEATURES */
.features{
  padding:40px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.feature{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
}

.feature h3{
  margin:0 0 6px;
  font-size:16px;
}

.feature p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

/* VISUAL */
.visual{
  margin:60px 0;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  border-radius:32px;
  padding:50px 30px;
  color:#111;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:30px;
}

.visual img{
  max-width:240px;
}

/* FOOTER */
footer{
  padding:40px 0;
  border-top:1px solid var(--line);
  margin-top:40px;
}

footer img{
  height:36px;
}

footer p{
  color:var(--muted);
  font-size:13px;
  margin-top:10px;
}

/* RESPONSIVO */
@media(max-width:900px){
  .hero-grid,
  .features,
  .visual{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-actions{
    justify-content:center;
  }
}
