/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* Contenedor a pantalla completa */
#nago-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff; /* Color de fondo */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: bold;
  z-index: 9999;
}

/* Estilo de las letras */
#nago-loader span {
  display: inline-block;
  animation: bounceDown 2s infinite;
}

/* Retraso por letra */
#nago-loader span:nth-child(1) { animation-delay: 0s; }
#nago-loader span:nth-child(2) { animation-delay: 0.2s; }
#nago-loader span:nth-child(3) { animation-delay: 0.4s; }
#nago-loader span:nth-child(4) { animation-delay: 0.6s; }

/* Animación */
@keyframes bounceDown {
  0%   { transform: translateY(0); opacity: 1; }
  25%  { transform: translateY(10px); opacity: 0.8; }
  50%  { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}