/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 04 2025 | 20:14:23 */
/* Swiper Carousel */
.swiper {
  width: 100%;
  padding: 30px 0;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  background: #c6d5f1;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Empurra o botão para baixo */
  height: 420px;
  overflow: hidden; 
  text-align: center;
  margin-bottom: 45px;
  margin-top: 10px;
}

.swiper-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
  flex-shrink: 0; /* Impede que a imagem diminua */
}

.swiper-slide h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1E3A8A;
  margin: 10px 0 15px 0;
}

.swiper-slide p {
  font-size: 1rem;
  color: #444;
  text-align: justify;
  margin: 0 auto;
  max-width: 300px;
  line-height: 1.4;
  flex-grow: 1; /* Texto ocupa o espaço livre sem mover o botão */
}
@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 58, 138, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(30, 58, 138, 0.35);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(30, 58, 138, 0);
  }
}

.btn-slide {
  display: inline-block;
  margin-top: auto !important; /* mantém o botão no final */
  margin-bottom: 10px;
  padding: 10px 22px;
  background-color: #1E3A8A;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2); /* Mexendo */ /* Mexendo */
  text-align: center;
  flex-shrink: 0;
	
   /* ANIMAÇÃO */
  animation: pulsar 2s infinite ease-in-out;
  transition: all 0.3s ease;
}

.btn-slide:hover {
  background-color: #2e4fd4;
  box-shadow: 0 6px 15px rgba(30, 58, 138, 0.3); 
  transform: translateY(-2px);
    animation: none; /* opcional: pausa a animação no hover */
}

/* Responsividade */
@media (max-width: 1024px) {
  .swiper-slide {
    width: 33.33% !important;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .swiper-slide {
    width: 50% !important;
    height: 440px;
  }
}

@media (max-width: 480px) {
  .swiper-slide {
    width: 100% !important;
    height: auto;
  }
}


/* Swiper Pagination */
.swiper-pagination {
  text-align: center;
  margin-top: 15px;
  position: relative; /* garante que fique abaixo dos slides */
  bottom: 0;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(30, 58, 138, 0.3);
  opacity: 1;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  background: #1E3A8A;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(30, 58, 138, 0.3);
}