.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: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-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;}}/* Start custom CSS */html, body{
    overflow-x: hidden !important; 
}


/* Estados iniciais */

.fade {
    opacity: 0;
    filter: blur(10px);
    transition: 1s all;
    transform: scale(0.95);
}

.left {
    opacity: 0;
    filter: blur(10px);
    transition: .5s all;
    transform: translate3d(-30px, 0, 0);
}

.right {
    opacity: 0;
    filter: blur(10px);
    transition: .5s all;
    transform: translate3d(30px, 0, 0);
}

.up {
    opacity: 0;
    filter: blur(10px);
    transition: .5s all;
    transform: translate3d(0, -30px, 0);
}

.bottom {
    opacity: 0;
    filter: blur(10px);
    transition: .5s all;
    transform: translate3d(0, 30px, 0);
}

.lista .elementor-icon-list-item {
    opacity: 0;
    filter: blur(10px);
    transition: 1.5s all;
    transform: translate3d(-30px, 0, 0);
}


/* Estado ativado */

.left.ativado,
.right.ativado,
.up.ativado,
.bottom.ativado,
.lista .elementor-icon-list-item.ativado {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
}

.fade.ativado {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}


/* Classe para aplicar no container principal do Elementor */

.particulas-bolinhas {
  position: relative;
  overflow: hidden;
  z-index: 0;
}


/* Pseudo-elemento que cria as bolinhas */

.particulas-bolinhas::before {
  content: "";
  position: fixed;
  /* cobre a tela toda */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle 2px, #C39B22 100%, transparent 0),
    radial-gradient(circle 3px, #C39B22 100%, transparent 0),
    radial-gradient(circle 1.5px, #C39B22 100%, transparent 0);
  background-repeat: repeat;
  background-size: 200px 200px, 300px 300px, 150px 150px;
  animation: mover 30s linear infinite;
  opacity: 0.7;
  /* ajuste a transparência */
  z-index: -1;
}


/* Animação para dar efeito de movimento */
@keyframes mover {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 500px 1000px, -800px 600px, 400px -500px;
  }
}/* End custom CSS */