*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--blue-deep:   #0d1f3c;
	--blue-mid:    #1a3a6b;
	--blue-accent: #2563eb;
	--blue-light:  #93c5fd;
	--white:       #ffffff;
	--gray-soft:   rgba(255,255,255,0.55);
	--progress-h:  4px;
	--delay:       5; /* segundos — altere aqui */
}

html, body {
	height: 100%;
	font-family: "Plus Jakarta Sans",Sans-serif;
	background: var(--blue-deep);
	color: var(--white);
	overflow: hidden;
}

/* ── FUNDO ── */
.bg {
	position: fixed; inset: 0;
	background:
		radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,.22) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(147,197,253,.10) 0%, transparent 60%),
        linear-gradient(160deg, #0b1a35 0%, #0d1f3c 50%, #071225 100%);
}

/* grade sutil */
.bg::after {
	content: '';
	position: absolute; inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
	background-size: 60px 60px;
}

/* ── LAYOUT ── */
.stage {
	position: relative; z-index: 1;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 2rem;
	gap: 0;
}

/* ── LOGO / MARCA ── */
.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 3.5rem;
	opacity: 0;
	animation: fadeUp .7s .15s ease forwards;
}

.brand-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--blue-accent);
}

.brand-name {
	font-family: 'DM Serif Display', serif;
	font-size: 1.1rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--gray-soft);
}

/* ── HEADLINE ── */
.headline {
	font-family: 'DM Serif Display', serif;
	font-size: clamp(2.4rem, 6vw, 5rem);
	line-height: 1.08;
	letter-spacing: -.02em;
	max-width: 780px;
	opacity: 0;
	animation: fadeUp .8s .3s ease forwards;
}

.headline em {
	font-style: italic;
	color: var(--blue-light);
}

/* ── SUBTÍTULO ── */
.sub {
	margin-top: 1.5rem;
	font-size: clamp(.9rem, 1.8vw, 1.05rem);
	font-weight: 300;
	line-height: 1.6;
	color: var(--gray-soft);
	max-width: 480px;
	opacity: 0;
	animation: fadeUp .8s .5s ease forwards;
}

/* ── SERVIÇOS (pills) ── */
.pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: .6rem;
	margin-top: 2.5rem;
	opacity: 0;
	animation: fadeUp .8s .7s ease forwards;
}

.pill {
	padding: .35rem 1rem;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 400;
	letter-spacing: .04em;
	color: var(--gray-soft);
	backdrop-filter: blur(6px);
	background: rgba(255,255,255,.04);
}

/* ── CONTADOR ── */
.redirect-notice {
	margin-top: 3rem;
	font-size: .8rem;
	color: rgba(255,255,255,.35);
	letter-spacing: .06em;
	text-transform: uppercase;
	opacity: 0;
	animation: fadeUp .6s .9s ease forwards;
}

/* ── BARRA DE PROGRESSO ── */
.progress-wrap {
	position: fixed;
	bottom: 0; left: 0; right: 0;
	height: var(--progress-h);
	background: rgba(255,255,255,.08);
	z-index: 10;
}

.progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
	animation: fillBar calc(var(--delay) * 1s) linear forwards;
	animation-play-state: running;
}

/* ── ANIMAÇÕES ── */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes fillBar {
	from { width: 0%; }
	to   { width: 100%; }
}

/* ── LINK MANUAL ── */
.manual-link {
	display: inline-block;
	margin-top: .8rem;
	color: var(--blue-light);
	font-size: .8rem;
	text-decoration: none;
	opacity: 0;
	animation: fadeUp .6s 1.1s ease forwards;
	transition: opacity .2s;
}

.manual-link:hover { opacity: .7; }

.brand img {
    height: 40px;
}

/* ── RESPONSIVO ── */
@media (max-width: 600px) {
	.pills { gap: .4rem; }
	.pill  { font-size: .72rem; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .01ms !important; }
}