/* =========================================
   PÁGINAS INTERNAS (Texto)
   ========================================= */

/* Estilos de Texto (História, Sobre, Doutrinas) */
.historia-ieccp,
.texto-padrao {
  max-width: 900px;
  margin: 0 auto; /* Centraliza o bloco de texto */
  padding: 40px 20px;
}

.historia-ieccp img {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.historia-ieccp h1 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.historia-ieccp h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid var(--secondary); /* Detalhe visual bonito */
  padding-left: 15px;
}

.historia-ieccp p {
  font-family: "Poppins", sans-serif;
  line-height: 1.8; /* Melhor leitura */
  margin-bottom: 15px;
  text-align: justify;
}

/* Título Específico da Página de Notícias */
.news-page .content_title,
.page-title .content_title {
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
  font-size: 2.5rem;
  margin-top: 30px;
  margin-bottom: 40px;
  display: block;
  width: 100%;
}

@media (max-width: 810px) {
  .news-page .content_title,
  .page-title .content_title {
    font-size: 2rem;
  }
}

.news-page .content_title::after {
  display: none; /* Remove a linha nesta página */
}

@media (max-width: 810px) {
  .historia-ieccp h1 {
    font-size: 2rem;
  }
  .historia-ieccp p {
    text-align: left;
  }
}

/* =========================================
   PÁGINA DE LEITURA DE NOTÍCIAS
   ========================================= */

.leitura-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  animation: fadeIn 0.5s ease-in;
}

/* Cabeçalho da Notícia */
.leitura-header {
  text-align: center;
  justify-content: safe;
  margin-bottom: 40px;
  border-radius: 20px;
}

.leitura-title {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.leitura-data {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  color: var(--text-color);
  opacity: 0.6;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Imagem de Destaque */
.leitura-img-container {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--card-border);
}

.leitura-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* O Texto em si */
.leitura-content {
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-color);
  text-align: justify;
  white-space: pre-wrap;
}

/* Animação suave de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo para celular */
@media (max-width: 768px) {
  .leitura-title {
    font-size: 1.2rem;
  }
  .leitura-content {
    font-size: 1rem;
    text-align: left;
  }
}
