.t4-section-inner.container:has(.module-slideshow){
    padding: 0px;
}

.module-slideshow .jf-slideshow__track{
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

/* slides sempre colados ao track */
.module-slideshow .jf-slideshow__slide{
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: jfSlideFade 30s infinite;
  z-index: 0;
}

/* IMPORTANTE: usa nth-of-type (figures) */
.module-slideshow .jf-slideshow__slide:nth-of-type(1){ animation-delay: 0s; }
.module-slideshow .jf-slideshow__slide:nth-of-type(2){ animation-delay: 6s; }
.module-slideshow .jf-slideshow__slide:nth-of-type(3){ animation-delay: 12s; }
.module-slideshow .jf-slideshow__slide:nth-of-type(4){ animation-delay: 18s; }
.module-slideshow .jf-slideshow__slide:nth-of-type(5){ animation-delay: 24s; }

.module-slideshow .jf-slideshow__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

/* Texto por cima, sempre dentro do track */
.module-slideshow .jf-slideshow__content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  pointer-events: none;
}

/* Tipografia (responsiva e segura em XS) */
.module-slideshow .jf-slideshow__eyebrow{
  margin: 0 0 .35rem;
  font-weight: 700;
  font-size: clamp(.90rem, 1.4vw, 1.05rem);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.70), 0 0 16px rgba(0,0,0,.55);
}

.module-slideshow .jf-slideshow__title{
  margin: 0 0 .45rem;
  font-weight: 900;
  line-height: 1.08;
  font-size: clamp(1.45rem, 4.2vw, 3.0rem);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.70), 0 0 16px rgba(0,0,0,.55);
}

.module-slideshow .jf-slideshow__subtitle{
  margin: 0;
  font-weight: 700;
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.70), 0 0 16px rgba(0,0,0,.55);
  display: inline-block;
  padding-bottom: .2rem;
  border-bottom: 2px solid rgba(255,255,255,.85);
}

/* 5 slides, 6s cada, com fade suave */
@keyframes jfSlideFade{
  0%   { opacity: 0; }
  6%   { opacity: 1; }
  20%  { opacity: 1; }
  26%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce){
  .module-slideshow .jf-slideshow__slide{
    animation: none;
    opacity: 0;
  }
  .module-slideshow .jf-slideshow__slide:nth-of-type(1){
    opacity: 1;
  }
}

/* XS: evita “texto fora da imagem” por altura pequena */
@media (max-width: 575.98px){
  .module-slideshow .jf-slideshow__track{
    height: 400px;
  }

  .module-slideshow .jf-slideshow__content-inner{
    max-width: 92%;
    background: rgba(0,0,0,0.22);
  }
}

/* container Titan (se precisares) */
@media (max-width: 1400px){
  .t4-section-inner.container:has(.module-slideshow){
    padding-left: 0;
    padding-right: 0;
  }
}

