.elementor-8 .elementor-element.elementor-element-3a64327{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--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-4c1e2c2 *//* ================================================= */
/* --- CÓDIGO DE CABEÇALHO PERSONALIZADO (FINAL com LOGO) --- */
/* ================================================= */

/* --- Reset e Configurações Globais do Componente --- */
#custom-header-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
}
#custom-header-wrapper a { text-decoration: none; color: inherit; }
#custom-header-wrapper ul { list-style: none; }
#custom-header-wrapper .container-custom {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Barra Superior (Pre-Header) --- */
#custom-header-wrapper .header-top-custom {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}
#custom-header-wrapper .header-top-custom .container-custom { flex-wrap: wrap; gap: 10px; }
#custom-header-wrapper .contact-info-custom { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
#custom-header-wrapper .contact-info-custom span svg {
    margin-right: 8px;
    fill: #f25822; /* Cor laranja para ícones de contato */
}
#custom-header-wrapper .social-icons-svg {
    display: flex;
    align-items: center;
    gap: 20px;
}
#custom-header-wrapper .social-icons-svg svg {
    width: 16px;
    height: 16px;
    fill: #f25822; /* Cor laranja para ícones sociais */
    transition: transform 0.3s ease;
}
#custom-header-wrapper .social-icons-svg a:hover svg {
    transform: scale(1.2);
}

/* --- Navegação Principal --- */
#custom-header-wrapper .main-nav-custom {
    background-color: #ffffff;
    padding: 15px 0; /* Padding pode ser ajustado para alinhar com o logo */
    border-bottom: 1px solid #f0f0f0;
}
/* Estilo para o logo de imagem */
#custom-header-wrapper .logo-custom img {
    height: 80px; /* Você pode ajustar este valor */
    width: auto;
    display: block; /* Remove espaço extra embaixo da imagem */
}
#custom-header-wrapper .nav-links-custom ul { display: flex; gap: 35px; align-items: center; }
#custom-header-wrapper .nav-links-custom ul a { font-weight: 600; font-size: 16px; color: #4f5665; transition: color 0.3s ease; display: flex; align-items: center;}
#custom-header-wrapper .nav-links-custom ul a:hover { color: #f25822; }

/* --- Dropdown --- */
#custom-header-wrapper .has-dropdown-custom { position: relative; }
#custom-header-wrapper .dropdown-custom { display: none; position: absolute; top: 100%; padding-top: 25px; left: -20px; background-color: transparent; border: none; width: 200px; z-index: 1000; }
#custom-header-wrapper .dropdown-content-custom { background-color: #ffffff; padding: 15px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); display: flex; flex-direction: column; gap: 10px; }
#custom-header-wrapper .dropdown-custom li a { font-weight: 400; }

/* --- Botão CTA --- */
#custom-header-wrapper .btn-quote-custom, 
#custom-header-wrapper .btn-quote-mobile-custom { background-color: #f25822; color: #ffffff; padding: 12px 25px; border-radius: 50px; font-weight: 600; transition: background-color 0.3s ease; display: inline-block; }
#custom-header-wrapper .btn-quote-custom:hover { background-color: #d94a1a; }

/* --- Menu Mobile --- */
#custom-header-wrapper .hamburger-menu-custom { display: none; cursor: pointer; }
#custom-header-wrapper .hamburger-menu-custom svg { fill: #4f5665; }
#custom-header-wrapper .mobile-menu-custom { display: none; background-color: #ffffff; padding: 20px; text-align: center; border-top: 1px solid #f0f0f0; }
#custom-header-wrapper .mobile-menu-custom ul { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
#custom-header-wrapper .mobile-menu-custom a { font-weight: 600; font-size: 18px; color: #4f5665; }

/* --- Responsividade --- */
@media (max-width: 992px) {
    #custom-header-wrapper .nav-links-custom, 
    #custom-header-wrapper .btn-quote-custom { display: none; }
    #custom-header-wrapper .hamburger-menu-custom { display: block; }
}
/* ================================================= */
/* --- ESTILOS PARA O NOVO MENU MOBILE V2 --- */
/* ================================================= */

/* Trava a rolagem da página quando o menu está aberto */
body.no-scroll {
    overflow: hidden;
}

/* --- Painel Principal do Menu Mobile --- */
#custom-header-wrapper .mobile-menu-custom {
    /* Layout e Posição */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #111; /* Fundo escuro */
    z-index: 9999;
    
    /* Escondido por padrão (fora da tela) */
    opacity: 0;
    transform: translateX(100%);
    visibility: hidden;
    
    /* Animação */
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
    
    /* Organização interna */
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* Estado ativo: quando o menu está visível */
#custom-header-wrapper .mobile-menu-custom.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

/* --- Cabeçalho do Menu Mobile --- */
#custom-header-wrapper .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#custom-header-wrapper .mobile-logo img {
    height: 60px; /* Ajuste a altura do logo */
    width: auto;
}

#custom-header-wrapper .close-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
#custom-header-wrapper .close-menu-btn svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

/* --- Links de Navegação --- */
#custom-header-wrapper .mobile-menu-links {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

#custom-header-wrapper .mobile-menu-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem; /* Links grandes e fáceis de tocar */
    font-weight: 600;
    padding: 10px;
    transition: color 0.3s ease;
}

#custom-header-wrapper .mobile-menu-links a:hover {
    color: #f25822; /* Laranja da marca */
}

/* --- Rodapé do Menu Mobile --- */
#custom-header-wrapper .mobile-menu-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
#custom-header-wrapper .btn-quote-mobile-custom {
    margin-bottom: 25px;
}

#custom-header-wrapper .mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}
#custom-header-wrapper .mobile-social-icons svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    transition: fill 0.3s ease, transform 0.3s ease;
}
#custom-header-wrapper .mobile-social-icons a:hover svg {
    fill: #f25822;
    transform: scale(1.1);
}/* End custom CSS */