.gallery {
  width: 100%;
}

/* Slider principal */
.swiper.main {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* responsivo */
  border-radius: 12px;
  overflow: hidden;
  background: #111;
}

.swiper.main .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper.main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* preenche mantendo proporção */
  display: block;
}

/* Thumbs */
.swiper.thumbs {
  margin-top: 12px;
  padding-bottom: 8px;
}

.swiper.thumbs .swiper-slide {
  height: 84px;
  opacity: 0.55;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
}

.swiper.thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid #2b6cff;
  outline-offset: 2px;
}

.swiper.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-wrapper {
    padding: 6px;
}

/* Ajustes mobile */
@media (max-width: 640px) {
    .swiper.main {
    aspect-ratio: 4 / 3;
  }

  .swiper.thumbs .swiper-slide {
    height: 64px;
  }
}

.ats-aprendiz-sucesso-imgs {
    margin: 20px 0;
    overflow: hidden;
}

    .ats-aprendiz-sucesso-imgs img {
        width: 100%;
        height: auto;
        border-radius: 18px;
    }

.ats-container--paginaInterna.ats-container-aprendiz-sucesso * {
    font-size: 18px;
    font-style: normal;
}

.ats-container--paginaInterna.ats-container-aprendiz-sucesso .ats-govbr-page-titulo {
    margin: 64px 0 38px 0;
}

    .ats-container--paginaInterna.ats-container-aprendiz-sucesso .ats-govbr-page-titulo h1 {
        font-size: 24px;
    }

.ats-container--paginaInterna.ats-container-aprendiz-sucesso ul li {
    list-style-type: disc;
    margin: 0 0 0 24px;
}

.ats-mt {
    margin-top: 20px;
}

.ats-timeline-ano-icone {
    width: 40px;
    height: 40px;
    border: 2px solid #4354a6;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    background-color: #ffffff;
}

.ats-timeline-ano-texto {
    font-size: 16.8px;
    font-style: normal;
    font-weight: 600;
}

.ats-timeline-ano {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: max-content;
    z-index: 4;
    position: relative;
}

.ats-timeline-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    background: var(--Pure-pure, #FFF);
    box-shadow: 0 1px 6px 0 rgba(51, 51, 51, 0.16);
    margin-top: 16px;
    min-height: 180px;
}

.ats-timeline {
    display: flex;
    flex-direction: row;
    gap: 80px;
    overflow: hidden;
}

.ats-timeline-item {
    position: relative;
    width: 100%;
    padding: 0 8px 8px 8px;
}

.ats-timeline-line {
    content: "";
    background: #4354a6;
    width: calc(100% + 80px);
    height: 3px;
    position: absolute;
    top: 19px;
    left: 12px;
    z-index: 0;
}

@media (max-width: 993px) {
    .ats-timeline {
        flex-direction: column;
    }

        .ats-timeline .ats-timeline-line {
            width: 3px;
            height: calc(100% + 80px);
            left: 28px;
        }

    .ats-timeline-card {
        z-index: 5;
        position: relative;
    }

    .ats-timeline-ano {
        background: white;
    }
}