.elementor-45 .elementor-element.elementor-element-df8fb85{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-45 .elementor-element.elementor-element-fca9453{padding:0px 0px 0px 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-fca9453 */:root {
    --bg-dark: #060b09;
    --primary-green: #39df5d;
    --text-white: #ffffff;
    --border-color: rgba(26, 36, 32, 0.4);
}

/* Base estrutural do cabeçalho */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(to bottom, rgba(6, 11, 9, 0.85) 0%, rgba(6, 11, 9, 0.4) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Altura perfeita de 100px para acomodar o logo com imponência */
.header-wrapper {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px; 
}

/* Container do link do logo */
.logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    height: 100%;
    width: 260px; /* Largura expandida para o logo horizontal se estender sem achatar */
}

/* NOVO AJUSTE DE PROPORÇÃO E DESTAQUE */
.main-logo-img {
    max-width: 260px;  /* Permite que o logo se espalhe horizontalmente */
    max-height: 55px;  /* Altura imponente que preenche o menu mantendo margens elegantes */
    width: auto;       /* Impede distorções na proporção do arquivo original */
    height: auto;      
    object-fit: contain;
    display: block;
    
    /* Remove o fundo preto rígido e mantém a transparência perfeita */
    mix-blend-mode: screen; 
    image-rendering: -webkit-optimize-contrast; 
    
    transition: transform 0.3s ease;
}

.logo-link:hover .main-logo-img {
    transform: scale(1.02); /* Feedback leve e sutil no hover */
}

/* Links horizontais do Menu */
.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.main-navigation ul li a {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white);
    opacity: 0.7;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    padding: 8px 0;
}

.main-navigation ul li a:hover,
.main-navigation ul li a.active {
    opacity: 1;
    color: var(--primary-green);
}

/* Ícones de ação à direita */
.header-actions {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header-actions button {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.15rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s, color 0.3s;
    padding: 4px;
}

.header-actions button:hover {
    opacity: 1;
    color: var(--primary-green);
}

/* Responsividade segura para telas mobile e tablets */
@media (max-width: 900px) {
    .main-navigation {
        display: none;
    }
    .logo-link {
        width: 180px;
    }
    .main-logo-img {
        max-width: 180px;
        max-height: 42px; /* Redução proporcional suave em telas menores */
    }
}/* End custom CSS */