/* FONTES 
font-family: "Bebas Neue", sans-serif;
font-family: "Rajdhani", sans-serif;
*/

/* ANIMATIONS AOS CLONE */
/* Estado base para todos os elementos animados */
[data-anime] {
	opacity: 0;
	transition: all 0.8s ease; /* Duração padrão */
	will-change: transform, opacity; /* Otimização de performance */
}

/* Quando a classe 'animate' for adicionada via JS, o elemento aparece */
[data-anime].animate {
	opacity: 1;
	transform: translate3d(0, 0, 0) !important; /* Força a posição original */
}

/* --- Tipos de Animação --- */

/* Fade Up (Vem de baixo) */
[data-anime="fade-up"] {
	transform: translate3d(0, 50px, 0);
}

/* Fade Down (Vem de cima) */
[data-anime="fade-down"] {
	transform: translate3d(0, -50px, 0);
}

/* Fade Left (Vem da direita para esquerda) */
[data-anime="fade-left"] {
	transform: translate3d(50px, 0, 0);
}

/* Fade Right (Vem da esquerda para direita) */
[data-anime="fade-right"] {
	transform: translate3d(-50px, 0, 0);
}

/* Zoom In */
[data-anime="zoom-in"] {
	transform: scale(0.8);
}

.overflow-wrapper {
  width: 100%;
  overflow-x: hidden; /* Corta o que passar da largura APENAS aqui */
  position: relative;
}

*{
	border: 0;
	padding: 0;
	box-sizing: border-box;
}

/* LOADING ANIMAÇÃO */
.preloader {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/* 	background: var(--preto); */
	background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
	color: var(--verde);
	z-index: 99999;
	transition: 1s;
}

@keyframes spin2 { 
	0% {transform: rotatey(0deg);}
	100% {transform: rotatey(360deg);}
}

#logo{
	animation: spin2 2s linear infinite;
}

#logo:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: blur(6px);
}

/* CORES 
--text: #0F1235; black
--text-color: #333333; grey
--primary-color: #F05C20; Laranja Cobre
--secondary-color: #0F1235; Azul Noturno
--text-primary-color: #FFFFFF; Branco Puro
*/

:root {
	--text-color: #333333;
	--primary-color: #F05C20;
	--secondary-color: #0F1235;
	--text-primary-color: #FFFFFF;

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

	--Open-Sans: "Open Sans", sans-serif;
	--Bebas-Neue: "Bebas Neue", sans-serif;
	--Rajdhani: "Rajdhani", 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);
	font-weight: 300;
}

a{
	color: initial;
	text-decoration: none;
	border: none;
	outline: none;
}

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

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

.wrapper {
	padding: var(--section-y-global) 0;
	overflow: hidden;
}

@media(max-width: 576px){
	.container{
		/* 		padding: var(--padding-x-global-mobile); */
	}

	.wrapper {
		padding: var(--section-y-global-mobile) 0;
	}

}

.title{
	font-weight: 700;
	color: var(--text-color);
}

.title.white{
	color: var(--text-primary-color);
}

.subtitle {
	color: var(--primary-color);
	font-weight: 500;
}

.subtitle.orange{
	color: var(--primary-color);
}

/* BANNERS PAGE */
#main-banner {
	height: 400px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.main-banner-overlay {
	background-color: transparent;
	background-image: linear-gradient(180deg,#ff7e00 0%,#000 100%);
	opacity: .5;
	transition: background .3s,border-radius .3s,opacity .3s;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
}

.text-banner{
	z-index: 1;
}

/* BUTTON DEFAULT */
.header-medium .btn.btn-default{
	border-radius: 4rem;
	padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
}

.btn.btn-default {
	background: var(--primary-color);
	border-radius: 5px;
	color: var(--text-primary-color);
	font-size: 0.8rem;
	transition: 0.5s;
	/* 	display: flex; */
	/* 	justify-content: center; */
	/* 	align-items: center; */
	padding: 0.6rem 2rem;
}

.btn.btn-default:hover {
	background: #c45018;
	color: var(--text-primary-color);
}

.btn.btn-default-outline {
	background: transparent;
	border-radius: 5px;
	border: 2px solid var(--text-primary-color);
	color: var(--text-primary-color);
	font-size: 0.8rem;
	transition: 0.5s;
	padding: 0.6rem 2rem;
}

.btn.btn-default-outline:hover {
	border: 2px solid var(--primary-color);
	color: var(--text-primary-color);
}

/* MENU TOP HEADER */
.header-top {
	padding: 0.5rem 0;
	background-color: var(--primary-color);
}

.header-top span{
	font-size: 0.8rem;
}

/* MENU MEDIUM HEADER */
.header-medium .logo-site{
	justify-content: start;
	align-items: center;
}

.header-medium {
	padding: 1rem 0;
	background-color: var(--secondary-color);
	color: var(--text-primary-color);
}

.header-medium .nav-brand img{
	max-width: 160px;
	margin: 0 1rem 0 0;
}

.header-medium .title-site h1{
	color: var(--primary-color);
	font-size: 1.5rem;
	font-family: var(--Rajdhani);
	margin-bottom: 0;
}

.header-medium .title-site p{
	color: var(--text-primary-color);
	font-size: 1rem;
	font-family: var(--Rajdhani);
	margin-bottom: 0;
}

.header-medium .contact-box .icon-box {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #ffff;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.header-medium .contact-box .icon-box i {
	font-size: 1rem;
}

.header-medium .contact-box .text-box h6 {
	color: var(--text-primary-color);
	font-weight: 600;
	font-size: 0.9rem;
}

.header-medium .contact-box .text-box small {
	color: var(--text-primary-color);
	font-size: 0.8rem;
}

@media(max-width: 1024px){
	.header-medium .logo-site{
		justify-content: center;
		margin-bottom: 1rem;
	}

	.header-medium .nav-brand img{
		max-width: 130px;
	}

	.header-medium .title-site h1{
		font-size: 1.5rem;
	}

}

@media(max-width: 568px){
	.header-medium .logo-site{
		margin-bottom: 0;
	}

}

/* MENU HEADER */
.header-area.desktop{
	border-bottom: 2px solid var(--primary-color);
}

.header-area.desktop .navbar.main-menu{
	margin: 0;
	padding: 0;
}

.header-area.desktop .menu li {
	display: inline-block;
	padding: 1rem 0;
	transition: 0.5s;
}

.header-area.desktop .menu li.active {
	background: var(--primary-color);
}

.header-area.desktop .menu li a {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 0.938rem;
	padding: 0 0.625rem;
	color: var(--text);
	transition: 0.5s;
}

.header-area.desktop .menu li.active a{
	color: var(--text-primary-color);
}

.header-area.desktop .menu li:hover, 
.header-area.desktop .menu li:focus {
	background: var(--primary-color);
}

.header-area.desktop .menu li:hover a, 
.header-area.desktop .menu li:focus a{
	color: var(--text-primary-color);
}


/* MENU MOBILE */
input#menu,
.preloader.mobile {
	display: none;
}

.offcanvas-backdrop{
	background: #00000040;
}

.offcanvas.offcanvas-end{
	--bs-offcanvas-width: 330px;
	/* width: 100%; */
}

@media(max-width: 568px) {
	.header-top.desktop,
	.header-medium.desktop .btn.btn-default,
	.header-medium.desktop .contact-box,
	.header-area.desktop .menu-desktop{
		display: none!important;
	}

	.header-top.mobile,
	.preloader.mobile {
		display: block;
	}

	header .navbar .icon {
		cursor: pointer;
		display: block;
		height: 24px;
		padding: 35px;
		width: 24px;
		border-radius: 50%;
	}

	header .navbar label.icon {
		position: absolute;
		z-index: 9999;
		right: 0;
	}

	header .navbar .icon .menu,
	header .navbar .icon .menu::before,
	header .navbar .icon .menu::after {
		background: var(--secondary-color);
		content: '';
		display: block;
		height: 3px;
		position: absolute;
		transition: background ease .3s, top ease .3s .3s, transform ease .3s;
		width: 30px;
		border-radius: 3px;
	}

	header .navbar .icon .menu {
		left: 20px;
		top: 33px;
	}

	header .navbar .icon .menu::before {
		top: -8px;
	}

	header .navbar .icon .menu::after {
		top: 8px;
	}

	header .navbar #menu:checked + .icon .menu {
		background: transparent;
	}

	header .navbar #menu:checked + .icon .menu::before {
		transform: rotate(45deg);
	}

	header .navbar #menu:checked + .icon .menu::after {
		transform: rotate(-45deg);
	}

	header .navbar #menu:checked + .icon .menu::before,
	header .navbar #menu:checked + .icon .menu::after {
		top: 0;
		transition: top ease .3s, transform ease .3s .3s;
	}

	header .navbar .icon .preloader {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #FFFF;
		border-radius: 50%;
		z-index: -1;
		transition: 1s;
	}

	#menu-mobile ul{
		margin-top: 1rem;
	}

	#menu-mobile li {
		display: block;
		padding: 0.5rem 0;
		transition: 0.5s;
	}

	#menu-mobile li a{
		color: var(--text-primary-color);
	}

	.offcanvas-body {
		background: var(--secondary-color);
	}

	.header-medium.mobile {
		padding: 1rem 0;
		background-color: var(--secondary-color);
		color: var(--text-primary-color);
		position: absolute;
		bottom: 0;
	}

	.header-medium.mobile .contact-box{
		margin-bottom: 1rem;
	}

}

/* SECTION BLOG */
.wrapper-post{
	justify-content: space-between;
	margin-top: 5rem;
}

.single-blog-post {
	position: relative;
	margin-bottom: 4rem;

}

.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-content .post-date {
	font-size: 12px;
	color: var(--primary-color);
	margin-bottom: 10px;
}

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

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

.single-blog-post .blog-content .post-title{
	transition: 0.5s;
}

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

/* PAGINATION BLOG */
.pagination-wrapper{
	text-align: center;
}

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

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

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

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

/* FOOTER */
footer{
	border-top: 2px solid var(--primary-color);
	background: var(--secondary-color);
}

footer p{
	color: var(--text-primary-color);
}

footer .footer-site{
	margin: 4rem 0;
}

/* LOGO FOOTER */
footer .nav-brand img{
	max-width: 180px;
	margin: 0 1rem 0 0;
}

footer .title-site h1{
	color: var(--primary-color);
	font-size: 1.5rem;
	font-family: var(--Rajdhani);
	margin-bottom: 0;
}

footer .title-site p{
	font-size: 1rem;
	font-family: var(--Rajdhani);
	margin-bottom: 0;
}

/* MENU FOOTER */
footer h6{
	font-weight: 600;
	color: var(--text-primary-color);
}

footer .menu li {
	display: block;
	margin-bottom: 10px;
	transition: 0.5s;
}

footer .menu li a {
	font-weight: 600;
	font-size: 0.8rem;
	color: var(--text-primary-color);
	transition: 0.5s;
}

footer .menu li a:hover, 
footer .menu li a:hover{
	color: var(--primary-color);
}

/* SOCIAL MEDIA FOOTER */
footer .icon-box {
	padding: 0.8rem;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
	background: var(--primary-color);
	transition: 0.5s;
	cursor: pointer;
}

footer .icon-box i {
	font-size: 1.3rem;
	color: var(--text-primary-color);
}

footer .icon-box:hover {
	background: #c45018;
}

/* footer .text-box h6 {
font-weight: 600;
font-size: 0.9rem;
}

footer .text-box small {
font-size: 0.8rem;
} */

@media(max-width: 998px){
	footer .logo-site{
		justify-content: center;
	}

	footer .nav-brand img{
		margin: 0 1rem 2rem 0;
	}

	footer .menu{
		margin: 0 0 2rem 0;
	}
}

/* COPYRIGHT */
.copyright{
	background: #252525;
}

@media(max-width: 586px){
	.copyright .feature{
		display: none;
	}

	.copyright .row.justify-content-between{
		text-align: center;
	}
}
