/**
 * Herbaquizz — Frontend Eiviplant (mockup /mockup/eivi).
 * Estilos acotados a .hbq-app para no afectar al tema.
 */

/* ── Variables (filosofía mockup) ─────────────────────────────────── */
.hbq-app {
	--hq-bg: #f5f1e6;
	--hq-surface: #f7f8f6;
	--hq-surface-soft: #dce4dc;
	--hq-text: #291f16;
	--hq-text-muted: #3f6567;
	--hq-text-soft: #749091;
	--hq-primary: #5c7f4f;
	--hq-primary-hover: #3f6567;
	--hq-accent: #54aca8;
	--hq-highlight: #a3d757;
	--hq-border: #dcd1b7;
	--hq-disabled: #bcbeb6;
	--hq-white: #fff;
	--hq-skeleton: #e8e4d8;
	--radius-xl: 0.75rem;
	--radius-2xl: 1.25rem;
	--radius-pill: 9999px;
	--shadow-card: 0 4px 24px rgba(41, 31, 22, 0.06);
	--shadow-option: 0 2px 12px rgba(41, 31, 22, 0.06);
	--maxw: 600px;
	--ease-out: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

	font-family: "Poppins", system-ui, sans-serif;
	color: var(--hq-text);
	line-height: 1.5;
	background: var(--hq-bg);
	-webkit-font-smoothing: antialiased;
	max-width: var(--maxw);
	margin: 0 auto;
	min-height: 100%;
	font-size: 1rem;
}

.hbq-app *,
.hbq-app *::before,
.hbq-app *::after {
	box-sizing: border-box;
}

.hbq-app .material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
	vertical-align: middle;
}

.hbq-app button,
.hbq-app input[type="button"],
.hbq-app input[type="submit"] {
	appearance: none;
	-webkit-appearance: none;
}

/* Root interno */
.hbq-app #hbq-app-root {
	max-width: var(--maxw);
	margin: 0 auto;
	min-height: 100dvh;
	padding: 20px 20px 40px;
	position: relative;
}

/* ── Pantallas ───────────────────────────────────────────────────── */
.hbq-app .hbq-screen {
	display: none;
}
/* Solo visibility: la animación va en slide-* / fade. Si animamos aquí,
   al quitar slide-* tras 300ms esta regla volvía a aplicarse y reiniciaba
   la animación de entrada → efecto de “doble salto” o micro recarga. */
.hbq-app .hbq-screen--active {
	display: block;
}

.hbq-app .hbq-screen--slide-left {
	animation: hbqSlideLeft 0.3s var(--ease-out) both;
}
.hbq-app .hbq-screen--slide-right {
	animation: hbqSlideRight 0.3s var(--ease-out) both;
}
.hbq-app .hbq-screen--fade {
	animation: hbqFade 0.28s ease both;
}

@keyframes hbqSlideLeft {
	from {
		opacity: 0;
		transform: translateX(24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes hbqSlideRight {
	from {
		opacity: 0;
		transform: translateX(-24px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}
@keyframes hbqFade {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ── Intro ───────────────────────────────────────────────────────── */
.hbq-app .intro-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 28px;
	padding-top: 8px;
}

.hbq-app .hero-wrap {
	width: 100%;
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-option);
}

@media (max-width: 639px) {
	.hbq-app .intro-main {
		gap: 16px;
		padding-top: 4px;
	}

	/* Menos altura que 4:3 para ver foto + copy + CTA en un vistazo */
	.hbq-app .hero-wrap {
		aspect-ratio: 2 / 1;
		max-height: 40vw;
	}

	.hbq-app .display-title {
		margin-bottom: 10px;
	}

	.hbq-app .body-lg {
		font-size: 1rem;
		line-height: 1.55;
	}
}

.hbq-app .hero-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hbq-app .hero-placeholder {
	width: 100%;
	height: 100%;
	min-height: 120px;
	background: linear-gradient(145deg, var(--hq-surface-soft) 0%, var(--hq-skeleton) 100%);
}

.hbq-app .intro-copy {
	width: 100%;
	padding: 0 4px;
}

.hbq-app .intro-extra {
	width: 100%;
	text-align: center;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--hq-text-muted);
	margin-top: 8px;
}
.hbq-app .intro-extra p {
	margin: 0 0 0.5rem;
}

.hbq-app .display-title {
	font-size: clamp(1.75rem, 6vw, 2.35rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	color: var(--hq-text);
}

.hbq-app .body-lg {
	font-size: 1.05rem;
	line-height: 1.65;
	color: var(--hq-text-muted);
	margin: 0;
}

.hbq-app .cta-block {
	width: 100%;
	padding: 0 4px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hbq-app .btn-primary {
	width: 100%;
	min-height: 52px;
	padding: 0 24px;
	border: none;
	border-radius: var(--radius-xl);
	background: var(--hq-primary);
	color: var(--hq-white);
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 6px 20px rgba(92, 127, 79, 0.28);
	transition:
		transform 0.18s var(--ease-out),
		box-shadow 0.18s ease,
		background 0.18s ease;
}

.hbq-app .btn-primary:hover:not(:disabled):not(.is-disabled) {
	background: var(--hq-primary-hover);
	box-shadow: 0 8px 24px rgba(92, 127, 79, 0.32);
}

.hbq-app .btn-primary:active:not(:disabled):not(.is-disabled) {
	transform: scale(0.98);
}

.hbq-app .btn-primary:focus-visible {
	outline: 3px solid var(--hq-accent);
	outline-offset: 2px;
}

.hbq-app .micro {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 0.875rem;
	color: var(--hq-text-soft);
	margin: 0;
}

.hbq-app .micro .material-symbols-outlined {
	font-size: 18px;
}

/* ── Quiz ────────────────────────────────────────────────────────── */
.hbq-app .quiz-inner {
	padding-top: 4px;
}

.hbq-app .hq-progress {
	background: var(--hq-surface);
	border: 1px solid var(--hq-border);
	border-radius: var(--radius-xl);
	padding: 16px 18px 14px;
	margin-bottom: 26px;
	box-shadow: var(--shadow-option);
}

.hbq-app .hq-progress-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0;
	margin-bottom: 12px;
}

.hbq-app .hq-step-dot {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid var(--hq-border);
	background: var(--hq-bg);
	transition:
		border-color 0.35s var(--ease-out),
		background 0.35s var(--ease-out),
		box-shadow 0.35s var(--ease-out),
		transform 0.35s var(--ease-out);
}

.hbq-app .hq-step-dot.is-done {
	border-color: var(--hq-primary);
	background: var(--hq-primary);
	box-shadow: 0 0 0 3px rgba(92, 127, 79, 0.2);
}

.hbq-app .hq-step-dot.is-current {
	border-color: var(--hq-accent);
	background: var(--hq-white);
	box-shadow: 0 0 0 3px rgba(84, 172, 168, 0.28);
	transform: scale(1.12);
}

.hbq-app .hq-step-dot.is-upcoming {
	border-color: var(--hq-border);
	background: var(--hq-bg);
	opacity: 0.85;
}

.hbq-app .hq-step-connector {
	width: clamp(20px, 7vw, 40px);
	height: 3px;
	margin: 0 4px;
	border-radius: 2px;
	background: var(--hq-border);
	transition: background 0.4s var(--ease-out);
}

.hbq-app .hq-step-connector.is-done {
	background: linear-gradient(90deg, var(--hq-primary), #6f955e);
}

.hbq-app .hq-progress-caption {
	text-align: center;
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--hq-text-muted);
	line-height: 1.4;
}

.hbq-app .hq-progress-caption strong {
	font-weight: 600;
	color: var(--hq-primary);
}

.hbq-app .hq-progress-sep {
	margin: 0 0.35em;
	color: var(--hq-border);
	font-weight: 400;
}

.hbq-app .question-title {
	font-size: clamp(1.5rem, 5vw, 2rem);
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	margin: 0 0 14px;
	color: var(--hq-text);
}

.hbq-app .question-desc {
	text-align: center;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--hq-text-muted);
	margin: 0 auto 24px;
	max-width: 36ch;
}

.hbq-app .options {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.hbq-app .hq-option {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	width: 100%;
	text-align: left;
	padding: 16px 18px;
	border-radius: var(--radius-xl);
	border: 2px solid var(--hq-border);
	background: var(--hq-surface);
	box-shadow: var(--shadow-option);
	cursor: pointer;
	font-family: inherit;
	transition:
		border-color 0.28s var(--ease-out),
		background 0.28s var(--ease-out),
		box-shadow 0.28s var(--ease-out),
		transform 0.2s var(--ease-out);
	-webkit-tap-highlight-color: transparent;
}

.hbq-app .hq-option-rail {
	flex-shrink: 0;
	width: 32px;
	min-height: 28px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 2px;
}

.hbq-app .hq-option-marker {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid var(--hq-border);
	background: var(--hq-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		border-color 0.28s var(--ease-out),
		background 0.28s var(--ease-out),
		box-shadow 0.28s var(--ease-out),
		transform 0.22s var(--ease-spring);
}

.hbq-app .hq-option-marker-check {
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	color: var(--hq-white);
	opacity: 0;
	transform: scale(0.5);
	transition:
		opacity 0.18s var(--ease-out),
		transform 0.22s var(--ease-spring);
}

.hbq-app .hq-option.is-selected .hq-option-marker {
	border-color: var(--hq-accent);
	background: var(--hq-accent);
	box-shadow: 0 4px 14px rgba(84, 172, 168, 0.4);
	animation: hbqMarkerPop 0.24s var(--ease-spring);
}

.hbq-app .hq-option.is-selected .hq-option-marker-check {
	opacity: 1;
	transform: scale(1);
}

@keyframes hbqMarkerPop {
	from {
		transform: scale(0.92);
	}
	to {
		transform: scale(1);
	}
}

.hbq-app .hq-option:hover {
	box-shadow: 0 6px 20px rgba(41, 31, 22, 0.1);
}

.hbq-app .hq-option:active {
	transform: scale(0.985);
}

.hbq-app .hq-option:focus-visible {
	outline: 3px solid var(--hq-accent);
	outline-offset: 2px;
}

.hbq-app .hq-option.is-selected {
	border-color: var(--hq-accent);
	background: var(--hq-surface-soft);
	box-shadow: 0 8px 28px rgba(84, 172, 168, 0.22);
}

.hbq-app .hq-option-title {
	display: block;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--hq-text);
	margin-bottom: 6px;
}

.hbq-app .hq-option-desc {
	display: block;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--hq-text-soft);
	margin: 0;
}

.hbq-app .hq-option.is-selected .hq-option-desc {
	color: var(--hq-text-muted);
}

.hbq-app .hq-option-body {
	flex: 1;
	min-width: 0;
}

/* Navegación */
.hbq-app .nav-row {
	display: flex;
	flex-direction: column-reverse;
	gap: 12px;
	padding-top: 8px;
	border-top: 1px solid rgba(220, 209, 183, 0.45);
}

.hbq-app .nav-row.nav-row--first {
	flex-direction: column;
	align-items: stretch;
}

.hbq-app .nav-row.nav-row--first .btn-continue {
	width: 100%;
	max-width: none;
	margin-left: 0;
	order: 0;
}

.hbq-app .nav-row.nav-row--first .btn-ghost {
	order: 1;
}

@media (min-width: 480px) {
	.hbq-app .nav-row:not(.nav-row--first) {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.hbq-app .btn-ghost {
	min-height: 48px;
	padding: 0 16px;
	border: none;
	background: transparent;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	color: var(--hq-text-soft);
	cursor: pointer;
	border-radius: var(--radius-xl);
	transition:
		color 0.2s ease,
		background 0.2s ease;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hbq-app .btn-ghost:hover {
	color: var(--hq-primary-hover);
}

.hbq-app .btn-ghost:focus-visible {
	outline: 3px solid var(--hq-accent);
	outline-offset: 2px;
}

.hbq-app .btn-continue {
	flex: 1;
	max-width: 280px;
	margin-left: auto;
}

@media (max-width: 479px) {
	.hbq-app .btn-continue {
		width: 100%;
		max-width: none;
		margin-left: 0;
	}
}

.hbq-app .btn-primary[disabled],
.hbq-app .btn-primary.is-disabled {
	background: var(--hq-disabled);
	color: var(--hq-surface);
	box-shadow: none;
	cursor: not-allowed;
	transform: none;
}

.hbq-app .btn-primary[disabled]:hover,
.hbq-app .btn-primary.is-disabled:hover {
	background: var(--hq-disabled);
}

/* ── Loading ─────────────────────────────────────────────────────── */
.hbq-app .loading-head {
	text-align: center;
	margin-bottom: 24px;
}

.hbq-app .loading-title {
	font-size: clamp(1.5rem, 5vw, 2rem);
	font-weight: 600;
	margin: 0 0 8px;
	color: var(--hq-text);
}

.hbq-app .loading-sub {
	font-size: 1rem;
	color: var(--hq-text-soft);
	margin: 0;
}

.hbq-app .skel-card {
	background: var(--hq-surface);
	border-radius: var(--radius-xl);
	border: 1px solid var(--hq-border);
	overflow: hidden;
	box-shadow: var(--shadow-card);
}

.hbq-app .skel-img {
	height: 240px;
	background: var(--hq-skeleton);
	position: relative;
	overflow: hidden;
}

.hbq-app .shimmer::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, transparent, rgba(247, 248, 246, 0.85), transparent);
	animation: hbqShimmer 1.4s ease-in-out infinite;
}

@keyframes hbqShimmer {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.hbq-app .skel-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hbq-app .skel-row-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}

.hbq-app .skel-row-head .skel-row.short {
	flex: 1;
}

.hbq-app .skel-row {
	height: 14px;
	border-radius: 7px;
	background: var(--hq-skeleton);
	position: relative;
	overflow: hidden;
}

.hbq-app .skel-row.short {
	width: 45%;
}

.hbq-app .skel-row.mid {
	width: 72%;
}

.hbq-app .skel-row-wide {
	width: 88%;
}

.hbq-app .skel-pill {
	width: 120px;
	height: 28px;
	border-radius: var(--radius-pill);
	background: var(--hq-skeleton);
	position: relative;
	overflow: hidden;
}

.hbq-app .skel-btn {
	height: 48px;
	border-radius: var(--radius-xl);
	background: var(--hq-skeleton);
	margin-top: 8px;
	position: relative;
	overflow: hidden;
}

/* ── Resultados ──────────────────────────────────────────────────── */
.hbq-app .results-hero-text {
	text-align: center;
	margin-bottom: 32px;
}

.hbq-app .results-extra {
	font-size: 0.9375rem;
	line-height: 1.55;
	color: var(--hq-text-soft);
	margin-top: 12px;
	text-align: center;
	max-width: 32rem;
	margin-left: auto;
	margin-right: auto;
}

.hbq-app .results-extra p {
	margin: 0 0 0.35rem;
}

.hbq-app .eyebrow {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--hq-primary);
	margin: 0 0 10px;
}

.hbq-app .results-title {
	font-size: clamp(1.65rem, 5vw, 2.1rem);
	font-weight: 600;
	margin: 0 0 12px;
	color: var(--hq-text);
}

.hbq-app .results-lead {
	font-size: 1rem;
	color: var(--hq-text-soft);
	margin: 0 auto;
	max-width: 280px;
	line-height: 1.55;
}

.hbq-app .result-card {
	background: var(--hq-surface);
	border-radius: var(--radius-xl);
	overflow: hidden;
	border: 1px solid var(--hq-border);
	box-shadow: var(--shadow-card);
	margin-bottom: 28px;
	position: relative;
	animation: hbqCardIn 0.45s var(--ease-out) both;
}

.hbq-app .result-card:nth-child(1) {
	animation-delay: 0.05s;
}
.hbq-app .result-card:nth-child(2) {
	animation-delay: 0.12s;
}
.hbq-app .result-card:nth-child(3) {
	animation-delay: 0.19s;
}

@keyframes hbqCardIn {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hbq-app .result-visual {
	position: relative;
}

.hbq-app .result-visual img {
	width: 100%;
	height: 288px;
	object-fit: cover;
	display: block;
	background: var(--hq-skeleton);
}

.hbq-app .result-placeholder-img {
	width: 100%;
	height: 288px;
	background: var(--hq-skeleton);
}

.hbq-app .result-card.is-secondary .result-placeholder-img {
	height: 200px;
}

.hbq-app .result-card.is-secondary .result-visual img {
	height: 200px;
}

.hbq-app .result-visual-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(41, 31, 22, 0.12), transparent);
	pointer-events: none;
}

.hbq-app .badge-best {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	background: var(--hq-highlight);
	color: var(--hq-text);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(163, 215, 87, 0.35);
}

.hbq-app .chip-compat {
	display: inline-flex;
	padding: 8px 14px;
	border-radius: var(--radius-pill);
	background: var(--hq-surface-soft);
	border: 1px solid rgba(92, 127, 79, 0.25);
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--hq-primary);
	white-space: nowrap;
	flex-shrink: 0;
}

.hbq-app .result-body {
	padding: 24px;
}

.hbq-app .result-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.hbq-app .result-name {
	font-size: 1.65rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 4px;
	color: var(--hq-text);
}

.hbq-app .result-card.is-secondary .result-name {
	font-size: 1.35rem;
}

.hbq-app .result-sub {
	font-size: 0.8125rem;
	color: var(--hq-text-soft);
	margin: 0;
}

.hbq-app .result-desc {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: var(--hq-text-muted);
	margin: 0 0 16px;
}

.hbq-app .result-card.is-secondary .result-desc {
	font-size: 0.875rem;
}

/* Facts de resultado (provisionales: mismo bloque en cada tarjeta hasta datos por ítem) */
.hbq-app .result-facts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 16px;
}

.hbq-app .result-facts .fact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px 8px;
	border-radius: var(--radius-xl);
	background: var(--hq-bg);
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--hq-text);
	text-align: center;
	line-height: 1.25;
}

.hbq-app .result-facts .fact .material-symbols-outlined {
	color: var(--hq-primary);
	font-size: 22px;
	margin-bottom: 4px;
}

.hbq-app .btn-secondary-solid {
	width: 100%;
	min-height: 48px;
	border: none;
	border-radius: var(--radius-xl);
	background: var(--hq-primary);
	color: var(--hq-white);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition:
		background 0.2s ease,
		transform 0.15s ease;
	text-decoration: none;
	box-sizing: border-box;
}

.hbq-app .btn-secondary-solid:hover {
	background: var(--hq-primary-hover);
	color: var(--hq-white);
}

.hbq-app .btn-secondary-solid:active {
	transform: scale(0.99);
}

.hbq-app .btn-secondary-solid:focus-visible {
	outline: 3px solid var(--hq-accent);
	outline-offset: 2px;
}

.hbq-app .btn-outline {
	width: 100%;
	min-height: 48px;
	border: 2px solid var(--hq-primary);
	border-radius: var(--radius-xl);
	background: transparent;
	color: var(--hq-primary);
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition:
		background 0.2s ease,
		color 0.2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.hbq-app .btn-outline:hover {
	background: rgba(92, 127, 79, 0.08);
	color: var(--hq-primary);
}

.hbq-app .btn-outline:focus-visible {
	outline: 3px solid var(--hq-accent);
	outline-offset: 2px;
}

.hbq-app .repeat-wrap {
	margin-top: 32px;
	padding-bottom: 16px;
}

.hbq-app .btn-text-icon {
	width: 100%;
	min-height: 48px;
	border: none;
	background: none;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 500;
	color: var(--hq-text-soft);
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: color 0.2s ease;
}

.hbq-app .btn-text-icon:hover {
	color: var(--hq-text);
}

.hbq-app .btn-text-icon:focus-visible {
	outline: 3px solid var(--hq-accent);
	outline-offset: 2px;
}

.hbq-app .scroll-anchor {
	scroll-margin-top: 12px;
}

.hbq-app .hidden {
	display: none !important;
}

/* Banner ayuda (existente) */
.hbq-app .hbq-results-help-banner {
	margin: 0 0 24px;
	padding: 1.5rem 1.25rem;
	border-radius: var(--radius-xl);
	background: var(--hq-primary-hover);
	color: var(--hq-white);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	text-align: center;
}

.hbq-app .hbq-results-help-banner__icon {
	width: 3rem;
	height: 3rem;
	border-radius: 9999px;
	background: var(--hq-white);
	color: var(--hq-primary-hover);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1;
}

.hbq-app .hbq-results-help-banner__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.45;
	max-width: 24rem;
}

.hbq-app .hbq-results__footer {
	text-align: center;
	padding-top: 8px;
}

.hbq-app .results-meta-cta {
	margin: 16px 0 0;
}

.hbq-app .hbq-results__cta-link {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--hq-primary);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.hbq-app .hbq-results__cta-link:hover {
	color: var(--hq-primary-hover);
}

/* Sin resultados */
.hbq-app .hbq-no-results {
	text-align: center;
	padding: 2rem 1rem 3rem;
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.hbq-app .hbq-no-results__title {
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--hq-text);
	margin: 0;
	line-height: 1.35;
}

.hbq-app .hbq-no-results__text {
	font-size: 1rem;
	line-height: 1.6;
	color: var(--hq-text-muted);
	margin: 0;
	max-width: 26rem;
}

.hbq-app .hbq-no-results__cta {
	max-width: 280px;
	margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {
	.hbq-app .hbq-screen--active,
	.hbq-app .hbq-screen--slide-left,
	.hbq-app .hbq-screen--slide-right,
	.hbq-app .hbq-screen--fade,
	.hbq-app .result-card {
		animation: none !important;
	}
	.hbq-app .hq-option {
		transition:
			border-color 0.15s ease,
			background 0.15s ease,
			box-shadow 0.15s ease !important;
	}
	.hbq-app .shimmer::after {
		animation: none !important;
	}
	.hbq-app .hq-step-dot,
	.hbq-app .hq-step-connector,
	.hbq-app .hq-option-marker {
		transition: none !important;
	}
	.hbq-app .hq-option.is-selected .hq-option-marker {
		animation: none;
	}
}
