.palestrante-card {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: sans-serif;
}

.palestrante-card img {
  display: block;
  transition: opacity 0.3s ease;
}

.palestrante-card img.hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.palestrante-card:hover img.hover {
  opacity: 1;
  animation: bounce 1s infinite ease;
}

.palestrante-card:hover img.default {
  opacity: 0;
}

.info {
  width: 100%;
  text-align: center;
  color: white;
}

.info h3 {
  display: block;
  font-size: 32px;
  font-family: "Calimate-Book", sans-serif !important;
  letter-spacing: 0.05rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--color4);
  margin-top: 15px;
  margin-bottom: 8px;
}

.info span {
  display: block;
  font-family: "Calimate-Book", sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  width: 35ch;
  margin: 0 auto;
  color: var(--white-09);
}
/* Animação bounce */
@keyframes bounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.fancybox__content {
  background: var(--color2) !important;
}
