.mw-chamadaCarrosselFullCategory {
  grid-column: span 4;
  grid-row: span 2;
  position: relative;
}
.indicacao-topo{
  position: absolute;
  top: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 20;
}
.indicacao-topo h4{
  text-transform: uppercase;
  padding: 10px;
  font-family: "NunitoSans-ExtraBold";
  font-size: 12px;
  background-color: #202020;
  border-radius: 13px;
  color: white;

}
.mw-chamadaCarrosselFullCategory .chamadaCarrosselFullCategory-wrapper{
  width: 100%;
  height: 100%;
}
.mw-chamadaCarrosselFullCategory .chamadaCarrosselFullCategory-wrapper .mw-chamadaCarrosselFullCategory-img {
  height: 380px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.mw-chamadaCarrosselFullCategory .chamadaCarrosselFullCategory-wrapper .mw-chamadaCarrosselFullCategory-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.mw-chamadaCarrosselFullCategory .chamadaCarrosselFullCategory-wrapper .mw-chamadaCarrosselFullCategory-img::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #000, transparent);
  content: '';
  border-radius: 20px;
}
.mw-chamadaCarrosselFullCategory-text {
  position: absolute;
  height: 135px;
  padding: 20px 30px;
  border-radius: 0 0 20px 20px;
  border-top-right-radius: 0px;
  bottom: 0;
  width: 100%;
  right: 0px;
}
.mw-chamadaCarrosselFullCategory-text h2 {
  font-family: "NunitoSans-Black";
  font-size: 20px;
  line-height: 24px;
  color: #fff;
  margin-top: 10px;
}
.mw-chamadaCarrosselFullCategory-text h3 {
  font-family: "NunitoSans-ExtraBold";
  font-size: 13px;
  line-height: 15px;
  color: #fff;
}
.chamadaCarrosselFullCategory .splide__arrow {
  display: none;
}
.chamadaCarrosselFullCategory .splide__pagination__page.is-active {
  background-color: white;
  transform: scale(1);
  opacity: 1;
}
.chamadaCarrosselFullCategory .splide__pagination__page {
  opacity: 0.5;
  width: 20px;
  height: 5px;
  border-radius: 20px;
  background-color: #fff;
}
.chamadaCarrosselFullCategory .splide__pagination {
  right: unset;
  margin: 20px 15px;
}
@media (max-width:1024px){
  .mw-chamadaCarrosselFullCategory {
    grid-column: span 2;
  }
  .mw-chamadaCarrosselFullCategory-text h2 {
    font-size: 18px;
    line-height: 22px;
    margin-top: unset;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .chamadaCarrosselFullCategory .splide__pagination {
    margin: unset;
    left: 14px;
    bottom: 15px;
}
}