/* 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;
}

/* 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
*/
/* FONTES 
font-family: "Bebas Neue", sans-serif;
font-family: "Rajdhani", sans-serif;
*/

:root {
	--text-color: #333333;
	--primary-color: #E91e63;
	--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);
}

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

/* HEADER */
header {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(8,91,125, 0.7);
    backdrop-filter: blur(5px);
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

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

header .menu li.active {
	border-bottom: 2px solid var(--primary-color);
}

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

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

header .menu li:hover, 
header .menu li:focus {
	border-bottom: 2px solid var(--primary-color);
}