/***  BLOG  ***/

.lista-posts {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 35px;
}

.lista-posts .post {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	width: calc(33.33% - 14px);
	display: block;
	margin: 0 auto;
}

@media (max-width: 992px) {
	.lista-posts .post {
		text-align: center;
		width: 100%;
	}
}

.lista-posts .post .imagem {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	overflow: hidden;
	position: relative;
}

.lista-posts .post .imagem img {
	width: 100%;
	transition: .5s;
}

.lista-posts .post:hover .imagem img {
	transform: scale(1.1);
}

.lista-posts .post .texto {
	padding: 25px;
}

.lista-posts .post .infos {
	display: flex;
    flex-direction: row;
	margin-bottom: 15px;
}

.lista-posts .post .categoria {
    color: #111;
    font-size: 13px;
    background: var(--main-color);
    border-radius: 12px;
    padding: 2px 8px;
    margin-right: 12px;
}

.lista-posts .post .data-post {
    color: var(--gray);
    font-size: 13px;
	display: flex;
    align-items: center;
    gap: 5px;
}

.lista-posts .post h3 {
	color: var(--second-color);
	font-size: 18px;
	font-weight: 600;
	transition: .5s;
}

.lista-posts .post:hover h3 {
	color: var(--main-color);
}

#blog .formulario-busca {
    max-width: 420px;
	margin: 0 auto 48px;
}

#blog .formulario-busca form {
	position: relative;
}

#blog .formulario-busca form input {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	line-height: 32px;
	border-radius: 16px;
	border: 1px solid var(--second-color);
	width: 100%;
	height: auto;
	padding: 8px 40px 8px 20px;
}

#blog .formulario-busca form button {
	color: #fff;
	background: var(--second-color);
    border: 0;
	border-top-right-radius: 16px;
	border-bottom-right-radius: 16px;
	position: absolute;
	top: 0;
	right: 0;
    bottom: 0;
	cursor: pointer;
    transition: .3s all;
	padding: 16px 16px;
}

#blog .formulario-busca form button:hover {
    background: #333;
}

#blog .formulario-busca form button i {
	font-size: 18px;
}

#blog .lista-posts .nada-encontrado {
	color: #222;
	font-weight: 500;
	background: #f7f7f7;
	border: 1px solid #ccc;
	border-radius: 2px;
	width: 100%;
	height: 40px;
	padding: 5px 10px;
	margin-bottom: 30px;
}

#blog .navegacao {
	width: 100%;
	text-align: center;
	margin-top: 45px;
}

@media (max-width: 992px) {
	#blog .navegacao {
		margin-top: 15px;
	}
}

#blog .navegacao .page-numbers {
	color: var(--main-color);
	font-weight: 600;
	transition: 0.4s all;
	padding: 10px 18px;
	margin: 0 2px;
}

#blog .navegacao .page-numbers.current {
	color: #fff;
	background: var(--main-color);
}

#blog .navegacao .page-numbers:hover {
	color: #fff;
	background: var(--main-color);
	opacity: 0.9;
}

/*  Single  */

#post .post {
	max-width: 900px;
	margin: 0 auto;
}

#post .post .titulo {
	margin-bottom: 15px;
}

#post .post h1 {
	color: var(--main-color);
	font-size: 38px;
	font-weight: 400;
	line-height: 44px;
}

@media (max-width: 768px) {
	#post .post h1 {
		font-size: 24px;
		line-height: 30px;
	}
}

#post .post .info-post {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(100, 100, 100, .1);
	padding-bottom: 30px;
	margin-bottom: 60px;
}

@media (max-width: 768px) {
	#post .post .info-post {
		flex-direction: column;
		margin-bottom: 30px;
	}
}

@media (max-width: 768px) {
	#post .post .data-post {
		margin-bottom: 15px;
	}
}

#post .post .data-post p {
	margin-bottom: 0;
}

#post .post .info-post .share-post {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

#post .post .share-post .addtoany_list span {
	border-radius: 50%;
	padding: 3px;
}

#post .post .conteudo {
	max-width: 800px;
	margin: 0 auto;
}

#post .post .conteudo h2 {
	color: var(--main-color);
	font-size: 21px;
	text-transform: uppercase;
	margin-top: 30px;
	margin-bottom: 20px;
}

#post .post .conteudo p {
	line-height: 28px;
}

#post .post .conteudo p:last-child {
	margin-bottom: 0;
}

#post .post .conteudo ul {
	margin-left: 20px;
}

#post .post .conteudo ul li {
	list-style-type: disc;
	margin-bottom: 10px;
}

#post .post .conteudo ul li:last-child {
	margin-bottom: 0;
}

#outros-posts {
	padding-top: 0;
}

#outros-posts .titulo-secao {
	font-size: 38px;
    font-weight: 400;
    line-height: 44px;
	margin-bottom: 35px;
}

@media (max-width: 768px) {
	#outros-posts .titulo-secao {
		font-size: 24px;
		line-height: 30px;
	}
}

#outros-posts .lista-posts {
	justify-content: center;
}