.novoDestaqueHome {
  width: 100%;
  grid-column: span 6;
  grid-row: span 5;
}
.novoDestaqueHome .novoDestaqueHomeContainer {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.novoDestaqueHome .splide,
.novoDestaqueHome .splide__track,
.novoDestaqueHome .splide__list,
.novoDestaqueHome .splide__slide {
  height: 100%;
}
.novoDestaqueHome .splide__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.novoDestaqueHome .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.novoDestaqueHome .splide__slide .videoPlay-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 26px;
    height: 28px;
    z-index: 1;
}
.novoDestaqueHome .splide__slide  .videoPlay-icon > img {
    width: 100%!important;
    height: 100%!important;
}
.novoDestaqueHome .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent);
  z-index: 2;
}
.novoDestaqueHome .content {
  position: relative;
  z-index: 3;
  padding: 20px 20px 40px;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}
.novoDestaqueHome .gzw-tag {
  display: inline-flex;
  font-family: "OpenSans-Regular";
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
}
.novoDestaqueHome .gzw-dot {
  width: 10px;
  height: 10px;
  border: 3px solid #006eb1;
  border-radius: 50%;
  margin-right: 8px;
}
.novoDestaqueHome .title {
  font-family: "OpenSans-Bold";
  font-size: 1.35rem;
  letter-spacing: -0.48px;
  margin: 0 0 10px;
}
.novoDestaqueHome .subtitle {
  font-family: "OpenSans-Regular";
  font-size: 0.85rem;
  color: #ddd;
  margin: 0;
}
.novoDestaqueHome .splide__pagination {
    padding: 13px;
    display: flex;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
}
.novoDestaqueHome .splide__pagination > li {
    width: 30%;
}
.novoDestaqueHome .splide__pagination > li .splide__pagination__page {
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    opacity: 1;
    transition: background 0.3s;
}
.novoDestaqueHome .splide__pagination__page.is-active {
    background: #1985E6!important;
    transform: scale(1);
}
@media (max-width: 768px) {
  .novoDestaqueHome {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .novoDestaqueHome .novoDestaqueHomeContainer {
    height: 320px;
  }
  .novoDestaqueHome .title {
    font-size: 1.1rem;
  }
  .novoDestaqueHome .subtitle {
    font-size: 0.75rem;
  }
  .novoDestaqueHome .content {
    padding: 15px 15px 30px;
  }
}
@media (max-width: 320px) {
  .novoDestaqueHome .splide__pagination {
    display: none !important;
  }
}
