/* HOME EXTRA — SEÇÕES AUXILIARES SEM HERO */

/* TÍTULOS */
.snp-title-center{
  max-width:720px;
  margin:0 auto 24px;
  text-align:center;
}

.snp-title-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:18px;
}

.snp-title-center span,
.snp-title-row span{
  color:#4f46e5;
  font-size:10px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
}

.snp-title-center h2,
.snp-title-row h2{
  margin:8px 0 10px;
  font-size:24px;
  line-height:1.2;
  color:#0f172a;
}

.snp-title-center p{
  font-size:13px;
  line-height:1.6;
  color:#64748b;
}

/* BOTÃO PADRÃO */
.btn-primary{
  height:40px;
  padding:0 16px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#6d28d9,#2563eb);
  color:#fff!important;
  font-size:12px;
  font-weight:900;
  text-decoration:none;
}

/* CLOUD LABS */
.snp-cloudlabs{
  margin-top:32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:center;
  padding:30px;
  border-radius:24px;
  background:
    radial-gradient(circle at 90% 20%,rgba(91,53,245,.24),transparent 34%),
    linear-gradient(135deg,#0f172a,#111827);
  color:#fff;
  overflow:hidden;
}

.snp-cloudlabs span{
  color:#8b7cff;
  font-size:10px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
}

.snp-cloudlabs h2{
  margin:8px 0 12px;
  font-size:26px;
  line-height:1.2;
  color:#fff;
}

.snp-cloudlabs p{
  font-size:13px;
  line-height:1.6;
  color:#cbd5e1;
}

.snp-cloudlabs ul{
  margin:16px 0;
  display:grid;
  gap:7px;
  color:#dbeafe;
  font-size:13px;
}

.labs-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}

.lab-card{
  padding:16px;
  border-radius:16px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}

.lab-card h3{
  font-size:14px;
  color:#fff;
  margin-bottom:8px;
}

.lab-card p{
  font-size:12px;
  color:#94a3b8;
}

.lab-card strong{
  display:block;
  margin-top:4px;
  color:#86efac;
  font-size:12px;
}

/* CTA FINAL */
.snp-home-cta{
  margin-top:28px;
  padding:18px 22px;
  border-radius:18px;
  background:linear-gradient(135deg,#111827,#1e1b4b);
  color:#fff;
  display:flex;
  align-items:center;
  gap:16px;
}

.snp-cta-icon{
  width:42px;
  height:42px;
  border-radius:13px;
  background:rgba(255,255,255,.10);
  display:grid;
  place-items:center;
  font-size:20px;
  flex-shrink:0;
}

.snp-cta-content{
  flex:1;
}

.snp-cta-content h2{
  color:#fff;
  font-size:18px;
  margin-bottom:4px;
}

.snp-cta-content p{
  color:#cbd5e1;
  font-size:13px;
}

.snp-cta-button{
  height:40px;
  padding:0 18px;
  border-radius:12px;
  background:linear-gradient(135deg,#6d28d9,#2563eb);
  color:#fff!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  text-decoration:none;
}

/* MOBILE */
@media(max-width:768px){
  .snp-title-center{
    text-align:left;
  }

  .snp-title-row{
    display:block;
  }

  .snp-title-center h2,
  .snp-title-row h2{
    font-size:22px;
  }

  .snp-cloudlabs{
    grid-template-columns:1fr;
    padding:22px;
    border-radius:20px;
  }

  .labs-right{
    grid-template-columns:1fr;
  }

  .snp-home-cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .snp-cta-button{
    width:100%;
  }
}