* {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 12pt;
    border-collapse: collapse;
    line-height: 1;
    list-style: none;
    text-decoration: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
    gap: 20px;
}

:root {
    --dark-bg: #151515;
    --light-bg: #f5f5f5;
    --text-color-dark: #333;
    --hover-menu: #d7d7d7;
    --text-color-light: #fff;
    --link-color: rgb(49, 130, 171);
    --link-color-hover: rgb(171, 49, 49);
    --gradient-dark: linear-gradient(0deg, rgba(2, 0, 36, 1) 10%, rgba(28, 28, 28, 1) 47%, rgba(0, 0, 0, 1) 94%);
}

strong {
    font-weight: 900;
}

img {
    object-fit: contain;
    object-position: center;
}

a {
    color: var(--link-color);
}

a:hover {
    color: var(--link-color-hover);
}

body {
    background-color: var(--light-bg);
    font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: 20px;
    font-weight: 900;
}

h2 {
    font-size: 18px;
    font-weight: 900;
}

h3 {
    font-size: 16;
    font-weight: 900;
}

h4 {
    font-size: 14px;
    font-weight: 900;
}

p {
    font-size: 12px;
    font-weight: 900;
}

hr {
    border: var(--text-color-dark) solid 1px;
}

.w-300 {
    width: 300px;
}

.header {
    background: var(--gradient-dark);
    height: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    color: var(--text-color-light);
}

.nav-top {
    display: flex;
    justify-content: flex-end;
}
.logo-top{
    height: 100%;
    padding: 4px;
    text-align: center;
}
.logomarca img{
    height: 80px;
}
.nav-top button {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
}

.nav-top button:hover {
    background: rgb(255, 26, 26);
}

.nav-top button span {
    color: var(--text-color-light);
}

.nav-bar {
    height: 30px;
}

.nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 90%;
    margin: auto;
}

.nav-bar li {
    height: 100%;
    padding: 5px 10px;
    width: max-content;
    cursor: context-menu;
}

.nav-bar li:hover,
.nav-bar ul li:focus,
.nav-bar ul li:active {
    background: var(--hover-menu);
    color: var(--text-color-dark);
}

.nav-top {
    height: 30px;
}

.nav-bar li.active {
    background: var(--hover-menu);
    color: var(--text-color-dark);
}

.submenu {
    width: 100%;
    top: 60px;
    left: 0;
    position: absolute;
    display: none;
    background: var(--hover-menu);
    height: max-content;
    /* box-shadow: 0 0 5px 0; */
}
/* .active{
    display: block;
} */
.btn-menu-group {
    max-width: 90%;
    margin: auto;
    padding: 10px;
}

.submenu .btn-menu {
    width: 40px;
    height: 40px;
    min-width: max-content;
    padding: 3px;
    background: var(--hover-menu);
    gap: 3px;
    border-radius: 0;
}

.submenu .btn-menu:hover {
    background: var(--light-bg);
}

.submenu .btn-menu .mdi {
    font-size: 28px;
    color: var(--text-color-dark);
}

.content {
    max-width: 1024px;
    margin: auto;
    padding: 15px;
}

.regist-content {
    max-width: 480px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.row-group {
    display: flex;
    gap: 20px;
}

form {
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
select {
    padding: 10px;
    border: 1px solid var(--dark-bg);
    border-radius: 8px;
    outline: none;
}

.btn {
    padding: 10px;
    background-color: #f6f6f6;
    border: none;
    border-radius: 8px;
    min-width: 130px;
    cursor: pointer;
}

.btn-submit {
    background: rgb(2, 0, 36);
    background: var(--gradient-dark);
    width: max-content;
    color: var(--text-color-light);
}

.input-group-btn {
    display: flex;
    justify-content: flex-end;
}

.checkbox-group {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 10px;
}

#checkbox {
    width: max-content;
    width: 20px;
    height: 20px;
}

#response {
    display: none;
    background-color: #a5ff99;
    color: #097f00;
    padding: 10px;
    border-radius: 10px;
}

#error {
    display: none;
    background-color: #ff8989;
    color: #b00000;
    padding: 10px;
    border-radius: 10px;
}

.home-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 25px;
    background: var(--hover-menu);
}

.home-group .content-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.home-group .content-right img {
    width: 120px;
    height: 120px;
}

.home-group .content-right h1 {
    text-align: center;
    font-size: 18pt;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: var(--text-color-dark);
}

.home-group .content-right p {
    text-align: center;
    font-size: 15pt;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: var(--text-color-dark);
}

.input-select-curso {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-select-curso {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.select-curso {
    display: flex;
    flex-direction: row;
    max-height: 40px;
}

.btn-turma-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-turma {
    background: var(--gradient-dark);
    color: var(--text-color-light);
    text-align: center;
    min-width: 180px;
    max-width: 200px;
    height: 50px;
}

.table-group {
    margin-top: 10px;
    overflow: auto;
}
.tb-avaliacoes{
    width: max-content;
}
td,
th {
    text-align: left;
    max-width: max-content;
    padding: 5px;
    border: var(--dark-bg) 1px solid;
    border-color: var(--text-color-dark);
}

th {
    background: var(--gradient-dark);
    color: var(--text-color-light);
    text-align: center;
}

td {
    color: var(--text-color-dark);
}
.avaliacoes{
    width: max-content;
    padding: 3px;
}
.avaliacoes input{
    width: 50px;
    padding: 2px;
    border: none;
    font-size: 10pt;
    text-align: right;
}
.avaliacoes strong{
    
    padding: 2px;
    border: none;
    font-size: 10pt;
    text-align: right;
}
.ord {
    width: 100px;
}

table .details {
    width: 130px;
}

.details-data {
    width: 400px;
}

.assinaturas {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.assinaturas p {
    width: max-content;
    line-height: 1.5;
}
.header-group{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
}
.header-group p{
    width: max-content;
    height: max-content;
    font-size: 12pt;
}
.header-group img{
    width: 60px;
    height: 60px;
}
.tb-verbetes{
    margin: 20px 0;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.head-group{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
}
.head-group p{
    font-family: 'Montserrat', sans-serif;
}
.btn-close-menu{
    width: max-content;
    min-width: max-content;
    background-color: transparent;
    border: none;
    position: absolute;
    right: 12px;
    top: 3px;
}
.btn-close-menu .mdi{
    font-size: 24pt;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.btn-refresh-menu{
    border: none;
    padding: 2px;
    background: var(--hover-menu);
}
.actions-group{
    display: flex;
    flex-direction: row;
    gap: 15px;
}
/* Estilos para a impressão */
@media print {
    body {
        font-family: 'Montserrat', sans-serif;
        background-color: #fff;
    }

    thead {
        background: #000;
    }

    .noPrint {
        display: none;
    }
}