/* smooth page loading*/
.fade-in {
  opacity: 0;
  transform: translateY(1px);
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---end of animation---*/

.titulo-principal {
  margin-top: 1rem;
  font-weight: 200;
  text-align: center;
}

.swiper {
  /* height: 38vh; */
  height: 35vh;
}

.card-list {
  display: flex;
  flex-direction: row;
}

.card-item {
  height: 11em;
  width: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  background-color: rgb(255, 255, 255, 0.8);
  opacity: 0.9;
  border-radius: 10px;
  box-shadow: 1px 1px 5px rgba(9, 9, 9, 0.463);
  padding: .5em;
  margin: 1em;
  margin-bottom: 5px;
  cursor: pointer;
}

.clicked {
  background-color: #faebd7;

}

.card-image {
  height: 80%;
  width: auto;
}

.card-name {
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
  text-align: center;
  color: var(--gray-800);
}

.slider-wrapper {
  display: block;
  opacity: 1;
  overflow: hidden;
  max-width: 1200px;
  margin: 50px 0px 30px;
}

/* ocultar swiper com js*/
.slider-wrapper.active {
  display: none;
  opacity: 0;
  transition: opacity 3s ease-in-out;
}