#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #4E19D1; 
    padding: 10px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    height: 35px;
    justify-content: center;
}

#main-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.cabeca {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0px;
    padding: 0px;
    position: fixed;
}

.logo {
    flex: 2;
    display: flex;
    justify-content: center;
}

.logo img {
    height: 30px;
    width: 195px;
}

.menu-icon button,
.search-icon button {
    background: none;
    border: none;
    cursor: pointer;
}
button#search-btn.search-icon {
    background: none;
    border: none;
    cursor: pointer;
}

.menu-icon img,
.search-icon img {
    height: 24px;
    width: 24px;
}

@media (min-width: 1024px) {
    .menu-icon, search-icon {
    display: none;

    }
    .logo {
    position: relative;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
.menu-icon,
.search-icon {
    flex: 1;
    display: flex;
    justify-content: center;
}
}