.elementor-kit-13{--e-global-color-primary:#BEBEBE;--e-global-color-secondary:#2C2C2C;--e-global-color-text:#FFFFFF;--e-global-color-accent:#8AAF8E;--e-global-color-background:#1A1A1A;--e-global-color-backgroundAccent:#333333;--e-global-color-transparent:#00000000;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:24px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Lora";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Lora";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:400;--e-global-typography-accent-line-height:1.5em;--e-global-typography-heading-xl-font-family:"Poppins";--e-global-typography-heading-xl-font-size:56px;--e-global-typography-heading-xl-font-weight:600;--e-global-typography-heading-xl-line-height:1.2em;--e-global-typography-heading-l-font-family:"Poppins";--e-global-typography-heading-l-font-size:48px;--e-global-typography-heading-l-font-weight:600;--e-global-typography-heading-l-line-height:1.2em;--e-global-typography-heading-m-font-family:"Poppins";--e-global-typography-heading-m-font-size:40px;--e-global-typography-heading-m-font-weight:600;--e-global-typography-heading-m-line-height:1.2em;--e-global-typography-heading-s-font-family:"Poppins";--e-global-typography-heading-s-font-size:18px;--e-global-typography-heading-s-font-weight:500;--e-global-typography-body-s-font-family:"Lora";--e-global-typography-body-s-font-size:14px;--e-global-typography-body-s-font-weight:400;--e-global-typography-body-s-line-height:1.5em;background-color:var( --e-global-color-background );}.elementor-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{background-color:var( --e-global-color-backgroundAccent );color:var( --e-global-color-text );border-style:double;border-color:var( --e-global-color-accent );}.elementor-kit-13 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);}.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-kit-13{--e-global-typography-primary-font-size:22px;--e-global-typography-secondary-font-size:18px;--e-global-typography-heading-xl-font-size:48px;--e-global-typography-heading-l-font-size:40px;--e-global-typography-heading-m-font-size:32px;--e-global-typography-heading-s-font-size:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-13{--e-global-typography-primary-font-size:18px;--e-global-typography-secondary-font-size:16px;--e-global-typography-heading-xl-font-size:40px;--e-global-typography-heading-l-font-size:32px;--e-global-typography-heading-m-font-size:32px;--e-global-typography-heading-s-font-size:16px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* =======================================================
   SISTEMA GLOBAL DE MOVIMENTOS PARA TODO O SITE
   MRCA USINAGENS DE PRECISÃO
======================================================= */

/* Ajuste geral */
* {
  scroll-behavior: smooth;
  transition: all 0.4s ease;
}

/* =======================================================
   MOVIMENTO GLOBAL AO ENTRAR NA TELA
======================================================= */

/* Todos os widgets ganham animação */
.elementor-widget,
.elementor-column,
.elementor-section {
  opacity: 0;
  transform: translateY(25px);
  animation: mrca-reveal 1.1s ease forwards;
}

/* Delay automático entre elementos */
.elementor-widget:nth-child(1) { animation-delay: 0.1s; }
.elementor-widget:nth-child(2) { animation-delay: 0.2s; }
.elementor-widget:nth-child(3) { animation-delay: 0.3s; }
.elementor-widget:nth-child(4) { animation-delay: 0.4s; }
.elementor-widget:nth-child(5) { animation-delay: 0.5s; }

/* animação principal */
@keyframes mrca-reveal {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =======================================================
   PARALLAX SUAVE PARA TODAS AS SEÇÕES
======================================================= */

.elementor-section {
  position: relative;
  will-change: transform;
  animation: mrca-parallax-section 12s ease-in-out infinite alternate;
}

@keyframes mrca-parallax-section {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* =======================================================
   MOVIMENTO EM COLUNAS E CARDS
======================================================= */

.elementor-column {
  animation: mrca-column-float 10s ease-in-out infinite alternate;
}

@keyframes mrca-column-float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* =======================================================
   IMAGENS COM MOVIMENTO DE RESPIRAÇÃO
======================================================= */

.elementor-widget-image img {
  animation: mrca-image-breath 6s ease-in-out infinite;
}

@keyframes mrca-image-breath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* =======================================================
   TEXTO COM EFEITO DE SLIDE + FADE
======================================================= */

.elementor-heading-title,
.elementor-widget-text-editor {
  animation: mrca-text-slide 1.4s ease forwards;
  opacity: 0;
}

@keyframes mrca-text-slide {
  from { opacity: 0; transform: translateX(-25px); }
  to { opacity: 1; transform: translateX(0); }
}

/* =======================================================
   DIVISORES, LINHAS E SEPARADORES EM MOVIMENTO
======================================================= */

.elementor-divider-separator {
  position: relative;
  overflow: hidden;
}

.elementor-divider-separator::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 140px;
  height: 4px;
  background: radial-gradient(circle, #fff, rgba(0,255,102,0.3));
  animation: mrca-divider-move 4s linear infinite;
}

@keyframes mrca-divider-move {
  0%   { left: -20%; }
  100% { left: 120%; }
}

/* =======================================================
   EFEITO DE ILUMINAÇÃO SCROLL PARA TODAS AS SEÇÕES
======================================================= */

.elementor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(0,255,102,0.06),
    transparent,
    rgba(0,255,102,0.04)
  );
  mix-blend-mode: screen;
  opacity: 0.45;
  animation: mrca-light-sweep 13s ease-in-out infinite;
}

@keyframes mrca-light-sweep {
  0% { transform: translateX(-40%) skewX(-8deg); }
  100% { transform: translateX(40%) skewX(-8deg); }
}

/* =======================================================
   HOVER GLOBAL — QUASE TODOS OS ELEMENTOS
======================================================= */

.elementor-column:hover,
.elementor-widget-container:hover,
.elementor-image:hover img {
  transform: translateY(-6px) scale(1.02);
  filter: brightness(1.1);
}/* End custom CSS */