/* Base Reset e Variáveis */
:root {
    --newm-primary: #007bff; /* Azul primário */
    --newm-secondary: #fff; /* Fundo mais limpo (Branco puro) */
    --newm-text: #333; /* Texto escuro */
    --newm-text-light: #fff; /* Texto claro */
    --newm-hover: #0056b3; /* Azul escuro no hover */
}

/* Base Styling */
.newm_header {
    background-color: var(--newm-secondary);
    /* Sombra mais subtil para um look "clean" */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); 
    position: sticky;
    top: 0;
    z-index: 1000;
	position: fixed; 
    top: 0;	
	width: 100%;
}

.newm_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px; /* Um pouco mais largo */
    margin: 0 auto;
    padding: 15px 25px; /* Mais espaço vertical */
}

/* Logo */
.newm_logo a {
    font-size: 1.6rem;
    font-weight: 600; /* Mais destaque */

    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Menu Desktop */
.newm_menu_desktop {
    display: none; 
}

.newm_ul_desktop {
    list-style: none;
    display: flex;
    gap: 30px; /* Aumentar o espaçamento para um look mais clean */
    padding: 0;
    margin: 0;
}

.newm_ul_desktop li a {
    text-decoration: none;
    color: var(--newm-text);
    /* Fonte mais leve para um visual mais limpo */
    font-size: 0.95rem; 
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.newm_ul_desktop li a:hover {
    color: var(--newm-primary);
    /* Linha debaixo para um efeito hover moderno */
    border-bottom: 2px solid var(--newm-primary); 
}

/* Remover o Dropdown CSS, pois não será usado */
.newm_dropdown, .newm_dropdown_content {
    /* Não são usados */
    display: initial;
}

/* Botão Contact (Destaque) */
.newm_contact_button {
    background-color: var(--newm-primary);
    color: var(--newm-text-light) !important;
    padding: 8px 18px !important;
    border-radius: 50px; /* Borda arredondada para moderno */
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none; /* Remover a borda para mais clean */
}

.newm_contact_button:hover {
    background-color: var(--newm-hover);
    transform: translateY(-1px); /* Efeito ligeiro de "levantar" */
}

/* Menu Mobile/Hambúrguer (Mantido do exemplo anterior) */
.newm_menu_toggle {
    display: block; 
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.newm_icon_bar {
    display: block;
    width: 100%;
    height: 2px; /* Mais fino para ser clean */
    background-color: var(--newm-text);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.newm_menu_mobile {
    display: none; 
    position: absolute;
    top: 65px; /* Ajustar à nova altura do header */
    left: 0;
    width: 100%;
    background-color: var(--newm-secondary);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

.newm_menu_mobile.newm_open {
    display: block;
    max-height: 500px; 
}

.newm_ul_mobile {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.newm_ul_mobile li a {
    display: block;
    padding: 15px 25px; /* Mais padding para mobile */
    text-decoration: none;
    color: var(--newm-text);
    border-bottom: 1px solid #f0f0f0; /* Linha divisória suave */
    transition: background-color 0.3s ease;
}

.newm_ul_mobile li:last-child a {
    border-bottom: none;
}

.newm_ul_mobile li a:hover {
    background-color: #f8f9fa;
}

/* Media Query para Desktop */
@media (min-width: 900px) {
    .newm_menu_desktop {
        display: flex; 
    }

    .newm_menu_toggle {
        display: none; 
    }

    .newm_menu_mobile {
        display: none !important; 
    }
}