/* Academy › Apresentação de pré-lançamento — holofote nas seções + card editorial Leto.
   Usa os tokens do tema (cores, fonte PP Neue Montreal, geometria "não-AI": cantos
   quase retos, hairlines, sem sombras flutuantes). */

.acad-tour { position: fixed; inset: 0; z-index: 99998; display: none; font-family: var(--font-body); }
.acad-tour.is-on { display: block; }

.acad-tour__hole {
	position: fixed; z-index: 99999; pointer-events: none;
	border: 1px solid var(--leto-green); border-radius: var(--radius);
	box-shadow: 0 0 0 9999px rgba(18, 18, 18, .82);
	transition: top var(--dur) var(--ease), left var(--dur) var(--ease), width var(--dur) var(--ease), height var(--dur) var(--ease);
}

.acad-tour__card {
	position: fixed; left: 50%; transform: translateX(-50%); bottom: 26px;
	width: min(620px, calc(100% - 32px)); max-height: calc(100vh - 40px); overflow-y: auto;
	z-index: 100000; box-sizing: border-box;
	background: var(--leto-charcoal); border: var(--border-hair) solid var(--rule-dark);
	border-radius: var(--radius-card); padding: 26px 30px 24px; color: var(--leto-white);
}
.acad-tour__top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.acad-tour__eyebrow { font-size: var(--fs-micro); font-weight: 600; letter-spacing: var(--tracking-xwide); text-transform: uppercase; color: var(--leto-green); }
.acad-tour__count { font-size: var(--fs-micro); letter-spacing: var(--tracking-wide); color: var(--text-muted-dark); font-variant-numeric: tabular-nums; }
.acad-tour__t { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 400; line-height: var(--lh-snug); color: var(--leto-white); margin: 0 0 .55rem; }
.acad-tour__d { font-size: var(--fs-body); line-height: var(--lh-loose); color: rgba(255, 255, 255, .82); margin: 0; max-width: 54ch; }

.acad-tour__bar { position: relative; height: 1px; background: var(--rule-dark); margin: 22px 0 18px; }
.acad-tour__bar span { position: absolute; left: 0; top: 0; height: 100%; background: var(--leto-green); transition: width var(--dur) var(--ease); }

.acad-tour__foot { display: flex; align-items: center; gap: 14px; }
.acad-tour__skip { background: none; border: none; padding: 0; color: var(--text-muted-dark); font-family: inherit; font-size: var(--fs-caption); cursor: pointer; }
.acad-tour__skip:hover { color: var(--leto-white); text-decoration: underline; text-underline-offset: 3px; }
.acad-tour__spacer { margin-left: auto; }
.acad-tour .pill-green, .acad-tour .pill-outline { height: 46px; padding-inline: 1.6rem; font-size: var(--fs-body-sm); border-radius: var(--radius-card); }

/* Formulário (último passo) — campos editoriais: hairline + cantos quase retos */
.acad-tour__formwrap { margin: 2px 0; }
.acad-tour-form { display: grid; gap: 10px; }
.acad-tour-form__field { width: 100%; box-sizing: border-box; background: rgba(255, 255, 255, .05); border: var(--border-hair) solid var(--rule-dark); color: var(--leto-white); padding: 12px 14px; border-radius: var(--radius); font: inherit; font-size: var(--fs-body-sm); }
.acad-tour-form__field:focus { outline: none; border-color: var(--leto-green); }
.acad-tour-form__field::placeholder { color: var(--leto-gray-soft); }
.acad-tour-form__consent { display: flex; gap: 9px; align-items: flex-start; font-size: var(--fs-caption); color: var(--leto-gray-soft); line-height: 1.45; }
.acad-tour-form__consent a { color: var(--leto-green); }
.acad-tour-form__btn { width: 100%; margin-top: 4px; }

/* Botão flutuante "ver apresentação" — sóbrio, cantos quase retos */
.acad-tour-replay {
	position: fixed; right: 22px; bottom: 22px; z-index: 9000;
	background: var(--leto-charcoal); color: var(--leto-white);
	border: var(--border-hair) solid var(--rule-dark); border-radius: var(--radius);
	padding: 11px 18px; font-family: var(--font-body); font-size: var(--fs-caption);
	letter-spacing: var(--tracking-wide); cursor: pointer;
}
.acad-tour-replay:hover { border-color: var(--leto-green); }
.acad-tour-replay.is-hidden { display: none; }

@media (max-width: 620px) {
	.acad-tour__card { left: 12px; right: 12px; transform: none; width: auto; bottom: 12px; padding: 22px 18px; }
}
@media (prefers-reduced-motion: reduce) { .acad-tour__hole, .acad-tour__bar span { transition: none; } }
