:root {
    --light-black: #222222;
    --secondary-text-color: #4e4c4c;
    --product-secondary-text-color: #d9d9d9;
    --product-secondary-text-color-white-bg: #4b5863;
    --green: #0b6267;
    --green-secondary: #138086;
    --line-color: #146e73;
    --openzap-bg-width: 40%;
    --main-bg-color: #f5f5f7;
    --main-bg-color-black: #282727;
    --bg-blog: #e9e9e9;
    --data-color: #262626;
    --tittle-footer-color: #afafaf;
    --container1-txt-color: #a5a5a5;
    --rede-bg-color: #a5a5a5;
    --linha-footer-color: #3d3a3a;
    --third-light-bg-color: #f2f2f2;
    --quality-selected: #d6e8ed;
    --green-line: #1786a3;
}

main {
    padding: 170px 0 90px 0;
    background-color: white;
}

header {
    background-color: #efeded !important;
}

#conteudo .wrapper {
    width: 70%;
    margin: auto;
}

input {
    outline: none;
}

.post-layout {
  display: flex;
  gap: 40px;
}

.container-post {
  background: white;
}

.header-post h1 {
  color: var(--data-color);
  font-size: 2rem;
  font-size: 61px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 73.2px */
  overflow-wrap: break-word;
  margin-bottom: 10px;
}

.infos {
  display: flex;
  align-items: center;
  color: var(--product-secondary-text-color-white-bg);
  gap: 10px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

.infos p {
    font-size: 0.8rem;
}

.container-img-principal img {
  width: 100%;
  border-radius: 12px 12px 0 12px;
  margin: 14px 0 0 0;
}

.container-conteudo h2 {
  margin-top: 30px;
  color: var(--data-color);
  font-size: 49px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 58.8px */
  overflow-wrap: break-word;
}

.container-conteudo p {
    margin: 20px 0 0 0;
}

.container-conteudo p, .container-conteudo li {
    color: var(--product-secondary-text-color-white-bg);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
  overflow-wrap: break-word;

}

.container-conteudo ul,
.container-conteudo ol{
  margin: 15px 0 15px 25px;
}

/* Navegação entre posts */
.post-navigation {
  display: flex;
  justify-content: flex-start;
  margin: 57px 0 0 0;
  gap: 26px;
}
.post-navigation a {
  background: black;
  color: white;
  padding: 13px 56.5px;
  border-radius: 10px 10px 0 10px;
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}

/* Formulário de comentários */
.comentarios-form {
  background: linear-gradient(45deg, #39b1b6, #4893ce);
  padding: 20px;
  border-radius: 12px 12px 0 12px;
  color: white;
}
.comentarios-form h3 {
  margin-bottom: 15px;
}
.comentarios-form form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comentarios-form input,
.comentarios-form textarea {
  padding: 10px;
  border-radius: 12px 12px 0 12px;
  border: none;
  resize: none;
}

.form-bottom {
    display: flex;
    align-items: center;
}


.checkbox {
  font-size: 0.8rem;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sidebar-box,
.search-box {
  background: #f5f5f7;
  padding: 20px;
  border-radius: 12px 12px 0 12px;
}
.sidebar-box h3 {
  margin-bottom: 10px;
}
.search-box {
  display: flex;
  gap: 10px;
}
.search-box input {
  flex: 1;
  padding: 10px;
  border-radius: 12px 12px 0 12px;
  border: none;
}
.search-box button {
    width: 99px !important;
    height: 41px !important;
    font-size: 0.8rem !important;
}

.sidebar-box ul {
    list-style: none;
}

.sidebar-box ul li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    font-weight: bold;
    stop-color: var(--product-secondary-text-color-white-bg);
    margin-top: 8px;
}

.sidebar-box ul li .quantidade-posts {
    color: var(--green);
}

.nenhum-comentario {
    font-size: 0.7rem;
    color: var(--product-secondary-text-color-white-bg);
}

.saiba-mais-dark {
    padding: 8px;
    height: auto;
    /* width: auto; */
}

#conteudo .wrapper {
  min-width: 900px;
}

/* Responsividade */
@media (max-width: 1000px) {
  .post-layout {
    flex-direction: column;
  }
  .search-box input {
    width: 100%;
  }
  #conteudo .wrapper {
    width: 85%;
    min-width: 500px;
  }
}

@media (max-width: 600px) {
  .header-post h1 {
    /* font-size: 1.5rem; */
  }
  .container-conteudo h2 {
    /* font-size: 1.2rem; */
  }
  #conteudo .wrapper {
    min-width: 300px;
  }
  .post-navigation a {
    padding: 13px 35px !important;
  }
}
