@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    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;
    z-index: 1;
}

:root {
    --primary: rgb(27, 87, 92);
    --green: #01847b;
    --white: #fff;
    --grey-gelo: #eaeaea;
    --grey: #cacaca;
    --black: #212121;
    --orange: rgb(171, 114, 0);
    --gradient-dark: linear-gradient(0deg, rgba(2, 0, 36, 1) 10%, rgba(28, 28, 28, 1) 47%, rgba(0, 0, 0, 1) 94%);
    --danger: #ab3131;
    --hover: #00996b;
    --active: #00996b;
    --success: #00996b;
}

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: 12px;
    font: inherit;
    vertical-align: baseline;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    width: max-content;
    font-weight: 700;
    word-wrap: break-word;
    width: 100%;
    text-align: center;
}

strong,
b {
    font-weight: 600;
}

p {
    font-weight: normal;
    line-height: 1.5;
}

a {
    list-style: none;
    color: var(--green);
}

a:hover {
    list-style: none;
    color: var(--orange);
}

i {
    font-style: italic;
}

li {
    color: var(--white);
}

small {
    font-size: 12px;
}

body {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: var(--black);
}

img {
    width: 100%;
    height: 100%;
}

.danger {
    color: var(--danger);
    font-weight: 600;
}

.content-all {
    max-width: 100%;
}

.content-home {
    background-color: var(--primary);
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.logo-img-home {
    width: max-content;
    height: 150px;
}

.title-home {
    width: max-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.title-home h1 {
    width: max-content;
    font-size: 34px;
    text-align: center;
    font-weight: 800;
    color: var(--white);
}

.title-home p {
    width: max-content;
    font-size: 20px;
    text-align: center;
    color: var(--white);
}

.btn-home {
    width: max-content;
}

.btn-home button {
    width: 150px;
    height: 45px;
    border-radius: 20px;
    background-color: var(--green);
    border: none;
    color: var(--white);
    cursor: pointer;
}

.btn-home button:hover {
    background-color: var(--success);
}

.content {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.side-left {
    position: relative;
    width: 300px;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 99999;
}

.left-content {
    position: fixed;
    width: 300px;
    background-color: var(--primary);
    height: 100vh;
    left: 0;
    top: 0;
}

.left-content .logo-img {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.left-content .logo-img img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.left-content .title {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
}

.left-content .title h1 {
    font-size: 26px;
}

.center-content {
    width: 100%;
    background-color: var(--white);
    height: 100vh;
    position: relative;
    /* necessário para o posicionamento absoluto */
    /* z-index: -1; */
}

.center-content::before {
    content: '';
    background-image: url(./../img/icon260.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 380px;
    opacity: 0.05;
    /* ajusta a opacidade conforme necessário */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top-nav {
    background-color: var(--grey-gelo);
    height: 60px;
    border-bottom: 1px solid var(--grey);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.identity h1 {
    text-align: left;
}

.identity p {
    text-align: left;
}

.user-thumb {
    width: max-content;
    padding: 8px;
    margin-right: 10px;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.user-thumb a {
    color: var(--black);
}

.user-thumb i {
    font-size: 28px;
}

.content-form {
    max-width: 768px;
}

.content-form p {
    text-align: left;
}

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

.login-form {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-group {
    max-width: 763px;
    width: max-content;
    border: 1px solid var(--grey-gelo);
}

.title-form {
    padding: 10px;
    background-color: var(--grey-gelo);
    border-bottom: 1px solid var(--grey);
    display: flex;
    justify-content: space-between;
}

.title-form span {
    width: max-content;
    cursor: pointer;
}

.title-form span i {
    width: max-content;
    font-size: 20px;
}

.title-form h1 {
    text-align: left;
}

.title-form h1 a {
    color: var(--black);
}

.login-form form {
    background-color: var(--grey-gelo);
    max-width: 380px;
    border-radius: 10px;
}

.row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;

}

.input-group {
    display: flex;
    flex-direction: column;
}

input,
select {
    height: 40px;
    outline: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 10px;
}

textarea {
    height: 150px;
    outline: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 10px;
}

.btn {
    height: 40px;
    width: 120px;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--success);
    color: var(--white);
}

.btn-danger {
    color: var(--white);
    background-color: var(--danger);
}

.btn-lite {
    color: var(--black);
    background-color: var(--grey-gelo);
    width: max-content;
}

.btn-green {
    color: var(--white);
    background-color: var(--green);
    width: max-content;
}

.btn-green:hover {
    background-color: var(--success);
}

.btn-lite:hover {
    color: var(--white);
    background-color: var(--primary);
}

.btn-group {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.menu-list {
    margin-top: 10px;
    width: 100%;
}

.active {
    background-color: var(--active) !important;
    color: var(--white) !important;
}

.menu-list li {
    background-color: var(--primary);
    padding: 10px 20px;
    height: 40px;
    /* border-bottom: 1px solid var(--grey-gelo); */
}
.menu-list li i{
    font-size: 24px;
}

.menu-list li:hover {
    background-color: var(--success) !important;
    color: var(--white);
}

.content-form,
.content-table,
.content-info {
    padding: 20px;
    color: var(--black);
    position: relative;
}

.content-form li,
.content-table li,
.content-info li {
    color: var(--black);
}

.content-form .info-start-group,
.content-table .info-start-group,
.content-info .info-start-group {
    padding: 15px;
}

.content-table,
.content-info {
    padding: 0 20px;
}

.info-start-group {
    width: 100%;
}

.btn-menu-group {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    padding: 10px;
    gap: 20px;
}

.description {
    padding: 10px;
}

.w-200 {
    width: 200px;
}

.w-80 {
    width: 80px;
}

.w-50 {
    width: 50px;
}

.w-40 {
    width: 40px;
}

.w-30 {
    width: 30px;
}

.modal-group {
    position: absolute;
    z-index: 99999;
    background-color: #0000003d;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#successMsg {
    margin-top: 20px;
    margin-left: 20px;
    position: absolute;
    display: none;
    justify-content: flex-start;
    align-items: center;
    color: var(--black);
    background-color: #9effe2;
    width: max-content;
    padding: 10px;
    border-radius: 8px;
    z-index: 99999;
}

#errorMsg {
    margin-top: 20px;
    margin-left: 20px;
    position: absolute;
    display: none;
    justify-content: flex-start;
    align-items: center;
    color: var(--black);
    background-color: #feabab;
    width: max-content;
    padding: 10px;
    border-radius: 8px;
    z-index: 99999;
}

#errorMsg .ri-close-circle-fill {
    color: var(--danger);
    font-size: 26px;
    width: max-content;
}

#successMsg .ri-checkbox-circle-fill {
    color: var(--success);
    font-size: 26px;
    width: max-content;
}

.table-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 763px;
    overflow: auto;
}

table {
    border-collapse: collapse;
    /* min-width: 480px; */
}

thead {
    background: rgba(0, 153, 107, 1);
    color: var(--white);
}

thead th {
    border-bottom: var(--grey);
    font-weight: 600;
}

td,
th {
    width: max-content;
    text-align: left;
    padding: 8px;
    max-width: 768px;
}

td.list-action {
    display: flex;
    flex-direction: row;
    gap: 12px;
    font-size: 18px;
    color: var(--black);
}

td.list-action a {
    color: var(--black);
}

td.list-action {
    display: flex;
    flex-direction: row;
    gap: 12px;
    font-size: 18px;
    color: var(--black);
}

tbody tr:nth-child(2n-1) {
    background-color: var(--grey-gelo);
}

.cards-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: 763px;
}

.card {
    height: 272px;
    width: max-content;
    border: 1px solid var(--grey);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.card h1 {
    font-size: 34px;
    font-weight: 900;
}

.card h2 {
    text-align: left;
    padding: 0 10px;
}

.card span {
    text-align: left;
    padding: 0 10px;
}

.card img {
    width: 170px;
    height: 170px;
    object-fit: cover;
}

.card a {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.card a button {
    width: 140px;
    background-color: var(--green);
    color: var(--white);
}

.detalhes-monument {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    height: 73vh;
    overflow: auto;
    margin-top: 15px;
}

.detalhes-monument .section-group {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: var(--grey-gelo);
}

.detalhes-monument section {
    padding: 15px;
    width: 100%;
    height: max-content;
    background-color: var(--grey-gelo);
}

.detalhes-monument section img {
    box-sizing: border-box;
    object-fit: contain;
}

.detalhes-monument section.right-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.descricao-monument {
    padding: 0 15px;
}

.descricao-monument p {
    font-size: 12pt;
    line-height: 1.5;
}

.line-grph {
    width: 380px;
    border-radius: 0;
    border: none;
}

.list-content-table {
    height: 70vh;
    overflow: auto;
}

.head-group {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10px;
    padding: 7px;
}

.head-group img {
    width: 85px;
    object-fit: contain;
}

.info-head p {
    text-align: left;
}

.footer-doc-group .info-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-doc-group {
    margin: 15px 0;
}

.footer-doc-group .info-footer p {
    width: max-content;
}

.img-monument {
    position: relative;
}

.edit-btn {
    width: 35px;
    height: 35px;
    position: absolute;
    right: 30px;
    top: 30px;
    font-size: 35px;
}

.modal-alert {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: rgba(33, 33, 33, 0.478);
    z-index: 99999;
    display: flex;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.alert-group {
    max-width: 480px;
    background-color: var(--grey-gelo);
}

.head-alert,
.foot-alert {
    width: 100%;
    padding: 10px;
    background-color: var(--grey);
    color: var(--danger);
}

.text-alert {
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.foot-alert {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.foot-alert form {
    width: max-content;
    padding: 2px;
}

.foot-alert button {
    width: 100px;
    padding: 6px;
    border: var(--black) 1px solid;
    border-radius: 3px;
    cursor: pointer;
}

.detalhes-monument .thumb-user {
    width: 150px;
    height: 150px;
}

.detalhes-monument .thumb-user img {
    object-fit: cover;
    width: 120px;
    height: 120px;
}

.edit-form-user {
    flex-direction: column;
}

.edit-form-user form {
    flex-direction: row;
    gap: 0;
}

.edit-form-user form select,
.edit-form-user form input {
    width: 280px;
}

.edit-form-user form select,
.edit-form-user form input,
.edit-form-user form button {
    border-radius: 0;
}

.edit-form-user form button {
    border-radius: 0;
    background-color: var(--green);
    color: var(--white);
    border: var(--green);
}

.head-alert {
    position: relative;
}

.head-alert button {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    background-color: var(--danger);
    color: var(--white);
    cursor: pointer;
}

.cad-btn-group button {
    width: 120px;
    height: max-content;
    background-color: var(--grey-gelo);
    color: var(--black);
}

.cad-btn-group button:hover {
    color: var(--white);
}

.cad-btn-group button i {
    font-size: 40px;
}

.estudantes-localizados {
    padding: 0 15px;
    margin-bottom: 15px;
}

.ul-group-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.txt-center {
    text-align: center !important;
}

.ass-homologa {
    position: absolute;
    right: 0;
    top: 0px;
    width: 120px;
    height: 70px;
    border: 1px solid var(--black);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ass-homologa p {
    width: max-content;
}
.empty-div-30{
    height: 30px;
}
.text-justify{
    text-align: justify !important;
}
.recibo-number{
    border: 2px solid var(--black);
}
hr{
    border: 1px #212121 dashed;
}
/* Estilos para a impressão */
@media print {

    body {
        font-family: 'Montserrat', sans-serif;
        background-color: #fff;
    }

    .list-content-table {
        height: max-content;
        overflow: inherit;
        border: 1px solid var(--grey-gelo);
    }

    section.right-info p {
        text-align: left;
    }

    .noPrint {
        display: none;
    }

    .detalhes-monument {
        height: max-content;
        overflow: inherit;
    }

    th,
    td {
        /* border: 1px solid var(--grey-gelo); */
    }

    /* Media Querys */

}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    .content {
        grid-template-columns: 60px 1fr;
    }

    .center-content {
        max-width: 100%;
    }

    .side-left,
    .left-content {
        width: 60px;
    }

    .left-content .logo-img img {
        width: 40px;
        height: 40px;
    }

    .left-content .title h1 {
        font-size: 12px;
    }

    .menu-list li span {
        display: none;
    }
}

@media (max-width: 768px) {
    .w-200 {
        width: 100%;
    }

    .row {
        flex-direction: column;
    }

    .btn-menu-group {
        display: flex;
        flex-direction: row;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .btn-menu-group a {
        width: max-content;
    }

    /* .table-group {
        max-width: 100%;
    } */

    table {
        /* width: 500px; */
        overflow: auto;
    }
}

@media screen and (max-width: 480px) {
    .right-content{
        /* width: 100%; */
        /* position: relative; */
    }
    .center-content {
        /* position: fixed; */
        /* left: 60px; */
        /* width: 100%; */
    }
    .content-form {
        padding: 0;
    }

    .identity h1 {
        display: none;
    }

    .login-form {
        padding: 0px;
    }
    .login-form .form-group {
        width: 100%;
    }
    .login-form form {
        background-color: transparent;
    }
    .line-grph {
        width: 100%;
    }

}


/* 480px // Extra small screen
768px // Small screen
992px // Medium screen
1200px // Large screen
1600px // Extra Large screen
1900px // Extra Large screen */