/* Estilos de Classe Técnica: Paper Lab */
.conv-paper-stage {
	background: #0a0a0a;
	border: 2px solid #222;
	border-radius: 20px;
	height: 350px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
	box-shadow: inset 0 0 30px rgba(0,0,0,0.8);
}

/* Régua Técnica */
.conv-ruler-v {
	position: absolute;
	left: 10px; top: 20px; bottom: 20px;
	width: 5px;
	border-left: 1px solid var(--conv-primary);
	opacity: 0.3;
}

.conv-paper-sheet {
	background: #fff;
	box-shadow: 0 0 25px rgba(255,255,255,0.1), 5px 5px 15px rgba(0,0,0,0.5);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	border-radius: 2px;
}

.conv-paper-sheet::after {
	content: "";
	position: absolute;
	width: 100%; height: 100%;
	border: 1px solid rgba(155, 28, 49, 0.2);
}

.conv-paper-label {
	color: #000;
	font-family: 'JetBrains Mono', monospace;
	font-size: 0.7rem;
	font-weight: 800;
	text-align: center;
}

.conv-specs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
}

.conv-spec-card {
	background: rgba(155, 28, 49, 0.05);
	padding: 15px;
	border-radius: 12px;
	border-left: 3px solid var(--conv-primary);
}

.conv-spec-card small {
	display: block;
	font-size: 0.6rem;
	color: var(--conv-primary);
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 5px;
}

.conv-spec-card b {
	font-size: 1rem;
	color: #ff2f5a;
	font-family: 'JetBrains Mono', monospace;
}

.conv-select-group {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 25px;
}