/* Tela de aguarde — lançamento CRP-PE */
@font-face {
	font-family: 'Delight';
	src: url('../img/fontes/delight-vf.ttf') format('truetype');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}

:root {
	--terracota: #a04029;
	--terracota-escuro: #6b2b1c;
	--creme: #fbf6f3;
	--texto: #3a2f2c;
	--texto-suave: #6a5a55;
	--linha: #e5d4cc;
	--fonte: 'Delight', 'shareregular', Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

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

body {
	font-family: var(--fonte);
	color: var(--texto);
	background:
		radial-gradient(ellipse 80% 50% at 10% 0%, rgba(160, 64, 41, 0.08), transparent 55%),
		radial-gradient(ellipse 70% 45% at 100% 100%, rgba(107, 43, 28, 0.07), transparent 50%),
		linear-gradient(165deg, #fff 0%, var(--creme) 45%, #f3ebe6 100%);
}

.launch {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 28px 20px 32px;
	max-width: 720px;
	margin: 0 auto;
	gap: 0;
}

.launch-brand {
	width: 100%;
	text-align: center;
	margin: 0 0 14px;
	animation: launch-in 0.7s ease both;
}

.launch-logo {
	display: inline-block;
	height: 72px;
	width: auto;
	max-width: min(88vw, 320px);
	object-fit: contain;
}

.launch-main {
	width: 100%;
	text-align: center;
	padding: 0 0 28px;
	animation: launch-in 0.85s ease 0.08s both;
}

.launch-eyebrow {
	margin: 0 0 10px;
	font-family: var(--fonte);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--terracota-escuro);
}

.launch-title {
	margin: 0 0 14px;
	font-size: clamp(1.75rem, 5vw, 2.45rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--terracota-escuro);
	letter-spacing: -0.02em;
}

.launch-lead {
	margin: 0 auto 18px;
	max-width: 34em;
	font-size: 1.05rem;
	line-height: 1.55;
	color: var(--texto-suave);
}

.launch-when {
	margin: 0 0 28px;
	font-family: var(--fonte);
	font-size: 0.95rem;
	color: var(--texto);
}

.launch-when strong {
	color: var(--terracota);
}

.launch-timer {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	max-width: 480px;
	margin: 0 auto 22px;
}

.launch-unit {
	background: #fff;
	border: 1px solid var(--linha);
	border-radius: 10px;
	padding: 14px 8px 12px;
	box-shadow: 0 6px 18px rgba(107, 43, 28, 0.06);
	animation: launch-pulse 2.4s ease-in-out infinite;
}

.launch-unit:nth-child(2) { animation-delay: 0.15s; }
.launch-unit:nth-child(3) { animation-delay: 0.3s; }
.launch-unit:nth-child(4) { animation-delay: 0.45s; }

.launch-num {
	display: block;
	font-family: var(--fonte);
	font-size: clamp(1.6rem, 6vw, 2.35rem);
	font-weight: 700;
	line-height: 1;
	color: var(--terracota-escuro);
	font-variant-numeric: tabular-nums;
}

.launch-lbl {
	display: block;
	margin-top: 8px;
	font-family: var(--fonte);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--texto-suave);
}

.launch-note {
	margin: 0;
	font-family: var(--fonte);
	font-size: 13px;
	color: var(--texto-suave);
}

.launch-note.is-done {
	color: var(--terracota);
	font-weight: 600;
}

.launch-foot {
	width: 100%;
	text-align: center;
	margin-top: 8px;
	padding-top: 16px;
	border-top: 1px solid var(--linha);
	font-family: var(--fonte);
	font-size: 12.5px;
	color: var(--texto-suave);
	animation: launch-in 1s ease 0.15s both;
}

.launch-foot p {
	margin: 0 0 6px;
}

.launch-whatsapp a {
	color: var(--terracota-escuro);
	font-weight: 650;
	text-decoration: none;
}

.launch-whatsapp a:hover {
	color: var(--terracota);
	text-decoration: underline;
}

@keyframes launch-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes launch-pulse {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-2px); }
}

@media (max-width: 480px) {
	.launch {
		padding: 28px 16px 24px;
	}

	.launch-logo {
		height: 58px;
	}

	.launch-timer {
		gap: 8px;
	}

	.launch-unit {
		padding: 12px 4px 10px;
		border-radius: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.launch-brand,
	.launch-main,
	.launch-foot,
	.launch-unit {
		animation: none;
	}
}
