.elementor-kit-6{--e-global-color-primary:#005A00;--e-global-color-secondary:#00AE22;--e-global-color-text:#333333;--e-global-color-accent:#AAC91E;--e-global-color-493882f:#F8F8F8;--e-global-color-e5f35d4:#003B00;--e-global-color-9765747:#FFFFFF;--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;font-family:"Roboto", Sans-serif;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{color:var( --e-global-color-e5f35d4 );font-family:"Roboto Slab", Sans-serif;font-size:48px;font-weight:700;}.elementor-kit-6 h2{color:var( --e-global-color-e5f35d4 );font-family:"Roboto Slab", Sans-serif;font-size:36px;font-weight:600;}.elementor-kit-6 h3{color:var( --e-global-color-e5f35d4 );font-family:"Roboto Slab", Sans-serif;font-size:28px;font-weight:600;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{color:#FFFFFF;}.elementor-kit-6 button:hover,.elementor-kit-6 button:focus,.elementor-kit-6 input[type="button"]:hover,.elementor-kit-6 input[type="button"]:focus,.elementor-kit-6 input[type="submit"]:hover,.elementor-kit-6 input[type="submit"]:focus,.elementor-kit-6 .elementor-button:hover,.elementor-kit-6 .elementor-button:focus{color:#FFFFFF;}.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 *//* ===== BOTÃO ANIMADO PADRÃO PARA TODO O SITE ===== */
:root {
    --btn-primary-color: #7CFC00;
    --btn-hover-color: #3dce32;
    --btn-text-color: var(--btn-primary-color);
}

/* ===== ESTRUTURA DO BOTÃO ===== */
.elementor-button-wrapper .elementor-button,
.elementor-button,
a.elementor-button,
button.elementor-button {
    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 24px !important;
    border: 2px solid transparent !important;
    font-size: 16px !important;
    background-color: transparent !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    color: var(--btn-text-color) !important;
    box-shadow: 0 0 0 2px var(--btn-primary-color) !important;
    cursor: pointer !important;
    overflow: hidden !important;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
    text-decoration: none !important;
    min-width: 140px !important;
}

/* ===== CONTENT WRAPPER - Layout Flex ===== */
.elementor-button .elementor-button-content-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    flex-direction: row-reverse !important;
    /* Ícone à direita do texto */
    position: relative !important;
    z-index: 10 !important;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* ===== TEXTO ===== */
.elementor-button .elementor-button-text {
    position: relative !important;
    z-index: 10 !important;
    white-space: nowrap !important;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

/* ===== ÍCONE DO ELEMENTOR ===== */
.elementor-button .elementor-button-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 20px !important;
    height: 20px !important;
    color: var(--btn-primary-color) !important;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.elementor-button .elementor-button-icon i,
.elementor-button .elementor-button-icon svg {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    color: inherit !important;
    fill: currentColor !important;
}



/* ===== HOVER EFFECTS ===== */
.elementor-button:hover {
    box-shadow: 0 0 0 8px transparent !important;
    color: var(--btn-hover-color) !important;
    border-radius: 99px !important;
    border: 2px solid transparent !important;
    background-color: rgba(125, 252, 0, 0.1) !important;
    /* Fundo sutil para manter forma visível */
}

/* Ícone sai pela direita */
.elementor-button:hover .elementor-button-icon {
    transform: translateX(50px) !important;
    opacity: 0 !important;
    color: var(--btn-hover-color) !important;
}

/* Texto move um pouco para direita */
.elementor-button:hover .elementor-button-text {
    transform: translateX(8px) !important;
}



/* ===== ACTIVE STATE ===== */
.elementor-button:active {
    transform: scale(0.95) !important;
    box-shadow: 0 0 0 4px var(--btn-primary-color) !important;
}

/* ===== SEM ÍCONE - Bullet à direita como fallback ===== */
.elementor-button:not(:has(.elementor-button-icon))::after {
    content: '•' !important;
    font-size: 22px !important;
    font-weight: bold !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--btn-primary-color) !important;
    z-index: 9 !important;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.elementor-button:not(:has(.elementor-button-icon)):hover::after {
    right: 0 !important;
    transform: translate(100%, -50%) !important;
    opacity: 0 !important;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .elementor-button {
        padding: 10px 20px !important;
        font-size: 14px !important;
        min-width: 120px !important;
    }

    .elementor-button .elementor-button-icon i,
    .elementor-button .elementor-button-icon svg {
        font-size: 14px !important;
        width: 14px !important;
        height: 14px !important;
    }
}

/* ===== RESET ELEMENTOR ===== */
.elementor-button.elementor-size-xs,
.elementor-button.elementor-size-sm,
.elementor-button.elementor-size-md,
.elementor-button.elementor-size-lg,
.elementor-button.elementor-size-xl {
    min-height: auto !important;
    line-height: normal !important;
}/* End custom CSS */