@keyframes rotate {
  0% {
    transform: rotateZ(0deg);
  }

  100% {
    transform: rotateZ(720deg);
  }
}

@keyframes counter-rotate {
  0% {
    transform: rotateZ(720deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}

.mentorias-prova-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 0 16px;
}

.mentorias-prova-wrapper {
  max-width: 772px;
}

.mentorias-prova-title {
  font-family: 'Margem-medium';
  font-weight: 500;
  font-size: 44px;
  letter-spacing: -1px;
  color: #040E20;
}

.mentorias-prova-data {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.mentorias-results-list {
  display: flex;
  list-style: none;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

.mentorias-results-list .slick-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 0;
}

.mentorias-results-list .slick-track li {
  transition: .4s height;
  position: relative;
  overflow: hidden;
}

.mentorias-results-item-overlay {
  transition: .3s cubic-bezier(.17, -0.09, .57, 1.28);
  filter: grayscale(100%);
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}

.mentorias-results-item-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentorias-results-list .slick-track li.slick-current .mentorias-results-item-overlay {
  opacity: 0;
  z-index: -1;
}

.mentorias-results-list .slick-track li:not(.slick-current) {
  height: 75%;
}

.mentorias-results-item {
  max-width: 835px;
  width: 100%;
  border-radius: 24px;
  padding: 24px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background-color: #EBECF0;
}

.mentorias-results-profile {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 24px;
}

.mentorias-results-profile-header {
  display: flex;
  gap: 20px;
}

.mentorias-results-profile-header-wrapper {
  min-width: 56px;
  min-height: 56px;
  width: 56px;
  height: 56px;
  max-width: 56px;
  max-height: 56px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;
}

.mentorias-results-profile-header-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.mentorias-results-profile-description-wrapper {
  flex: 1;
  height: 100%;
  overflow-y: auto;
}

.mentorias-results-profile p {
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 24px;
  color: #172B4D;
}

.mentorias-results-user-data {
  display: flex;
  flex-direction: column;
}

.mentorias-results-user-data h3 {
  font-family: 'Margem-medium';
  font-weight: 500;
  font-size: 20px;
  line-height: 125%;
  color: #091E42;
}

.mentorias-results-user-data h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #505F79;
}

.mentorias-results-video-wrapper {
  max-width: 433px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.mentorias-results-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mentorias-results-video-wrapper-player {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0F165459;
}

.mentorias-results-video-player {
  color: #012069;
  font-size: 12px;

  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background-color: #EBF1FF;
  opacity: 75%;
  border: 0;
  outline: dashed 2px #EBF1FF;
  outline-offset: 4px;

  position: relative;
}

.mentorias-results-video-player:hover {
  cursor: pointer;
  animation: rotate ease .3s forwards;
}

.mentorias-results-video-player:not(:hover) {
  animation: counter-rotate ease .3s forwards;
}

.mentorias-results-video-player .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  transition: .3s color;
}

.mentorias-results-video-player .icon i {
  user-select: none;
  pointer-events: none;
}

.mentorias-results-video-player:hover .icon {
  color: #3385ff;
  animation: counter-rotate ease .3s forwards;
}

.mentorias-results-video-player:not(:hover) .icon {
  animation: rotate ease .3s forwards;
}

.mentorias-results-video-player div {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mentorias-results-carousel-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.mentorias-results-carousel-buttons button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: solid 1px #040E20;

  display: flex;
  font-size: 14px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  transition: .3s border-color;
  color: #040E20;
}

.mentorias-results-carousel-buttons button:hover {
  cursor: pointer;
  border-color: #0067FF;
  color: #0067FF;
}

.mentorias-results-carousel-buttons button.slick-disabled {
  cursor: not-allowed;
  border-color: #42526E;
  color: #42526E;
  opacity: .8;
}

@media (max-width: 992px) {
  .mentorias-prova-title {
    text-align: left;
  }

  .mentorias-results-video-wrapper {
    max-width: 312px;
    border-radius: 12px;
  }

  .mentorias-results-video-wrapper img {
    object-fit: cover;
  }

  .mentorias-results-item {
    max-width: 650px;
  }
}

@media (max-width: 768px) {
  .mentorias-prova-social {
    gap: 48px;
  }

  .mentorias-prova-title {
    font-family: 'Margem-regular';
    font-weight: 400;
    font-size: 36px;
  }

  .mentorias-results-item {
    max-width: 400px;
    height: fit-content;
    padding: 24px 16px;
    flex-direction: column;
  }

  .mentorias-results-profile {
    flex: none;
    height: auto;
  }

  .mentorias-results-video-wrapper {
    max-width: none;
    border-radius: 8px;
    max-width: none;
    max-height: 312px;
    min-height: 312px;
  }

  .mentorias-results-video-wrapper img {
    width: auto;
  }
}

@media (max-width: 468px) {
  .mentorias-results-item {
    max-width: 328px;
  }
}