* {
	box-sizing: border-box;
}

html,
body {
	min-height: 100%;
	margin: 0;
}

body {
	background: #000;
	color: #fff;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.estandar-maintenance-video-bg {
	position: fixed;
	inset: 0;
	z-index: -2;
	overflow: hidden;
	background: #000;
}

.estandar-maintenance-video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.estandar-maintenance-video-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .62);
	z-index: 1;
}

.estandar-pr-page {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 24px;
}

.estandar-pr-panel {
	width: min(100%, 720px);
	padding: 48px;
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 28px;
	background: rgba(0, 0, 0, .22);
	backdrop-filter: blur(14px);
	animation: estandar-pr-fade-in 420ms ease-out both;
	box-shadow: 0 24px 80px rgba(0, 0, 0, .24);
	text-align: center;
}

.estandar-pr-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	margin-bottom: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
	overflow: hidden;
}

.estandar-pr-brand img {
	display: block;
	max-width: 72px;
	max-height: 72px;
}

.estandar-pr-brand span {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
}

h1 {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(48px, 6vw, 72px);
	font-weight: 700;
	line-height: .95;
	letter-spacing: 0;
}

p {
	margin: 0 auto 38px;
	max-width: 44rem;
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
}

.estandar-pr-progress {
	height: 10px;
	margin: 0 auto 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .18);
	overflow: hidden;
}

.estandar-pr-progress-bar {
	position: relative;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #7de3d6, #59c3ff);
	box-shadow: 0 0 22px rgba(89, 195, 255, .36);
	overflow: hidden;
}

.estandar-pr-progress-bar::after {
	position: absolute;
	inset: 0;
	content: "";
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
	animation: estandar-pr-shimmer 1.8s infinite;
	transform: translateX(-100%);
}

.estandar-pr-percent {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

footer {
	margin-top: 42px;
	color: #fff;
	font-size: 13px;
	opacity: .7;
}

footer a {
	color: #fff;
}

@keyframes estandar-pr-fade-in {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes estandar-pr-shimmer {
	to {
		transform: translateX(100%);
	}
}

@media (max-width: 600px) {
	.estandar-pr-page {
		padding: 20px;
	}

	.estandar-pr-panel {
		padding: 34px 24px;
		border-radius: 22px;
	}

	.estandar-pr-brand {
		width: 78px;
		height: 78px;
		margin-bottom: 22px;
	}

	p {
		font-size: 16px;
	}
}
