.te-bloqueo-wrapper {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

/* ===== Fase 1: Candado ===== */
.te-lock-box {
	background-color: #1a1006;
	border: 2px dashed #7a4a1f;
	border-radius: 16px;
	padding: 32px 24px;
	text-align: center;
}

.te-spinner {
	width: 44px;
	height: 44px;
	margin: 0 auto 20px;
	border-radius: 50%;
	border: 4px solid rgba(255, 122, 26, 0.2);
	border-top-color: #ff7a1a;
	animation: te-spin 1s linear infinite;
}

@keyframes te-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

.te-lock-text {
	color: #ffffff;
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 10px;
}

.te-lock-subtext {
	color: #9a9a9a;
	font-size: 15px;
}

.te-lock-timer {
	color: #ff7a1a;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	font-family: 'Courier New', monospace;
	margin-left: 4px;
}

/* ===== Fase 2: Revelado ===== */
.te-reveal-box {
	width: 100%;
}

.te-timer2-box {
	background-color: #1a1006;
	border: 2px dashed #7a4a1f;
	border-radius: 12px;
	padding: 16px 20px;
	text-align: center;
	margin-bottom: 20px;
}

.te-timer2-label {
	color: #9a9a9a;
	font-size: 15px;
}

.te-timer2-value {
	color: #ff7a1a;
	font-weight: 700;
	font-size: 22px;
	font-variant-numeric: tabular-nums;
	font-family: 'Courier New', monospace;
	margin-left: 8px;
}

.te-cta-boton {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	background: linear-gradient(90deg, #ff4d00, #ffa500);
	color: #ffffff;
	font-weight: 800;
	font-size: 17px;
	text-decoration: none;
	text-align: center;
	padding: 18px 30px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(255, 122, 26, 0.35);
	box-sizing: border-box;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.te-cta-boton:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(255, 122, 26, 0.45);
	color: #ffffff;
}

.te-cta-boton-flecha {
	font-size: 20px;
	line-height: 1;
}

.te-cta-subtext {
	text-align: center;
	color: #9a9a9a;
	font-size: 14px;
	margin-top: 14px;
}

.te-cta-subtext .te-highlight {
	color: #ff7a1a;
	font-weight: 700;
}
