@keyframes animationDados {
	0% {
		opacity: 0;
		height: 0;
	}
	50% {
		opacity: .5;
		height: 75px; /* Altura final */
	}

	100%{
		opacity: 1;
		height: 150px;
	}
}

/*--------------- SmarPages ---------------*/
.mod_smartpages{
	/* FORMATACAO TEMPORARIA */
	/* display: flex; */
	/* gap: 1rem; */
}

.mod_smartpages .card-pages{
	flex-direction: column;
    background-size: cover;
    background-position: center center;
    position: relative;
    background-repeat: no-repeat;
    height: 460px;
    display: flex;
    /* align-items: end; */
    width: 100%;
    justify-content: end;

}

@media screen and (max-width: 1199px){
	.mod_smartpages .card-pages{
		height: 380px;
	}
}

@media screen and (max-width: 575px){
	.mod_smartpages .card-pages{
		height: 300px;
	}
}

.mod_smartpages .card-pages:before{
	content: none;
}



.mod_smartpages .card-pages .card-dados{
	position: relative;
	z-index: 2;
	background-color: var(--t-normal);
	padding: 1.6rem 3rem;
	color: white;
	opacity: 0;
	overflow: hidden; 
	transition: opacity 0.3s linear, height 0.3s linear;
}

@media screen and (max-width: 575px){
	.mod_smartpages .card-pages .card-dados{
		height: 130px !important;
		padding: 1.6rem 1rem !important;
	}
}


.mod_smartpages .card-pages .card-dados:after{
	content: '';
	position: absolute;
	background-repeat: no-repeat;
	background-image: url('../../../images/tema/backgrounds/element-unico.svg');
	top: 20px;
    right: 0;
    width: 110px;
    height: 60px;
    opacity: .2;
    z-index: 1;
    background-size: cover;
}

.mod_smartpages .card-pages .card-dados .page-category h6{
	font-weight: 300 !important;
}

@media screen and (max-width: 575px) {
	.mod_smartpages .card-pages .card-dados .content .page-title h4{
		font-size: 18px;
	}
}

.mod_smartpages .card-pages .card-dados .content .page-title:hover{
	text-decoration: underline;
}

.mod_smartpages .card-pages .card-dados .content .readmore a{
	padding: 0 !important;
}

.mod_smartpages .card-pages .card-dados .content .readmore a i{
	font-size: 38px;
}

.mod_smartpages .card-pages:before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.233);
	z-index: 0;
}

.mod_smartpages .card-pages:first-child:before,
.mod_smartpages .card-pages:hover:before{
	content: '' !important;
}

.mod_smartpages .card-pages:first-child .card-dados,
.mod_smartpages .card-pages:hover .card-dados{
	opacity: 1;
	height: 150px;
}

.mod_smartpages .card-pages .readmore{
	transition: .4s;
}

.mod_smartpages .card-pages:hover .readmore{
	transform: translateX(10px);
}

/*--------------- SmartTags --------------*/

.mod_smarttags{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 1rem;
	grid-row-gap: 1rem;
}

@media screen and (max-width: 991px) {
	.mod_smarttags{
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media screen and (max-width: 767px) {
	.mod_smarttags{
		grid-template-columns: 1fr 1fr;
	}

	.mod_smarttags .card-tags{
		height: 195px !important;
	}
}

@media screen and (max-width: 500px) {
	.mod_smarttags{
		grid-template-columns: 1fr ;
	}

	.mod_smarttags .card-tags{
		height: 115px !important;
		transition: .4s ease-in-out;
	}

	.mod_smarttags .card-tags:hover{
		height: 210px !important;
	}
}
/* 
@media screen and (min-width: 1200px){
	.mod_smarttags .slick-track,.mod_smarttags .slick-track .slick-slide{
		width: 100% !important;
	}
} */

.mod_smarttags .card-tags{
	background-size: cover;
    background-position: center;
	position: relative;
    height: 295px;
}

.mod_smarttags .card-tags:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.362);
	z-index: 1;
}
.mod_smarttags .card-tags.hidden-title:before{
	display: none;
}
.mod_smarttags .card-tags:hover .tags-text, 
.mod_smarttags .card-tags:hover .readmore{
	display: block !important;
}

.mod_smarttags .card-tags .card-dados{
	position: relative;
	height: 100%;
}

.mod_smarttags .card-tags .card-dados{
	overflow: hidden;
	transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.mod_smarttags .card-tags .card-dados:hover:after{
	content: '';
	position: absolute;
    background-repeat: no-repeat;
    background-image: url('../../../images/tema/backgrounds/element-unico-tags.svg');
    bottom: 0;
    right: 29px;
    width: 70px;
    height: 240px;
    opacity: .2;
    z-index: 5;
    background-size: cover;
}

.mod_smarttags .card-tags .card-dados:hover{
	background: var(--t-normal);
    position: relative;
    z-index: 3;
	opacity: 1;
}

.mod_smarttags .card-tags .card-dados:hover .tags-text,
.mod_smarttags .card-tags .card-dados:hover .readmore{
	opacity: 1 !important;
	height: auto !important;
}


.mod_smarttags .card-tags .card-dados .content{
	position: relative;
	z-index: 3;
	color: white;
	padding: 2rem;

	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.mod_smarttags .card-tags .card-dados .content .tag-category h4{
	font-size: 26px;
	font-weight: 600;		
}

@media screen and (max-width: 1199px){
	.mod_smarttags .card-tags .card-dados .content .tag-category h4{
		font-size: 20px;
	}
}

.mod_smarttags .card-tags.hidden-title .card-dados .content .tag-category h4{
	opacity: 0;		
}
.mod_smarttags .card-tags.hidden-title:hover .card-dados .content .tag-category h4{
	opacity: 1;		
}

.mod_smarttags .card-tags .card-dados .content .tags-text{
    max-height: 4.6em;
	line-height: 23px;
}

.mod_smarttags .card-tags .card-dados .content .readmore a{
	padding: 0 !important;
	background-color: transparent !important;
	border: none !important;
	font-size: 35px;
}

.mod_smarttags .card-tags .card-dados .content .tags-text,
.mod_smarttags .card-tags .card-dados .content .readmore{
	opacity: 0;
	height: 0;
	animation-delay: .5s;
}

.mod_smarttags .card-dados .readmore{
	transition: .4s;
}


.mod_smarttags .card-dados .readmore a{
	text-align: start !important;
}

.mod_smarttags .card-dados:hover .readmore{
	transform: translateX(10px);
}