:root{--page-title-display:none;}/* Start custom CSS *//*espaçamento em textos*/
body.elementor-page-10 p:last-child {
margin-bottom: 0px !important;
}

/*Degradê suave em títulos*/
body.elementor-page-10 .degradeanimado {
  -webkit-animation: texto 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: texto 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(45deg, #fa4567, #4901fc, #fa4567, #4901fc);
  background-size: 200% 200%; /*Reduzi o tamanho do background para suavizar a transição*/
  animation: textura 8s ease-in-out infinite; /*Ajustei o tempo e a suavidade da animação*/
  transition: background 1.6s cubic-bezier(0.55, 0.1, 0.47, 0.94) 0s;
  transition: all .8s;
}

@-webkit-keyframes texto {
  0% {
    letter-spacing: -0.5em;
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes textura {
  0% {
    background-position: 0% 50%; /*Início suave*/
  }
  50% {
    background-position: 100% 50%; /*Meio da animação*/
  }
  100% {
    background-position: 0% 50%; /*Fim da animação voltando ao início*/
  }
}

/*Tirar scroll lateral*/
html, body {
width: 100vw;
max-width: 100vw;
overflow-x: hidden !important;
}

/*Remover Scroll Duplo*/
[data-elementor-type="wp-page"]{
    overflow: hidden;
}

[data-elementor-type="wp-post"]{
    overflow: hidden;
}

/*Cor Scrollbar*/
html, body {
max-width: 100%;
overflow-x: hidden;
}

::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #ffffff;
}

::-webkit-scrollbar-thumb {
-webkit-border-radius: 3px;
border-radius: 0px;
background: linear-gradient(150deg, #ffffff, #87ffff, #ffffff);
}

::-webkit-scrollbar-thumb:hover {
-webkit-border-radius: 3px;
border-radius: 0px;
background: linear-gradient(150deg, #ffffff, #87ffff, #ffffff);
}

/*Pontilhado sobre a LP*/
html::before{
    content:"";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(at 20% 80%, #fff 1px, transparent 0px);
    background-size: 3px 3px;
    pointer-events: none;
    z-index: 10;
    opacity: 0.015;
    mix-blend-mode: plus-lighter;
}/* End custom CSS */