/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/
.caja-sombra{animation: moverSombra 15s infinite linear;}
 @keyframes moverSombra {
      0% {
        box-shadow: 0 0 40px red;
      }
      33% {
          box-shadow: 0 0 50px blue;
      }
    
      66% {
        box-shadow: 0 0 40px yellow;
      }
      100% {
          box-shadow: 0 0 40px red;
      }
}
.social-icons {display: flex;gap: 16px;align-items: center;}