.elementor-kit-5{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--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;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1920px;}.e-con{--container-max-width:1920px;--container-default-padding-top:10px;--container-default-padding-right:10px;--container-default-padding-bottom:10px;--container-default-padding-left:10px;}.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);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1500px;}.e-con{--container-max-width:1500px;--container-default-padding-top:10px;--container-default-padding-right:10px;--container-default-padding-bottom:10px;--container-default-padding-left:10px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1500px;}.e-con{--container-max-width:1500px;}}/* Start custom CSS *//* ── Variáveis de design ─────────────────────────────────── */
:root {
  --ifa-cyan:      #00EAFF;
  --ifa-purple:    #8B79E8;
  --ifa-bg:        #05050A;
  --ifa-surface:   #0D0D17;
  --ifa-elevated:  #181822;
  --ifa-border:    rgba(255,255,255,0.07);
  --ifa-muted:     #838594;
  --ifa-text:      #E2E5EC;

  --ifa-glow-cyan:   0 0 24px rgba(0,234,255,0.25);
  --ifa-glow-purple: 0 0 24px rgba(139,121,232,0.25);
  --ifa-glow-lg:     0 0 60px rgba(0,234,255,0.15), 0 0 120px rgba(139,121,232,0.1);

  --ifa-gradient: linear-gradient(135deg, var(--ifa-purple), var(--ifa-cyan));
}

/* ── Reset & base ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

body,
.elementor-page {
  background-color: var(--ifa-bg) !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  color: var(--ifa-text) !important;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

::selection {
  background: rgba(0,234,255,0.2);
  color: var(--ifa-text);
}

/* ── Scrollbar customizada ───────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--ifa-bg); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--ifa-purple), var(--ifa-cyan));
  border-radius: 2px;
}

/* ── Barra de progresso de scroll ───────────────────────── */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: var(--ifa-gradient);
  z-index: 9999;
  animation: scroll-progress linear;
  animation-timeline: scroll();
}

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes float {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-14px); }
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0px) rotate(0deg);   }
  33%       { transform: translateY(-8px) rotate(1deg);  }
  66%       { transform: translateY(-4px) rotate(-1deg); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px currentColor;  }
  50%       { opacity: 0.6; box-shadow: 0 0 20px currentColor; }
}

@keyframes pulse-glow-cyan {
  0%, 100% { box-shadow: 0 0 10px rgba(0,234,255,0.3);  }
  50%       { box-shadow: 0 0 30px rgba(0,234,255,0.7);  }
}

@keyframes breathe {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.06); opacity: 0.8; }
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes gradient-shift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

@keyframes gradient-text-move {
  0%   { background-position: 0% center;   }
  100% { background-position: 200% center; }
}

@keyframes shimmer-sweep {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%)  skewX(-15deg); }
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes slide-in-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0);      }
}

@keyframes slide-in-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0);    }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% { opacity: 1; }
  20%, 24%, 55%                           { opacity: 0.4; }
}

@keyframes border-rotate {
  0%   { --angle: 0deg;   }
  100% { --angle: 360deg; }
}

@keyframes orb-drift {
  0%   { transform: translate(0px, 0px)   scale(1);   }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 10px) scale(0.97); }
  100% { transform: translate(0px, 0px)   scale(1);   }
}

@keyframes counter-pop {
  0%   { transform: scale(0.8); opacity: 0; }
  70%  { transform: scale(1.05);            }
  100% { transform: scale(1);   opacity: 1; }
}

@keyframes badge-in {
  from { opacity: 0; transform: scale(0.85) translateY(-8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

@keyframes scroll-progress {
  from { width: 0%;   }
  to   { width: 100%; }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1;   }
  50%       { opacity: 0.2; }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes card-border-glow {
  0%, 100% { border-color: rgba(0,234,255,0.15);  }
  50%       { border-color: rgba(0,234,255,0.45);  }
}

@keyframes whatsapp-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0);   }
  40%                      { transform: translateY(-8px); }
  60%                      { transform: translateY(-4px); }
}

/* ============================================================
   FUNDO GLOBAL — GRID + ORBS
   ============================================================ */

.elementor-section,
.e-con {
  position: relative;
}

/* Grade de fundo sutil no body */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,234,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,234,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================================================
   NAVBAR / HEADER
   ============================================================ */

/* Primeira section = navbar */
.elementor-section:first-of-type {
  background: rgba(5,5,10,0.75) !important;
  backdrop-filter: blur(20px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  transition: background 0.3s ease, box-shadow 0.3s ease !important;
}

.elementor-section:first-of-type.scrolled {
  box-shadow: 0 2px 40px rgba(0,0,0,0.5) !important;
}

/* Logo pulse dot */
.elementor-section:first-of-type .elementor-heading-title span[style*="border-radius:50%"] {
  animation: pulse-glow-cyan 2.5s ease-in-out infinite;
}

/* Nav links hover */
.elementor-nav-menu a {
  position: relative;
  transition: color 0.2s ease !important;
}
.elementor-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--ifa-gradient);
  transition: width 0.3s ease;
}
.elementor-nav-menu a:hover::after { width: 100%; }
.elementor-nav-menu a:hover        { color: var(--ifa-cyan) !important; }

/* ============================================================
   SEÇÃO HERO
   ============================================================ */

/* Badge "Growth Engineering Platform" */
.elementor-widget-html span[style*="border-radius:99px"] {
  animation: badge-in 0.8s cubic-bezier(0.16,1,0.3,1) both;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.elementor-widget-html span[style*="border-radius:99px"]:hover {
  border-color: rgba(0,234,255,0.3) !important;
  box-shadow: 0 0 16px rgba(0,234,255,0.1);
}

/* Dot piscante dentro do badge */
.elementor-widget-html span[style*="border-radius:99px"] span {
  animation: dot-blink 2s ease-in-out infinite;
}

/* H1 do hero — animação de entrada */
#hero001 .elementor-heading-title,
[data-id="hero001"] .elementor-heading-title {
  animation: slide-up 1s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

/* Gradiente animado no texto "É engenharia." */
.elementor-heading-title span[style*="background-clip:text"] {
  background-size: 200% auto !important;
  animation: gradient-text-move 4s linear infinite !important;
}

/* Subtítulo do hero */
#hero001 .elementor-text-editor,
[data-id="hero001"] .elementor-text-editor {
  animation: slide-up 1s cubic-bezier(0.16,1,0.3,1) 0.4s both;
}

/* Botões do hero */
#hero001 .elementor-widget-html:nth-child(4),
[data-id="hero_btns"] {
  animation: slide-up 1s cubic-bezier(0.16,1,0.3,1) 0.55s both;
}

/* Botão primário — efeito hover + glow */
a[style*="background:#7C3AED"],
a[style*="background: #7C3AED"] {
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
a[style*="background:#7C3AED"]::before,
a[style*="background: #7C3AED"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(139,121,232,0.4), rgba(0,234,255,0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}
a[style*="background:#7C3AED"]::after,
a[style*="background: #7C3AED"]::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-15deg);
  transition: none;
}
a[style*="background:#7C3AED"]:hover::before,
a[style*="background: #7C3AED"]:hover::before { opacity: 1; }
a[style*="background:#7C3AED"]:hover::after,
a[style*="background: #7C3AED"]:hover::after {
  animation: shimmer-sweep 0.6s ease forwards;
}
a[style*="background:#7C3AED"]:hover,
a[style*="background: #7C3AED"]:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 8px 32px rgba(139,121,232,0.5), 0 0 60px rgba(0,234,255,0.2) !important;
}

/* Botão secundário (border) */
a[style*="border:1px solid rgba(255,255,255,0.12)"] {
  transition: all 0.3s ease !important;
}
a[style*="border:1px solid rgba(255,255,255,0.12)"]:hover {
  border-color: rgba(0,234,255,0.4) !important;
  color: var(--ifa-cyan) !important;
  box-shadow: 0 0 20px rgba(0,234,255,0.1) !important;
  transform: translateY(-1px) !important;
}

/* Linha neon decorativa do hero */
#hero001 .elementor-divider-separator,
[data-id="hero001"] .elementor-divider-separator {
  background: linear-gradient(90deg, transparent, var(--ifa-cyan), transparent) !important;
  animation: line-grow 1.5s cubic-bezier(0.16,1,0.3,1) 0.8s both;
  transform-origin: center;
}

/* ============================================================
   CARDS GENÉRICOS (Problem, System, Differentials)
   ============================================================ */

/* Todos os divs de card com border-radius + border */
.elementor-widget-html div[style*="border-radius:12px"][style*="border:1px solid"] {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease !important;
  will-change: transform;
}

/* Efeito shimmer no hover dos cards */
.elementor-widget-html div[style*="border-radius:12px"][style*="border:1px solid"]::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0,234,255,0.06),
    rgba(139,121,232,0.04),
    transparent
  );
  transform: skewX(-15deg);
  pointer-events: none;
  z-index: 1;
  transition: none;
}

/* Linha inferior gradiente que aparece no hover */
.elementor-widget-html div[style*="border-radius:12px"][style*="border:1px solid"]::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--ifa-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.elementor-widget-html div[style*="border-radius:12px"][style*="border:1px solid"]:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0,234,255,0.3) !important;
  box-shadow:
    0 20px 40px rgba(0,0,0,0.5),
    0 0 30px rgba(0,234,255,0.1),
    inset 0 0 30px rgba(0,234,255,0.03) !important;
}
.elementor-widget-html div[style*="border-radius:12px"][style*="border:1px solid"]:hover::before {
  animation: shimmer-sweep 0.7s ease forwards;
}
.elementor-widget-html div[style*="border-radius:12px"][style*="border:1px solid"]:hover::after {
  transform: scaleX(1);
}

/* H3 dentro dos cards — destaque no hover */
.elementor-widget-html div[style*="border-radius:12px"]:hover h3 {
  color: var(--ifa-cyan) !important;
  transition: color 0.3s ease;
  text-shadow: 0 0 20px rgba(0,234,255,0.3);
}

/* Emoji dos cards — flutuação */
.elementor-widget-html div[style*="border-radius:12px"] span[style*="font-size:28px"],
.elementor-widget-html div[style*="border-radius:12px"] span[style*="font-size:22px"] {
  display: inline-block !important;
  transition: transform 0.4s ease;
}
.elementor-widget-html div[style*="border-radius:12px"]:hover span[style*="font-size:28px"],
.elementor-widget-html div[style*="border-radius:12px"]:hover span[style*="font-size:22px"] {
  transform: translateY(-4px) scale(1.15) !important;
}

/* ============================================================
   SEÇÃO PROBLEMA — badge de número animado
   ============================================================ */

/* Step numbers (01, 02, 03) */
.elementor-widget-html span[style*="font-family:monospace"][style*="color:#7C3AED"],
.elementor-widget-html span[style*="color:#7C3AED"][style*="font-weight:700"] {
  display: inline-block !important;
  animation: float-slow 4s ease-in-out infinite;
  box-shadow: 0 0 12px rgba(139,121,232,0.3);
}

/* ============================================================
   SEÇÃO SISTEMA — linha conectora
   ============================================================ */

#sys001 .elementor-column,
[data-id="sys001"] .elementor-column {
  animation: slide-up 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
#sys001 .elementor-column:nth-child(2),
[data-id="sys001"] .elementor-column:nth-child(2) { animation-delay: 0.15s; }
#sys001 .elementor-column:nth-child(3),
[data-id="sys001"] .elementor-column:nth-child(3) { animation-delay: 0.3s; }

/* ============================================================
   SEÇÃO RESULTADOS — Counter widget
   ============================================================ */

.elementor-counter-number-wrapper {
  background: linear-gradient(135deg, var(--ifa-purple), var(--ifa-cyan)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  background-size: 200% auto !important;
  animation: gradient-text-move 3s linear infinite !important;
  font-family: 'JetBrains Mono', monospace !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: block;
}

.elementor-counter-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--ifa-muted) !important;
  margin-top: 12px !important;
  transition: color 0.3s ease;
}

/* Card do counter — hover */
.elementor-widget-counter .elementor-widget-container {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease !important;
}
.elementor-widget-counter .elementor-widget-container:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5), var(--ifa-glow-lg) !important;
}
.elementor-widget-counter:hover .elementor-counter-title {
  color: rgba(226,229,236,0.7) !important;
}

/* Pop de entrada nos números */
.elementor-counter-number-wrapper {
  animation: counter-pop 0.6s cubic-bezier(0.16,1,0.3,1) both;
}

/* ============================================================
   SEÇÃO DIFERENCIAIS — grid 2×2
   ============================================================ */

/* Delay em cascata nas colunas */
#diff001 .elementor-column:nth-child(2) .elementor-widget-html { animation-delay: 0.08s; }
#diff001 .elementor-column:nth-child(3) .elementor-widget-html { animation-delay: 0.16s; }
#diff001 .elementor-column:nth-child(4) .elementor-widget-html { animation-delay: 0.24s; }

/* ============================================================
   PROVA SOCIAL — Marquee + Testimonial
   ============================================================ */

/* Container do marquee */
div[style*="overflow:hidden"] > div[style*="display:flex"][style*="animation:marquee"] {
  animation: marquee 22s linear infinite !important;
}

/* Fade nas bordas do marquee */
div[style*="overflow:hidden"]:has(div[style*="animation:marquee"]) {
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%) !important;
}

/* Pause no hover do marquee */
div[style*="overflow:hidden"]:hover > div[style*="animation:marquee"] {
  animation-play-state: paused !important;
}

/* Logo names hover */
div[style*="animation:marquee"] span[style*="color:rgba(161,161,170,0.4)"] {
  transition: color 0.3s ease, text-shadow 0.3s ease !important;
  cursor: default;
}
div[style*="animation:marquee"] span[style*="color:rgba(161,161,170,0.4)"]:hover {
  color: var(--ifa-cyan) !important;
  text-shadow: 0 0 20px rgba(0,234,255,0.5) !important;
}

/* Testimonial card */
.elementor-widget-testimonial .elementor-testimonial--layout-image_above .elementor-testimonial {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.elementor-widget-testimonial .elementor-testimonial--layout-image_above .elementor-testimonial:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0,234,255,0.08) !important;
}
.elementor-widget-testimonial .elementor-testimonial__content {
  color: rgba(226,229,236,0.8) !important;
  font-style: italic !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

/* Aspas decorativas */
.elementor-widget-testimonial .elementor-testimonial__content::before {
  content: '"';
  position: absolute;
  top: 12px; left: 16px;
  font-size: 80px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(0,234,255,0.06);
  pointer-events: none;
}

/* Estrelas */
.elementor-testimonial__rating .elementor-star {
  color: var(--ifa-cyan) !important;
  filter: drop-shadow(0 0 4px rgba(0,234,255,0.5));
}

/* ============================================================
   SEÇÃO CTA — Formulário flutuante
   ============================================================ */

/* Container do form — hover lift */
#cta001 .elementor-widget-html div[style*="border-radius:16px"],
[data-id="cta001"] .elementor-widget-html div[style*="border-radius:16px"] {
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease !important;
  animation: float-slow 7s ease-in-out infinite;
}
#cta001 .elementor-widget-html div[style*="border-radius:16px"]:hover,
[data-id="cta001"] .elementor-widget-html div[style*="border-radius:16px"]:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 32px 64px rgba(0,0,0,0.6),
    0 0 40px rgba(0,234,255,0.08),
    inset 0 0 40px rgba(139,121,232,0.04) !important;
  animation: none !important;
}

/* Input fields — focus glow */
#cta001 input,
[data-id="cta001"] input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}
#cta001 input:focus,
[data-id="cta001"] input:focus {
  border-color: rgba(0,234,255,0.5) !important;
  box-shadow: 0 0 0 3px rgba(0,234,255,0.08), 0 0 16px rgba(0,234,255,0.12) !important;
  background: rgba(0,234,255,0.03) !important;
  outline: none !important;
}
#cta001 input::placeholder,
[data-id="cta001"] input::placeholder {
  color: rgba(131,133,148,0.5) !important;
  transition: color 0.2s ease;
}
#cta001 input:focus::placeholder,
[data-id="cta001"] input:focus::placeholder {
  color: rgba(131,133,148,0.3) !important;
}

/* Botão de submit do form */
#cta001 button[type="submit"],
[data-id="cta001"] button[type="submit"] {
  position: relative !important;
  overflow: hidden !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  background: linear-gradient(135deg, var(--ifa-purple), #6B5CE7) !important;
}
#cta001 button[type="submit"]::before,
[data-id="cta001"] button[type="submit"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,121,232,0.3), rgba(0,234,255,0.2));
  opacity: 0;
  transition: opacity 0.3s;
}
#cta001 button[type="submit"]::after,
[data-id="cta001"] button[type="submit"]::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
}
#cta001 button[type="submit"]:hover,
[data-id="cta001"] button[type="submit"]:hover {
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 12px 40px rgba(139,121,232,0.5), 0 0 60px rgba(0,234,255,0.2) !important;
}
#cta001 button[type="submit"]:hover::before,
[data-id="cta001"] button[type="submit"]:hover::before { opacity: 1; }
#cta001 button[type="submit"]:hover::after,
[data-id="cta001"] button[type="submit"]:hover::after {
  animation: shimmer-sweep 0.6s ease forwards;
}
#cta001 button[type="submit"]:active,
[data-id="cta001"] button[type="submit"]:active {
  transform: translateY(0) scale(0.99) !important;
}

/* Mensagem de sucesso — pop in */
div#cta-success {
  animation: counter-pop 0.5s cubic-bezier(0.16,1,0.3,1) both !important;
}

/* H2 do CTA */
#cta001 .elementor-heading-title,
[data-id="cta001"] .elementor-heading-title {
  animation: slide-up 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

/* Orbs de fundo do CTA — drift animation */
#cta001::before,
[data-id="cta001"]::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,121,232,0.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: orb-drift 12s ease-in-out infinite;
  filter: blur(60px);
}

/* ============================================================
   FOOTER
   ============================================================ */

#footer001,
[data-id="footer001"] {
  position: relative;
}
#footer001::before,
[data-id="footer001"]::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,234,255,0.2), transparent);
}

/* Links do footer hover */
.elementor-icon-list-item a {
  transition: color 0.2s ease, padding-left 0.2s ease !important;
}
.elementor-icon-list-item a:hover {
  color: var(--ifa-cyan) !important;
  padding-left: 4px;
}

/* Logo no footer — dot pulse */
#footer001 .elementor-heading-title span[style*="border-radius:50%"],
[data-id="footer001"] .elementor-heading-title span[style*="border-radius:50%"] {
  animation: pulse-glow-cyan 2.5s ease-in-out infinite;
}

/* Ícones sociais hover */
a[aria-label="Instagram"],
a[aria-label="LinkedIn"] {
  transition: all 0.25s ease !important;
}
a[aria-label="Instagram"]:hover,
a[aria-label="LinkedIn"]:hover {
  border-color: var(--ifa-cyan) !important;
  color: var(--ifa-cyan) !important;
  box-shadow: 0 0 16px rgba(0,234,255,0.25) !important;
  transform: translateY(-2px) !important;
}

/* ============================================================
   BOTÃO FLUTUANTE — WhatsApp
   ============================================================ */

.ifa-whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  animation: float 4s ease-in-out infinite;
}
.ifa-whatsapp-float:hover {
  transform: translateY(-4px) scale(1.1) !important;
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  animation: none;
}

/* Pulse ring ao redor do WhatsApp */
.ifa-whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: pulse-glow-cyan 2s ease-in-out infinite;
  pointer-events: none;
}

/* ============================================================
   ELEMENTOS DECORATIVOS FLUTUANTES GLOBAIS
   ============================================================ */

/* Orbs de fundo em seções específicas — drift contínuo */
#hero001::after,
[data-id="hero001"]::after,
#sys001::after,
[data-id="sys001"]::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,121,232,0.05) 0%, transparent 70%);
  top: -100px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(80px);
  animation: orb-drift 15s ease-in-out infinite;
}

/* Orb secundário (ciano) em resultados */
#res001::after,
[data-id="res001"]::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,234,255,0.04) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  pointer-events: none;
  filter: blur(80px);
  animation: orb-drift 18s ease-in-out infinite reverse;
}

/* ============================================================
   LABELS / BADGES DE SEÇÃO (Diagnóstico, Metodologia, etc.)
   ============================================================ */

.elementor-heading-title[style*="color:#7C3AED"],
p.elementor-heading-title {
  letter-spacing: 0.15em !important;
  position: relative;
  display: inline-block !important;
}

/* Linha decorativa abaixo dos labels */
.elementor-widget:has(.elementor-heading-title[style*="color:#7C3AED"]) + .elementor-widget .elementor-heading-title {
  position: relative;
}

/* ============================================================
   DIVISOR NEON
   ============================================================ */

.elementor-widget-divider .elementor-divider-separator {
  background: linear-gradient(90deg, transparent, rgba(0,234,255,0.4), transparent) !important;
  border: none !important;
  height: 1px !important;
}

/* ============================================================
   REVEAL ANIMADO — scroll-driven (IntersectionObserver via CSS)
   Adicione a classe .ifa-reveal via JS ou use o Elementor Motion Effects
   ============================================================ */

/* Animação de entrada para widgets (use Elementor > Motion Effects > Entrance Animation = Fade In Up) */
.elementor-invisible {
  opacity: 0 !important;
  transform: translateY(30px) !important;
}
.elementor-motion-fx-parent {
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1) !important;
}

/* ============================================================
   RESPONSIVO — Mobile
   ============================================================ */

@media (max-width: 767px) {
  /* Hero h1 */
  #hero001 .elementor-heading-title,
  [data-id="hero001"] .elementor-heading-title {
    font-size: 2.4rem !important;
    line-height: 1.1 !important;
  }

  /* Botões hero em coluna */
  [data-id="hero_btns"] div[style*="display:flex"] {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Cards em coluna única */
  .elementor-column[class*="elementor-col-33"],
  .elementor-column[class*="elementor-col-50"] {
    width: 100% !important;
  }

  /* Desativar float no mobile (performance) */
  .elementor-widget-html div[style*="border-radius:16px"],
  .ifa-whatsapp-float {
    animation: none !important;
  }

  /* WhatsApp menor no mobile */
  .ifa-whatsapp-float {
    width: 44px !important; height: 44px !important;
    bottom: 16px !important; right: 16px !important;
  }

  /* Counter font size */
  .elementor-counter-number-wrapper {
    font-size: 56px !important;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  #hero001 .elementor-heading-title,
  [data-id="hero001"] .elementor-heading-title {
    font-size: 3.5rem !important;
  }
}

/* ============================================================
   UTILITÁRIOS EXTRAS
   ============================================================ */

/* Classe auxiliar que pode ser adicionada via Custom Attributes no Elementor */
.ifa-float      { animation: float       3s ease-in-out infinite; }
.ifa-float-slow { animation: float-slow  6s ease-in-out infinite; }
.ifa-breathe    { animation: breathe     4s ease-in-out infinite; }
.ifa-pulse-glow { animation: pulse-glow-cyan 2s ease-in-out infinite; }
.ifa-shimmer    { position: relative; overflow: hidden; }
.ifa-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,0.06) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: gradient-shift 2.5s linear infinite;
}

.ifa-gradient-text {
  background: var(--ifa-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-text-move 4s linear infinite;
}

.ifa-neon-border {
  border: 1px solid rgba(0,234,255,0.2) !important;
  box-shadow: 0 0 16px rgba(0,234,255,0.1), inset 0 0 16px rgba(0,234,255,0.02) !important;
}
.ifa-neon-border:hover {
  border-color: rgba(0,234,255,0.5) !important;
  box-shadow: 0 0 30px rgba(0,234,255,0.2), inset 0 0 30px rgba(0,234,255,0.04) !important;
}

/* ============================================================
   FIM DO CSS — Infinity Flow Ads
   ============================================================ *//* End custom CSS */