/* Fondo base del skeleton */
.skeleton {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    border-radius: 8px;
    background: #e6e6e6;
}

/* Efecto Shimmer */
.skeleton::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.8) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: shimmer 1.5s infinite;
    opacity: 0.6;
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* Ocultar capa desktop al cargar */
.apagar_skeletron_destokp {
    position: absolute;
    top: 0;
    opacity: 0;
    visibility: hidden;
}

/* Texto */
.skeleton-text {
    height: 14px;
    margin-bottom: 10px;
}

/* Título */
.skeleton-title {
    height: 22px;
    width: 80%;
    margin: 0 auto 15px auto;
}

/* Línea más corta */
.skeleton-short {
    width: 60%;
}

/* Imagen */
.skeleton-img {
    width: 100%;
    height: 190px;
    border-radius: 12px;
}

/* Badge */
.skeleton-sm {
    width: 120px;
    height: 16px;
    margin: 0 auto;
    border-radius: 20px;
}

/* Botón */
.skeleton-btn {
    width: 160px;
    height: 38px;
    border-radius: 25px;
}

/* Card */
.skeleton-card {
    padding: 18px;
    border-radius: 12px;
}