:root {
	--primary-color: #ffea00;
	--secondary-color: #6c757d;
	--background-color: #f8f9fa;
	--text-color: #212529;

	--color-light: #6c757d;
	--color-lighter: #f8f9fa;
	--color-lightest: 255, 255, 255;
	--color-mustard-yellow: #cbba00;
	--color-light-gold: #b5a600;
	--color-dark: #343a40;
	--color-darker: #212529;
	--color-darkest: 0, 0, 0;

	/* Cores do gradiente animado */
	--gradient-color-1: #ffea00;
	--gradient-color-2: #ffd700;
	--gradient-color-3: #fffa5b;
	--gradient-color-4: #ccbe01;
	--gradient-color-5: #ffcc02;
	--gradient-color-6: #fff700;

	--bubble-color-1: #ffed28;
	--bubble-color-2: #ffd700;
	--bubble-color-3: #fffa5b;
	--bubble-color-4: #c9bb03;
	--bubble-color-5: #ffcc02;
	--bubble-color-6: #fff700;

	--font-family-sans: "Nunito", "Arial", sans-serif;
	--font-family-serif: "IBM Plex Serif", "Times New Roman", serif;
	--font-family-display: "Domine", "Georgia", serif;
	--font-family-mono: "JetBrains Mono", "Courier New", monospace;
}

body {
	background: linear-gradient(
		-45deg,
		var(--gradient-color-1),
		var(--gradient-color-2),
		var(--gradient-color-3),
		var(--gradient-color-4),
		var(--gradient-color-5),
		var(--gradient-color-6)
	);
	background-size: 400% 400%;
	animation: gradientShift 12s ease infinite;
	font-family: var(--font-family-sans);
	font-size: 1rem;
	line-height: 1;
	color: var(--text-color);
	min-height: 100vh;
	position: relative;
}

@keyframes gradientShift {
	0% {
		background-position: 0% 50%;
	}
	20% {
		background-position: 100% 0%;
	}
	40% {
		background-position: 100% 100%;
	}
	60% {
		background-position: 50% 100%;
	}
	80% {
		background-position: 0% 100%;
	}
	100% {
		background-position: 0% 50%;
	}
}

/* Respeita preferência de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
	body {
		animation: none;
		background: var(--gradient-color-1);
	}

	.bubble-1,
	.bubble-2,
	.bubble-3,
	.bubble-4,
	.bubble-5 {
		animation: none;
		opacity: 0.1;
	}
}

/* Bubbles Orgânicos com Border-Radius Blob */
.bubble-1 {
	position: fixed;
	width: 350px;
	height: 350px;
	background: linear-gradient(
		45deg,
		var(--bubble-color-1),
		var(--bubble-color-2),
		#fffa5b
	);
	top: 7%;
	left: 3%;
	opacity: 0.3;
	border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
	animation: bubble1Blob 15s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
	filter: blur(1px);
}

.bubble-2 {
	position: fixed;
	width: 250px;
	height: 250px;
	background: linear-gradient(
		135deg,
		var(--bubble-color-4),
		var(--bubble-color-5),
		var(--bubble-color-6)
	);
	top: 60%;
	right: 5%;
	opacity: 0.25;
	border-radius: 50% 60% 70% 40% / 50% 40% 60% 50%;
	animation: bubble2Blob 25s ease-in-out infinite reverse;
	pointer-events: none;
	z-index: -1;
	filter: blur(1px);
}

.bubble-3 {
	position: fixed;
	width: 180px;
	height: 180px;
	background: linear-gradient(
		225deg,
		var(--bubble-color-2),
		var(--bubble-color-4),
		var(--bubble-color-1)
	);
	top: 40%;
	left: 65%;
	opacity: 0.35;
	border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
	animation: bubble3Blob 18s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
	filter: blur(1px);
}

.bubble-4 {
	position: fixed;
	width: 150px;
	height: 150px;
	background: linear-gradient(
		90deg,
		#fffa5b,
		var(--bubble-color-6),
		var(--bubble-color-2)
	);
	top: 15%;
	right: 25%;
	opacity: 0.2;
	border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
	animation: bubble4Blob 25s ease-in-out infinite;
	pointer-events: none;
	z-index: -1;
	filter: blur(1.5px);
}

.bubble-5 {
	position: fixed;
	width: 140px;
	height: 140px;
	background: linear-gradient(
		180deg,
		var(--bubble-color-5),
		var(--bubble-color-1),
		var(--bubble-color-4)
	);
	bottom: 15%;
	left: 5%;
	opacity: 0.3;
	border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
	animation: bubble5Blob 18s ease-in-out infinite reverse;
	pointer-events: none;
	z-index: -1;
	filter: blur(1px);
}
.content {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.icon {
	width: 110px;
	height: 110px;
	margin-top: 50px;
	margin-bottom: 30px;
	border-radius: 50%;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
.icon img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
.title {
	font-family: var(--font-family-display);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 30px;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
.subtitle {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: var(--font-family-mono);
	font-weight: 400;
	font-size: 1.2rem;
	color: var(--color-light-gold);
}
.typewriter-container {
	width: calc(100% - 20px);
	max-width: 100%;
	height: 109px;
	background-color: rgba(var(--color-lightest), 0.4);
	font-family: var(--font-family-sans);
	font-size: 1.1rem;
	color: var(--color-dark);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	padding: 25px 10px;
	border-radius: 15px;
	margin-bottom: 100px;
}
.typewriter-text {
	display: block;
	width: 100%;
	font-weight: 500;
}
.typewriter-animation {
	display: block;
	margin-top: 15px;
	color: rgba(var(--color-darkest), 1);
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	font-family: var(--font-family-mono);
}

@media screen and (min-width: 576px) {
	.title {
		font-size: 2.5rem;
	}
	.typewriter-container {
		width: calc(100% - 40px);
		height: 121px;
		font-size: 1.4rem;
	}
	.typewriter-animation {
		font-size: 1.8rem;
	}
}

@media screen and (min-width: 768px) {
	.icon {
		width: 180px;
		height: 180px;
		margin-bottom: 35px;
	}
	.title {
		font-size: 4rem;
		margin-bottom: 50px;
		filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
	}
	.subtitle {
		font-size: 1.4rem;
	}
	.typewriter-container {
		height: 135px;
		font-size: 1.6rem;
	}
	.typewriter-animation {
		font-size: 2.5rem;
	}
}

@media screen and (min-width: 992px) {
	.icon {
		width: 200px;
		height: 200px;
		margin-top: 0;
		margin-bottom: 40px;
	}
	.title {
		font-size: 5rem;
		margin-bottom: 70px;
		filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.4));
	}
	.subtitle {
		font-size: 1.5rem;
	}
	.typewriter-container {
		max-width: 750px;
		height: 177px;
		font-size: 1.8rem;
		padding: 40px 20px;
		border-radius: 20px;
		margin-bottom: 0;
	}
	.typewriter-animation {
		font-size: 3rem;
	}
}

/* Animações dos Bubbles Blob */
@keyframes bubble1Blob {
	0% {
		transform: translate(0, 0) scale(1.1) rotate(0deg);
		border-radius: 70% -30% -30% 70% / 60% 40% 60% 40%;
		background: linear-gradient(
			45deg,
			var(--bubble-color-1),
			var(--bubble-color-2),
			var(--bubble-color-3)
		);
		opacity: 0.35;
	}
	25% {
		transform: translate(150px, -70px) scale(1.3) rotate(90deg);
		border-radius: 30% 60% 70% -40% / 50% 60% -30% 60%;
		background: linear-gradient(
			135deg,
			var(--bubble-color-2),
			var(--bubble-color-6),
			var(--bubble-color-1)
		);
		opacity: 0.45;
	}
	50% {
		transform: translate(300px, 200px) scale(0.9) rotate(180deg);
		border-radius: 70% -35% 50% 50% / -40% 50% 60% 50%;
		background: linear-gradient(
			225deg,
			var(--bubble-color-3),
			var(--bubble-color-5),
			var(--bubble-color-6)
		);
		opacity: 0.3;
	}
	75% {
		transform: translate(150px, 250px) scale(1.1) rotate(270deg);
		border-radius: 50% 50% -30% 70% / -30% 70% 50% 60%;
		background: linear-gradient(
			315deg,
			var(--bubble-color-4),
			var(--bubble-color-1),
			var(--bubble-color-3)
		);
		opacity: 0.4;
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(360deg);
		border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
		background: linear-gradient(
			45deg,
			var(--bubble-color-1),
			var(--bubble-color-2),
			var(--bubble-color-3)
		);
		opacity: 0.35;
	}
}

@keyframes bubble2Blob {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
		border-radius: 50% 60% 70% -40% / 50% -40% 60% 50%;
		background: linear-gradient(
			135deg,
			var(--bubble-color-4),
			var(--bubble-color-5),
			var(--bubble-color-6)
		);
		opacity: 0.25;
	}
	30% {
		transform: translate(-80px, -80px) scale(1.3) rotate(72deg);
		border-radius: -40% 50% 60% 70% / 60% 50% -40% 70%;
		background: linear-gradient(
			45deg,
			var(--bubble-color-6),
			var(--bubble-color-1),
			var(--bubble-color-3)
		);
		opacity: 0.4;
	}
	60% {
		transform: translate(-150px, 50px) scale(0.7) rotate(144deg);
		border-radius: 70% 40% 50% 60% / -30% 60% 70% -40%;
		background: linear-gradient(
			225deg,
			var(--bubble-color-2),
			var(--bubble-color-4),
			var(--bubble-color-3)
		);
		opacity: 0.15;
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(216deg);
		border-radius: 50% 60% 70% 40% / 50% 40% 60% 50%;
		background: linear-gradient(
			135deg,
			var(--bubble-color-4),
			var(--bubble-color-3),
			var(--bubble-color-6)
		);
		opacity: 0.25;
	}
}

@keyframes bubble3Blob {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
		border-radius: -40% 60% 60% -40% / 70% 30% 70% 30%;
		background: linear-gradient(
			225deg,
			var(--bubble-color-2),
			var(--bubble-color-4),
			var(--bubble-color-1)
		);
		opacity: 0.35;
	}
	20% {
		transform: translate(-350px, 50px) scale(1.4) rotate(60deg);
		border-radius: 60% 40% -30% 70% / 40% 70% 30% 60%;
		background: linear-gradient(
			315deg,
			var(--bubble-color-4),
			var(--bubble-color-3),
			var(--bubble-color-6)
		);
		opacity: 0.45;
	}
	40% {
		transform: translate(-250px, -40px) scale(0.7) rotate(120deg);
		border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%;
		background: linear-gradient(
			45deg,
			var(--bubble-color-1),
			var(--bubble-color-6),
			var(--bubble-color-4)
		);
		opacity: 0.25;
	}
	70% {
		transform: translate(-180px, -300px) scale(1.2) rotate(180deg);
		border-radius: 70% 30% 60% 40% / 50% 60% 40% 50%;
		background: linear-gradient(
			135deg,
			var(--bubble-color-3),
			var(--bubble-color-1),
			var(--bubble-color-5)
		);
		opacity: 0.35;
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(240deg);
		border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
		background: linear-gradient(
			225deg,
			var(--bubble-color-2),
			var(--bubble-color-4),
			var(--bubble-color-1)
		);
		opacity: 0.35;
	}
}

@keyframes bubble4Blob {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
		border-radius: 70% -30% 50% 50% / -30% 70% 50% 50%;
		background: linear-gradient(
			90deg,
			var(--bubble-color-3),
			var(--bubble-color-6),
			var(--bubble-color-2)
		);
		opacity: 0.25;
	}
	40% {
		transform: translate(-420px, 420px) scale(1.5) rotate(160deg);
		border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
		background: linear-gradient(
			180deg,
			var(--bubble-color-1),
			var(--bubble-color-4),
			var(--bubble-color-5)
		);
		opacity: 0.3;
	}
	80% {
		transform: translate(280px, -180px) scale(0.8) rotate(320deg);
		border-radius: 60% 40% 70% 30% / 50% 50% 30% 70%;
		background: linear-gradient(
			270deg,
			var(--bubble-color-6),
			var(--bubble-color-2),
			var(--bubble-color-3)
		);
		opacity: 0.2;
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(360deg);
		border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
		background: linear-gradient(
			90deg,
			var(--bubble-color-3),
			var(--bubble-color-6),
			var(--bubble-color-1)
		);
		opacity: 0.25;
	}
}

@keyframes bubble5Blob {
	0% {
		transform: translate(0, 0) scale(1) rotate(0deg);
		border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
		background: linear-gradient(
			180deg,
			var(--bubble-color-5),
			var(--bubble-color-1),
			var(--bubble-color-4)
		);
		opacity: 0.25;
	}
	25% {
		transform: translate(150px, -120px) scale(1.2) rotate(80deg);
		border-radius: 40% 60% 50% 50% / 50% 50% 40% 60%;
		background: linear-gradient(
			45deg,
			var(--bubble-color-2),
			var(--bubble-color-6),
			var(--bubble-color-3)
		);
		opacity: 0.35;
	}
	50% {
		transform: translate(220px, 90px) scale(0.7) rotate(160deg);
		border-radius: 60% 40% 30% 70% / 40% 60% 70% 30%;
		background: linear-gradient(
			225deg,
			var(--bubble-color-4),
			var(--bubble-color-1),
			var(--bubble-color-5)
		);
		opacity: 0.2;
	}
	75% {
		transform: translate(-30px, 80px) scale(1.1) rotate(240deg);
		border-radius: 30% 70% 60% 40% / 70% 30% 40% 60%;
		background: linear-gradient(
			315deg,
			var(--bubble-color-6),
			var(--bubble-color-3),
			var(--bubble-color-1)
		);
		opacity: 0.35;
	}
	100% {
		transform: translate(0, 0) scale(1) rotate(320deg);
		border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
		background: linear-gradient(
			180deg,
			var(--bubble-color-5),
			var(--bubble-color-1),
			var(--bubble-color-4)
		);
		opacity: 0.35;
	}
}
