/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.4
	Stable tag: 3.4.4
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

/* Container geral */
.container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Conteúdo principal */
.container .col-md-8 {
  flex: 1 1 65%;
}

/* Sidebar */
.container .col-md-4 {
  flex: 1 1 30%;
}

.sidebar {
  background: #f7f7f7;
  border-left: 6px solid #5085F6;
  padding: 20px;
}

.sidebar h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.sidebar ul li a:hover {
  color: #085F6;
}

/* Título do post */
h1 {
  font-size: 32px;
  color: #111;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Conteúdo do post */
.content {
  font-size: 18px;
  line-height: 1.7;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.post-item {
  background: #f7f7f7;
  padding: 20px;
  border-left: 5px solid #085F6;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.post-item h2 {
  margin-top: 0;
  font-size: 20px;
}

.post-item p {
  font-size: 16px;
  color: #444;
}

.btn-leia {
  display: inline-block;
  margin-top: 10px;
  color: #085F6;
  font-weight: bold;
  text-decoration: none;
}

/* ===== Estilo para a página de Informações ===== */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Coluna principal */
.col-md-8 {
  flex: 0 0 65%;
}

/* Sidebar */
.col-md-4.sidebar {
  flex: 0 0 30%;
  background: #f7f7f7;
  border-left: 6px solid #085F6;
  padding: 20px;
}

.sidebar h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sidebar ul {
  list-style: none;
  padding-left: 0;
}

.sidebar ul li {
  margin-bottom: 10px;
}

.sidebar ul li a {
  color: #333;
  text-decoration: none;
  transition: 0.2s;
}

.sidebar ul li a:hover {
  color: #085F6;
}

/* Post Item */
.post-item {
  margin-bottom: 30px;
}

.post-item h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #e91e63;
}

.btn-leia {
  display: inline-block;
  margin-top: 10px;
  background-color: #e91e63;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.btn-leia:hover {
  background-color: #c2185b;
}

.informacoes-conteudo {
  padding: 40px 0;
  background-color: #fff;
}

.informacoes-conteudo .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}