/* Estilos da pagina */
html {
  overflow-wrap: break-word;
}

header {
  background-color: #dee8fc;
  color: #111111;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
  border-radius: 8%;
  border-bottom: solid 1px black;
}

header a {
  color: #111111;
  text-decoration: none;
  color: #007bff;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 80vw;
  height: auto;
}


.caption {
  text-align: center;
  font-size: 0.8rem;
  font-style: italic;
}

.header-img {
  max-width: 100%;
}

.sub-header {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
}

.area-logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#logo-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem;
}

#logo {
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.2rem;
}

#sub-logo {
  font-size: 1rem;
}

.area-menu {
  padding-right: 0.2rem;
}

/* Fim estillo da pagina */

/* Cabeçalho do Post */
.post-header {
    border-bottom: 2px solid #e1e5e9;
}

.post-titulo {
    font-size: 1.2rem;
    color: #2c3e50;
    padding-top: 0.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.post-data {
    font-size: 0.8rem;
}

/* Conteúdo do Post */
.post-conteudo {
    font-size: 1rem;
    line-height: 1.4;
    text-align: justify;
    padding: 0.5rem;
}

/* Comentários */
.comentarios-section {
    border-top: 1px solid #dee2e6;
    padding-top: 2rem;
}

.comentarios-titulo {
    color: #495057;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.comentario {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.8rem;
    margin-bottom: 0.5rem;
    border-left: 3px solid #6db2fc;
}

.comentario-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.comentario-autor {
    color: #007bff;
    font-size: 1rem;
}

.comentario-data {
    color: #6c757d;
    font-size: 0.85rem;
}

.comentario-conteudo {
    color: #495057;
    line-height: 1.2;
    font-size: 0.8rem;
}

footer {
  background-color: #313131;
  color: #dee2e6;
  padding: 0.2rem;
  text-align: center;
}


/* Estilos para telas a partir de 768px */
@media screen and (min-width: 768px) {
  main {
    font-size: 1.5rem;
    max-width: 1256px;
    margin: 0 auto;
  }

}