/* Mantendo a base original - só melhorando o necessário */

.bloco-videos {
  margin-top: 50px!important;
}

.swiper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 45vh;
     margin: 3rem auto 3rem auto; /* margem top menor, margem bottom ok */
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: #FFD700 2px solid;
    box-shadow: 0 10px 30px rgba(250, 162, 128, 0.342);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.iframe-container {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* 🔥 NOVAS SETAS - Versão Simplificada e Elegante */
.swiper-button-next,
.swiper-button-prev {
    color: #FF3E4D !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.842) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.9) !important;
    transform: scale(1.1) !important;
}

/* CONTAINER PRINCIPAL DA PAGINAÇÃO */
.swiper-pagination {
    position: absolute !important;
    bottom: 10px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 10 !important;
  }
  
  /* BOLINHAS INDIVIDUAIS */
  .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: white !important;
    opacity: 0.6 !important;
    margin: 0 !important; /* Remove margens padrão */
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    display: block !important;
  }
  
  /* BOLINHA ATIVA */
  .swiper-pagination-bullet-active {
    background: #FF3E4D !important;
    opacity: 1 !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 10px rgba(255, 62, 77, 0.7) !important;
  }
  
.titulo-infantil {
  text-align: center;
  margin-bottom: 2rem;
  z-index: 1;
  position: relative;
}

.titulo-magico {
  font-family: 'Chaloops', cursive;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #FFD700;
  text-shadow: 2px 2px 0px #FF6B6B, 4px 4px 0px #4ECDC4;
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 0 auto;
  display: inline-block;
  padding: 0.5em 1.2em;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 40px;
  border: 3px dashed orange;
  transform: rotate(-2deg);
  animation: flutuar 3s ease-in-out infinite alternate;
}

.destaque-divertido {
  color: #FE3C50;
  display: inline-block;
  animation: pular 0.8s ease infinite alternate;
}


  
  /* RESPONSIVIDADE */
  @media (max-width: 768px) {
    .swiper-pagination {
      bottom: 5px !important;
    }
    .swiper-pagination-bullet {
      width: 10px !important;
      height: 10px !important;
    }

 
  }
  
  /* Animações */
  @keyframes flutuar {
    0% { transform: translateY(0) rotate(-2deg); }
    100% { transform: translateY(-10px) rotate(2deg); }
  }
  
  @keyframes pular {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
  }
  
  @keyframes girar {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes aparecer {
    0%, 100% { opacity: 0.5; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
  }