.elementor-83 .elementor-element.elementor-element-a2ca3dc{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-1baa745 *//* 1. ESTILOS DO MENU SUPERIOR TRANSPARENTE */
.site-header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001; /* Garante que fique acima do banner */
    background: transparent;
    padding: 25px 0; /* Aumentei o padding para mais espaçamento */
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 2. AJUSTES ESPECÍFICOS PARA O MENU SOBRE O BANNER */
.site-nav-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav-menu li a {
    color: white !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.site-nav-menu li a:hover {
    color: #f8d64e !important;
}

.site-nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f8d64e;
    transition: width 0.3s ease;
}

.site-nav-menu li a:hover:after {
    width: 100%;
}

/* 3. LOGO E BUSCA */
.header-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(1px 1px 3px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
}

.header-search button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.header-search button:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* 4. AJUSTES NO BANNER PARA INTEGRAÇÃO */
.elementor-83 .elementor-element.elementor-element-1baa745 .btp-swiper-overlay .swiper-slide {
    min-height: 600px; /* Aumentei a altura para acomodar o menu */
    height: 600px;
}

.elementor-83 .elementor-element.elementor-element-1baa745 .btp-content-over {
    padding-top: 100px; /* Espaço para o menu */
}

/* 5. EFEITO AO ROLAR A PÁGINA */
.scrolled .site-header-transparent {
    background: rgba(0,0,0,0.8);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scrolled .header-logo img {
    height: 40px;
}

/* 6. RESPONSIVIDADE */
@media (max-width: 992px) {
    .site-header-transparent {
        padding: 15px 0;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    .header-logo {
        margin-bottom: 15px;
    }
    
    .header-nav {
        order: 2;
        width: 100%;
        margin: 15px 0;
    }
    
    .site-nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .site-nav-menu li {
        margin: 5px 10px;
    }
    
    .header-search {
        order: 3;
        margin-top: 15px;
    }
    
    .elementor-83 .elementor-element.elementor-element-1baa745 .btp-content-over {
        padding-top: 150px; /* Mais espaço para o menu em mobile */
    }
}/* End custom CSS */