.btninfo{
    display: flex;
    font-size: 18px;
    background-color: transparent;
    color: var(--red-900);
    font-weight: bold;
  }

  .btninfo:hover {
    opacity: 1;
  }

#fadeinfo{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
}
#modalinfo{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    max-width: 90%;
    background-color: #ffff;
    padding: 1.2rem;
    border-radius: 0.5rem;
    z-index: 10;
}

#fadeinfo,
#modalinfo {
  transition: 0.5s;
  opacity: 1;
  pointer-events: all;
}

.tituloinfo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.bodyinfo{
    margin-bottom: 1rem;
}

#modalinfo.hideinfo,
#fadeinfo.hideinfo {
  opacity: 0;
  pointer-events: none;
}

#modalinfo.hideinfo {
  top: 0;
}

.mdparagrafo{
    margin-bottom: 1rem;
}

.mdparagrafocenter{
  text-align: center;
  font-weight: bold;
}

.mdparagrafodoe{
  margin-top: 10px;
  text-align: center;
  font-weight: bold;
  font-style: italic;
  font-size: 14px;
  color: var(--red-900);
}
