.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-section.elementor-section-boxed > .elementor-container{max-width:1380px;}.e-con{--container-max-width:1380px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.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:640px;}.e-con{--container-max-width:640px;}}/* Start custom CSS *//* Container que anima */
.logo-marquee {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 80s linear infinite;
}

/* Pausa o loop ao passar o mouse em qualquer lugar das logos */
.logo-marquee:hover {
  animation-play-state: paused;
}

/* Cada item */
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  margin-right: 1px;
}

/* Estado padrão das logos */
.logo-item img {
  height: 50px;
  width: auto;
  max-width: none;
  filter: saturate(50%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

/* Hover: volta a cor e dá um leve destaque */
.logo-item img:hover {
  filter: saturate(100%);
  opacity: 1;
  transform: scale(1.05);
}

/* Loop infinito */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Mobile (sem hover, só otimização visual) */
@media (max-width: 768px) {
  .logo-item img {
    height: 36px;
    opacity: 0.8;
  }

  .logo-marquee {
    animation-duration: 100s;
  }
}



/* Fade lateral */
.logo-fade {
  position: relative;
  overflow: hidden;
}

/* Camadas de fade */
.logo-fade::before,
.logo-fade::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* Fade esquerda */
.logo-fade::before {
  left: 0;
  background: linear-gradient(to right, #121212 0%, transparent 100%);
}

/* Fade direita */
.logo-fade::after {
  right: 0;
  background: linear-gradient(to left, #121212 0%, transparent 100%);
}

/* Mobile */
@media (max-width: 768px) {
  .logo-fade::before,
  .logo-fade::after {
    width: 40px;
  }
}

/* Direção contrária */
.logo-marquee.reverse {
  animation-direction: reverse;
}/* End custom CSS */