.skeleton-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bgDivFenceGray);
}

.skeleton-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 25%,
        var(--bgDivFenceGray) 50%,
        transparent 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.skeleton-text {
    position: relative;
    z-index: 2;
    font-size: 5rem;
    opacity: 0.3;
    text-align: center;
}

/* Animação que desloca o fundo */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}
