header {
    width: 100%;
    background: white;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    /* justify-content: center; */
    position: sticky;
    top: 0;
    left: 0;
    padding: 5px 50px;

}

input[type="radio"] {
    opacity: 0;
}

header>.marca>a>img {
    width: 100px;
}

header>.menu {
    margin-left: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: flex-end;
    /* height: 60px; */
    /* margin-left: 50px; */
    list-style: none;
    position: relative;
    color: rgb(26, 69, 209);
    /* padding-top: 18px; */

}

.item>label {
    padding: 10px 25px;
    transition: all 0.2s linear;
    cursor: pointer;

}

.item>.submenu {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    background: rgb(41, 87, 238);
    border-radius: 3px;
    font-size: 10pt;
}

.submenu>a {
    padding: 20px 10px;
    text-decoration: none;
    color: white;
}

.menu>div {
    float: left;
    text-align: center;
}

.menu>.item>label,
.menu>.item>.submenus>a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 9pt;
}


.item>.submenu {
    display: none;
}

:hover.item>label {
    background: rgb(26, 69, 209);
    color: white;
}

.item:hover>.submenu {

    display: flex;
    background: rgb(26, 69, 209);
    font-weight: bold;
}

.submenu>a:hover {
    background: rgba(255, 255, 255, 0.904);
    color: rgb(41, 87, 238);
}

.nomeDoAdmin::before {
    content: "Agente: ";
}

.btnVoltarParaInicio{
    text-decoration: none;
    color: black;
}