body {
  overflow-x: hidden;
}

html{
  font-family: 'IBM Plex Sans', sans-serif;
}

a:link{
  color: black;
  text-decoration: none;
}
a:visited{
  color: black;
}
a:active{
  color: black;
}
a:hover{
  text-decoration: none;
  color: black;
}

button:focus{
 outline: none;
}

button{
  border-radius: 0px;
  cursor: pointer;
}

h1 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  max-width: 780px;
  margin: 0;
  padding-bottom: 20px;

}

p{
  margin-top:0
}

p:last-child{
  margin-bottom: 0;
}

ul{
  margin:0
}

/*coluna esquera*/
.container1{
  position: fixed;
  margin-left: 40px;
}

/*Homepage button*/
.hpbutton {
  width: 205px;
  height: 220px;
  background: white;
  border: 3px solid black;
  box-shadow: 5px 5px black;
}

.title {
  font-weight: 900;
  font-size: 35px;
  color: black;
 -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  margin-top: 15px;
  margin-bottom: 0;
  margin-left: 10px;
  line-height: 35px;
  padding-bottom: 10px
}

.subtitle{
  font-weight: bold;
  font-size: 16px;
  margin-top: 66px;
  margin-bottom: 0;
  margin-left: 10px;
  line-height: 19px;
  letter-spacing: -0.5px
}

/*Arquivo/Rede buttons*/
.arbutton{
  width: 211px;
  height: 46px;
  line-height: 40px;
  background: white;
  text-align: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  border: 3px solid black;
  box-sizing: border-box;
  transition: box-shadow .25s;

}

.arbutton:hover, .arbutton.active-section {
  box-shadow: 5px 5px black;
}

.index{
  margin-top: 40px;
  position: absolute;
}

.rede{
  margin-top: 110px;
  position: absolute;
}


#display-tags {
  margin-top: 250px;
  position: absolute;
  box-shadow: 5px 5px black;
  font-weight: 400;
  line-height: 25px;
  height: min-content;
  padding: 5px;
  visibility: hidden;
  font-size: 14px;
  width: 211px
}


/* hover "Sobre"*/
.circle {
  font-size: 11px;
  font-weight: 700;
  border-bottom: 2px solid black;
  color: black;
  position: absolute;
  backface-visibility: hidden;
  visibility: hidden;
  margin-left: -20px;
  margin-top: 20px;
  z-index: 1;
}

.container2{
  width: 80%;
  margin-left: 285px;
}

/*popup sobre*/
.pop-up {
  position: fixed;
  left:-999em;
  overflow-y: hidden;
  overflow-x: hidden;
  z-index: 10;
}

.pop-up:target {
  left:0;
}

.popBox {
  background-color: white;
  width: 60%;
  height: auto;
  min-width: 600px;
  max-width: 800px;
  margin-left: 27.3%;
  border: 5px solid black;
  box-shadow: 7px 7px black;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  z-index: 10;
  padding: 35px;
}

@media screen and (max-width: 1440px) {
  .popBox {
    margin-left:27.5%;
  }
}

:target .popBox {
  position:fixed;
  opacity:1;
}

.sobre {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  background: white;
  width: 60%;
}

.colophon {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  background: white;
  width: 30%;
  position: relative;
  float: right;
  margin-top: 46px
}

.colophon a:hover{
  text-decoration: underline black
}

/*fechar pop-up "sobre" + modal*/
.lightbox {
  display:none;
  text-indent:-999em;
  background:white;
  opacity:0.6;
  width:100%;
  height:100%;
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  right:0;
  z-index: 5;
  transition: opacity 1s ease-in-out;
}

:target .lightbox {
  display:block;
}

.lightbox:hover {
  background: white;
}

.close:link,
.close:visited {
  position:absolute;
  top:1em;
  right:1em;
  display:block;
  width:1em;
  height:1em;
  font: 25px sans-serif;
  text-align:center;
  text-decoration:none;
}
.close:before {
  content:"X";
}
.close:hover,
.close:active,
.close:focus {
  color:#000;
}
.close span {
  text-indent:-999em; display:block;
}

/* itens Índex*/
.item {
  width: 180px;
  float: left;
  background: white;
  border: 3px solid black;
  transition: box-shadow .25s;
  font-weight: 300;
  font-size: 13px;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  text-align: left;
}

.item:hover {
  cursor: move;
  box-shadow: 5px 5px;
}

.item img{
  width: 100%;
  max-height: 100%;
  margin-bottom: 15px;
  margin-top: 15px;
  align-content: center;
  cursor: pointer;
}

.item ul {
  padding-inline-start: 0;
}

.item ul li {
  cursor: pointer;
  display: inline;
  list-style: none;
  text-decoration: underline white;
  transition: text-decoration 0.25s;
}

.item ul li:hover {
  text-decoration: underline black;
  transition: text-decoration 0.25s;
}

.item ul li:after{
  content: ", "
}

.item ul li:last-child::after{
  content: "";
}

/*pop-up item*/
.popBoxitem {
  position: absolute;
  background-color: white;
  padding: 35px;
  width: 60%;
  min-width: 600px;
  max-width: 800px;
  margin-left: 10%;
  border: 5px solid black;
  box-shadow: 7px 7px black;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
  z-index: 10;
}

@media screen and (max-width: 1440px) {
  .popBoxitem {
    margin-left:4%;
  }
}

.popBoxitem.visible {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.detail-title {
  max-width: 780px;
}

.detail-subtitle {
  font-size: 17px;
  font-weight: bold;
  max-width: 780px;
}

.identific{
  font-size: 16px;
  font-weight: 400;
}

.detail-author{
  display: inline;
}

.detail-year{
  display: inline;
}

.detail-type{
  display: inline;
  text-transform: capitalize
}

.detail-subtype::before {
  content: ", ";
}

.detail-supervisor {
  font-size: 14px;
}


.documental{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-height: 400px;
  margin: auto;
}

.detail-tags {
  padding-inline-start: 0;
  list-style: none;
  box-sizing: border-box;
  padding-right: 1em;
}

.detail-img{
  max-width: 70%;
  max-height: 400px;
}

.description .detail-description{
  max-width: 700px;
  max-height: 10em;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  overflow: hidden;
  transition: max-height 1.5s linear;
}

.description.expanded .detail-description {
  max-height: 100em;
  transition: max-height 2s linear;
}

.description .show-link::before {
  content: "Ver mais";
}

.description.expanded .show-link::before {
  content: "Ver menos";
}

.show-link:link {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: underline black;
  transition: text-decoration 0.25s;
}

.show-link:hover{
  text-decoration: underline white;
}
  /*"ver mais" "ver menos"*/

.detail-links{
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.line{
  border-bottom: 2px solid black;
  display: block;
  margin: 22px 0 22px 0
}

  /*estilo links*/
a.link:link{
  text-decoration: underline black;
  transition: text-decoration 0.25s;
}

a.link:hover{
  text-decoration: underline white;
}

.link{
  display: block;
  margin-bottom: 1em;
}

.link:last-child{
  margin-bottom: 0
}
  /*estilo links*/


.detail-tags li {
  border: 3px solid black;
  box-sizing: border-box;
  font-weight: 400;
  line-height: 25px;
  height: min-content;
  padding: 5px;
  margin-bottom: 14px;
  width: 200px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}

.detail-tags li:hover{
  box-shadow: 5px 5px black;
  transition: box-shadow .25s;
}

/* INFO
.ShowHide {
overflow: hidden;
font-family: 'IBM Plex Sans', sans-serif;
font-size: 13px;
font-weight: 400;
background-color: white;
border: 3px solid black;
box-shadow: 5px 5px black;
padding:4px;
position: fixed;
z-index: 9;
width: 275px;
height: 140px;
top: 10px;
right: 30px;
text-align: left;
padding-left: 15px;
opacity: 1;
transition: opacity 0.3s linear
}

#right {
float: right;
margin-top: 10px;
margin-right: 10px;
}

#left{
line-height: 22px;
}

.ShowHide a {
font: 15px sans-serif;
font-weight: 600;
text-align:center;
text-decoration:none;

}
.ShowHide a:hover {
text-decoration:none;
}

.comandos{
font-weight: 700;
}

.infotitle{
margin-top: 10px;
padding-bottom: 12px;
font-family: 'IBM Plex Sans', sans-serif;
font-size: 15px;
font-weight: 700;
margin-bottom: -3px;

}
 INFO */
