
.sos-carrossel-wrapper{
  width:100%;
  padding:24px 0;
}

.sos-carrossel{
  display:flex;
  gap:24px;
  overflow-x:auto;
  scroll-behavior:smooth;
  justify-content:center;
  align-items:center;
  padding:12px;
}

.sos-carrossel::-webkit-scrollbar{ display:none; }

.sos-item{
  flex:0 0 auto;
  text-decoration:none;
}

.sos-circle{
  width:120px;
  height:120px;
  aspect-ratio:1/1;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:14px;
  box-sizing:border-box;
  border:3px solid #000;
}

.sos-circle span{
  color:#fff;
  font-weight:700;
  font-size:14px;
  line-height:1.2;
  word-break:break-word;
}

/* Mobile */
@media (max-width:767px){
  .sos-circle{
    width:92px;
    height:92px;
    padding:10px;
  }
  .sos-circle span{
    font-size:12px;
  }
}
