/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */




/*Menu Responsivo*/
.menu-popup li {
    border-bottom: 1px solid #282729
}
.menu-popup a.elementor-item {
    padding: 24px 0 !important;
}

/*Seletor Lingua*/
.elementor-shortcode .wpml-ls-legacy-dropdown,
.elementor-shortcode .wpml-ls-legacy-dropdown *,
.elementor-shortcode .wpml-ls-legacy-dropdown ul,
.elementor-shortcode .wpml-ls-legacy-dropdown li,
.elementor-shortcode .wpml-ls-legacy-dropdown a {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.elementor-shortcode .wpml-ls-legacy-dropdown {
    width: 50px !important;
    position: relative !important;
}

.elementor-shortcode .wpml-ls-legacy-dropdown ul.wpml-ls-sub-menu {
    margin: 0 !important;
    padding-top: 2px !important; /* Reduzido de 10px para 2px para colar a caixinha */
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
}

.elementor-shortcode .wpml-ls-legacy-dropdown ul {
    margin: 12px 0 0 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.elementor-shortcode .wpml-ls-legacy-dropdown a {
    color: #FFFFFF !important;
    padding: 0 0 0 8px !important; /* Reduzido o espaçamento interno das palavras */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.elementor-shortcode .wpml-ls-legacy-dropdown .wpml-ls-native {
    color: #FFFFFF !important;
}

.elementor-shortcode .wpml-ls-legacy-dropdown a.js-wpml-ls-item-toggle::after {
    border-top-color: #FFFFFF !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-40%) !important;
    margin: 0 !important;
}


/*Bg Half Radial */
.bg-radial {
    position: absolute;
    top: -50%;
    width: 67%;
}
@media (max-width:676px) {
.bg-radial {
    position: absolute;
    top: -50%;
    width: 100%;
}
	
}


/*Header*/
.header-navigation img.custom-logo, 
.elementor-sticky--active img {
    transition: width 0.4s ease-in-out;
}
.elementor-sticky--effects img {
    width: 120px !important;
}

/*BG Opacity*/
.bg-opacity {
    background-color: rgba(0, 0, 0, 0.7) !important;
    background-blend-mode: overlay;
}

/*Blur Effect*/
.blur-effect {
backdrop-filter: blur(12px);
}

/*Img Floating*/
.img-floating {
    animation: xFloat 8s ease-in-out infinite, yFloat 6s ease-in-out infinite;
    will-change: transform;
    display: inline-block;
}
@keyframes xFloat {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(9px); }
}
@keyframes yFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.img-floating1 {
    animation: xFloat1 4s ease-in-out infinite, yFloat 4s ease-in-out infinite;
    will-change: transform;
    display: inline-block;
}
@keyframes xFloat1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(9px); }
}
@keyframes yFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}


/*Efeito Botão*/
.but-blur {
    background-color: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.1s ease;
}
.but-blur::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: rotate(25deg);
    transition: all 0.6s ease;
}
.but-blur:hover::before {
    left: 130%;
}
.but-blur:hover {
    box-shadow:
        1px 1px 8px 5px rgba(255, 255, 255, 0.35) inset,
        0 8px 24px rgba(140, 66, 255, 0.45),
        0 0 18px rgba(180, 120, 255, 0.35);
}

@media (max-width: 767px) {
    .but-blur {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .but-blur a,
    .but-blur .elementor-button,
    .but-blur .elementor-button-wrapper,
    .but-blur span {
        width: 100% !important;
        max-width: 100% !important;
        display: inline-block !important; /* ou block se necessário */
        text-align: center !important;
        box-sizing: border-box !important;
    }
}

.but-blur-transp {
    position: relative;
    overflow: hidden;
    background-color: transparent !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    transition:
        all 0.2s ease,
        box-shadow 0.4s ease;
}
.but-blur-transp::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.22),
        transparent
    );
    transform: rotate(25deg);
    transition: all 0.7s ease;
}
.but-blur-transp:hover::before {
    left: 130%;
}
.but-blur-transp:hover {
    background-color: rgba(255,255,255,0.03) !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08) inset,
        0 0 18px rgba(255,255,255,0.08),
        0 8px 24px rgba(140, 66, 255, 0.18);
    border-color: rgba(255,255,255,0.20);
}
@media (max-width: 767px) {
    .but-blur-transp {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    .but-blur-transp a,
    .but-blur-transp .elementor-button,
    .but-blur-transp .elementor-button-wrapper,
    .but-blur-transp span {
        width: 100% !important;
        max-width: 100% !important;
        display: inline-block !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}



/*Texto Radial*/
.texto-radial {
    background: radial-gradient(circle, #FFF 0%, #6D39BF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.texto-radial1 {
	background: linear-gradient(180deg, #FFF 54.17%, #B372CF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/*Carousel Partners*/
.carousel-partners figure.swiper-slide-inner {
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-partners figure.swiper-slide-inner img {
    max-height: 24px !important;
    width: auto;
    opacity: .5;
    transition: opacity 0.3s ease;
}

.carousel-partners figure.swiper-slide-inner:hover img {
    opacity: 1;
}

@media (max-width: 767px) {
.carousel-partners figure.swiper-slide-inner img {
    max-height: 38px !important;
    width: auto;
    opacity: 1 !important;
    transition: opacity 0.3s ease;
}
}


/*Abas Home*/
.e-n-tabs-heading {
    border-radius: 56px;
    background: rgba(255, 255, 255, 0.15);
    width: fit-content;
    margin: 0 auto;
    display: flex;
    padding: 8px
}
.e-n-tabs-heading {
    border-radius: 56px;
    background: rgba(255, 255, 255, 0.15);
    width: fit-content;
    margin: 0 auto;
    display: flex;
    padding: 8px
}

.e-n-tabs-heading {
    width: fit-content;
    margin: 0 auto;
    padding: 6px;
    border-radius: 56px;
    background: rgba(255, 255, 255, 0.08);
}

.e-n-tab-title[aria-selected="true"]{
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(140, 69, 255, 0.70) !important;
    box-shadow: 1px 1px 6px 4px rgba(255, 255, 255, 0.25) inset;
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    position: relative;
    overflow: hidden;
}

.e-n-tab-title[aria-selected="true"]::before{
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent);
    transform: rotate(25deg);
    transition: all 0.6s ease;
}
.e-n-tab-title[aria-selected="true"]:hover::before{
    left: 130%;
}
.e-n-tab-title[aria-selected="true"]:hover{
    box-shadow:
        1px 1px 8px 5px rgba(255, 255, 255, 0.35) inset,
        0 8px 24px rgba(140, 66, 255, 0.45),
        0 0 18px rgba(180, 120, 255, 0.35);
}


/* container */
.e-n-tabs-heading{
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* slider */
.e-n-tabs-heading .tab-slider{
    position: absolute;
    top: 6px;
    left: 0;
    height: calc(100% - 12px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(140, 69, 255, 0.70);
    box-shadow:
        1px 1px 6px 4px rgba(255,255,255,0.25) inset,
        0 0 18px rgba(180,120,255,0.20);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);

    transition:
        transform 0.35s ease,
        width 0.35s ease;

    z-index: 0;
}

/* tabs acima */
.e-n-tab-title{
    position: relative;
    z-index: 2;
    background: transparent !important;
}
.e-n-tab-title[aria-selected="true"]{
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/*Bg Ciscle Purple*/
.bg-circle{
    background: #9855FF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.bg-circle .elementor-heading-title {
    color: #111 !important;
    margin: 0;
    line-height: 1;
    text-align: center;
    width: 100%;
}


@media (max-width: 767px) {
    .bg-circle {
        left: 0;
        top: 75px
    }
}




/*Scroll imagem Home*/




/*Testemunhos*/
.avaliacao-estrelas {
    color: #9855FF;
    font-size: 24px;
    letter-spacing: 2px;
}
.swiper-pagination-bullet {
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 40px !important;
    border-radius: 8px !important;
    background-color: #C8B5FF !important;
}
@media (min-width: 768px) {
    .testimonial-home .swiper-slide {
        transition:
            transform .45s ease,
            opacity .45s ease;
        transform: scale(.72);
        opacity: .25;
        z-index: 1;
    }

    .testimonial-home .swiper-slide-active {
        transform: scale(.82);
        opacity: .6;
        z-index: 2;
        padding-top: 15px;
    }

    .testimonial-home .swiper-slide-next {
        transform: scale(1.12);
        opacity: 1;
        z-index: 9;
        padding-top: 15px;
    }

    .testimonial-home .swiper-slide-prev {
        transform: scale(.62);
        opacity: .6;
        z-index: 2;
        padding-top: 15px;
    }
}

@media (max-width: 767px) {
    .testimonial-home .swiper-slide,
    .testimonial-home .swiper-slide-active,
    .testimonial-home .swiper-slide-next,
    .testimonial-home .swiper-slide-prev {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        z-index: 1 !important;
        padding-top: 0 !important;
    }
}




/*Menu PopUp*/
/* =========================================
   BOTÃO MENU MOBILE
========================================= */

.menu-mobile-popup {
    position: relative !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    cursor: pointer !important;
}


/* =========================================
   POPUP ELEMENTOR
========================================= */

body .elementor-popup-modal {
    position: fixed !important;
    z-index: 2147483647 !important;
}

body .dialog-widget-overlay {
    z-index: 2147483646 !important;
}


/*Botão form contact*/
/* BOTÃO COM EFEITO BLUR E ESTILO PERSONALIZADO */
.form-service .elementor-field-type-submit button.elementor-button {
    background-color: #8C42FFB3 !important;
    font-family: "Inter", Sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
    box-shadow: 1px 1px 6px 4px rgba(255, 255, 255, 0.25) inset !important;
    border-style: solid !important;
    border-width: 1px 1px 1px 1px !important;
    border-color: #3B3B3B26 !important;
    border-radius: 50px 50px 50px 50px !important;
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: all 0.1s ease;
}

/* REFLEXO DE LUZ (BRILHO PASSANDO) */
.form-service .elementor-field-type-submit button.elementor-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.25),
        transparent
    );
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

/* ANIMAÇÃO DO BRILHO NO HOVER */
.form-service .elementor-field-type-submit button.elementor-button:hover::before {
    left: 130%;
}

/* GLOW E SOMBRA INTEGRADA NO HOVER */
.form-service .elementor-field-type-submit button.elementor-button:hover {
    box-shadow:
        1px 1px 8px 5px rgba(255, 255, 255, 0.35) inset,
        0 8px 24px rgba(140, 66, 255, 0.45),
        0 0 18px rgba(180, 120, 255, 0.35) !important;
}

/* RESPONSIVIDADE (MOBILE) */
@media (max-width: 767px) {
    .form-service .elementor-field-type-submit,
    .form-service .elementor-field-type-submit button.elementor-button {
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
    }
    
    .form-service .elementor-field-type-submit .elementor-button-content-wrapper,
    .form-service .elementor-field-type-submit .elementor-button-text {
        width: 100% !important;
        max-width: 100% !important;
        display: inline-block !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }
}



/*Faq PT/BR*/
.faq-br-pt details {
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    margin-bottom: 16px !important;
}
.faq-br-pt .e-n-accordion-item {
    transition: background-color 0.4s ease;
}
.faq-br-pt .e-n-accordion-item[open] {
    background: rgba(255,255,255,.15);
}
.faq-br-pt .e-n-accordion-item[open] .e-n-accordion-item-title {
    background: transparent;
    transition: color 0.4s ease;
}
.faq-br-pt .e-n-accordion-item > div[role="region"] {
    transition: all 0.4s ease;
}