/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 8/04/2026, 11:35:19 AM
    Author     : kpesantez
*/

#div-ultnoticias .card.card-body {
    opacity: 0;
    margin-top: 25px;
    transition: all 0.6s ease;
}

/* izquierda */
#div-ultnoticias .card.card-body.left {
    transform: translateX(-30px);
}

/* derecha */
#div-ultnoticias .card.card-body.right {
    transform: translateX(30px);
}

/* cuando aparece */
#div-ultnoticias .card.card-body.visible {
    opacity: 1;
    transform: translateX(0);
    margin-top: 0;
}

/* EFECTO ESPEJO EN NOTICIAS (SIN CAMBIAR DISEÑO) */

#div-ultnoticias .card {
    position: relative;
    overflow: hidden;
}

/* capa de brillo */
#div-ultnoticias .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.4);
    transform: skewX(-25deg);
    pointer-events: none;
}

/* animación al hover */
#div-ultnoticias .card:hover::before {
    animation: shineNoticias 0.7s ease-in-out forwards;
}

/* animación */
@keyframes shineNoticias {
    from { left: -100%; }
    to { left: 120%; }
}