.elementor-609 .elementor-element.elementor-element-ec06969{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:5px;--padding-bottom:5px;--padding-left:5px;--padding-right:5px;}.elementor-609 .elementor-element.elementor-element-ec06969:not(.elementor-motion-effects-element-type-background), .elementor-609 .elementor-element.elementor-element-ec06969 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FEC201;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-609 .elementor-element.elementor-element-6f24434{text-align:center;}.elementor-609 .elementor-element.elementor-element-6f24434 .elementor-heading-title{font-family:"Roboto", Sans-serif;font-size:14px;font-weight:600;font-style:italic;color:#FFFFFF;}.elementor-609 .elementor-element.elementor-element-6ee7803{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:15px;--padding-bottom:15px;--padding-left:0px;--padding-right:0px;--z-index:2;}.elementor-609 .elementor-element.elementor-element-6ee7803:not(.elementor-motion-effects-element-type-background), .elementor-609 .elementor-element.elementor-element-6ee7803 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #000000 0%, #49F22900 100%);}.elementor-609 .elementor-element.elementor-element-b8d791f{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-609 .elementor-element.elementor-element-6ee7803{--padding-top:15px;--padding-bottom:15px;--padding-left:15px;--padding-right:15px;}}/* Start custom CSS for container, class: .elementor-element-ec06969 *//* 1. Definimos la animación */
@keyframes palpitar {
  0% {
    transform: scale(1); /* Tamaño original */
  }
  50% {
    transform: scale(1.1); /* Se agranda un 10% */
  }
  100% {
    transform: scale(1); /* Vuelve al tamaño original */
  }
}

/* 2. Aplicamos la animación a la clase */
.texto-animado {
  /* Nombre | Duración | Estilo | Repetición */
  animation: palpitar 2s infinite ease-in-out;
  
  /* Importante: Para que transform funcione en etiquetas como <span> o <a> */
  display: inline-block; 
}/* End custom CSS */