/******* Do not edit this file *******
Code Snippets Manager
Saved: Feb 23 2026 | 15:09:14 */
@charset "UTF-8";
.logo-rotativo {
  width: 400px;
  /* Sintaxis: nombre duración función-tiempo retraso iteraciones */
  animation: rotacion 8s linear 1s 1;
  /* Asegura que el estado inicial sea respetado antes de la ejecución */
  animation-fill-mode: backwards;
}
@keyframes rotacion {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
