#noticia01 .adcComentario{
    width: 99%;
    margin: 0 auto 5px auto;
    /* border: 2px solid var(--gray-color); */
    /* border-radius: 9px; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .adcComentario div{
    width: 85%;
  }
  .adcComentario textarea {
    background-color: #dddddd;
    color: #666666;
    padding: 1em;
    border-radius: 10px;
    border: 2px solid transparent;
    outline: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    width: 100%;
    height: 60px;
    transition: all 0.2s;
  }

  .adcComentario textarea:hover {
    cursor: pointer;
    background-color: #eeeeee;
  }

  .adcComentario textarea:focus {
    cursor: text;
    color: #333333;
    background-color: #ffff;
    border-color: #333333;
  }

  #noticia01 .adcComentario img, #noticia01 .section-comentarios img{
  width: 50px;
  border-radius: 50%;
  margin: 1% 2%;
}

#noticia01 .section-comentarios{
    width: 99%;
    margin: 0 auto;
}

.section-comentarios .comentario {
  width: 100%;
  border: none;
  background-color: #f1f1f1;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 10px;
}

.section-comentarios .comentario-header {
  display: flex;
  height: 50%;
  gap: 8px;
  align-items: baseline;
  margin-top: -15px;
  justify-content: space-between;
}

.section-comentarios .comentario-body {
  display: flex;
  justify-content: start;
  margin-bottom: 0px;
}
.container-data-hora{
  display: flex;
  grid-row: auto;
  align-items: baseline;
  width: 100%;
  justify-content: space-between;
}
.comentario-hora{
  font-style: italic;
  color: #666666;
  font-size: 12px;
}

.comentario-data {
  font-style: italic;
  color: #666666;
  font-size: 12px;
}

.comentario-autor {
  font-weight: bold;
  color: #333333;
  margin-top: 15px;
}

/* BOTÃO */

 /* #noticia01 .adcComentario button{
  width: 25%;
  border-radius: 5px;
  margin: 1%;
  padding: 5px 0;
  color: var(--black-color);
  background-color: var(--light-blue-color);
  border: 1px solid var(--dark-blue-color);
  border-bottom: 3px solid var(--dark-blue-color);
  transform: translate(0, -3px);
  transition: 0.2s;
  transition-timing-function: linear;
} */
/* #noticia01 .adcComentario button:active{
  transform: translate(0, 0);
  border-bottom: 2px solid var(--dark-blue-color);
}  */

#noticia01 .btn {
  display: inline-block;
  padding: 5px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  border: none;
  background-color: #0166a0;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
  height: 3em;
  box-shadow: 3px 2px 5px black;
  border-radius: 33px;
  min-width: 100px;
 }

 .btn::before {
  /* content: ""; */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0084cf;
  transform: translateX(-100%);
  transition: all .3s;
  z-index: -1;
 }

 .btn:hover::before {
  transform: translateX(0);
 }

@media (max-width: 850px) {
    .comentar {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto;
    }

    .section-comentarios {
        display: grid;
        grid-template-columns: auto;
        grid-template-rows: auto;
    }
    #noticia01 .adcComentario{
        flex-direction: column;
    }
    #noticia01 .adcComentario div, #noticia01 .adcComentario{
        width: 100%;
    }
}
