.produto-card {
    transition: all 0.3s ease;
}

.produto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Skeleton Loading */
.skeleton {
    background-color: #e2e5e7;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0,
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.5) 60%,
        rgba(255, 255, 255, 0)
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skeleton-card {
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.skeleton-image {
    width: 100%;
    height: 180px;
}

.skeleton-title {
    height: 24px;
    margin: 12px 0;
    width: 80%;
}

.skeleton-text {
    height: 16px;
    margin: 8px 0;
    width: 60%;
}

.skeleton-button {
    height: 40px;
    margin-top: 20px;
    width: 100%;
    border-radius: 0.25rem;
} 