* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	height: 100vh;
	background: linear-gradient(to top right, #eee, #ffffff);
	display: flex;
	font-family: Arial, sans-serif;
}

.fade-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: black;
	z-index: 0;
	animation: fadeOutScreen 1s ease-out forwards;
	animation-delay: 4s;
}

@keyframes fadeOutScreen {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 0;
		visibility: hidden;
	}
}

.logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.1);
	color: #fff;
	font-size: 4rem;
	font-weight: bold;

	animation: moveAndFade 1.2s ease-out forwards;
	animation-delay: 3s;
	opacity: 1;
}

@keyframes moveAndFade {
	0% {
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
	70% {
		top: 20px;
		left: 50%;
		transform: translate(-50%, -20%) scale(0.7);
		opacity: 1;
	}
	100% {
		top: 20px;
		left: 50%;
		transform: translate(-50%, -20%) scale(0.7);
		opacity: 0;
		visibility: hidden;
	}
}

.imagem-fade-container{
    position: absolute;
    width: 100%;    
    display: flex;
    justify-content: center;
}

.imagem-fade {
	opacity: 0;
	animation: fadeIn 1s ease-in forwards;
	animation-delay: 3.5s;
	width: 300px;
	height: auto;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

.texto {
	position: absolute;
	top: 42%;
	left: 50%;
	background-color: transparent;
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	transform: translate(-50%, -50%);
	font-family: Arial, sans-serif;
}

@font-face {
	font-family: "KarstExtraBold";
	src: url("fonts/Karst-ExtraBold.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "KarstLight";
	src: url("fonts/Karst-Light.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

.surgir-delay {
	font-family: "KarstExtraBold", sans-serif;
	opacity: 0;
	transform: translateY(50px);
	animation: surgirDeBaixo 0.5s ease-out forwards;
	animation-delay: 5s;

	font-size: 5rem;
	font-weight: bold;
	background: linear-gradient(to bottom, purple, deeppink);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

@keyframes surgirDeBaixo {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.texto2 {
	position: absolute;
	background-color: transparent;
	display: flex;
	top: 52%;
	left: 50%;
	width: 100%;
	justify-content: center;
	align-items: center; /* Alinha verticalmente */
	transform: translate(-50%, -50%);
	font-family: Arial, sans-serif;
}
.surgir-delay2 {
	font-family: "KarstLight", sans-serif;
	opacity: 0;
	transform: translateY(50px);
	animation: surgirDeBaixo 0.5s ease-out forwards;
	animation-delay: 6.2s;

	/* color: purple; */
	font-size: 4rem;
	font-weight: bold;
	background: linear-gradient(to bottom, purple, deeppink);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}

.mobile-container {
	/* border: 1px solid red;; */
	position: absolute;
	background-color: transparent;
	display: flex;
	top: 45%;
	width: 100%;
	justify-content: center;
	align-items: center;
    display: none;
}
.mobile {
	width: 200px;
	opacity: 0;
	transform: translateY(50px);
	animation: surgirDeBaixo 0.5s ease-out forwards;
	animation-delay: 7s;
}

.aguarde-container {
	position: absolute;
	background-color: transparent;
	display: flex;
	top: 58%;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.aguarde-texto {
	font-family: "KarstLight", sans-serif;
	color: gray;
	opacity: 0;
	transform: translateY(50px);
	animation: surgirDeBaixo 0.5s ease-out forwards;
	animation-delay: 8s;
}

/* Painel oculto inicialmente */
.painel {
	z-index: 9999;
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
	animation: surgirDaDireita 1s ease-out forwards;
	animation-delay: 7.2s;

	padding: 0px;
}

@keyframes surgirDaDireita {
	to {
		right: 0;
	}
}

.lista-animada {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 1.2rem;
	color: #333;
	margin-left: 20px;
}

.lista-animada li {
	opacity: 0;
	transform: translateY(30px);
	animation: subirFade 0.5s ease-out forwards;
	padding-bottom: 30px;
	font-family: "KarstLight", sans-serif;
}

.lista-animada li i {
	width: 15px;
	margin-right: 10px;
}

.lista-animada li:nth-child(1) {
	animation-delay: 9.2s;
}
.lista-animada li:nth-child(2) {
	animation-delay: 9.4s;
}
.lista-animada li:nth-child(3) {
	animation-delay: 9.6s;
}
.lista-animada li:nth-child(4) {
	animation-delay: 9.8s;
}
.lista-animada li:nth-child(5) {
	animation-delay: 10s;
}
.lista-animada li:nth-child(6) {
	animation-delay: 10.2s;
}
.lista-animada li:nth-child(7) {
	animation-delay: 10.4s;
}
.lista-animada li:nth-child(8) {
	animation-delay: 10.6s;
}

@keyframes subirFade {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.painel-topo {
	background-color: black;
	width: 100%;

	margin-bottom: 20px;
}
.painel-topo-logo {
	width: 90px;
}

@media (max-width: 1200px) {
	.painel {
		width: 250px;
	}
	.painel-topo-logo {
		width: 70px;
	}
	.imagem-fade {
		width: 220px;
	}
}

/* Notebook/tablet (até 992px) */
@media (max-width: 992px) {
	.painel {
		display: none;
	}
	.painel-topo-logo {
		width: 60px;
	}	
	.surgir-delay {
		font-size: 3rem;
	}
	.surgir-delay2 {
		font-size: 2.2rem;
	}
	.mobile {
		width: 140px;
	}
}

@media (max-width: 768px) {
	.logo-container {
		padding-top: 30px;
	}	
	.surgir-delay {
		font-size: 2rem;
	}
	.surgir-delay2 {
		font-size: 1.3rem;
	}
	.mobile {
		width: 90px;
	}
	.painel {
		display: none;
	}
	.painel-topo-logo {
		width: 50px;
	}
	.lista-animada {
		font-size: 1rem;
		margin-left: 10px;
	}
}

/* Celular (até 480px) */
@media (max-width: 480px) {
	.logo-container {
		padding-top: 10px;
	}
	.surgir-delay {
		font-size: 2rem;
	}
	.surgir-delay2 {
		font-size: 1.5rem;
	}
	.mobile {
		margin-top: 50px;
		width: 80px;
	}
	.painel {
		display: none;
	}
	.painel-topo-logo {
		width: 35px;
	}
	.lista-animada {
		font-size: 0.9rem;
		margin-left: 5px;
	}
	.texto {        
        top: 26%;
        left: 45%;
		transform: translate(-40%, 0);
		width: 80%;
		padding: 0 5px;
		position: absolute;
    }

	.texto2 
    {
        top: 39%;
        left: 50%;
		transform: translate(-52%, 0);
		width: 100vw;
		padding: 0 5px;
		position: absolute;
    }
	.mobile-container,
	.aguarde-container {
        top: 45%;
		left: 50%;
		transform: translate(-50%, 0);
		width: 100vw;
		padding: 0 5px;
		position: absolute;
	}
}

body,
html {
	max-width: 100vw;
	overflow-x: hidden;
}