.elementor-kit-6{--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-6 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 */<style>
  .botao-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }

  .botao-animado {
    display: inline-block;
    padding: 15px 60px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #09229E, #005EFF, #09229E);
    background-size: 400% 400%;
    animation: gradientMove 6s ease infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .botao-animado:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }

  @keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  
 /* botao area do cliente */ 
.botao-seg {
  display: inline-block;
}

.botao-texto-borda {
  position: relative;
  display: inline-block;
  padding: 12px 40px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: transparent;
  border: 2px solid transparent;
  border-radius: 50px; /* arredondado tipo pill */

  /* Gradiente azul aplicado no texto e na borda */
  background: linear-gradient(90deg, #09229E, #005EFF, #09229E);
  background-size: 200% auto;
  background-clip: text, border-box;
  -webkit-background-clip: text, border-box;
  -webkit-text-fill-color: transparent;

  animation: efeitoGradient 3s linear infinite;
}

/* Bordas animadas via border-image */
.botao-texto-borda {
  border-image: linear-gradient(90deg, #09229E, #005EFF, #09229E) 1;
}

@keyframes efeitoGradient {
  to {
    background-position: 200% center;
  }
}
 /*final botao area do cliente*/ 
  
  
  
/* texto degrade nome infra*/  
.texto-degrade {
  display: inline-block; /* necessário para o efeito */
  background: linear-gradient(270deg, #ffffff, #005EFF, #ffffff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
  font-weight: bold;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} 
/*final */  

.feature {
  display: inline-block; /* necessário para o degradê funcionar */
  background: linear-gradient(270deg, #09229E, #005EFF, #09229E);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
  font-weight: inherit; /* respeita o peso definido no Elementor */
  margin-right: 15px; /* opcional, para espaçamento entre spans */
}

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


/* div cta azul*/

.div-cta {
  width: 100%;
  padding: 40px;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;

  /* Degradê animado */
  background: linear-gradient(270deg, #09229E, #005EFF, #09229E);
  background-size: 400% 400%;

  animation: moverDegrade 6s ease infinite;
}

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


/*final div cta*/



/* botao cta segundario*/
.assine2nd {
  display: inline-block;
  padding: 20px 60px;
  border-radius: 50px;
  background: #fff; /* fundo branco */
  cursor: pointer;
  text-align: center;
}

.assine2nd a {
  display: inline-block;
  font-size: 25px;
  font-weight: bold;
  text-decoration: none;

  /* texto com gradiente animado */
  background-image: linear-gradient(90deg, #09229E, #005EFF, #09229E);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: textoDegrade 3s linear infinite;
}

@keyframes textoDegrade {
  to {
    background-position: 200% center;
  }
}
/* botao cta 2 final*/


  
 /*header botao*/
/* Botão Toggle */
.menu-central-cliente summary.e-n-accordion-item-title {
    background-color: #4169E1; /* Azul Royal */
    color: #fff;               /* Texto branco */
    font-weight: bold;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
}

/* Dropdown flutuante */
.menu-central-cliente .e-n-accordion-item > .elementor-element {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    border-radius: 6px;
    display: none; /* escondido por padrão */
    z-index: 999;
}

/* Mostrar conteúdo quando aberto */
.menu-central-cliente .e-n-accordion-item[open] > .elementor-element {
    display: block;
}

/* Remove ícones */
.menu-central-cliente summary.e-n-accordion-item-title::after {
    content: none;
}




  
  
 </style>/* End custom CSS */