@import url(./guideStyle.css);

.blog-estrutura {
  padding: 4rem 1rem;
  margin: auto;

  display: flex;
  flex-wrap: wrap;

  gap: 2rem;
  background-color: #f2f2f2;

  @media (max-width: 1500px) {
    gap: 1rem 0.3rem;
    padding: 5rem 0.2rem;
  }
}
.blog-card {
  border-radius: 0.3rem;
  border: rgb(208, 208, 208) 1px solid;
  background-color: white;

  height: auto;
  width: 20%;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  padding: 1rem;

  @media (max-width: 1500px) {
    width: 23%;
    padding: 1rem 0.2rem;
  }
  @media (max-width: 900px) {
    width: 96%;
    padding: 1rem 0.2rem;
  }
}

.blog-card img {
  height: 10rem;
}

.blog-card-titulo {
  width: 100%;
  text-align: center;

  font-size: 18px;
  font-weight: 700;

  padding: 2rem 0.5rem 0.5rem 0.5rem;
}
.blog-card-texto {
  font-size: 12px;
  line-height: 20px;

  padding: 0.5rem;
}
.blog-card-dados {
  font-size: 12px;
  color: grey;

  text-align: left;
  align-self: flex-start;

  padding: 0.5rem 0.5rem 1rem 0.5rem;
}
.blog-btn {
  width: 100%;
  padding: 0.5rem;

  border: none;
  font-weight: 700;

  @media (max-width: 900px) {
    width: 90%;
  }
}
.blog-poup-up {
  height: 100vh;
  width: 100vw;

  background-color: rgba(0, 0, 0, 0.708);

  z-index: 998;
  position: fixed;
  top: 0px;
  left: 0px;
  display: none;
}
.blog-poup-conteudo {
  border-radius: 5px;

  margin: 5rem auto;
  height: 100%;
  min-height: 80vh;
  overflow: scroll;
  width: 70%;
  background-color: #f2f2f2;

  @media (max-width: 900px) {
    width: 95%;
  }
}
.btn-fechar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.btn-fechar i {
  padding: 1rem 2rem;
  font-weight: 700;
}
.blog-poup-up.ativo {
  display: flex;
  margin: auto;
}
.blog-poup-conteudo {
  display: flex;

  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.blog-img img {
  height: 20rem;
  border: 1px solid white;
}
.blog-poup-titulo {
  padding: 2rem 0rem 0.4rem 0rem;

  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
.blog-poup-dados {
  color: grey;
  padding-bottom: 2rem;
}
.blog-poup-texto {
  width: 80%;
  line-height: 30px;

  padding-bottom: 8rem;
}

.btn-fechar button {
  margin-top: 1rem;
  padding-top: 1rem;
  width: 100%;
  border: none;
  font-weight: 700;
}
