.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-color-323f81c:#324EAF;--e-global-color-f783a10:#FDEC92;--e-global-color-cd44ebf:#FFF6D2;--e-global-color-c8579eb:#B9A9F7;--e-global-color-5354506:#121212;--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;background-color:#1D1D1D;}.elementor-kit-5 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);}@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 *//* Definição das cores padrão (Light Mode) */
:root {
    --bg-color: #ffffff;
    --text-color: #333333;
    --accent-color: #61ce70; /* Cor de destaque do seu site */
}

/* Definição das cores para o Dark Mode */
body.dark-mode {
    --bg-color: #121212;
    --text-color: #f1f1f1;
    --accent-color: #bb86fc;
}

/* Aplicação das variáveis nos elementos globais */
body {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Garante que os títulos e textos sigam a variável */
body.dark-mode h1, body.dark-mode h2, body.dark-mode h3, body.dark-mode p, body.dark-mode span {
    color: var(--text-color) !important;
}/* End custom CSS */