/* COMO FUNCIONA V3 */

.snp-how-v3{
  margin-top:32px;
  padding:28px;
  border-radius:24px;
  background:#fff;
  border:1px solid #e5e7eb;
  box-shadow:0 12px 35px rgba(15,23,42,.05);
  overflow:hidden;
}

.snp-how-head{
  max-width:760px;
  margin-bottom:26px;
}

.snp-how-head span{
  color:#4f46e5;
  font-size:10px;
  font-weight:900;
  letter-spacing:3px;
}

.snp-how-head h2{
  margin:10px 0;
  font-size:28px;
  line-height:1.18;
  color:#0f172a;
}

.snp-how-head p{
  font-size:14px;
  line-height:1.65;
  color:#64748b;
}

.snp-how-grid-v3{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.snp-how-grid-v3 article{
  position:relative;
  min-height:210px;
  padding:18px;
  border-radius:18px;
  background:#fff;
  border:1px solid #e5e7eb;
  overflow:hidden;
  animation:snpHowIn .7s ease both;
  transition:.3s ease;
}

.snp-how-grid-v3 article:nth-child(2){animation-delay:.12s}
.snp-how-grid-v3 article:nth-child(3){animation-delay:.22s}
.snp-how-grid-v3 article:nth-child(4){animation-delay:.32s}

.snp-how-grid-v3 article.dark{
  background:
    radial-gradient(circle at 80% 18%,rgba(109,40,217,.38),transparent 34%),
    linear-gradient(135deg,#0f172a,#111827);
  border:none;
  color:#fff;
  box-shadow:0 18px 45px rgba(15,23,42,.18);
}

.snp-how-grid-v3 article:hover{
  transform:translateY(-6px);
}

.step-number{
  width:34px;
  height:34px;
  border-radius:11px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#6d28d9,#2563eb);
  color:#fff;
  font-size:18px;
  font-weight:900;
  margin-bottom:16px;
}

.step-icon{
  width:64px;
  height:64px;
  margin:8px auto 18px;
  border-radius:18px;
  display:grid;
  place-items:center;
  font-size:30px;
  color:#4f46e5;
  border:2px solid rgba(79,70,229,.25);
  background:rgba(79,70,229,.04);
  animation:snpIconFloat 4s ease-in-out infinite;
}

.dark .step-icon{
  color:#c4b5fd;
  border-color:rgba(196,181,253,.35);
  background:rgba(255,255,255,.06);
}

.snp-how-grid-v3 h3{
  font-size:15px;
  margin-bottom:8px;
  color:#0f172a;
}

.snp-how-grid-v3 p{
  font-size:12px;
  line-height:1.55;
  color:#64748b;
}

.snp-how-grid-v3 .dark h3{
  color:#fff;
}

.snp-how-grid-v3 .dark p{
  color:#cbd5e1;
}

.snp-how-grid-v3 article.dark::after{
  content:"";
  position:absolute;
  right:16px;
  top:16px;
  width:70px;
  height:70px;
  opacity:.18;
  background-image:radial-gradient(#fff 1px,transparent 1px);
  background-size:12px 12px;
}

.snp-how-note{
  margin-top:20px;
  text-align:center;
  color:#64748b;
  font-size:13px;
  letter-spacing:.5px;
}

@keyframes snpHowIn{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes snpIconFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
}

@media(max-width:1000px){
  .snp-how-grid-v3{
    grid-template-columns:1fr;
  }

  .snp-how-head h2{
    font-size:24px;
  }
}