/* Main Styles */
body {
	font-family: 'Matte', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	letter-spacing: 3px;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
	/* Font rendering optimization */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body::-webkit-scrollbar {
	width: 0;
	height: 0;
}

body::-webkit-scrollbar-track {
	background: transparent;
}

body::-webkit-scrollbar-thumb {
	background: transparent;
}

/* Font loading states */
.font-loading {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.font-loaded {
	font-family: 'Matte', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.font-fallback {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background fixo */
.parallax-background {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/assets/images/maringa.jpg') center/cover no-repeat;
	background-attachment: fixed;
	z-index: -2;
}

/* Overlay para melhor contraste */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(80, 70, 112, 0.4);
	z-index: -1;
}

/* Hero Header */
.hero-header {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 60px 40px;
	max-width: 600px;
	margin: 20px;
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
	animation: fadeInUp 1s ease-out;
}

/* Banner Image */
.banner-image {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto 0 auto;
	animation: fadeInUp 1s ease-out;
}

.main-title {
	font-size: 3.5rem;
	font-weight: 300;
	color: white;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
}

.subtitle {
	font-size: 1.8rem;
	letter-spacing: 3px;
	color: rgba(181, 144, 110, 0.9);
	font-weight: 400;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
	position: relative;
	z-index: 1;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}

.content-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 60px 40px;
	text-align: center;
	max-width: 600px;
	margin: 20px;
	box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
	animation: fadeInUp 1s ease-out 0.5s both;
}

.description {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
	margin-bottom: 40px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Contact info section */
.contact-info {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-top: 30px;
	flex-wrap: wrap;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.95rem;
}

.contact-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

/* Floating particles */
.particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

.particle {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 8s infinite linear;
}

/* Hidden content for SEO */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Skip to content for accessibility */
.skip-link {
	position: absolute;
	top: -40px;
	left: 6px;
	background: #000;
	color: #fff;
	padding: 8px;
	text-decoration: none;
	z-index: 1001;
	border-radius: 4px;
}

.skip-link:focus {
	top: 6px;
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes float {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		transform: translateY(-100px) rotate(360deg);
		opacity: 0;
	}
}
