/* ================= HEADER ================= */
:root {
    --cor-primaria: #8a0000;
    --cor-segundaria: #f0151f;
    --cor-tercearia: #6e0000;
    --text-color: #555555;
}
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* ================= TOP MENU ================= */

.top-menu {
    background-color: var(--cor-segundaria);
    display: flex;
    align-items: center;
    padding: 15px;
}

.top-menu-list {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.top-menu-list li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.top-menu-list li a:hover {
    opacity: 0.7;
}

.top-menu-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ================= MENU PRINCIPAL ================= */

.menu {
    background-color: var(--cor-primaria);
    height: 120px;
    display: flex;
    align-items: center;
    padding: 15px;
}

.menu-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.menu-logo img {
    height: 90px;
}

/* BUSCA */
.menu-search {
    display: flex;
    align-items: center;
    background-color:var(--cor-segundaria);
    border-radius: 8px;
    overflow: hidden;
}

.menu-search input {
    height: 40px;
    border: none;
    padding: 0 10px;
    outline: none;
    width: 350px;
}

.menu-search button {
    height: 40px;
    padding: 0 20px;
    border: none;
    background-color:var(--cor-segundaria);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.menu-search button:hover {
    background-color: #6e0000;
}

/* APPS */
.menu-apps {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.menu-apps-icon {
    border-radius: 5px;
    color: white;
    transition: background 0.3s ease;
}


/* LOGIN */
.menu-login {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.menu-login i {
    font-size: 30px;
}

.menu-login a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.menu-login a:hover {
    text-decoration: underline;
}