/*
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 : 10/04/2026, 09:45:13 AM
    Author     : kpesantez
*/
/* ANIMACION BASE */
.animar {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

/* CUANDO SE ACTIVA */
.animar.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE (animación más ligera en móvil) */
@media (max-width: 768px) {
    .animar {
        transform: translateY(15px);
        transition: all 0.5s ease;
    }
}
