/* ===========================================================
   TECNOLOGIAS REAIS - CAROUSEL LIMPO
=========================================================== */

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

.snp-tech-header{
  max-width:560px;
  margin:0 0 20px;
}

.snp-tech-header span{
  display:inline-block;
  margin-bottom:8px;
  color:#4f46e5;
  font-size:10px;
  font-weight:900;
  letter-spacing:3px;
  text-transform:uppercase;
}

.snp-tech-header h2{
  margin:0 0 8px;
  font-size:24px;
  line-height:1.18;
  letter-spacing:-.6px;
  color:#0f172a;
}

.snp-tech-header p{
  max-width:540px;
  font-size:13px;
  line-height:1.6;
  color:#64748b;
}

.tech-carousel{
  position:relative;
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:18px;
}

.tech-track{
  flex:1;
  display:flex;
  align-items:center;
  gap:38px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:18px 8px;
  scrollbar-width:none;
}

.tech-track::-webkit-scrollbar{
  display:none;
}

.tech-logo{
  min-width:170px;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  transition:.28s ease;
}

.tech-logo::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:8px;
  width:80px;
  height:14px;
  transform:translateX(-50%);
  border-radius:50%;
  background:rgba(79,70,229,.14);
  filter:blur(9px);
  opacity:.7;
}

.tech-logo img{
  max-width:145px;
  max-height:64px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.72;
  transition:.28s ease;
  position:relative;
  z-index:2;
}

.tech-logo:hover{
  transform:translateY(-5px);
}

.tech-logo:hover img{
  filter:none;
  opacity:1;
  transform:scale(1.16);
}

.tech-arrow{
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#eef2ff;
  color:#4f46e5;
  font-size:30px;
  font-weight:700;
  cursor:pointer;
  transition:.25s ease;
  flex-shrink:0;
}

.tech-arrow:hover{
  background:linear-gradient(135deg,#6d28d9,#2563eb);
  color:#fff;
  transform:scale(1.08);
}

@media(max-width:768px){
  .tech-logo{
    min-width:140px;
  }

  .tech-logo img{
    max-width:120px;
  }
}