/* Header CSS Independente - MoedaBR */
.header {
    background: #0b0b0b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 200;
}

.header .container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 1400px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    padding: 1rem 0;
}

.header .logo a {
    display: block;
    line-height: 1;
}

.header .logo img {
    height: 50px;
    width: auto;
}

.header .nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.header .nav a {
    color: #cfcfcf;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease-out;
}

.header .nav a:hover {
    color: #FFD700;
}

.header .search-btn {
    background: none;
    border: none;
    color: #cfcfcf;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.15s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;
}

.header .search-btn:hover {
    background: rgba(255, 215, 0, 0.08);
    color: #FFD700;
}

.header .search-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .header-content {
        min-height: 60px;
    }
    
    .header .logo img {
        height: 35px;
    }
    
    .header .nav {
        display: none;
    }
}
