* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100% !important;
    min-height: 100% !important;
}

body {
    min-height: 100vh;
    min-height: 100dvh;

    display: flex;
    flex-direction: column;

    font-family: Arial, sans-serif;
    background: #ffffff;
}


/* AVISO SUPERIOR */

.warn {
    position: relative;

    width: 100%;
    height: 35px;

    background: #120a8f;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.warn span {
    font-size: 14px;
    font-weight: bold;
}

.warn .close {
    position: absolute;
    right: 20px;

    cursor: pointer;
    font-size: 16px;
}

.closed {
    display: none;
}


/* HEADER */

header {
    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;

    padding: 0 40px;

    border-bottom: 1px solid #eeeeee;
    box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.1);
}


/* LOGO */

.logo {
    margin-top: 20px;
    margin-bottom: 20px;
    width: auto;
    height: 90%;
    display: block;
}


/* LADO DIREITO */

.right 
{
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 25px;
}


/* LOGIN / REGISTRO */

.login-item {
    display: flex;
    align-items: center;

    gap: 7px;

    cursor: pointer;
    font-weight: bold;
}

.login-item i {
    color: #51c526;
}


/* CONTEÚDO */

main {
    flex: 1;
    width: 100%;
}

/*Config Celular*/

.center {
    width: 100%;
    min-height: 100%;
    background: #ffffff;
}

@media (max-width: 600px) {

    .right {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}

/*Config Pages*/

main {
    flex: 1;
    width: 100%;
    display: flex;
    overflow: hidden;
}

#janela 
{
	padding-top: 20px !important;
	padding: 5px;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}