@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.zap:hover {
  animation: pulse 0.6s infinite;
}

.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
  cursor: default;
}

.anima {
  transition: transform 0.2s ease-in-out;
}

.anima:hover {
  transform: scale(1.03);
}

/* Restante do seu estilo CSS */
.zap {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 1px 2px #888;
  z-index: 1000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

i {
  margin-top: 8px;
}

// `sm` applies to x-small devices (portrait phones, less than 576px)
@media (max-width: 575.98px) {
  #emailTopo {
    display: none;
  }
}

// `md` applies to small devices (landscape phones, less than 768px)
@media (max-width: 767.98px) {
  #emailTopo {
    display: none;
  }
}

// `lg` applies to medium devices (tablets, less than 992px)
@media (max-width: 991.98px) {
  ...;
}

// `xl` applies to large devices (desktops, less than 1200px)
@media (max-width: 1199.98px) {
  ...;
}

// `xxl` applies to x-large devices (large desktops, less than 1400px)
@media (max-width: 1399.98px) {
  ...;
}

.carousel-item {
  min-height: 400px;
}

.carousel-control-next-icon {
  background-image: url("https://cnjp-jus.com.br/img/seta-direta.svg") !important;
}

.carousel-control-prev-icon {
  background-image: url("https://cnjp-jus.com.br/img/seta-esquerda.svg") !important; 
}

.carousel-indicators > button {
  background-color: gray !important;
}

.rodape {
  background-color: rgb(35, 39, 43);
  margin-top: 30px; 
  color: rgb(209, 209, 209);
}

.rodapeLink{
  color: rgb(209, 209, 209) !important;
}