.elementor-kit-10{--e-global-color-primary:#2dff00;--e-global-color-secondary:#50ff03;--e-global-color-text:#fafafa;--e-global-color-accent:#00fc1c;--e-global-color-background:#000000;--e-global-color-backgroundAccent:#F2F2F2;--e-global-color-transparent:#00000000;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:24px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:16px;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1.5em;--e-global-typography-accent-font-family:"Poppins";--e-global-typography-accent-font-size:16px;--e-global-typography-accent-font-weight:400;--e-global-typography-accent-line-height:1.5em;--e-global-typography-heading-xl-font-family:"Poppins";--e-global-typography-heading-xl-font-size:56px;--e-global-typography-heading-xl-font-weight:600;--e-global-typography-heading-xl-line-height:1.2em;--e-global-typography-heading-l-font-family:"Poppins";--e-global-typography-heading-l-font-size:48px;--e-global-typography-heading-l-font-weight:600;--e-global-typography-heading-l-line-height:1.2em;--e-global-typography-heading-m-font-family:"Poppins";--e-global-typography-heading-m-font-size:40px;--e-global-typography-heading-m-font-weight:600;--e-global-typography-heading-m-line-height:1.2em;--e-global-typography-heading-s-font-family:"Poppins";--e-global-typography-heading-s-font-size:18px;--e-global-typography-heading-s-font-weight:500;--e-global-typography-body-s-font-family:"Poppins";--e-global-typography-body-s-font-size:14px;--e-global-typography-body-s-font-weight:400;--e-global-typography-body-s-line-height:1.5em;background-color:var( --e-global-color-background );}.elementor-kit-10 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-kit-10{--e-global-typography-primary-font-size:22px;--e-global-typography-secondary-font-size:18px;--e-global-typography-heading-xl-font-size:48px;--e-global-typography-heading-l-font-size:40px;--e-global-typography-heading-m-font-size:32px;--e-global-typography-heading-s-font-size:18px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-10{--e-global-typography-primary-font-size:18px;--e-global-typography-secondary-font-size:16px;--e-global-typography-heading-xl-font-size:40px;--e-global-typography-heading-l-font-size:32px;--e-global-typography-heading-m-font-size:32px;--e-global-typography-heading-s-font-size:16px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ----------------------------- */
/*  ANIMAÇÕES GLOBAIS DO SITE   */
/* ----------------------------- */

/* Fade suave na entrada de TODAS as seções */
section, .elementor-section {
    animation: fadeInUp 0.9s ease forwards;
    opacity: 0;
}

/* Animações de fade */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ----------------------------- */
/*  HOVER PREMIUM EM TODOS OS CARDS  */
/* ----------------------------- */

.elementor-widget-container,
.elementor-column,
.elementor-image,
.elementor-post,
.elementor-post__thumbnail img,
.elementor-icon-box-wrapper,
.elementor-widget {
    transition: all 0.35s ease !important;
}

/* Leve elevação em hover */
.elementor-widget-container:hover,
.elementor-column:hover,
.elementor-image:hover,
.elementor-post:hover,
.elementor-icon-box-wrapper:hover {
    transform: translateY(-6px);
    filter: brightness(1.15);
}

/* ----------------------------- */
/*   EFEITO DE BRILHO NEON SUTIL  */
/* ----------------------------- */

body *:hover {
    transition: all .2s ease-out;
}

a:hover,
button:hover,
.elementor-button:hover {
    box-shadow: 0 0 10px #00ff66, 0 0 20px #00ff66;
}

/* ----------------------------- */
/*   BOTÕES MAIS VIVOS           */
/* ----------------------------- */

.elementor-button {
    transition: all .3s ease !important;
    transform: translateZ(0);
    background-size: 200% auto;
    background-image: linear-gradient(
        90deg,
        #cfcfcf 0%,
        #ffffff 50%,
        #b2b2b2 100%
    ) !important;
    border: 1px solid #00ff66 !important;
}

.elementor-button:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 20px #00ff66;
}

/* ----------------------------- */
/*   MICRO VIBRAÇÃO PREMIUM EM ÍCONES   */
/* ----------------------------- */

i, svg, .elementor-icon {
    transition: transform .3s ease;
}

i:hover, svg:hover, .elementor-icon:hover {
    transform: scale(1.15) rotate(2deg);
}

/* ----------------------------- */
/*   IMAGENS COM “AR DE VIDA”    */
/* ----------------------------- */

img {
    transition: all .45s ease;
}

img:hover {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.05);
}

/* ----------------------------- */
/*   LINHAS E ELEMENTOS COM PULSO LEVE  */
/* ----------------------------- */

@keyframes pulseNeon {
    0% { box-shadow: 0 0 4px #00ff66; }
    50% { box-shadow: 0 0 12px #00ff66; }
    100% { box-shadow: 0 0 4px #00ff66; }
}

a.button, .elementor-button {
    animation: pulseNeon 3.5s infinite ease-in-out;
}

/* ----------------------------- */
/*   PARALLAX LEVE EM BACKGROUNDS   */
/* ----------------------------- */

.elementor-section {
    background-attachment: fixed;
}/* End custom CSS */