* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-display: fallback;
	background: #000000;
	background-size: cover;
	background-position: center;
	line-height: 1.6;
	color: #D4AF37;
	min-height: 100vh;
	overflow-x: hidden;
}

.wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.hero {
	text-align: center;
	width: 100%;
}

.logo-container {
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo-icon {
	width: 200px;
	height: 200px;
	animation: float 3s ease-in-out infinite;
}

.logo-icon svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.hero .message {
	text-align: center;
}

.hero .message h1 {
	font-size: 64px;
	font-weight: 700;
	letter-spacing: 8px;
	margin-bottom: 10px;
	color: #D4AF37;
	text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
	animation: glow 2s ease-in-out infinite alternate;
	line-height: 1.2;
}

.hero .message h2 {
	font-size: 32px;
	font-weight: 300;
	letter-spacing: 4px;
	margin-top: 0;
	margin-bottom: 60px;
	color: #D4AF37;
	opacity: 0.9;
}

@keyframes glow {
	from {
		text-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 0 60px rgba(212, 175, 55, 0.3);
	}
	to {
		text-shadow: 0 0 40px rgba(212, 175, 55, 0.8), 0 0 80px rgba(212, 175, 55, 0.5);
	}
}

.coming-soon {
	margin-top: 40px;
	display: inline-block;
}

.coming-soon-text {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 6px;
	color: #D4AF37;
	position: relative;
	display: inline-block;
	padding: 20px 40px;
	border: 2px solid #D4AF37;
	border-radius: 12px;
	background: rgba(212, 175, 55, 0.05);
	backdrop-filter: blur(10px);
	animation: pulse 2s ease-in-out infinite;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.3), inset 0 0 20px rgba(212, 175, 55, 0.05);
	text-transform: uppercase;
}

@keyframes pulse {
	0%, 100% {
		opacity: 1;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.02);
	}
}

@media (max-width: 768px) {
	.hero .message h1 {
		font-size: 42px;
		letter-spacing: 4px;
	}

	.hero .message h2 {
		font-size: 24px;
		letter-spacing: 2px;
		margin-bottom: 40px;
	}

	.logo-icon {
		width: 150px;
		height: 150px;
	}

	.coming-soon-text {
		font-size: 20px;
		letter-spacing: 3px;
		padding: 15px 30px;
	}
}

@media (max-width: 480px) {
	.hero .message h1 {
		font-size: 32px;
		letter-spacing: 2px;
	}

	.hero .message h2 {
		font-size: 18px;
		letter-spacing: 1px;
	}

	.logo-icon {
		width: 120px;
		height: 120px;
	}

	.coming-soon-text {
		font-size: 16px;
		letter-spacing: 2px;
		padding: 12px 24px;
	}
}

/* Footer Styles */
.footer {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
	border-top: 1px solid rgba(212, 175, 55, 0.2);
	padding: 40px 20px 20px;
	margin-top: auto;
	backdrop-filter: blur(10px);
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.footer-brand h3 {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 10px;
	color: #D4AF37;
	text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.footer-brand p {
	font-size: 14px;
	color: rgba(212, 175, 55, 0.7);
	line-height: 1.6;
	font-weight: 300;
}

.footer-contact h4 {
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 20px;
	color: #D4AF37;
}

.contact-icons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #D4AF37;
	text-decoration: none;
	padding: 14px 20px;
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 10px;
	background: rgba(212, 175, 55, 0.05);
	transition: all 0.3s ease;
	font-weight: 500;
	font-size: 15px;
	backdrop-filter: blur(5px);
}

.contact-link:hover {
	background: rgba(212, 175, 55, 0.1);
	border-color: rgba(212, 175, 55, 0.5);
	transform: translateX(5px);
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.contact-link.whatsapp:hover {
	border-color: rgba(37, 211, 102, 0.5);
	box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.contact-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.contact-link:hover .contact-icon {
	transform: scale(1.1);
}

.contact-text {
	font-weight: 500;
}

.footer-bottom {
	max-width: 1200px;
	margin: 30px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(212, 175, 55, 0.1);
	text-align: center;
}

.footer-bottom p {
	font-size: 13px;
	color: rgba(212, 175, 55, 0.5);
	font-weight: 300;
}

/* Responsive Footer */
@media (max-width: 768px) {
	.footer {
		padding: 30px 20px 15px;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.footer-brand {
		text-align: center;
	}

	.footer-contact {
		text-align: center;
	}

	.contact-icons {
		align-items: center;
	}

	.contact-link {
		justify-content: center;
		min-width: 200px;
	}

	.footer-brand h3 {
		font-size: 20px;
	}

	.footer-contact h4 {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 25px 15px 15px;
	}

	.footer-brand h3 {
		font-size: 18px;
	}

	.contact-link {
		font-size: 14px;
		padding: 10px 14px;
		min-width: 180px;
	}

	.contact-icon {
		width: 20px;
		height: 20px;
	}

	.footer-bottom p {
		font-size: 12px;
	}
}

