.btn {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.25);
}

.btn:hover {
  transform: translateY(-4px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  box-shadow: none;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 28px;
  transition: 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
}

.stat-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}

.stat-box h4 {
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--secondary);
}

.stat-box span {
  color: var(--muted);
  font-size: 14px;
}

/* Outros componentes como .ball, .check, .badge, etc. */
.ball {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  animation: float 3s infinite ease-in-out;
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.35);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.btn{
      background:var(--gradient);
      color:white;
      border:none;
      padding:16px 28px;
      border-radius:16px;
      font-weight:700;
      cursor:pointer;
      transition:.3s;
      box-shadow:0 10px 30px rgba(0,212,255,.25);
    }

    .btn:hover{
      transform:translateY(-4px);
    }

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
    }

    
    .btn-outline{
      background:transparent;
      border:1px solid rgba(255,255,255,.15);
      color:white;
      box-shadow:none;
    }

    
    .numbers{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
      margin-bottom:30px;
    }

    .ball{
      width:58px;
      height:58px;
      border-radius:50%;
      background:var(--gradient);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:800;
      font-size:18px;
      animation:float 3s infinite ease-in-out;
      box-shadow:0 10px 25px rgba(139,92,246,.35);
    }

    .ball:nth-child(2){
      animation-delay:.2s;
    }

    .ball:nth-child(3){
      animation-delay:.4s;
    }

    .ball:nth-child(4){
      animation-delay:.6s;
    }

    .ball:nth-child(5){
      animation-delay:.8s;
    }

    @keyframes float{
      0%,100%{
        transform:translateY(0);
      }
      50%{
        transform:translateY(-8px);
      }
    }