p {
  line-height: 24px;
}

.tfigura {
  padding-top: 3em;
}

.ffigura {
  padding-bottom: 3em;
  font-size: 10pt;
}

li {
  line-height: 24px;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: normal;
  margin: 0;
}

#container {
  margin: 0px 0px 0px 0px;
  padding: 0px 40px 80px 40px;
  justify-content: center;
}
/*
CABEÇALHO DO ARTIGO
*/
#inicio {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 0px 20px 0px;
}

.img-logo {
  max-width: 100%;
  height: auto;
  height: 80px;
}

.tipotrabalho {
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: white;
  background-color: #21409a;
  width: 300px;
  margin-left: 50px;
  font-size: 16pt;
  display: flex;
  justify-content: center;
  align-items: center;
}

#links {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
}

.icones {
  width: 24px;
  padding-left: 15px;
}

.linkcabecalho {
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  margin: 0px 10px;
  font-size: 14px;
  align-items: center;
}

a {
  text-decoration: none;
  color: #1a68cf;
}

/*
FIM CABEÇALHO DO ARTIGO
*/

/* TÍTULO PRINCIPAL ---------------------------------------------*/

h1 {
  text-align: center;
  padding: 30px 0px 20px 0px;
  font-weight: 800;
  font-size: 30px;
}

.comocitar {
  padding-top: 30px;
  line-height: 20px;
  text-align: center;
}

/* FIM TÍTULO PRINCIPAL ---------------------------------------------*/

/* TÍTULO TRADUZIDO ---------------------------------------------*/

.translate {
  font-style: italic;
  font-size: 20px;
  font-weight: normal;
  padding: 10px 0px 0px 0px;
}

/* AUTORES -----------------------------------------------------*/

.autorum {
  display: flex;
  padding-top: 50px;
}

.autores {
  padding-top: 0px;
  display: flex;
}

.autorum,
.autores {
  font-weight: normal;
}

.redes {
  display: flex;
}

h2 {
  font-size: 20px;
  font-weight: bold;
}

.titulo {
  padding-top: 40px;
}

.filiacao {
  padding-top: 20px;
}

h3 {
  padding-top: 20px;
  font-weight: 300;
  font-style: italic;
}

.citacao {
  font-style: italic;
  padding-left: 60px;
  font-size: 15px;
}

.semItalico {
  font-style: normal;
}

#rodape {
  bottom: 0;
  position: fixed;
  width: 100%;
  text-align: center;
  background-color: #d3d3d3;
}

.imgrodape {
  height: 20px;
  vertical-align: middle;
  padding-left: 20px;
  padding-bottom: 5px;
}

/* TOOLTIP -----------------------------------------------------*/

[data-ref] span {
  display: inline-block;
  cursor: pointer;
}

[data-ref] span:hover .tooltip {
  display: block;
  opacity: 1;
  text-overflow: ellipsis;
}

sup {
  color: #21409a !important;
  font-weight: bold;
}

.tooltip {
  display: none;
  background-color: #1c1c1c;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px 20px;
  text-align: left;
  width: 500px;
  position: absolute;
  left: 0;
  margin-top: -3px;
  opacity: 0;
  transition: opacity 0.3s;
  text-overflow: ellipsis;
  word-wrap: break-word;
  animation: slide-up 0.4s ease-out forwards;
  font-weight: normal;
  z-index: 50;
}

/* alterações para foto com funcionalidade de zoom */

.image-container {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: 60px;
}

.zoomable-image {
  width: 100%;
  max-width: 400px;
}

.zoom-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  border: none;
  padding: 5px;
  cursor: pointer;
  z-index: 10;
}

.zoom-button img {
  width: 24px; /* Ajuste o tamanho conforme necessário */
  height: 24px; /* Ajuste o tamanho conforme necessário */
  padding: 5px;
}

.zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.zoom-overlay.show {
  opacity: 1;
  transform: scale(1);
}

.zoom-container {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  width: 50vw;
}

.zoom-container img {
  max-width: 90vw;
  max-height: 60vh;
  margin-top: 20px;
}

.zoom-container .title {
  font-size: 16px;
  margin-bottom: 10px;
}

.zoom-container .description {
  margin-top: 10px;
  color: black;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
}

/* MOBILE ------------------------------------------------------ */

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 400px) {
  #container {
    margin: 0px 0px 0px 0px;
    padding: 0px 10px 0px 10px;
    overflow: hidden;
  }

  #inicio {
    height: max-content;
    display: grid;
  }
  .img-logo {
    padding-bottom: 30px;
  }

  .tipotrabalho {
    font-size: 16pt;
    width: 100%;
    height: 40px;
    margin: 0px 0px 0px 0px;
    align-items: center;
  }

  #links {
    font-size: 14px;
    display: grid;
  }

  .linkcabecalho {
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 10px 0px;
    font-size: 14px;
  }

  .titulo-principal {
    text-align: center;
    padding: 40px 0px 20px 0px;
    font-weight: 800;
    font-size: 30px;
  }
  .icones {
    width: 24px;
    padding-left: 5px;
    padding-right: 10px;
    display: inline;
    text-align: center;
  }

  .autorum {
    padding-top: 50px;
  }

  .autores,
  .autorum {
    display: block;
    text-align: center;
    line-height: 40px;
  }

  #rodape,
  .imgrodape {
    visibility: hidden;
  }

  .comocitar {
    padding-top: 70px;
    text-align: center;
  }

  .image-container {
    margin-right: 0px;
  }

  .zoom-container {
    width: auto;
  }
}
