* {
  margin: 0;
  padding: 0;
  outline: none;
  transition: ease-in-out 320ms;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

html {
    margin-top: 0px !important;
}

.container {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
}
.container .wrapper {
  max-width: 1288px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

p, a, span, strong, li, input, button, h1, h2, h3, h4, ul, div {
  font-family: "Open Sans", sans-serif !important;
}

.overlay-search {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 6;
}

.search_click {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.search_click input {
  width: 100%;
  height: 100%;
  border: none;
  background: #f2f2f2;
  padding: 0 15px;
  border-radius: 10px;
}

.header__blog {
  background: #FFF;
  padding: 10px 0;
  top: 0;
  z-index: 7 !important;
  height: 89px;
}
.header__blog .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__blog .header nav {
  flex: 1;
  display: flex;
}
@media screen and (max-width: 990px) {
  .header__blog .header nav {
    display: none;
  }
}
.header__blog .header nav ul {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}
.header__blog .header nav ul li {
  font-size: 16px;
  color: #909090;
  text-transform: uppercase;
  font-weight: 600;
}
.header__blog .header nav ul .busca-blog {
  margin-left: 15px;
  margin-right: 5px;
  cursor: pointer;
}
.header__blog .header nav ul .link {
  background: #A6CE38;
  padding: 5px;
  border-radius: 5px;
  color: #FFF;
  font-size: 15px;
  text-transform: none;
  font-weight: normal;
}

.overlay-search, .search_click {
  display: none;
}

.show-search {
  display: flex;
}

.leia__mais__blog__post {
  color: #909090;
  font-weight: 600;
}

.botao-ultimos-artigos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.botao-ultimos-artigos a {
  border: 2px solid #A6CE38;
  font-weight: 700;
  color: #A6CE38;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 5px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.post-em-destaque {
  width: 100%;
  display: flex;
  height: 660px;
  z-index: 4;
  position: relative;
}
@media screen and (max-width: 990px) {
  .post-em-destaque {
    height: auto;
    flex-direction: column;
  }
}
.post-em-destaque__foto {
  max-width: 890px;
  width: 100%;
  height: 100%;
  background: #DDD;
}
.post-em-destaque__foto img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1424px) {
  .post-em-destaque__foto {
    max-width: 750px;
  }
}
@media screen and (max-width: 1275px) {
  .post-em-destaque__foto {
    max-width: 650px;
  }
}
@media screen and (max-width: 990px) {
  .post-em-destaque__foto {
    height: 300px;
    flex: unset;
    width: 100%;
  }
}
.post-em-destaque__texto {
  flex: 1.2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3%;
  background: #f2f2f2;
}
@media screen and (max-width: 990px) {
  .post-em-destaque__texto {
    padding: 20px;
  }
}
.post-em-destaque__texto .tag {
  border: #A6CE38 2px solid;
  padding: 5px;
  border-radius: 5px;
  color: #A6CE38;
  font-weight: 600;
  width: fit-content;
}
.post-em-destaque__texto .tag:hover {
  background: #A6CE38;
  color: white;
}
.post-em-destaque__texto h1 {
  font-size: 40px;
  max-width: 70%;
  width: 100%;
  margin: 20px 0 35px 0;
  font-weight: 900;
}
@media screen and (max-width: 990px) {
  .post-em-destaque__texto h1 {
    max-width: 100%;
    font-size: 28px;
    margin-top: 10px;
  }
}

.ultimos-artigos {
  width: 100%;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 990px) {
  .ultimos-artigos {
    flex-direction: column;
  }
}
.ultimos-artigos  a {
  flex: 1 0 24%;
  overflow: hidden;
  color: #232323;
}
.ultimos-artigos .artigo {
    width: 100%;
}
.ultimos-artigos .artigo__foto {
  height: 350px;
  width: 100%;
  background: #DDD;
  overflow: hidden;
}
.ultimos-artigos .artigo__foto img {
    width: 100%;
    max-width: 100% ;
    height: 100%;
    object-fit: cover;
}
.ultimos-artigos .artigo__texto {
  background: #f2f2f2;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.ultimos-artigos .artigo__texto__tag {
  background: #A6CE38;
  font-size: 12px;
  color: #FFF;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  top: -14px;
}
.ultimos-artigos .artigo__texto__nome {
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px 0;
  min-height: 73px;
}
.ultimos-artigos .artigo__texto .leia__mais__blog__post {
  font-size: 14px;
}

.materiais-bg {
  padding: 5% 0;
  background: #f2f2f2;
  margin-top: 35px;
}
@media screen and (max-width: 990px) {
  .materiais-bg {
    flex-direction: column;
  }
}
.materiais-bg .materiais {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .materiais-bg .materiais {
    flex-direction: column;
  }
}
.materiais-bg .materiais__texto {
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .materiais-bg .materiais__texto {
    order: 2;
  }
}
.materiais-bg .materiais__texto .materiais__texto__tag {
  border: #A6CE38 2px solid;
  padding: 5px;
  border-radius: 5px;
  color: #A6CE38;
  font-weight: 600;
  width: fit-content;
}
.materiais-bg .materiais__texto h2 {
  font-size: 40px;
  max-width: 70%;
  width: 100%;
  margin: 20px 0 35px 0;
  font-weight: 900;
}
@media screen and (max-width: 990px) {
  .materiais-bg .materiais__texto h2 {
    font-size: 28px;
    margin-top: 10px;
    max-width: 100%;
  }
}
.materiais-bg .materiais__texto .botao__materiais {
  background: #2f6b95;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFF;
  padding: 8px;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
.materiais-bg .materiais__imagem {
  flex: 1;
}
.materiais-bg .materiais__imagem img {
  max-width: 100%;
  width: 100%;
}

.cases-bg {
  padding: 5% 0;
  background: #a5cc39;
}
@media screen and (max-width: 990px) {
  .cases-bg {
    flex-direction: column;
  }
}
.cases-bg .materiais {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 990px) {
  .cases-bg .materiais {
    flex-direction: column;
  }
}
.cases-bg .materiais__texto {
  max-width: 670px;
  width: 100%;
  padding: 0 2%;
}
@media screen and (max-width: 990px) {
  .cases-bg .materiais__texto {
    order: 2;
    padding: 0;
    margin-top: 15px;
  }
}
.cases-bg .materiais__texto .materiais__texto__tag {
  border: #FFF 2px solid;
  padding: 5px;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  width: fit-content;
}
.cases-bg .materiais__texto h2 {
  font-size:36px;
  flex: 1;
  margin: 20px 0 5px 0;
  font-weight: 900;
  color: #FFF;
}

.materiais__texto__excerpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limita a 3 linhas */
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
	color: #FFF;
	  margin-bottom: 20px
}

@media screen and (max-width: 990px) {
  .cases-bg .materiais__texto h2 {
    font-size: 28px;
    margin-top: 10px;
    max-width: 100%;
  }
}
.cases-bg .materiais__texto .botao__materiais {
  background: #2f6b95;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFF;
  padding: 8px;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
.cases-bg .materiais__imagem {
  max-width: 610px;
	width: 100%;
}
.cases-bg .materiais__imagem img {
  max-width: 100%;
  width: 100%;
	height: 100%;
    object-fit: cover;
}

.webstores-bg {
  padding: 7% 0 50px 0;
}
@media screen and (max-width: 990px) {
  .webstores-bg {
    padding-bottom: 20px;
  }
}
.webstores-bg .titulo-stories {
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 25px;
}
@media screen and (max-width: 990px) {
  .webstores-bg .titulo-stories {
    font-size: 24px;
  }
}
.webstores-bg .webstories {
  width: 100%;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories {
    flex-wrap: wrap;
  }
}
.webstores-bg .webstories .stories {
  flex: 1 0 24%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories .stories {
    flex: 1 0 40%;
  }
}
.webstores-bg .webstories .stories:hover .filter {
  opacity: 0.6;
  transition: ease-in-out 320ms;
}
.webstores-bg .webstories .stories:hover h4 {
  font-size: 24px;
  margin-top: 5px;
}
.webstores-bg .webstories .stories > img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.webstores-bg .webstories .stories .filter {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background: #A6CE38;
  opacity: 0;
  transition: ease-in-out 320ms;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories .stories .filter {
    opacity: 0.6;
  }
}
.webstores-bg .webstories .stories .titulo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 0 15px 0 0;
}
.webstores-bg .webstories .stories .titulo h4 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #2f6b95;
  line-height: 1.7em;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories .stories .titulo h4 {
    font-size: 16px;
  }
}
.webstores-bg .webstories .stories .titulo span {
  background-color: #FFF;
  white-space: break-spaces;
  padding-right: 10px;
  line-height: 40px;
}
.webstores-bg .webstories .stories .titulo span span {
  position: relative;
  left: 10px;
}

.footer__blog {
  background: #f2f2f2;
  padding: 50px 0;
}
@media screen and (max-width: 990px) {
  .footer__blog {
    margin-top: 0;
    padding-top: 20px;
  }
}
.footer__blog .footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer {
    flex-direction: column;
  }
}
.footer__blog .footer .logo {
  margin-bottom: 25px;
}
.footer__blog .footer .seo {
  display: flex;
  flex-direction: column;
}
.footer__blog .footer .seo a {
  background: #a5cc39;
  padding: 8px;
  color: #FFF;
  font-weight: bold;
  width: fit-content;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 8px;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer .column:nth-child(2) {
    border-bottom: 1px solid rgba(221, 221, 221, 0.8666666667);
    border-top: 1px solid rgba(221, 221, 221, 0.8666666667);
    padding-bottom: 25px;
    padding-top: 25px;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
.footer__blog .footer .column ul p {
  color: #232323;
  font-weight: bold;
  margin-bottom: 8px;
}
.footer__blog .footer .column ul li {
  color: #232323;
}
.footer__blog .footer .column ul li a {
  color: #232323;
}
.footer__blog .footer .column .redes {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer .column .redes {
    margin-top: 20px;
    justify-content: space-between;
  }
}
.footer__blog .footer .column .redes li {
  width: 40px;
  height: 40px;
  background: #a5cc39;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.footer__blog .footer .column .redes li a {
  color: #FFF;
}
.footer__blog .footer .horizontais {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer .horizontais {
    max-width: 100%;
  }
}
.footer__blog .footer .horizontais .menu_horizontal {
  display: flex;
  justify-content: space-between;
}
.footer__blog .footer .horizontais .menu_horizontal li a {
  font-weight: bold;
}
.footer__blog .footer .horizontais input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #c4c4c4;
  width: 100%;
  margin-top: 15px;
}


.header_categoria {
  width: 100%;
  height: 280px;
  background: #f2f2f2;
  display: flex;
  align-items: center;
}
.header_categoria .green_bar {
  width: 80px;
  background: #A6CE38;
  height: 100%;
}
.header_categoria .title {
  margin-left: 5%;
  font-weight: bold;
  font-size: 20px;
}

.categorias_lista  {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}

.categorias_lista h2 {
    font-size: 16px;
    margin-top: 15px;
    padding-bottom: 20px;
    font-weight: 400;
}

.categorias_lista ul {
    width: 100%;
	    max-width: 990px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.categorias_lista ul li {
    border: 1px solid #A6CE38;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
}

.categorias_lista ul li a{
    color: #A6CE38;
}

.categorias_lista ul li:hover {
	background: #A6CE38;	
}
.categorias_lista ul li:hover a {
	color: #FFF
}


.lista-cat-geral {
  width: 100%;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 990px) {
	.lista-cat-geral .artigo{
		flex: unset !important;
        width: 100%;
        max-width: 100% !important;
	}
	.categorias_lista ul {
    gap: 8px!important;
	}
	.categorias_lista ul li {
    font-size: 11px!important;
}
}
.lista-cat-geral .artigo {
  flex: 1 0 24%;
	overflow: hidden;
	max-width: 300px;
}
.lista-cat-geral .artigo .artigo__foto {
  height: 350px;
  width: 100%;
  background: #DDD;
}
.lista-cat-geral .artigo .artigo__foto img {
  height: 100%;
  width: 100%;
  max-width: 100%;
	object-fit: cover;
}
.lista-cat-geral .artigo .artigo__texto {
  background: #f2f2f2;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.lista-cat-geral .artigo .artigo__texto__tag {
  background: #A6CE38;
  font-size: 12px;
  color: #FFF;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  top: -14px;
}
.lista-cat-geral .artigo .artigo__texto__nome {
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px 0;
	min-height: 73px;

}
.artigo .artigo__texto__nome {
	display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

}

.paginacao {
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.lista-cat-geral .artigo .artigo__texto .leia__mais__blog__post {
  font-size: 14px;
}

.artigo__texto__nome a {
    color: #232323;
}

.cat-header {
    position: sticky;
    top: 0px;
    z-index: 6 !important;
    background: #FFF;
    padding-bottom: 20px;
}

.overlay-search {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 6;
}

.search_click {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.search_click input {
  width: 100%;
  height: 100%;
  border: none;
  background: #f2f2f2;
  padding: 0 15px;
  border-radius: 10px;
}

.header__blog {
  background: #FFF;
  padding: 10px 0;
  top: 0;
  z-index: 7 !important;
  height: 89px;
}
.header__blog .header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__blog .header nav {
  flex: 1;
  display: flex;
}
@media screen and (max-width: 990px) {
  .header__blog .header nav {
    display: none;
  }
}
.header__blog .header nav ul {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}
.header__blog .header nav ul li {
  font-size: 16px;
  color: #909090;
  text-transform: uppercase;
  font-weight: 600;
}
.header__blog .header nav ul .busca-blog {
  margin-left: 15px;
  margin-right: 5px;
  cursor: pointer;
}
.header__blog .header nav ul .link {
  background: #A6CE38;
  padding: 5px;
  border-radius: 5px;
  color: #FFF;
  font-size: 15px;
  text-transform: none;
  font-weight: normal;
}

.overlay-search, .search_click {
  display: none;
}

.show-search {
  display: flex;
}

.leia__mais__blog__post {
  color: #909090;
  font-weight: 600;
}

.botao-ultimos-artigos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.botao-ultimos-artigos a {
  border: 2px solid #A6CE38;
  font-weight: 700;
  color: #A6CE38;
  text-transform: uppercase;
  padding: 10px;
  border-radius: 5px;
  max-width: 500px;
  width: 100%;
  text-align: center;
}

.post-em-destaque {
  width: 100%;
  display: flex;
  height: 660px;
  z-index: 4;
  position: relative;
}
@media screen and (max-width: 990px) {
  .post-em-destaque {
    height: auto;
    flex-direction: column;
  }
}
.post-em-destaque__foto {
  max-width: 890px;
  width: 100%;
  height: 100%;
  background: #DDD;
}
@media screen and (max-width: 1424px) {
  .post-em-destaque__foto {
    max-width: 750px;
  }
}
@media screen and (max-width: 1275px) {
  .post-em-destaque__foto {
    max-width: 650px;
  }
}
@media screen and (max-width: 990px) {
  .post-em-destaque__foto {
    height: 300px;
    flex: unset;
    width: 100%;
  }
}
.post-em-destaque__texto {
  flex: 1.2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3%;
  background: #f2f2f2;
}
@media screen and (max-width: 990px) {
  .post-em-destaque__texto {
    padding: 20px;
  }
}
.post-em-destaque__texto .tag {
  border: #A6CE38 2px solid;
  padding: 5px;
  border-radius: 5px;
  color: #A6CE38;
  font-weight: 600;
  width: fit-content;
}
.post-em-destaque__texto .tag:hover {
  background: #A6CE38;
  color: white;
}
.post-em-destaque__texto h1 {
  font-size: 40px;
  max-width: 70%;
  width: 100%;
  margin: 20px 0 35px 0;
  font-weight: 900;
}
@media screen and (max-width: 990px) {
  .post-em-destaque__texto h1 {
    max-width: 100%;
    font-size: 28px;
    margin-top: 10px;
  }
}

.ultimos-artigos {
  width: 100%;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 990px) {
  .ultimos-artigos {
    flex-direction: column;
  }
}
.ultimos-artigos .artigo {
  flex: 1 0 24%;
}
.ultimos-artigos .artigo__foto {
  height: 350px;
  width: 100%;
  background: #DDD;
}
.ultimos-artigos .artigo__texto {
  background: #f2f2f2;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.ultimos-artigos .artigo__texto__tag {
  background: #A6CE38;
  font-size: 12px;
  color: #FFF;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  top: -14px;
}
.ultimos-artigos .artigo__texto__nome {
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px 0;
}
.ultimos-artigos .artigo__texto .leia__mais__blog__post {
  font-size: 14px;
}

.materiais-bg {
  padding: 5% 0;
  background: #f2f2f2;
  margin-top: 35px;
}
@media screen and (max-width: 990px) {
  .materiais-bg {
    flex-direction: column;
  }
}
.materiais-bg .materiais {
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 990px) {
  .materiais-bg .materiais {
    flex-direction: column;
  }
}
.materiais-bg .materiais__texto {
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .materiais-bg .materiais__texto {
    order: 2;
  }
}
.materiais-bg .materiais__texto .materiais__texto__tag {
  border: #A6CE38 2px solid;
  padding: 5px;
  border-radius: 5px;
  color: #A6CE38;
  font-weight: 600;
  width: fit-content;
}
.materiais-bg .materiais__texto h2 {
  font-size: 40px;
  max-width: 70%;
  width: 100%;
  margin: 20px 0 35px 0;
  font-weight: 900;
}
@media screen and (max-width: 990px) {
  .materiais-bg .materiais__texto h2 {
    font-size: 28px;
    margin-top: 10px;
    max-width: 100%;
  }
}
.materiais-bg .materiais__texto .botao__materiais {
  background: #2f6b95;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFF;
  padding: 8px;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
.materiais-bg .materiais__imagem {
  flex: 1;
}
.materiais-bg .materiais__imagem img {
  max-width: 100%;
  width: 100%;
}

.cases-bg {
  padding: 5% 0;
  background: #a5cc39;
}
@media screen and (max-width: 990px) {
  .cases-bg {
    flex-direction: column;
  }
}
.cases-bg .materiais {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 990px) {
  .cases-bg .materiais {
    flex-direction: column;
  }
}
.cases-bg .materiais__texto {
  max-width: 580px;
  width: 100%;
  padding: 0 5%;
}
@media screen and (max-width: 990px) {
  .cases-bg .materiais__texto {
    order: 2;
    padding: 0;
    margin-top: 15px;
  }
}
.cases-bg .materiais__texto .materiais__texto__tag {
  border: #FFF 2px solid;
  padding: 5px;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  width: fit-content;
}
.cases-bg .materiais__texto h2 {
  font-size: 40px;
  max-width: 850%;
  width: 100%;
  margin: 20px 0 35px 0;
  font-weight: 900;
  color: #FFF;
}
@media screen and (max-width: 990px) {
  .cases-bg .materiais__texto h2 {
    font-size: 28px;
    margin-top: 10px;
    max-width: 100%;
  }
}
.cases-bg .materiais__texto .botao__materiais {
  background: #2f6b95;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFF;
  padding: 8px;
  border-radius: 5px;
  max-width: 200px;
  text-align: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
.cases-bg .materiais__imagem {
  flex: 1;
}
.cases-bg .materiais__imagem img {
  max-width: 100%;
  width: 100%;
}

.webstores-bg {
  padding: 7% 0 50px 0;
}
@media screen and (max-width: 990px) {
  .webstores-bg {
    padding-bottom: 20px;
  }
}
.webstores-bg .titulo-stories {
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 25px;
}
@media screen and (max-width: 990px) {
  .webstores-bg .titulo-stories {
    font-size: 24px;
  }
}
.webstores-bg .webstories {
  width: 100%;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories {
    flex-wrap: wrap;
  }
}
.webstores-bg .webstories .stories {
  flex: 1 0 24%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories .stories {
    flex: 1 0 40%;
  }
}
.webstores-bg .webstories .stories:hover .filter {
  opacity: 0.6;
  transition: ease-in-out 320ms;
}
.webstores-bg .webstories .stories:hover h4 {
  font-size: 24px;
  margin-top: 5px;
}
.webstores-bg .webstories .stories > img {
  max-width: 100%;
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.webstores-bg .webstories .stories .filter {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  background: #A6CE38;
  opacity: 0;
  transition: ease-in-out 320ms;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories .stories .filter {
    opacity: 0.6;
  }
}
.webstores-bg .webstories .stories .titulo {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 0 15px 0 0;
}
.webstores-bg .webstories .stories .titulo h4 {
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  color: #2f6b95;
  line-height: 1.7em;
}
@media screen and (max-width: 990px) {
  .webstores-bg .webstories .stories .titulo h4 {
    font-size: 16px;
  }
}
.webstores-bg .webstories .stories .titulo span {
  background-color: #FFF;
  white-space: break-spaces;
  padding-right: 10px;
  line-height: 10px;
}
.webstores-bg .webstories .stories .titulo span span {
  position: relative;
  left: 10px;
}

.footer__blog {
  background: #f2f2f2;
  padding: 50px 0;
  margin-top: 50px;
}
@media screen and (max-width: 990px) {
  .footer__blog {
    margin-top: 0;
    padding-top: 20px;
  }
}
.footer__blog .footer {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer {
    flex-direction: column;
  }
}
.footer__blog .footer .logo {
  margin-bottom: 25px;
}
.footer__blog .footer .seo {
  display: flex;
  flex-direction: column;
}
.footer__blog .footer .seo a {
  background: #a5cc39;
  padding: 8px;
  color: #FFF;
  font-weight: bold;
  width: fit-content;
  border-radius: 5px;
  font-size: 14px;
  margin-top: 8px;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer .column:nth-child(2) {
    border-bottom: 1px solid rgba(221, 221, 221, 0.8666666667);
    border-top: 1px solid rgba(221, 221, 221, 0.8666666667);
    padding-bottom: 25px;
    padding-top: 25px;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
.footer__blog .footer .column ul p {
  color: #232323;
  font-weight: bold;
  margin-bottom: 8px;
}
.footer__blog .footer .column ul li {
  color: #232323;
}
.footer__blog .footer .column ul li a {
  color: #232323;
}
.footer__blog .footer .column .redes {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer .column .redes {
    margin-top: 20px;
    justify-content: space-between;
  }
}
.footer__blog .footer .column .redes li {
  width: 40px;
  height: 40px;
  background: #a5cc39;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.footer__blog .footer .column .redes li a {
  color: #FFF;
}
.footer__blog .footer .horizontais {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 990px) {
  .footer__blog .footer .horizontais {
    max-width: 100%;
  }
}
.footer__blog .footer .horizontais .menu_horizontal {
  display: flex;
  justify-content: space-between;
}
.footer__blog .footer .horizontais .menu_horizontal li a {
  font-weight: bold;
}
.footer__blog .footer .horizontais input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #c4c4c4;
  width: 100%;
  margin-top: 15px;
}
	
	
.header_article {
  width: 100%;
  min-height: 350px;
  height: fit-content;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  position: relative;
  padding: 50px 0;
}
.header_article .green_bar {
  width: 80px;
  background: #A6CE38;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.header_article .informacoes_artigo {
  width: 100%;
  display: flex;    align-items: center;
}
.header_article .informacoes_artigo .informacoes_texto {
  flex: 1;
  padding-right: 5%;
	    padding-left: 5%;
}
.header_article .informacoes_artigo .nome_do_post {
  font-weight: bold;
  font-size: 42px;
  margin-top: 25px;
}
.header_article .informacoes_artigo .intro_do_post {
  font-size: 20px;
  color: #696969;
  margin: 25px 0;
}
.header_article .informacoes_artigo .tag {
  border: #A6CE38 2px solid;
  padding: 5px;
  border-radius: 5px;
  color: #A6CE38;
  font-weight: 600;
  width: fit-content;
}
.header_article .informacoes_artigo .tag:hover {
  background: #A6CE38;
  color: white;
}
.header_article .informacoes_artigo .criacao_do_post ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.header_article .informacoes_artigo .criacao_do_post li {
  color: #696969;
  font-weight: bold;
}
.header_article .informacoes_artigo .criacao_do_post li a {
  color: #a5cc39;
}
.header_article .post-img {
  max-width: 600px;
  width: 100%;
  height: 400px;
  background: #232323;
}
	
	.header_article .post-img img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

	
.corpo_do_post h1, .corpo_do_post h2, .corpo_do_post h3, .corpo_do_post h4, .corpo_do_post h5, .corpo_do_post h6, .corpo_do_post h6 {
  color: #a6ce38;
}
.corpo_do_post p, .corpo_do_post span {
  color: #909090;
}
.corpo_do_post p em:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #A6CE38;
  margin-left: -20px;
}
.corpo_do_post p em {
  padding: 25px 5%;
  display: flex;
  position: relative;
  align-items: center;
  margin: 25px 0;
}
	
	
.footer_article {
    width: 100%;
    height: fit-content;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    position: relative;
    padding: 50px 0;
}
.footer_article .green_bar {
  width: 80px;
  background: #A6CE38;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.footer_article .informacoes_do_autor {
  width: 100%;
  display: flex;
  align-items: center;
}
	.sobre_autor {
		margin-left: 25px
	}
.footer_article .informacoes_do_autor .nome_do_autor {
  font-weight: bold;
  font-size: 22px;
}
.footer_article .informacoes_do_autor .resumo_do_autor {
  font-size: 18px;
  color: #696969;
  margin: 15px 0 0 0;
}
	
	
	
.posts_relacionados_posts {
  width: 100%;
  display: flex;
  gap: 5px;
}
.posts_relacionados_posts .artigo {
  flex: 1 0 24%;
}
.posts_relacionados_posts .artigo__foto {
  height: 350px;
  width: 100%;
  background: #DDD;
}
	
.posts_relacionados_posts	.artigo__foto a {
    width: 10%;
    height: 100%;
    overflow: hidden;
}
	
.posts_relacionados_posts	.artigo__foto img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
	
.posts_relacionados_posts		.artigo__texto__nome {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.posts_relacionados_posts .artigo__texto {
  background: #f2f2f2;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.posts_relacionados_posts a{
  color: #232323;
}
	
	.posts_relacionados_title {
    font-size: 28px;
    font-weight: bold;
    color: #232323;
    margin: 50px 0 25px 0;
}
.posts_relacionados_posts .artigo__texto__tag {
  background: #A6CE38;
  font-size: 12px;
  color: #FFF;
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  top: -14px;
}
.posts_relacionados_posts .artigo__texto__nome {
  font-weight: 900;
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px 0;
}
.posts_relacionados_posts .artigo__texto .leia__mais__blog__post {
  font-size: 14px;
}
	
		
	@media screen and (max-width: 1324px) {
		.header_article .informacoes_artigo .informacoes_texto {

    padding-left: 10%;
		}
	}

	
	@media screen and (max-width: 990px) {
		.informacoes_artigo {
    flex-direction: column;
}
		.posts_relacionados_posts {
    flex-direction: column;
}
		.header_article .green_bar {
    width: 100%;
    background: #A6CE38;
    height: 25px;
}
		.header_article .informacoes_artigo .nome_do_post {
    font-size: 32px;
    line-height: normal;
}
		.header_article .informacoes_artigo .intro_do_post {
    font-size: 16px;
}
		.header_article .informacoes_artigo .informacoes_texto {
    flex: 1;
    padding-right: 0;
			
    padding-left: 0;
    order: 2;margin-top: 30px;
}
		.header_article .post-img {
    height: auto;
    order: 1;
}
		
		.footer_article .green_bar {
    width: 100%;
    background: #A6CE38;
    height: 25px;
    position: absolute;
    right: 0;
    top: 0;
}
		
		
		
		
	}


.wp-block-image img {
    width: unset !important;
    object-fit: unset !important;
    max-width: unset !important;
    height: auto !important;
    max-width: 100% !important;
}
/*# sourceMappingURL=style.css.map */
