:root {
	color-scheme: light;
}
html,
body {
	height: 100%;
	overflow: hidden;
}
body {
	margin: 0;
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: #f6f7fb;
	color: #1f2937;
	display: grid;
	place-items: center;
	height: 100svh;
}
.maintenance {
	width: 100%;
	height: 100svh;
	display: grid;
	place-items: center;
}
.maintenance img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.social {
	position: fixed;
	left: clamp(16px, 6vw, 380px);
	bottom: clamp(16px, 12vh, 150px);
	display: flex;
	gap: clamp(10px, 1.5vw, 12px);
	z-index: 10;
}
.social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(48px, 4.5vw, 64px);
	height: clamp(48px, 4.5vw, 64px);
	background: #478641;
	border-radius: 50%;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}
.social i {
	font-size: clamp(24px, 2.4vw, 34px);
	color: #ffffff;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	display: block;
}
.whatsapp-float {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #25d366;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
	text-decoration: none;
	z-index: 20;
}
.whatsapp-float i {
	font-size: 34px;
	color: #ffffff;
	display: block;
}
@media (max-width: 768px) {
	body {
		height: 100vh;
	}
	.maintenance {
		height: 100vh;
	}
	.maintenance picture,
	.maintenance img {
		width: 100%;
		height: 100%;
	}
	.maintenance img {
		object-fit: cover;
	}
	.social {
		left: 16px;
		bottom: 16px;
		gap: 10px;
	}
	.social a {
		width: 56px;
		height: 56px;
	}
	.social i {
		font-size: 28px;
	}
	.whatsapp-float {
		right: 16px;
		bottom: 16px;
		width: 56px;
		height: 56px;
	}
	.whatsapp-float i {
		font-size: 28px;
	}
}
@media (max-width: 480px) {
	.social {
		left: 12px;
		bottom: 12px;
	}
	.social a {
		width: 48px;
		height: 48px;
	}
	.social i {
		font-size: 24px;
	}
	.whatsapp-float {
		right: 12px;
		bottom: 12px;
		width: 52px;
		height: 52px;
	}
	.whatsapp-float i {
		font-size: 26px;
	}
}
