/* FONTES */
@import url("https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800,900");

/* 
#285b56 aqua
#7e5424 marrom
#cea854 dourado
#151a1f preto
#212e30 Cinza escuro 
#0cc0df azul aqua 
*/

:root {
	--text: #232323;
	--text-color: #858585;
	--vermelho: #ef1b48;
	--branco: #ffffff;
	--branco-2: #d6dfe2;
	--border-3: #eaeaea;
	--branco-4: #f0f4f8;
	--azul-claro: #0b87d6;
	--cinza-claro: #a9a9a9;
	--cinza: #404040;
	--cinza-escuro: #2f2f2f;
	--preto: #000000;

	--padding-x-global: 6.25rem;
	--padding-x-global-mobile: 2rem;
	--section-y-global: 3rem;
	--section-y-global-mobile: 3rem;

	--Open-Sans: "Open Sans", sans-serif;
	--Raleway: "Raleway", sans-serif;

	--h1-fs: 3.25rem;
	--h1-lh: 1.2em;
	--h2-fs: 2.4rem;
	--h2-lh: 1.2em;
	--h3-fs: 1.75rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.375rem;
	--h4-lh: 1.2em;
	--h5-fs: 1.25em;
	--h5-lh: 1.2em;
	--h6-fs: 1.125rem;
	--h6-lh: 1.2em;

	--h1-fs-mobile: 2.375rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 2rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 1.5rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.375rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.25em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.125rem;
	--h6-lh-mobile: 1.2em;
}

* {
	border: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Open-Sans);
}

body{
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--dark-color);
	line-height: 1.3;
	font-weight: 700;
	font-family: var(--Raleway);
}

p {
	color: var(--text-color);
	font-size: 0.938rem;
/* 	line-height: 2; */
	font-weight: 400;
}

a {
	transition: 500ms;
	text-decoration: none;
	color: unset;
	font-weight: 600;

}

a:hover  {
	color: var(--vermelho);
}

a:focus::not(.video-area) {
	color: var(--vermelho);
}

button:focus {
	box-shadow: none !important;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

img {
	height: auto;
	max-width: 100%;
}

.wpcf7 {
	display: none;
}

/* ESPAÇAMENTOS E MARGENS */
.mt-15 {
	margin-top: 0.938rem !important;
}

.mt-30 {
	margin-top: 1.875rem !important;
}

.mt-50 {
	margin-top: 3.125rem !important;
}

.mt-70 {
	margin-top: 4.375rem !important;
}

.mt-100 {
	margin-top: 6.25rem !important;
}

.mb-15 {
	margin-bottom: 0.938rem !important;
}

.mb-30 {
	margin-bottom: 1.875rem !important;
}

.mb-50 {
	margin-bottom: 3.125rem !important;
}

.mb-70 {
	margin-bottom: 4.375rem !important;
}

.mb-100 {
	margin-bottom: 6.25rem !important;
}

.ml-15 {
	margin-left: 0.938rem !important;
}

.ml-30 {
	margin-left: 1.875rem !important;
}

.ml-50 {
	margin-left: 3.125rem !important;
}

.mr-15 {
	margin-right: 0.938rem !important;
}

.mr-30 {
	margin-right: 1.875rem !important;
}

.mr-50 {
	margin-right: 3.125rem !important;
}

@media(max-width: 586px){
	.mb-100 {
		margin-bottom: 2.25rem !important;
	}
	.mt-100 {
		margin-bottom: 2.25rem !important;
	}
}

/* PAGINAÇÃO CONTADOR ESTILO */
.pagination-wrapper{
    text-align: center;
}

.pagination-wrapper .page-numbers{
    background-color: var(--branco);
    color: var(--vermelho);
    padding: 0.5rem 1rem;
    border: 1px solid var(--vermelho);
    font-size: 1.5rem;
    font-weight: 400;
}

.pagination-wrapper span.current{
    background-color: var(--vermelho);
    padding: 0.5rem 1rem;
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 700;
}

.pagination-wrapper .prev.page-numbers,
.pagination-wrapper .next.page-numbers{
    color: var(--vermelho);
    font-weight: 400;
    border: none;
}

@media(max-width: 586px){
	.pagination-wrapper span.current,
	.pagination-wrapper .page-numbers {
		font-size: 1rem;
	}
}

/* LOAD PAGE */
.load-posts.load-page{
    position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ffff;
	z-index: 99999;
	transition: 1s;
}

/* LOAD ANIMATION POSTS */
.load-posts{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.load-posts i{
    color: var(--vermelho);
    font-weight: 700;
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: spin 1s linear infinite;
}

.load-posts p{
    font-weight: 700;
}

/* Animação de rotação */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* BOTÕES PADRÕES */

.btn.btn-default {
	background-color: var(--vermelho);
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    color: var(--branco);
    border-radius: 0;
	border-color: var(--vermelho);
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
   
}

.btn.btn-default:hover, .btn.btn-default:focus {
	border-color: var(--preto);
	background-color: var(--preto);
	color: var(--branco);
}

.video-btn {
	width: 3.938rem;
	height: 3.938rem;
	background-color: var(--vermelho);
	color: var(--branco);
	font-size: 1.5rem;
	line-height: 3.938rem;
	display: block;
	border-radius: 50%;
	text-align: center;
	margin: 0 auto 1.25rem;
}

.video-btn:hover, .video-btn.btn-default:focus {
	border-color: var(--preto);
	background-color: var(--preto);
	color: var(--branco);
}

/* SEARCH MODAL */
#searchModal .modal-content{
	background: rgba(0, 0, 0, 0.8);
}

#searchModal .input-group{
	max-width: 600px;
}

#searchModal .btn-close{
	border: 1px solid var(--preto);
	background: var(--vermelho);
	opacity: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

#searchModal .btn-close i{
	font-size: 20px;
    color: var(--branco);
}

#searchModal .input-group input{
	border: 1px solid var(--vermelho);
	color: var(--branco);
}

#searchModal .btn-search{
    background-color: var(--vermelho);
    color: var(--branco);
}

#searchModal .input-group input::placeholder{
	color: #cccc;
}

/* BANNER PAGES */
.catagory-featured-post {
    position: relative;
    z-index: 1;
    height: 31.25rem;
    padding: 2.188rem 4rem;
    background-color: #f0f4f8;
    margin: 0 1.25rem 1.25rem;
}

.catagory-featured-post.bg-overlay::after {
    background-color: rgba(0, 0, 0, 0.65);
}

.catagory-featured-post .post-content .tag {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    height: 45px;
    min-width: 180px;
    background-color: #31ba7e;
    color: #ffffff;
    display: inline-block;
    margin-bottom: 50px;
    text-align: center;
    -webkit-transform: skewX(-30deg);
    transform: skewX(-30deg);
}

.catagory-featured-post .post-content .tag span {
    position: absolute;
    width: 100%;
    left: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 45px;
    text-transform: uppercase;
    -webkit-transform: skew(30deg);
    transform: skew(30deg);
}

.catagory-featured-post .post-content a {
    display: block;
    color: #ffffff;
    font-size: 72px;
    line-height: 1.1;
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .catagory-featured-post .post-content a {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .catagory-featured-post .post-content a {
        font-size: 42px;
    }
}

@media only (max-width: 767px) {
    .catagory-featured-post .post-content a {
        font-size: 24px;
    }
}

.catagory-featured-post .post-content a:hover,
.catagory-featured-post .post-content a:focus {
    color: #ef1b48;
}

.catagory-featured-post .post-content p {
    color: #ffffff;
    font-size: 15px;
}

@media (max-width: 767px) {
    .catagory-featured-post .post-content p {
        font-size: 12px;
    }
}

.catagory-featured-post .post-content .post-date {
    display: block;
    font-size: 14px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .catagory-featured-post .post-content .post-date {
        font-size: 12px;
    }
}

/* CARROSSEL ARROWS */

.arrow.next {
    opacity: 0;
    visibility: hidden;
    padding: 0.2rem 1rem;
    background-color: var(--vermelho);
    transform: skewX(-30deg);
    z-index: 10;
    position: absolute;
    bottom: 0.5rem;
    right: 1.2rem;
    color: #ffff;
    transition: 0.5s;
}

.arrow.prev {
    opacity: 0;
    visibility: hidden;
    padding: 0.2rem 1rem;
    background-color: var(--vermelho);
    transform: skewX(-30deg);
    z-index: 10;
    position: absolute;
    bottom: 0.5rem;
    right: 3.8rem;
    transition: 0.5s;
}

.arrow i {
    color: var(--branco);
    font-size: 1rem;
}

.arrow.prev:hover,
.arrow.next:hover {
    background-color: var(--preto);
}

.swiper:hover .arrow.next,
.swiper:hover .arrow.prev{
    opacity: 1;
    visibility: visible;
}

/* SECTION NEWS */

.news-post {
    position: relative;
    z-index: 1;
    padding: 2rem 4rem;
    background-color: var(--branco-4);
    color: var(--cinza);
    margin-bottom: 1.5rem;
}

.news-container {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    height: 50px;
}

.news-box {
    height: 100%;
    position: relative;
}

.news-content {
    width: max-content;
    height: fit-content;
    position: absolute;
}

.news-content p {
    font-weight: 500;
    color: var(--cinza);
}

.news-item {
    height: 50px;
    overflow: hidden;
    padding: 0.5rem;
}

@media(max-width: 568px) {
    .news-post {
        padding: 1rem;
    }

    .view-all .btn.btn-default {
        padding: 0.5rem 0.8rem;
        font-size: 14px;
    }

    .news-box {
        width: 15rem;
        position: relative;
    }

    .news-content p {
        font-size: 0.7rem;
    }
}

/* SEÇÃO FILTROS POST */

.intro-news-filter {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
/*     height: 32px; */
    background-color: var(--branco-4);
}

@media (max-width: 768px) {
    .intro-news-filter {
        height: 64px;
    }
}

@media (max-width: 586px) {
    .intro-news-filter {
        height: auto;
        flex-direction: column;
        align-items: center;
        
    }
}

.intro-news-filter h6 {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 32px;
    color: var(--cinza);
    text-transform: uppercase;
    padding-left: 15px;
}

.intro-news-filter .nav-tabs {
    border-bottom: none;
}

.intro-news-filter .nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: block;
    padding: 0 15px;
    font-size: 12px;
    color: #8a8a8a;
    text-transform: uppercase;
    line-height: 32px;
    background-color: transparent;
}

.intro-news-filter .nav-tabs .nav-link.active {
    font-weight: 600;
    color: var(--vermelho);
}

@media (max-width: 768px) {
    .intro-news-filter .nav-tabs .nav-link {
        padding: 0 8px;
    }
}

@media (max-width: 568px) {
	.intro-news-filter h6{
		display: none;
	}
}

/* GRID POSTS */

.posts-grid-home .single-blog-post:nth-child(n+3){
    display: flex;
	margin-bottom: 1rem!important;
}

.posts-grid-home .single-blog-post:hover:nth-child(n+3) {
    transform: none!important; 
}

.posts-grid-home .single-blog-post:nth-child(n+3) .blog-thumbnail {
    width: 40%;
    min-height: 5.5rem;
    margin-right: 15px;
    position: relative;
}

/* .posts-grid-home .single-blog-post:nth-child(n+3) .blog-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
} */

.posts-grid-home .single-blog-post:nth-child(n+3) .blog-thumbnail .tag-category {
    display: none;
}

.posts-grid-home .single-blog-post:nth-child(n+3) .blog-content {
	width: 60%;
    position: relative;
    z-index: 1;
}

.posts-grid-home .single-blog-post:nth-child(n+3) .blog-content .post-date {
    font-size: 0.75rem;
    color: var(--text-color);
    margin-bottom: 0.313rem;
    
}

.posts-grid-home .single-blog-post:nth-child(n+3) .blog-content .post-title h4{
/*     display: block; */
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    transition: 500ms;
}

/* .posts-grid-home .single-blog-post .blog-content .post-title:hover:nth-child(n+3) {
    color: var(--vermelho);
} */

.posts-grid-home .single-blog-post:nth-child(n+3) .blog-content .post-title :hover {
    color: var(--vermelho);
}

/* SIDEBAR */

.sidebar-area {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-area {
/*     margin-top: 5rem; */
  }
}

@media only screen and (max-width: 767px) {
  .sidebar-area {
/*     margin-top: 5rem; */
  }
}

.single-widget-area {
  position: relative;
  z-index: 1;
}

.single-widget-area.newsletter-widget {
  background-color: #f0f4f8;
  padding: 50px 20px;
  text-align: center;
}

.single-widget-area.newsletter-widget h4 {
  margin-bottom: 25px;
}

.single-widget-area.newsletter-widget form input {
  text-align: center;
  width: 100%;
  background-color: #d4dfe3;
  height: 54px;
  font-size: 12px;
  font-style: italic;
  color: #4c4c4c;
  border: none;
  margin-bottom: 15px;
}

.single-widget-area.newsletter-widget p {
  font-size: 12px;
  font-style: italic;
}

.single-widget-area.news-widget h4 {
  margin-bottom: 60px;
}

/* SEÇÃO POSTS VIDEO */

.featured-video-area {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 26.875rem;
	color: var(--branco);
}

#carrossel-paralax{
	z-index: 2;
	position: relative;
}

.video-slideshow {
	position: relative;
	z-index: 5;
	border-top: 2px solid var(--vermelho);
}

.video-slideshow::after {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	content: '';
	z-index: -1;
}

.single-blog-post .blog-thumbnail .video-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.single-blog-post .blog-thumbnail .video-btn:focus{
	color: var(--branco);
}

/* SEÇÃO BLOG */

.hero-area {
    position: relative;
    z-index: 1;
    padding: 0 5px;
}

.single-blog-post.style-1 .blog-thumbnail {
    position: relative;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-blog-post.style-1 .blog-thumbnail.bg-overlay::after {
    z-index: 5;
}

.bg-overlay::after {
    background-color: rgba(0, 0, 0, 0.40);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.single-blog-post.style-1 .blog-thumbnail img {
    width: 100%;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

/* POSTS PADRÃO */

.single-blog-post {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-blog-post .blog-thumbnail {
    position: relative;
    overflow: hidden;
    min-height: 18rem;
}

.single-blog-post .blog-thumbnail img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-blog-post .blog-thumbnail .tag-category {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--vermelho);
    color: var(--branco);
    padding: 0.5rem;
}

.single-blog-post #video-content span,
.single-blog-post #video-content p,
.single-blog-post #video-content h4{
    color: var(--branco);
}

.single-blog-post:hover #video-content h4 {
	transition: 500ms;
    color: var(--vermelho);
}

.single-blog-post:hover .blog-content .post-title h4 {
    color: var(--vermelho);
}

.single-blog-post .blog-content i {
    color: var(--vermelho);
}

.single-blog-post .blog-content .post-title h4 {
    font-weight: 500;
    color: var(--text);
}

.single-blog-post .blog-content .post-date{
    font-size: 12px;
    color: var(--cinza);
    margin-bottom: 10px;
}

.empty-search {
    color: var(--branco);
    background-color: var(--vermelho);
    padding: 2rem;

}

@media(max-width: 568px){
	.single-blog-post{
		margin-bottom: 1rem;
	}
}

/* ANIMAÇÃO POST PADRÃO */
.single-blog-post:hover:not(#carrossel-paralax .single-blog-post) {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
}

/* SEÇÃO BANNER CATEGORIA */
.category-featured-post {
    position: relative;
    z-index: 1;
    height: 20rem;
    padding: 2.188rem 4rem;
    background-color: #f0f4f8;
    margin: 0 1.25rem 1.25rem;
/*     background-position: bottom; */
    background-size: cover;
}

.category-featured-post.bg-overlay::after {
	background-color: rgba(0, 0, 0, 0.5);
}

/* .category-featured-post .post-content .tag {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	height: 45px;
	min-width: 180px;
	background-color: #31ba7e;
	color: #ffffff;
	display: inline-block;
	margin-bottom: 50px;
	text-align: center;
	-webkit-transform: skewX(-30deg);
	transform: skewX(-30deg);
} */

.category-featured-post .post-content h1 {
	color: var(--branco);
}

.category-featured-post .post-content p {
	color: var(--branco);
	font-size: 15px;
}

.empty img{
	height: 16rem;
}


/* FOOTER */
.footer-logo {
	position: relative;
	text-align: center;

}

.footer-logo a {
	background-color: var(--branco);
	padding: 0 0.625rem;
}

.footer-logo img {
	height: 6.5rem;
}


.footer-logo::after {
	position: absolute;
	width: 100%;
	content: '';
	background-color: var(--branco-2);
	height: 2px;
	top: 50%;
	left: 0;
	right: 0;
	margin-top: -1px;
	z-index: -1;
}

.footer-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-nav li a {
	font-size: 1rem;
	padding: 0 2.5rem;
}

.tooltip-container {
	position: relative;
	display: inline-block;
	margin: 0.625rem;
	cursor: pointer;
}

.tooltip-container i {
	color: var(--cinza);
	font-size: 1.25rem;
	cursor: pointer;
	transition: 500ms;
}

.tooltip-text {
	visibility: hidden;
	background-color: var(--vermelho);
	color: var(--branco);
	text-align: center;
	border-radius: 4px;
	padding: 0.25rem;
	position: absolute;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.3s;
	font-size: 0.9em;
	z-index: 1;
	visibility: hidden;
	transition: 500ms;

}

.tooltip-text::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border-width: 5px;
	border-style: solid;
	border-color: var(--vermelho) transparent transparent transparent;
}

.tooltip-container:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

.tooltip-container i:hover {
	color: var(--vermelho);
}

.copywrite-text {
	font-size: 0.75rem;
	margin-bottom: 0;
	color: var(--cinza-claro);
	font-weight: 500;
	padding: 0.938rem 0;
}

.copywrite-text a {
	font-size: 0.75rem;
	font-weight: 500;
}

@media(max-width: 568px) {
	.footer-nav ul {
		display: block;

	}

}

/* IR AO TOPO */
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	background-color: var(--preto);
    border-radius: 0;
    bottom: 2rem;
    color: var(--branco);
    font-size: 24px;
    height: 40px;
    line-height: 40px;
    right: 2rem;
    text-align: center;
    width: 40px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.15);
	z-index: 999;
}

.back-to-top:hover {
	background-color: var(--vermelho);
    color: var(--branco);
}

.back-to-top:focus{
    color: var(--branco);
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

