/* ==========================================================
    RESET
   ========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================
    HTML
   ========================================================== */
html,
body {
    width: 100%;
    height: 100%;
    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
    background: #ececec;
}

/* ==========================================================
   CABEÇALHO
   ========================================================== */
#cabecalho {
    height: 40px;
    padding: 0 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c3e50;
    color: white;
}

/* ==========================================================
   LOGO
   ========================================================== */
#logo {
    display: flex;
    align-items: center;
    gap: 18px;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0;
}

#status-programa {
    font-size: 12px;
    font-weight: 500;
    color: #d6dde5;
    white-space: nowrap;
}

/* ==========================================================
    MENU
   ========================================================== */
#menu-principal {
    display: flex;
    gap: 4px;
}

#menu-principal button {
    padding: 3px 10px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: white;
    font-size: 9px;
    font-weight: 400;
    cursor: pointer;
}

#menu-principal button:last-child {
    border-right: none;
}

#menu-principal button:hover {
    background: rgba(255, 255, 255, .15);
}

/* ==========================================================
    ÁREA DE TRABALHO
   ========================================================== */
main {
    width: 100%;
    height: calc(100vh - 40px);
}

.menu-em-breve {
    text-decoration: line-through;
    color: #999;
    cursor: default;
    opacity: 0.8;
}

/* ==========================================================
   RODAPÉ DO SITE
   ========================================================== */

.rodape-site {

    margin-top: 30px;
    padding: 15px 20px;

    text-align: center;

    font-size: 12px;

    color: #666666;

    border-top: 1px solid #dcdcdc;

    background: #f8f8f8;
}

.rodape-aviso {

    margin-top: 6px;

    font-size: 11px;

    color: #888888;

    line-height: 1.4;
}

.seo-h1 {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}