diff --git a/servicios.html b/servicios.html index 60c656b..d503c0c 100644 --- a/servicios.html +++ b/servicios.html @@ -11,6 +11,15 @@ @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .no-scrollbar::-webkit-scrollbar { display: none; } .card-hover:hover { transform: translateY(-2px); transition: all 0.2s; box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05); } + + /* ANIMACIÓN DE TEMBLOR (SHAKE) PARA TARJETAS BLOQUEADAS */ + .shake { animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both; } + @keyframes shake { + 10%, 90% { transform: translate3d(-2px, 0, 0); } + 20%, 80% { transform: translate3d(4px, 0, 0); } + 30%, 50%, 70% { transform: translate3d(-6px, 0, 0); } + 40%, 60% { transform: translate3d(6px, 0, 0); } + } @@ -240,8 +249,9 @@ -