.elementor-kit-4{--e-global-color-primary:#032B6B;--e-global-color-secondary:#09182A;--e-global-color-text:#7A7A7A;--e-global-color-accent:#0038A8;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-family:"Poppins", Sans-serif;}.elementor-kit-4 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-4.woocommerce{--ehc-button-border-top-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-top-right-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-right-radius:var(--ehc-button-border-radius-sharp);}.elementor-kit-4.woocommerce-cart{--ehc-button-border-top-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-top-right-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-right-radius:var(--ehc-button-border-radius-sharp);}.elementor-kit-4.woocommerce-checkout{--ehc-button-border-top-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-top-right-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-right-radius:var(--ehc-button-border-radius-sharp);}.elementor-kit-4.woocommerce-account{--ehc-button-border-top-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-top-right-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-right-radius:var(--ehc-button-border-radius-sharp);}.elementor-kit-4 .woocommerce ul.products li.product .button{--ehc-button-border-top-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-top-right-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-left-radius:var(--ehc-button-border-radius-sharp);--ehc-button-border-bottom-right-radius:var(--ehc-button-border-radius-sharp);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}:root { --Titulos:#000b80; --Blanco:#ffffff; }
/* Start custom CSS *//* =====================================================
   SISTEMA GLOBAL DE EFECTOS ANIMADOS PARA TEXTO
   Compatible con Elementor, WordPress y cualquier web

   Uso:
   <span class="fx fx-gradient">texto destacado</span>
   ===================================================== */


/* =====================================================
   VARIABLES GLOBALES
   Puedes cambiar estos colores una sola vez
   ===================================================== */

:root {
  --fx-color-1: #00c6ff;
  --fx-color-2: #7c3aed;
  --fx-color-3: #ff2d75;

  --fx-dark: #0f172a;
  --fx-light: #ffffff;

  --fx-speed-fast: 0.8s;
  --fx-speed-normal: 3s;
  --fx-speed-slow: 5s;
}


/* =====================================================
   CLASE BASE
   Siempre úsala junto con otra clase:
   class="fx fx-gradient"
   ===================================================== */

.fx {
  position: relative;
  display: inline-block;
  font-weight: 800;
  line-height: 1.1;
  z-index: 1;
  transition:
    transform 0.3s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease,
    text-shadow 0.3s ease;
}


/* =====================================================
   1. DEGRADADO ANIMADO
   Ideal para palabras clave en títulos principales
   ===================================================== */

.fx-gradient {
  background: linear-gradient(
    90deg,
    var(--fx-color-1),
    var(--fx-color-2),
    var(--fx-color-3)
  );
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: fxGradientMove var(--fx-speed-normal) infinite linear;
}


/* =====================================================
   2. DEGRADADO SUAVE PREMIUM
   Más elegante y menos intenso
   ===================================================== */

.fx-gradient-soft {
  background: linear-gradient(
    90deg,
    #38bdf8,
    #818cf8,
    #c084fc
  );
  background-size: 250%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: fxGradientMove var(--fx-speed-slow) infinite ease;
}


/* =====================================================
   3. SUBRAYADO ANIMADO
   Ideal para destacar servicios o frases informativas
   ===================================================== */

.fx-underline {
  color: var(--fx-color-1);
}

.fx-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  animation: fxUnderline 0.8s ease forwards;
}


/* =====================================================
   4. SUBRAYADO CENTRADO
   Más limpio para títulos centrados
   ===================================================== */

.fx-underline-center {
  color: var(--fx-color-1);
}

.fx-underline-center::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.12em;
  width: 75%;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  animation: fxUnderlineCenter 0.8s ease forwards;
}


/* =====================================================
   5. MARCADOR SUAVE
   Ideal para fondos claros
   ===================================================== */

.fx-marker {
  color: var(--fx-dark);
  padding: 0 0.08em;
}

.fx-marker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.04em;
  width: 100%;
  height: 0.35em;
  background: rgba(0, 198, 255, 0.24);
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: fxMarker 0.8s ease forwards;
}


/* =====================================================
   6. MARCADOR DEGRADADO
   Versión más moderna del marcador
   ===================================================== */

.fx-marker-gradient {
  color: var(--fx-dark);
  padding: 0 0.08em;
}

.fx-marker-gradient::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.04em;
  width: 100%;
  height: 0.36em;
  background: linear-gradient(
    90deg,
    rgba(0, 198, 255, 0.28),
    rgba(124, 58, 237, 0.24),
    rgba(255, 45, 117, 0.22)
  );
  border-radius: 999px;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: fxMarker 0.8s ease forwards;
}


/* =====================================================
   7. GLOW / BRILLO NEÓN
   Ideal para fondos oscuros
   ===================================================== */

.fx-glow {
  color: var(--fx-color-1);
  text-shadow:
    0 0 8px rgba(0, 198, 255, 0.55),
    0 0 18px rgba(0, 198, 255, 0.35);
  animation: fxGlow 2.4s ease-in-out infinite;
}


/* =====================================================
   8. GLOW ROSADO / MORADO
   Ideal para banners modernos
   ===================================================== */

.fx-glow-pink {
  color: #ff2d75;
  text-shadow:
    0 0 8px rgba(255, 45, 117, 0.55),
    0 0 18px rgba(124, 58, 237, 0.4);
  animation: fxGlowPink 2.4s ease-in-out infinite;
}


/* =====================================================
   9. PÍLDORA / BADGE
   Ideal para promociones o etiquetas
   ===================================================== */

.fx-pill {
  color: var(--fx-light);
  padding: 0.08em 0.42em;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--fx-color-1),
    var(--fx-color-2)
  );
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.28);
  animation: fxPop 0.55s ease both;
}


/* =====================================================
   10. PÍLDORA OSCURA
   Buena para fondos claros y secciones minimalistas
   ===================================================== */

.fx-pill-dark {
  color: #ffffff;
  padding: 0.08em 0.42em;
  border-radius: 999px;
  background: #0f172a;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  animation: fxPop 0.55s ease both;
}


/* =====================================================
   11. REVEAL / ENTRADA SUAVE
   Ideal para títulos completos
   ===================================================== */

.fx-reveal {
  animation: fxReveal 0.8s ease both;
}


/* =====================================================
   12. FADE UP
   Entrada más simple y elegante
   ===================================================== */

.fx-fade-up {
  animation: fxFadeUp 0.8s ease both;
}


/* =====================================================
   13. ZOOM SUAVE
   Ideal para llamadas de atención
   ===================================================== */

.fx-zoom {
  animation: fxZoom 1.8s ease-in-out infinite;
}


/* =====================================================
   14. LÍNEA LUMINOSA
   Ideal para fondos oscuros
   ===================================================== */

.fx-lightline {
  color: var(--fx-light);
}

.fx-lightline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.12em;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--fx-color-1),
    transparent
  );
  box-shadow: 0 0 14px rgba(0, 198, 255, 0.75);
  animation: fxLightLine 1.6s ease-in-out infinite;
}


/* =====================================================
   15. STROKE / TEXTO CON BORDE
   Ideal para títulos grandes
   ===================================================== */

.fx-stroke {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fx-color-1);
  text-stroke: 1.5px var(--fx-color-1);
  animation: fxStrokeGlow 2.8s ease-in-out infinite;
}


/* =====================================================
   16. SOMBRA ELEGANTE
   Mejora profundidad y legibilidad
   ===================================================== */

.fx-shadow {
  color: var(--fx-dark);
  text-shadow:
    0 4px 12px rgba(15, 23, 42, 0.18),
    0 12px 28px rgba(15, 23, 42, 0.12);
}


/* =====================================================
   17. SLIDE IN
   Texto entra desde abajo
   ===================================================== */

.fx-slide-in {
  animation: fxSlideIn 0.75s ease both;
}


/* =====================================================
   18. FLOAT
   Movimiento suave flotante
   ===================================================== */

.fx-float {
  animation: fxFloat 2.6s ease-in-out infinite;
}


/* =====================================================
   EFECTOS HOVER GENERALES
   ===================================================== */

.fx:hover {
  transform: translateY(-2px);
}

.fx-gradient:hover,
.fx-gradient-soft:hover,
.fx-underline:hover,
.fx-underline-center:hover,
.fx-glow:hover,
.fx-glow-pink:hover,
.fx-lightline:hover,
.fx-stroke:hover {
  filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.4));
}

.fx-pill:hover,
.fx-pill-dark:hover {
  box-shadow: 0 10px 30px rgba(0, 198, 255, 0.38);
}


/* =====================================================
   ANIMACIONES
   ===================================================== */

@keyframes fxGradientMove {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 300%;
  }
}

@keyframes fxUnderline {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes fxUnderlineCenter {
  from {
    transform: translateX(-50%) scaleX(0);
  }

  to {
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes fxMarker {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes fxGlow {
  0% {
    text-shadow:
      0 0 8px rgba(0, 198, 255, 0.45),
      0 0 16px rgba(0, 198, 255, 0.25);
  }

  50% {
    text-shadow:
      0 0 12px rgba(0, 198, 255, 0.85),
      0 0 26px rgba(124, 58, 237, 0.45);
  }

  100% {
    text-shadow:
      0 0 8px rgba(0, 198, 255, 0.45),
      0 0 16px rgba(0, 198, 255, 0.25);
  }
}

@keyframes fxGlowPink {
  0% {
    text-shadow:
      0 0 8px rgba(255, 45, 117, 0.45),
      0 0 16px rgba(124, 58, 237, 0.25);
  }

  50% {
    text-shadow:
      0 0 12px rgba(255, 45, 117, 0.85),
      0 0 26px rgba(124, 58, 237, 0.55);
  }

  100% {
    text-shadow:
      0 0 8px rgba(255, 45, 117, 0.45),
      0 0 16px rgba(124, 58, 237, 0.25);
  }
}

@keyframes fxPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes fxReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fxFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fxZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes fxLightLine {
  0% {
    opacity: 0.35;
    transform: scaleX(0.75);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }

  100% {
    opacity: 0.35;
    transform: scaleX(0.75);
  }
}

@keyframes fxStrokeGlow {
  0% {
    -webkit-text-stroke-color: var(--fx-color-1);
    filter: drop-shadow(0 0 4px rgba(0, 198, 255, 0.25));
  }

  50% {
    -webkit-text-stroke-color: var(--fx-color-3);
    filter: drop-shadow(0 0 10px rgba(255, 45, 117, 0.35));
  }

  100% {
    -webkit-text-stroke-color: var(--fx-color-1);
    filter: drop-shadow(0 0 4px rgba(0, 198, 255, 0.25));
  }
}

@keyframes fxSlideIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fxFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }

  100% {
    transform: translateY(0);
  }
}


/* =====================================================
   ACCESIBILIDAD
   Reduce animaciones si el usuario lo tiene configurado
   ===================================================== */

@media (prefers-reduced-motion: reduce) {
  .fx,
  .fx::before,
  .fx::after {
    animation: none !important;
    transition: none !important;
  }
}


/* =====================================================
   RESPONSIVE
   Ajustes para móvil
   ===================================================== */

@media (max-width: 767px) {
  .fx-pill,
  .fx-pill-dark {
    padding: 0.06em 0.3em;
  }

  .fx-underline::after,
  .fx-underline-center::after {
    height: 2px;
  }
}/* End custom CSS */