/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

/* Estilo formulario de contacto */

/* Aplica solo a los campos de nombre y teléfono */
.formulario-footer input[name*="nombre"],
.formulario-footer input[name*="telefono"] {
    height: 61px !important;
    line-height: 61px;
    box-sizing: border-box;
}

/* Estilo texto destacado */

span.texto-destacado {
    color: #cb6d62;
}

/* TEXTO ILUMINADO */

/* Estado base de todos los encabezados */
.texto-iluminado .elementor-heading-title {
  color: #242A4D;
  opacity: 1;
}

/* Primer encabezado */
.elementor-element-2892dac .elementor-heading-title {
  animation: iluminar 12s infinite;
  animation-delay: 0s;
}

/* Segundo encabezado */
.elementor-element-f2d2767 .elementor-heading-title {
  animation: iluminar 12s infinite;
  animation-delay: 2s;
}

/* Tercer encabezado */
.elementor-element-05a8725 .elementor-heading-title {
  animation: iluminar 12s infinite;
  animation-delay: 4s;
}

/* Animación */
@keyframes iluminar {
  0%, 25%, 100% {
    color: #242A4D; /* Color base */
  }
  10%, 20% {
    color: #CB6D62; /* Color iluminado */
  }
}


