.h2ofm-funnel-shell {
	--h2ofm-progress-start: var(--nectar-accent-color, currentColor);
	--h2ofm-progress-end: var(--nectar-extra-color-1, currentColor);
	--h2ofm-question-title-color: var(--nectar-accent-color, currentColor);
	--h2ofm-question-title-size: 34px;
	--h2ofm-intro-text-size: 18px;
	--h2ofm-identity-gap: 20px;
	--h2ofm-selection-color: var(--nectar-accent-color, currentColor);
	--h2ofm-selection-radius: 12px;
	--h2ofm-selection-padding-y: 16px;
	--h2ofm-selection-padding-x: 18px;
	--h2ofm-selection-font-size: 16px;
	--h2ofm-selection-line-height: 1.4;
	--h2ofm-selection-text-align: left;
	--h2ofm-navigation-color: var(--nectar-accent-color, currentColor);
	--h2ofm-navigation-radius: 8px;
	--h2ofm-navigation-padding-y: 13px;
	--h2ofm-navigation-padding-x: 20px;
	--h2ofm-navigation-font-size: 15px;
	--h2ofm-navigation-line-height: 1.2;
	--h2ofm-action-top-spacing: 28px;
	--h2ofm-diagnosis-button-color: var(--nectar-extra-color-1, currentColor);
	--h2ofm-result-color: var(--nectar-accent-color, currentColor);
	--h2ofm-diagnostic-card-padding: 36px;
	--h2ofm-diagnostic-card-width: 100%;
	--h2ofm-h2-color: var(--h2ofm-question-title-color);
	--h2ofm-h2-size: var(--h2ofm-question-title-size);
	--h2ofm-h3-color: inherit;
	--h2ofm-h3-size: 27px;
	--h2ofm-h4-color: inherit;
	--h2ofm-h4-size: 21px;
	--h2ofm-body-font-family: inherit;
	--h2ofm-body-font-size: inherit;
	--h2ofm-body-line-height: inherit;
	--h2ofm-body-font-weight: inherit;
	--h2ofm-body-color: inherit;
	font: inherit;
	color: inherit;
}

.h2ofm-funnel-shell fieldset {
	border: 0;
	padding: 0;
	margin: 0;
}

.h2ofm-funnel-shell input {
	width: 100%;
	box-sizing: border-box;
}

.h2ofm-funnel-shell label {
	display: block;
	margin-bottom: .45em;
}

.h2ofm-progress {
	margin: 0 0 2.5em;
}

.h2ofm-progress-labels {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: .5em;
	margin-bottom: .65em;
}

.h2ofm-progress-labels span {
	opacity: .55;
}

.h2ofm-progress-labels span[aria-current="step"],
.h2ofm-progress-labels span.is-complete {
	opacity: 1;
}

.h2ofm-progress-labels span:last-child {
	text-align: right;
}

.h2ofm-progress-track {
	position: relative;
	height: 16px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(0, 0, 0, .08);
}

.h2ofm-progress-fill {
	position: absolute;
	inset: 0;
	clip-path: inset(0 100% 0 0);
	background: linear-gradient(90deg, var(--h2ofm-progress-start), var(--h2ofm-progress-end));
	transition: clip-path .35s ease;
}

.h2ofm-step-intro {
	font-size: var(--h2ofm-intro-text-size);
	line-height: 1.45;
	margin-bottom: 1.5em;
}

.h2ofm-field {
	margin-bottom: 2em;
}

h2.h2ofm-question {
	color: var(--h2ofm-h2-color) !important;
	font-size: var(--h2ofm-h2-size) !important;
}

h3.h2ofm-question {
	color: var(--h2ofm-h3-color) !important;
	font-size: var(--h2ofm-h3-size) !important;
}

h4.h2ofm-question {
	color: var(--h2ofm-h4-color) !important;
	font-size: var(--h2ofm-h4-size) !important;
}

.h2ofm-question {
	margin-top: 0;
	margin-bottom: .85em;
}

.h2ofm-fields-identificacion {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--h2ofm-identity-gap);
}

.h2ofm-fields-identificacion .h2ofm-field {
	margin-bottom: 0;
}

.h2ofm-fields-identificacion .h2ofm-field-area {
	grid-column: 1 / -1;
}

.h2ofm-fields-perfil_empresa .h2ofm-field {
	margin-bottom: 3em;
}

.h2ofm-choice-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: .85em;
}

.h2ofm-funnel-shell .h2ofm-choice {
	font-family: inherit;
	font-size: var(--h2ofm-selection-font-size);
	line-height: var(--h2ofm-selection-line-height);
	color: inherit;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .14);
	border-radius: var(--h2ofm-selection-radius) !important;
	padding: var(--h2ofm-selection-padding-y) var(--h2ofm-selection-padding-x);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: stretch;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.h2ofm-choice-text {
	display: block;
	width: 100%;
	text-align: var(--h2ofm-selection-text-align);
}


.h2ofm-choice-description {
	display: block;
	width: 100%;
	margin-top: .45em;
	font-family: var(--h2ofm-body-font-family, inherit);
	font-size: var(--h2ofm-body-font-size, inherit);
	line-height: var(--h2ofm-body-line-height, inherit);
	font-weight: var(--h2ofm-body-font-weight, inherit);
	color: var(--h2ofm-body-color, inherit);
	opacity: 1;
	text-align: var(--h2ofm-selection-text-align);
}

.h2ofm-choice-media,
.h2ofm-choice-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-bottom: .6em;
}

.h2ofm-choice-icon {
	color: var(--h2ofm-selection-color);
	opacity: .72;
}

.h2ofm-choice-icon svg {
	display: block;
	width: 1.45em;
	height: 1.45em;
}

.h2ofm-choice-image {
	display: block;
	max-width: 72px;
	max-height: 58px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.h2ofm-choice.is-selected .h2ofm-choice-icon {
	opacity: 1;
}

.h2ofm-funnel-shell[data-h2ofm-shadow="soft"] .h2ofm-choice {
	box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.h2ofm-funnel-shell[data-h2ofm-shadow="medium"] .h2ofm-choice {
	box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
}

.h2ofm-funnel-shell[data-h2ofm-shadow="strong"] .h2ofm-choice {
	box-shadow: 0 14px 30px rgba(0, 0, 0, .15);
}

.h2ofm-choice:hover,
.h2ofm-choice:focus-visible {
	transform: translateY(-1px);
	border-color: var(--h2ofm-selection-color);
}

.h2ofm-funnel-shell[data-h2ofm-shadow="soft"] .h2ofm-choice.is-selected {
	border-color: var(--h2ofm-selection-color);
	box-shadow: inset 0 0 0 2px var(--h2ofm-selection-color), 0 4px 12px rgba(0, 0, 0, .06);
}

.h2ofm-funnel-shell[data-h2ofm-shadow="medium"] .h2ofm-choice.is-selected {
	border-color: var(--h2ofm-selection-color);
	box-shadow: inset 0 0 0 2px var(--h2ofm-selection-color), 0 8px 22px rgba(0, 0, 0, .10);
}

.h2ofm-funnel-shell[data-h2ofm-shadow="strong"] .h2ofm-choice.is-selected {
	border-color: var(--h2ofm-selection-color);
	box-shadow: inset 0 0 0 2px var(--h2ofm-selection-color), 0 14px 30px rgba(0, 0, 0, .15);
}

.h2ofm-field-error {
	margin-top: .65em;
	font-family: var(--h2ofm-body-font-family, inherit);
	font-size: var(--h2ofm-body-font-size, inherit);
	line-height: var(--h2ofm-body-line-height, inherit);
	font-weight: var(--h2ofm-body-font-weight, inherit);
	color: var(--h2ofm-body-color, inherit);
}

.h2ofm-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75em;
	margin-top: var(--h2ofm-action-top-spacing);
}

.h2ofm-funnel-shell .h2ofm-nav-button,
.h2ofm-funnel-shell .h2ofm-cta {
	font-family: inherit;
	font-size: var(--h2ofm-navigation-font-size);
	line-height: var(--h2ofm-navigation-line-height);
	display: inline-block;
	box-sizing: border-box;
	padding: var(--h2ofm-navigation-padding-y) var(--h2ofm-navigation-padding-x);
	border: 1px solid var(--h2ofm-navigation-color);
	border-radius: var(--h2ofm-navigation-radius) !important;
	cursor: pointer;
	text-decoration: none;
}

.h2ofm-funnel-shell[data-h2ofm-navigation="solid"] .h2ofm-nav-primary {
	background: var(--h2ofm-navigation-color);
	color: #fff;
}

.h2ofm-funnel-shell[data-h2ofm-navigation="outline"] .h2ofm-nav-primary,
.h2ofm-nav-secondary {
	background: #fff;
	color: var(--h2ofm-navigation-color);
}

.h2ofm-nav-diagnosis {
	border-color: var(--h2ofm-diagnosis-button-color) !important;
}

.h2ofm-funnel-shell[data-h2ofm-diagnosis-style="solid"] .h2ofm-nav-diagnosis {
	background: var(--h2ofm-diagnosis-button-color);
	color: #fff;
}

.h2ofm-funnel-shell[data-h2ofm-diagnosis-style="outline"] .h2ofm-nav-diagnosis {
	background: #fff;
	color: var(--h2ofm-diagnosis-button-color);
}

.h2ofm-funnel-shell[data-h2ofm-diagnosis-shadow="soft"] .h2ofm-nav-diagnosis {
	box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.h2ofm-funnel-shell[data-h2ofm-diagnosis-shadow="medium"] .h2ofm-nav-diagnosis {
	box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
}

.h2ofm-funnel-shell[data-h2ofm-diagnosis-shadow="strong"] .h2ofm-nav-diagnosis {
	box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.h2ofm-diagnostic-card {
	width: 100%;
	max-width: var(--h2ofm-diagnostic-card-width);
	box-sizing: border-box;
	margin-inline: auto;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .10);
	border-top: 4px solid var(--h2ofm-result-color);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .10);
	padding: var(--h2ofm-diagnostic-card-padding);
	border-radius: 12px;
}

.h2ofm-diagnostic-card > :first-child,
.h2ofm-diagnostic-card h2,
.h2ofm-diagnostic-card h3,
.h2ofm-diagnostic-card h4 {
	margin-top: 0;
}

.h2ofm-funnel-shell .h2ofm-diagnostic-card h2 {
	font-size: var(--h2ofm-h2-size) !important;
	color: var(--h2ofm-h2-color) !important;
}

.h2ofm-funnel-shell .h2ofm-diagnostic-card h3 {
	font-size: var(--h2ofm-h3-size) !important;
	color: var(--h2ofm-h3-color) !important;
}

.h2ofm-funnel-shell .h2ofm-diagnostic-card h4 {
	font-size: var(--h2ofm-h4-size) !important;
	color: var(--h2ofm-h4-color) !important;
}

.h2ofm-diagnostic-header {
	padding-bottom: 1.5em;
	margin-bottom: 1.5em;
	border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.h2ofm-diagnostic-title {
	margin-bottom: .55em;
}

.h2ofm-diagnostic-type {
	margin-bottom: .35em;
}

.h2ofm-result-level {
	display: flex;
	align-items: center;
	gap: .35em;
	color: var(--h2ofm-result-color);
	margin: 0;
}

.h2ofm-result-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.h2ofm-result-icon svg {
	width: 1em;
	height: 1em;
}

.h2ofm-diagnostic-meta {
	display: grid;
	gap: .2em;
	padding: 1em 0 1.35em;
}

.h2ofm-diagnostic-meta span {
	opacity: .65;
}

.h2ofm-diagnostic-section {
	padding-top: 1.25em;
	margin-top: 1.25em;
	border-top: 1px solid rgba(0, 0, 0, .08);
}

.h2ofm-diagnostic-section > h2,
.h2ofm-diagnostic-section > h3,
.h2ofm-advisory-section > h3,
.h2ofm-report-heading {
	margin-bottom: .65em;
}

.h2ofm-advisory-section {
	margin-top: 1.15em;
}

.h2ofm-diagnostic-summary,
.h2ofm-diagnostic-finding,
.h2ofm-diagnostic-section p {
	margin-bottom: 1.15em;
}

.h2ofm-diagnostic-footer {
	padding-top: var(--h2ofm-action-top-spacing);
	display: flex;
	flex-wrap: wrap;
	gap: .75em;
}

.h2ofm-diagnostic-profile {
	margin-top: var(--h2ofm-action-top-spacing);
	padding-top: var(--h2ofm-action-top-spacing);
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.h2ofm-diagnostic-profile h4 {
	margin-bottom: .35em;
}

.h2ofm-diagnostic-profile > p {
	margin-top: 0;
}

.h2ofm-diagnostic-profile-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--h2ofm-identity-gap);
	margin-top: 1em;
}

.h2ofm-diagnostic-profile-field label {
	display: block;
	margin-bottom: .4em;
	font-weight: 600;
}

.h2ofm-diagnostic-profile-field input {
	width: 100%;
	box-sizing: border-box;
}

.h2ofm-profile-status {
	margin: .65em 0 0;
	font-family: var(--h2ofm-body-font-family, inherit);
	font-size: var(--h2ofm-body-font-size, inherit);
	line-height: var(--h2ofm-body-line-height, inherit);
	font-weight: var(--h2ofm-body-font-weight, inherit);
	color: var(--h2ofm-body-color, inherit);
}

.h2ofm-diagnostic-utilities {
	width: 100%;
	max-width: var(--h2ofm-diagnostic-card-width);
	box-sizing: border-box;
	margin: var(--h2ofm-action-top-spacing) auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: .75em;
	align-items: center;
}

.h2ofm-email-status {
	flex-basis: 100%;
	margin: .2em 0 0;
	font-family: var(--h2ofm-body-font-family, inherit);
	font-size: var(--h2ofm-body-font-size, inherit);
	line-height: var(--h2ofm-body-line-height, inherit);
	font-weight: var(--h2ofm-body-font-weight, inherit);
	color: var(--h2ofm-body-color, inherit);
}

.h2ofm-diagnostic-card .h2ofm-cta {
	margin-top: 0;
}

.h2ofm-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 690px) {
	.h2ofm-progress-labels {
		gap: .25em;
		font-size: .8em;
	}

	.h2ofm-choice-grid,
	.h2ofm-fields-identificacion,
	.h2ofm-diagnostic-profile-fields {
		grid-template-columns: 1fr;
	}

	.h2ofm-fields-identificacion .h2ofm-field-area {
		grid-column: auto;
	}

	.h2ofm-diagnostic-card {
		max-width: 100%;
	}
}


.h2ofm-report-delivery {
	margin-top: 2em;
	padding-top: 1.6em;
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.h2ofm-report-delivery h3 {
	margin-bottom: .8em;
}

.h2ofm-report-toggle {
	margin-bottom: .25em;
}

.h2ofm-diagnostic-profile[hidden] {
	display: none !important;
}

.h2ofm-diagnostic-profile {
	margin-top: 1.25em;
	padding: 1.2em;
	border: 1px solid rgba(0, 0, 0, .1);
	border-radius: 10px;
	background: rgba(0, 0, 0, .018);
}

.h2ofm-profile-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .75em;
	margin-top: 1em;
}

.h2ofm-service-buttons,
.h2ofm-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: .65em;
}

.h2ofm-service-button,
.h2ofm-social-link {
	display: inline-flex;
	align-items: center;
	padding: .65em .9em;
	border: 1px solid rgba(0,0,0,.13);
	border-radius: 999px;
	text-decoration: none;
	color: inherit;
	background: rgba(0,0,0,.02);
}

.h2ofm-social-action {
	flex-basis: 100%;
	display: grid;
	gap: .65em;
}

.h2ofm-diagnostic-section strong {
	font-weight: 700;
}


/* 2.1.5 — jerarquía y lectura del diagnóstico */
.h2ofm-funnel-shell .h2ofm-field-urgency .h2ofm-choice-description {
	margin-top: .65em;
}

.h2ofm-funnel-shell .h2ofm-report-heading {
	font-size: var(--h2ofm-h2-size) !important;
	color: var(--h2ofm-h2-color) !important;
	line-height: inherit;
}

.h2ofm-report-toggle[hidden] {
	display: none !important;
}

.h2ofm-advisory-section p {
	max-width: 78ch;
}

.h2ofm-next-steps ol {
	margin: .4em 0 0 1.25em;
	padding: 0;
}

.h2ofm-next-steps li {
	margin-bottom: .7em;
	padding-left: .25em;
	line-height: 1.55;
}

.h2ofm-profile-actions {
	align-items: stretch;
}

.h2ofm-profile-actions .h2ofm-nav-button {
	min-width: 180px;
}
