.elementor-kit-6{--e-global-color-primary:#F3F5F7;--e-global-color-secondary:#020817;--e-global-color-text:#F3F5F7;--e-global-color-accent:#0F172A;--e-global-color-4af0180:#64748B;--e-global-color-1a38296:#5E4A08;--e-global-typography-primary-font-family:"Montserrat";--e-global-typography-primary-font-size:60px;--e-global-typography-primary-font-weight:800;--e-global-typography-secondary-font-family:"Montserrat";--e-global-typography-secondary-font-size:36px;--e-global-typography-secondary-font-weight:700;--e-global-typography-text-font-family:"Montserrat";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Montserrat";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:500;--e-global-typography-fe42044-font-family:"Montserrat";--e-global-typography-fe42044-font-size:14px;background-color:#0D0F12;font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-size:var( --e-global-typography-text-font-size );font-weight:var( --e-global-typography-text-font-weight );}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{color:var( --e-global-color-text );}.elementor-kit-6 h2{color:var( --e-global-color-text );}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{font-family:var( --e-global-typography-fe42044-font-family ), Sans-serif;font-size:var( --e-global-typography-fe42044-font-size );}.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-6{font-size:var( --e-global-typography-text-font-size );}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{font-size:var( --e-global-typography-fe42044-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6{font-size:var( --e-global-typography-text-font-size );}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{font-size:var( --e-global-typography-fe42044-font-size );}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute; /* Pode mudar para relative se não quiser fixo */
  bottom: 20px; /* Distância do rodapé */
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, sans-serif;
  z-index: 9999;
}

/* Linha */
.scroll-indicator .line {
  display: block;
  width: 1px;
  height: 25px;
  background: rgba(255,255,255,0.6);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Seta */
.scroll-indicator .arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  animation: scrollArrow 2s ease-in-out infinite;
}

/* Texto */
.scroll-indicator .text {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  animation: scrollText 2s ease-in-out infinite;
}

/* Animações */
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.8); opacity: 0.5; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(4px); opacity: 1; }
}

@keyframes scrollText {
  0%, 100% { opacity: 0.5; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(2px); }
}/* End custom CSS */