/* ==========================================================================
   TP - Banner Principal (carrossel full-width de imagens/videos)
   Depende de assets/tp-tokens.css (.tp-wrapper--full-width) e do Swiper
   carregado por snippets/swiper-cdn.liquid.
   ========================================================================== */

.tp-hero {
  width: 100%;

  .tp-wrapper--full-width {
    padding: 0;
    margin: 0;

    .swiper {
      width: 100%;

      .swiper-wrapper {

        .swiper-slide {
            height: auto;

            .tp-slide {
                width: 100%;

                img, video, picture {
                    width: 100%;
                    display: block;
                }

                picture img {
                    height: auto;
                }

                .video--mobile {
                    display: block;

                    @media screen and (min-width: 768px) {
                        display: none;
                    }
                }

                .video--desktop {
                    display: none;

                    @media screen and (min-width: 768px) {
                        display: block;
                    }
                }
            }
        }
      }
    }
  }
}
