.ova_por_slide.por_element .ovapor-item {
  position: relative;
  overflow: hidden;
}

/* Mantém o texto preso na parte inferior */
.ova_por_slide.por_element .ovapor-item .content-item {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  top: auto;
  margin-left: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.4s;
  z-index: 3;
}

/* No hover, apenas sobe ligeiramente */
.ova_por_slide.por_element .ovapor-item:hover .content-item {
  bottom: 24px;
  top: auto;
}

.ova_por_slide.por_element .ovapor-item:hover > a:before {
  display: none;
}

.ova_por_slide.por_element .ovapor-item:hover > a:after {
  height: 100%;
}

.ova_por_slide.por_element .ovapor-item > a {
  display: block;
  position: relative;
  z-index: 1;
}

.ova_por_slide.por_element .ovapor-item > a:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #202b5d;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}

.ova_por_slide.por_element .ovapor-item > a:after {
  content: "";
  width: 100%;
  height: 55%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 0.88)
  );
  z-index: 1;
}

.ova_por_slide.por_element .ovapor-item .number-gallery {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 1px 15px;
  border-radius: 50px;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.ova_por_slide.por_element .ovapor-item .number-gallery span {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  display: inline-block;
  margin-left: 6px;
}

.ova_por_slide.por_element .ovapor-item .number-gallery svg {
  width: 18px;
}

/* Categoria / subtítulo */
.ova_por_slide.por_element .ovapor-item .content-item .category {
  margin-bottom: 4px;
}

.ova_por_slide.por_element .ovapor-item .content-item .category span,
.ova_por_slide.por_element .ovapor-item .content-item .category a {
  font-size: 14px;
  line-height: 1.25;
  color: #ddd;
}

/* Título */
.ova_por_slide.por_element .ovapor-item .content-item .title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.ova_por_slide.por_element .ovapor-item .content-item .title a {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Botão */
.ova_por_slide.por_element .ovapor-item .content-item .readmore {
  padding-top: 10px;
}

.ova_por_slide.por_element .ovapor-item .content-item .readmore a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}

.ova_por_slide.por_element .ovapor-item .content-item .readmore a svg {
  width: 22px;
  height: 22px;
  color: #404040;
}

.ova_por_slide.por_element .ovapor-item .content-item .readmore a:hover svg {
  color: #fff;
}

/* Swiper */
.ova_por_slide.por_element .swiper.swiper-loading .swiper-wrapper {
  opacity: 0;
  visibility: hidden;
}

.ova_por_slide.por_element .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Dots */
.ova_por_slide.por_element .button-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 62px;
}

.ova_por_slide.por_element .button-dots.swiper-pagination-bullets {
  width: 100% !important;
  left: 50% !important;
  transform: translate(0, -50%) !important;
}

.ova_por_slide.por_element .button-dots .swiper-pagination-bullet {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background-color: #d1d1d6;
  -webkit-backface-visibility: visible;
  transition: all 0.3s ease;
}

.ova_por_slide.por_element
  .button-dots
  .swiper-pagination-bullet.swiper-pagination-bullet-active,
.ova_por_slide.por_element
  .button-dots
  .swiper-pagination-bullet:hover {
  width: 12px;
  border-radius: 5px;
  opacity: 1;
  background-color: #ff3514;
}

/* Navegação */
.ova_por_slide.por_element .button-nav {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 40px rgba(6, 22, 58, 0.1);
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ova_por_slide.por_element .button-nav.button-prev {
  left: -25px;
}

.ova_por_slide.por_element .button-nav.button-next {
  right: -25px;
}

.ova_por_slide.por_element .button-nav:focus {
  outline: none;
}

.ova_por_slide.por_element .button-nav i {
  display: flex;
  font-size: 26px;
  color: #42516d;
  transition: all 0.3s ease;
}

.ova_por_slide.por_element .button-nav:hover i {
  color: #ff3514;
}

.ova_por_slide.por_element:hover .button-nav {
  visibility: visible;
  opacity: 1;
  transition-duration: 0.3s;
}

@media screen and (max-width: 768px) {
  .ova_por_slide.por_element .button-nav {
    display: none;
  }

  .ova_por_slide.por_element .swiper .swiper-wrapper .swiper-slide img {
    height: 260px;
  }

  .ova_por_slide.por_element .ovapor-item .content-item {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .ova_por_slide.por_element .ovapor-item .content-item .title,
  .ova_por_slide.por_element .ovapor-item .content-item .title a {
    font-size: 18px;
  }
}