.elementor-kit-7018{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-8c3cb39:#02010100;--e-global-color-51826d0:#F4B737;--e-global-color-128b0d0:#3E4095;--e-global-color-2557c89:#EDEDED;--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-7018 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){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@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 *//* previnir scroll lateral*/
html, body {
    max-width: 100%;
    overflow-x: hidden;
}


/*entrada esquerda*/

.entradaesquerda {
    opacity: 0;
    filter: blur(20px);
    transform: translateX(-300px) scale(0.8); /* Começa menor e desfocado */
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Easing suave */
}

.entradaesquerda.ativo {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1); /* Volta ao tamanho normal */
}

.entradadireita {
    opacity: 0;
    filter: blur(15px);
    transform: translateX(300px) scale(0.9) rotate(5deg); /* Leve rotação */
    transition: all 0.6s ease-out 0.2s; /* Delay de 0.2s */
}

.entradadireita.ativo {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1) rotate(0deg);
}

.entradacima {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-300px) scaleY(0.7); /* Efeito "achatado" */
    transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6); /* Easing elástico */
}

.entradacima.ativo {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scaleY(1);
}

.entradabaixo {
    opacity: 0;
    filter: blur(5px) drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
    transform: translateY(300px) scale(0.95);
    transition: all 0.5s ease-in;
}

.entradabaixo.ativo {
    opacity: 1;
    filter: blur(0) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transform: translateY(0) scale(1);
}


/*Estado de exibir*/
.exibir {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0px) translateX(0px) scale(1);
    transition: all 0.5s ease;
}

/* Quando sai da tela */
.ocultar {
    opacity: 0;
    transform: translateX(-50px);
}

/*exibir elementos no editor*/
.elementor-editor-active {
    .entradaesquerda {
        opacity: 1;
        transform: translateY(0px) translateX(0px) scale(1);
        transition: all 0.5s ease;
    }
}

/* Centraliza e limita a largura do conteúdo */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Imagens responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Tamanhos de texto com unidade rem */
html {
  font-size: 16px;
}

body {
  font-size: 1rem;
}

h1 {
  font-size: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 1.5rem;
  }
}/* End custom CSS */