/* Estilos para o esqueleto */
.skeleton-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.skeleton {
  background-color: #e0e0e0;
  background-image: linear-gradient(90deg, #e0e0e0 25%, #cfcfcf 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite ease-in-out;
  border-radius: 4px;
  margin: 10px 0;
}

/* Animação para o esqueleto */
@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-text {
  height: 20px;
  width: 80%;
}

.skeleton-image {
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 1;
}
