/* Landing Servicio Tecnico HEAT */
.heat-st-landing {
	--heat-st-purple: #7b2cbf;
	--heat-st-purple-dark: #5a189a;
	--heat-st-text: #1a1a1a;
	--heat-st-muted: #555;
	--heat-st-bg: #fff;
	--heat-st-border: #e8e0f0;
	font-family: inherit;
	color: var(--heat-st-text);
	background: var(--heat-st-bg);
	padding: 2.5rem 1.25rem;
}

.heat-st-landing__inner {
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
}

.heat-st-landing__title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--heat-st-purple);
	margin: 0 0 1rem;
	line-height: 1.2;
}

.heat-st-landing__intro {
	font-size: 1.05rem;
	color: var(--heat-st-muted);
	margin: 0 0 1.75rem;
	line-height: 1.6;
}

.heat-st-landing__price {
	background: #faf8fc;
	border: 1px solid var(--heat-st-border);
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.25rem;
}

.heat-st-landing__price-label {
	display: block;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--heat-st-muted);
	margin-bottom: 0.35rem;
}

.heat-st-landing__price-value {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--heat-st-purple);
}

.heat-st-landing__price-value .amount {
	color: inherit;
}

.heat-st-landing__cupos {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
	color: var(--heat-st-text);
}

.heat-st-landing__cta {
	display: inline-block;
	background: var(--heat-st-purple);
	color: #fff !important;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 0.85rem 2rem;
	border-radius: 6px;
	transition: background 0.2s ease;
}

.heat-st-landing__cta:hover,
.heat-st-landing__cta:focus {
	background: var(--heat-st-purple-dark);
	color: #fff !important;
}

.heat-st-landing__soldout {
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--heat-st-muted);
	margin: 0;
	padding: 0.85rem 1.5rem;
	border: 1px dashed var(--heat-st-border);
	border-radius: 6px;
}

.heat-st-landing__notice {
	font-size: 1rem;
	color: var(--heat-st-muted);
	margin: 0;
	padding: 1rem;
	background: #fff8e6;
	border: 1px solid #f0d78c;
	border-radius: 6px;
}

.heat-st-landing__notice a {
	color: var(--heat-st-purple);
	font-weight: 600;
}

/* Formulario post-pago */
.heat-st-form__inner {
	max-width: 640px;
	margin: 0 auto;
	text-align: left;
}

.heat-st-form__intro {
	font-size: 1rem;
	color: var(--heat-st-muted);
	margin: 0 0 1.5rem;
	line-height: 1.5;
	text-align: center;
}

.heat-st-form__body {
	display: flex;
	flex-direction: column;
	gap: 1.1rem;
}

.heat-st-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.heat-st-form__fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

.heat-st-form__label {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--heat-st-text);
}

.heat-st-form__required {
	color: #b42318;
}

.heat-st-form__input,
.heat-st-form__textarea,
.heat-st-form__file {
	width: 100%;
	font: inherit;
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--heat-st-border);
	border-radius: 6px;
	background: #fff;
	color: var(--heat-st-text);
	box-sizing: border-box;
}

.heat-st-form__textarea {
	resize: vertical;
	min-height: 6rem;
}

.heat-st-form__radios {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.heat-st-form__radio {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-weight: 400;
	cursor: pointer;
}

.heat-st-form__radio input {
	margin-top: 0.2rem;
	accent-color: var(--heat-st-purple);
}

.heat-st-form__hint {
	font-size: 0.85rem;
	color: var(--heat-st-muted);
	margin: 0.25rem 0 0;
}

.heat-st-form__error {
	font-size: 0.95rem;
	color: #7a1f1f;
	background: #fdecec;
	border: 1px solid #f5c2c2;
	border-radius: 6px;
	padding: 0.85rem 1rem;
	margin-bottom: 0.5rem;
}

.heat-st-form__actions {
	margin-top: 0.5rem;
	text-align: center;
}

.heat-st-form__submit {
	border: 0;
	cursor: pointer;
}

.heat-st-form__success {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--heat-st-purple);
	margin: 0 0 1rem;
	text-align: center;
}

.heat-st-form__order {
	font-size: 0.95rem;
	color: var(--heat-st-muted);
	margin: 0;
	text-align: center;
}

.heat-st-form--success .heat-st-form__inner {
	text-align: center;
}

.heat-st-form--denied .heat-st-landing__notice {
	margin-bottom: 1.5rem;
}

.heat-st-thankyou {
	margin: 1.5rem 0 0;
	text-align: center;
}

.heat-st-thankyou__cta {
	display: inline-block;
	background: var(--heat-st-purple);
	color: #fff !important;
	text-decoration: none;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 0.85rem 2rem;
	border-radius: 6px;
	transition: background 0.2s ease;
}

.heat-st-thankyou__cta:hover,
.heat-st-thankyou__cta:focus {
	background: var(--heat-st-purple-dark);
	color: #fff !important;
}
