/* ESTILOS PERSONALIZADOS PARA TODOS OS SWIPERS DO SITE */

/* Botões de navegação personalizados para todos os swipers 
Versão padrão 
*/
.swiper-button-prev,
.swiper-button-next {
  width: 30px !important;
  height: 30px !important;
  background-color: black;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: all 0.3s ease;
  filter: invert(1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: '' !important;
  width: 10px !important;
  height: 10px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

/* Botões de navegação personalizados para todos os swipers 
Versão Banner Principal
*/
#bannerPrincipal .swiper-button-prev,
#bannerPrincipal .swiper-button-next {
  width: 30px !important;
  height: 30px !important;
  background-color: rgba(255, 255, 255, 0.178);
  align-items: center;
  justify-content: center;
  display: flex;
  transition: all 0.3s ease;
}

#bannerPrincipal .swiper-button-prev::after,
#bannerPrincipal .swiper-button-next::after {
  content: '' !important;
  width: 10px !important;
  height: 10px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  filter: invert(0) !important;
}

.swiper-button-prev::after {
  background-image: url('https://qa-uploads.madnezz.com.br/d38b0c68407e44f8da8080eef592f234') !important;
  transform: rotate(180deg);
}

.swiper-button-next::after {
  background-image: url('https://qa-uploads.madnezz.com.br/d38b0c68407e44f8da8080eef592f234') !important;
  transform: rotate(0deg);
}



/* ========================================
   ESTILOS DO BANNER PRINCIPAL
   ======================================== */

.banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.banner-swiper {
  width: 100%;
  height: 100%;
}

.banner-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-swiper .swiper-slide img {
  width: 100%;
  height: 80dvh;
  object-fit: cover;
  display: block;
}

/* Paginação do banner */
.banner-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.banner-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 5px;
}

.banner-pagination .swiper-pagination-bullet-active {
  background: white;
}

.banner-pagination .swiper-pagination-bullet:hover {
  background-color: white;
}

.containerBanner {
  background-color: #f6f8fc;
  padding-bottom: 2rem;
}

/* ========================================
   ESTILOS DOS CARROSSÉIS SECUNDÁRIOS
   ======================================== */

/* LOGOS */
.logos .logo-item{
  height:130px;
  width: 100%;
  border-radius:3px;
  background:#fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logos .logo-item img{
  transition: all 0.3s ease;
}
.logos .logo-item img:hover{
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.logos .swiper{
  padding:0px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logos-swiper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SWIPER CUSTOMIZAÇÕES */
.swiper {
  width: 100%;
  height: auto;
}

.swiper-wrapper{
  height: auto !important;
}


/* Navegação dos carrosséis */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--brand);
  transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Paginação dos carrosséis */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
  transform: scale(1.2);
}

/* Carrosséis (sem "preview" do próximo slide no desktop) */
.now .swiper, .movies .swiper{
  padding:8px 0;
}

.now .swiper-button-prev, .movies .swiper-button-prev{
  left:8px;
}

.now .swiper-button-next, .movies .swiper-button-next{
  right:8px;
}

.now .card, .movies article{
  height:100%;
}


