.carousel {
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  width: 100%;
}
.carousel:hover .group {
  animation-play-state: paused;
}

.carousel-colaboradores {
  mask-image: linear-gradient(to left, transparent, black 10%, black 90%, transparent);
}

@media (max-width: 576px) {
  .carrusel-div {
    width: 100%;
    padding-right: 5%;
    padding-left: 5%;
  }
}
@media (min-width: 576px) {
  .carrusel-div {
    width: 50%;
  }
}

.group {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
  padding-right: 20px;
  will-change: transform;
  animation: scrolling 25s linear infinite;
}

.card-slide {
  flex-shrink: 0;
  width: 100px;
  border-radius: 24px;
  margin: 0;
  font-size: xx-large;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}
.image-container {
  overflow: hidden;
}

.hover-img {
  transition: all 0.3s;
}

.hover-img:hover {
  filter: drop-shadow(4px 5px 4px rgba(0, 0, 0, 0.6));
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* This will scale the image to cover the entire container */
}

@media (max-width: 1200px) {
  .link-col-principal {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .link-col-principal {
    width: 50%;
  }
}

.shadow-hr {
  height: 20px;
  background-image: radial-gradient(farthest-side at 50% -50%, hsl(0, 0%, 0%), hsla(0, 0%, 0%, 0));
  position: relative;
}

.shadow-hr::before {
  height: 1px;
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  background-image: linear-gradient(90deg, hsla(0, 0%, 0%, 0), hsl(0, 0%, 0%) 50%, hsla(0, 0%, 0%, 0));
}

.pill-hr {
  height: 0px;
  border-radius: 2px;
  color: #469db1;
  border: 2px solid currentColor;
  position: relative;
  bottom: 37px;
  z-index: 10;
}

/*# sourceMappingURL=carrusel.css.map */
