body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #f5f5f5;
    }
    .cabecalho {
      background-color: #0077b6;
      color: white;
      padding: 20px;
      text-align: center;
    }
    .cabecalho img {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      margin-top: 15px;
      border-radius: 10px;
    }
    .conteudo {
      padding: 20px;
      max-width: 800px;
      margin: auto;
      background: white;
    }
    .datas {
      font-size: 0.9em;
      color: #777;
      margin-bottom: 20px;
    }
    /* Botões */
    .news-buttons {
        display: flex;
        justify-content: space-around;
        gap: 10px;
    }

    .backnews {
        background: #0077b6;
        color: white;
    }

    /* Animação hover */
    .btn:hover {
        transform: scale(1.05);
    }

    .lateral {
      flex: 1 1 35%;
      max-height: 90vh;
      overflow-y: auto;
      background: #ffffff;
      padding: 20px;
      box-sizing: border-box;
      box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
    }
    .noticia {
      background: white;
      padding: 15px;
      margin-bottom: 20px;
      border-radius: 10px;
    }
    .noticia img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 10px;
    }
    .paragrafo {
    text-align: justify;
    text-indent: 30px; /* Recuo da primeira linha */
    }
    .paragrafo::first-letter {
      font-size: 200%;     /* Tamanho maior da primeira letra */
      font-weight: bold;
      float: left;
      line-height: 1;
      padding-right: 5px;
    }
    .cronologia h3 {
      margin-top: 0;
    }
    .cronologia a {
      display: block;
      margin-bottom: 10px;
      color: #00695c;
      text-decoration: none;
    }
    .cronologia a:hover {
      text-decoration: underline;
    }

    ul { margin-left: 20px; }
    table { width: 100%; border-collapse: collapse; margin: 10px 0; }
    th, td { padding: 8px; border-bottom: 1px solid #ccc; text-align: left; }

    @media (max-width: 768px) {
      .layout {
        flex-direction: column;
      }
      .principal, .lateral {
        flex: 1 1 100%;
      }
    }
