/* Estilos de reset e gerais mantidos, apenas modificando o botão de login */
* {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Lato', sans-serif;
    line-height: 1;
    box-sizing: border-box;
}

body {
    background-color: var(--background-color);
    color: var(--text-black);
    margin: 0;
    padding: 0;
}

/* ====== HEADER NAVIGATION ====== */
.headerUL {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--sidebar-background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    box-shadow: var(--shadow);
    z-index: 999;
}

.headerList {
    font-size: 24px;
    color: var(--text-white);
}

#loginHeader {
    font-size: 16px;
    color: var(--text-white);
}

/* Estilo atualizado para o botão de login */
.login-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: var(--text-white);
    padding: 10px 16px;
    border-radius: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.login-button:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.login-button span {
    padding-top: 2px;
}

.login-button svg {
    height: 18px;
    width: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.login-button:hover svg {
    transform: translateX(3px);
}

/* Estilo para o texto do logo */
#headerTitlePage {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-left: 12px;
    letter-spacing: 0.5px;
}

/* Ajuste o espaçamento no item da lista para acomodar melhor o logo */
#headerLogo {
    display: flex;
    align-items: center;
    padding: 5px 10px;
}

.header-logo {
    height: 40px;  /* Ajuste conforme necessário */
    width: auto;
    vertical-align: middle;
    object-fit: contain;
}

#headerLogo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
  }
  
  #headerLogo a:hover {
    text-decoration: none;
  }