.tarja-carousel {
  overflow: hidden;
  background: #ffffff;
  padding: 5px 0px;
font-family: 'Montserrat', sans-serif;
}

.tarja-items {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.tarja-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 50%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.tarja-icon {
  width: 30px;
  height: 30px;
  filter: brightness(0) saturate(100%) invert(35%) sepia(66%) hue-rotate(205deg) saturate(615%) brightness(110%);
}

.tarja-texto {
  display: flex;
  flex-direction: column;
}

.tarja-texto strong {
  font-size: 14px;
  color: #000;
}

.tarja-texto span {
  font-size: 13px;
  color: #555;
}

@media (min-width: 769px) {
  .tarja-carousel {
    overflow: visible;
  }

  .tarja-items {
    justify-content: space-between;
    flex-wrap: nowrap;
    transform: none !important;
  }

  .tarja-item {
    min-width: auto;
  }
}
