/*
 Theme Name: Custom A3A
 Template: blocksy
*/

/* Image with 'data' attribute is hidden */
img[data-lazy-src] {
/* we set the opacity to 0 */
   opacity: 0;
}
/* Image without 'data' attribute is (or becomes) visible */
img.lazyloaded {
/* prepare the future animation */
   -webkit-transition: opacity .5s linear 0.2s;
       -moz-transition: opacity .5s linear 0.2s;
                 transition: opacity .5s linear 0.2s;
/* we set the opacity to 1 to do the magic */
   opacity: 1;
}

/* Adicional: Alvo específico para imagens no widget de posts do Elementor */
.elementor-post__thumbnail img.lazyloaded {
    opacity: 1;
    transition: opacity 0.5s linear 0.2s !important; /* Aplica fade-in */
}

.page-container {
	width:100%;
}

.header-container-inner {
	width: 100%;
	max-width: 1600px;
	padding: 5%;
	margin: 0 auto;
	text-align: center;	
	display: flex;
	flex-direction: column;
}

.header-title {
	font-family: 'montserrat', 'roboto';
	font-size: 40px;
	font-weight: 500;
	text-transform: none;
}

.content-container-outer {
	background-color: #ffffff;
	padding: 5%;
}

.content-container-inner{
	max-width: 1600px;
	margin: 0 auto;
}

.content-containeres-outer{
    background-color: #fff;
	padding: 5%;
}

.content-containeres-inner{
    max-width: 1600px;
	margin: 0 auto;
}

.inicial-glossario {	
	font-family: roboto;
	font-size: 80px;
	font-weight:800;
	color: #2e42a2;
}

.divisor-letra {
    border: none; /* Remove bordas padrão */
    border-top: 1px solid #cccccc; /* Define a linha */
    width: 1600px; /* Define a largura fixa */
    margin: 100px auto; /* Centraliza horizontalmente */
    position: relative; /* Garante o alinhamento correto */
    left: 50%; /* Move o elemento para o centro */
    transform: translateX(-50%); /* Corrige o deslocamento */
}

.bottom-container-search-outer {
	background: #ffffff;
}


.bottom-container-search-inner {
	width: 1600px;
	padding: 5%;
	margin: 0 auto;
}


.articles-gridola {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

.article-card {
	box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
}

.article-card img {
    width: 100%;
    height: auto;
}
	
.article-content {
	padding: 20px;
}
.read-more {
	margin: 0;
    color: #075bf7;		
}

.pagination {
    width: 100%;
    text-align: center;
    margin: 30px 0;
}

  .pagination ul.page-numbers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 20px; /* Espaçamento entre cada item */
  }
  
  /* Cada <li> da paginação */
  .pagination ul.page-numbers li {
    display: inline-block;
  }
  
  /* Links da paginação (páginas e textos de anterior/próximo) */
  .pagination ul.page-numbers li a,
  .pagination ul.page-numbers li span {
    color: #075bf7;
    text-decoration: none;
    font-weight: normal;
  }
  
  /* Página atual */
  .pagination ul.page-numbers li .current {
    font-weight: bold;
    cursor: default; /* Indica que não é clicável */
  }
  
  /* Hover nos links */
  .pagination ul.page-numbers li a:hover {
    text-decoration: underline;
  }

.search-subheading-bar{
    border-bottom: 1px solid #ddd;
    margin-bottom: 1rem;
}

.search-categories-list {
  display: flex; 
  list-style: none; 
  margin: 0; 
  padding: 0;
  justify-content: center;
}

.category-item {
  cursor: pointer; 
  padding: 0.75rem 1rem; 
  color: #666; 
  transition: color 0.3s;
  /* Tira sublinhado e afins se forem links */
  text-decoration: none; 
  /* Exibe em linha */
  display: inline-block;
  /* Deixa um pouco de espaço entre tabs */
  margin-right: 1rem;
}

.category-item.active {
  color: #000; 
  font-weight: bold;
  border-bottom: 2px solid #075bf7;
  margin-bottom: -2px; 
}

.search-subheading-bar{
	border-bottom: 1px solid #ddd;
}

.search-results-list{
    list-style: none;
    padding: 0;
}

.search-item {
    border-bottom: 1px solid #ddd;
    padding: 30px 0;
}

.title-search-result a{
	color: #0124AF;
}

pre, code {
    background: #ffffff !important;
}