.elementor-kit-13{--e-global-color-primary:#133A3D;--e-global-color-secondary:#918A83;--e-global-color-text:#5C5C5C;--e-global-color-accent:#F7F2ED;--e-global-color-0facb0c:#F7F2ED;--e-global-color-f4e073c:#F3F3F3;--e-global-color-9f6639b:#1D1D1B;--e-global-typography-primary-font-family:"Questrial";--e-global-typography-primary-font-size:47px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Questrial";--e-global-typography-secondary-font-size:19px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Nunito";--e-global-typography-text-font-size:15px;--e-global-typography-text-font-weight:500;--e-global-typography-accent-font-family:"Questrial";--e-global-typography-accent-font-size:15px;--e-global-typography-accent-font-weight:600;--e-global-typography-9958d48-font-family:"Questrial";--e-global-typography-9958d48-font-size:20px;--e-global-typography-9958d48-font-weight:500;--e-global-typography-9958d48-line-height:16px;--e-global-typography-a331aaf-font-family:"Questrial";--e-global-typography-a331aaf-font-size:19px;--e-global-typography-a331aaf-font-weight:500;--e-global-typography-53ea1c6-font-family:"Nunito";--e-global-typography-53ea1c6-font-size:16px;--e-global-typography-53ea1c6-font-weight:500;}.elementor-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{background-color:#F7F2ED;font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-size:var( --e-global-typography-accent-font-size );font-weight:var( --e-global-typography-accent-font-weight );color:var( --e-global-color-primary );border-radius:30px 30px 30px 30px;}.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){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-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{font-size:var( --e-global-typography-accent-font-size );}.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:38px;}.elementor-kit-13 button,.elementor-kit-13 input[type="button"],.elementor-kit-13 input[type="submit"],.elementor-kit-13 .elementor-button{font-size:var( --e-global-typography-accent-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1200px;}.e-con{--container-max-width:1200px;}}/* Start custom CSS *//* Evita scroll horizontal global (segurança) */
html, body { overflow-x: hidden; }

/* Wrapper do marquee */
.cg-marquee{
  position: relative;
  width: 100%;
  overflow: hidden;             /* segura o conteúdo animado */
  display: flex;
  gap: 0;                       /* sem gap entre as duas trilhas */
  background: transparent;      /* ajuste se quiser */
}

/* Trilhos que se movem */
.cg-track{
  display: flex;
  flex: 0 0 auto;               /* não quebrar linha */
  gap: 2rem;                    /* espaço entre itens */
  white-space: nowrap;
  will-change: transform;
  animation: cg-scroll var(--cg-duration, 30s) linear infinite;
}

/* Itens de texto */
.cg-item{
  display: inline-flex;
  align-items: center;
  padding: .9rem 1.2rem;
  font-weight: 700;
  letter-spacing: .18em;        /* reduza no mobile se precisar */
  color: #FFFFFF;
  /* estilo opcional de “tag”: */
  /* background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; */
}

/* Pausar no hover (opcional em desktop) */
.cg-marquee:hover .cg-track{
  animation-play-state: paused;
}

/* Animação: desliza um trilho inteiro para a esquerda */
@-webkit-keyframes cg-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes cg-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Mobile: deixa mais compacto para não “estourar” */
@media (max-width: 480px){
  .cg-track{ gap: 1rem; }
  .cg-item{ letter-spacing: .12em; font-size: .9rem; padding: .7rem 1rem; }
}/* End custom CSS */