/**
 * Ficha de producto ampliada — .hm-ficha
 * Montserrat 300/400 · títulos 500/600 · #200C80 · motion liviano
 */

.hm-ficha {
	--hm-ficha-font: "Montserrat", "Segoe UI", sans-serif;
	font-family: var(--hm-ficha-font);
	font-weight: 400;
	color: var(--hm-ink, #14141c);
	background: #f6f6f8;
	padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hm-ficha,
.hm-ficha button,
.hm-ficha a {
	font-family: var(--hm-ficha-font);
}

.hm-ficha__crumbs {
	padding-top: 1.1rem;
	padding-bottom: 0.25rem;
}

.hm-ficha .hm-breadcrumbs ol {
	font-size: 0.86rem;
	font-weight: 400;
	color: var(--hm-muted, #5c5c6a);
}

.hm-ficha .hm-breadcrumbs a {
	text-decoration: none !important;
	color: inherit;
	transition: color var(--hm-ease, 200ms ease);
}

.hm-ficha .hm-breadcrumbs a:hover {
	color: var(--hm-brand, #200c80);
}

/* —— Hero —— */
.hm-ficha__hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.5rem, 3.5vw, 2.75rem);
	align-items: start;
	padding: 1rem 0 clamp(2rem, 4vw, 2.75rem);
}

.hm-ficha__gallery {
	position: sticky;
	top: calc(var(--hm-header-h, 76px) + 12px);
}

.hm-ficha__figure {
	position: relative;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
	background: #ececf2;
	border: 1px solid rgba(32, 12, 128, 0.08);
	aspect-ratio: 4 / 3;
}

.hm-ficha__figure img,
.hm-ficha__main-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: opacity 220ms ease;
}

.hm-ficha__figure--empty {
	display: grid;
	place-items: center;
	color: var(--hm-brand, #200c80);
	opacity: 0.45;
}

.hm-ficha__ph .hm-icon {
	width: 64px;
	height: 64px;
}

.hm-ficha__figure .hm-badge {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	margin: 0;
	padding: 0.45rem 0.85rem;
	border: 0;
	border-radius: 0;
	background: #200c80;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
	pointer-events: none;
}

.hm-ficha__thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
}

.hm-ficha__thumb {
	display: block;
	padding: 0;
	margin: 0;
	width: 72px;
	height: 72px;
	border-radius: 0;
	overflow: hidden;
	border: 1.5px solid rgba(32, 12, 128, 0.12);
	background: #fff;
	cursor: pointer;
	transition:
		border-color 180ms ease,
		transform 180ms ease,
		box-shadow 180ms ease;
}

.hm-ficha__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hm-ficha__thumb:hover {
	border-color: rgba(32, 12, 128, 0.35);
	transform: translateY(-1px);
}

.hm-ficha__thumb.is-active {
	border-color: var(--hm-brand, #200c80);
	box-shadow: 0 0 0 1px var(--hm-brand, #200c80);
}

.hm-ficha__eyebrow {
	margin: 0 0 0.55rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--hm-brand, #200c80);
}

.hm-ficha__eyebrow a {
	color: inherit;
	text-decoration: none !important;
}

.hm-ficha__eyebrow a:hover {
	text-decoration: underline !important;
}

.hm-ficha__title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.75rem, 3.2vw, 2.45rem);
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: var(--hm-ink, #14141c);
	text-transform: none;
}

.hm-ficha__lead {
	margin: 0 0 1.35rem;
	max-width: 56ch;
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--hm-muted, #5c5c6a);
	overflow: visible;
	max-height: none;
	-webkit-line-clamp: unset;
	display: block;
	white-space: normal;
}

.hm-ficha__specs {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.hm-ficha__specs li {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
}

.hm-ficha__spec-ico {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 0;
	background: rgba(32, 12, 128, 0.06);
	color: var(--hm-brand, #200c80);
}

.hm-ficha__spec-body {
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
	padding-top: 0.15rem;
}

.hm-ficha__spec-body strong {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hm-ink, #14141c);
}

.hm-ficha__spec-body span {
	font-size: 0.88rem;
	font-weight: 300;
	color: var(--hm-muted, #5c5c6a);
}

.hm-ficha__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-bottom: 0.85rem;
}

.hm-ficha__download {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hm-brand, #200c80);
	text-decoration: none !important;
	transition: opacity 160ms ease;
}

.hm-ficha__download:hover {
	opacity: 0.8;
	text-decoration: underline !important;
}

.hm-ficha__download .hm-icon {
	width: 18px;
	height: 18px;
}

/* —— Ribbon —— */
.hm-ficha-ribbon {
	padding: 1.35rem 0;
	background: #f0f0f5;
	border-block: 1px solid rgba(32, 12, 128, 0.07);
}

.hm-ficha-ribbon__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem 1.25rem;
}

.hm-ficha-ribbon__list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.hm-ficha-ribbon__ico {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 0;
	background: #fff;
	border: 1px solid rgba(32, 12, 128, 0.1);
	color: var(--hm-brand, #200c80);
}

.hm-ficha-ribbon__list strong {
	display: block;
	margin-bottom: 0.2rem;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--hm-ink, #14141c);
	line-height: 1.3;
}

.hm-ficha-ribbon__list span {
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 1.4;
	color: var(--hm-muted, #5c5c6a);
}

/* —— Tech —— */
.hm-ficha-tech {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	padding: clamp(2rem, 4vw, 2.75rem) 0;
}

.hm-ficha-tech h2 {
	margin: 0 0 1rem;
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--hm-brand, #200c80);
	text-transform: none;
	letter-spacing: -0.01em;
}

.hm-ficha-tech__table {
	margin: 0;
	border-top: 1px solid rgba(32, 12, 128, 0.1);
}

.hm-ficha-tech__table > div {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(32, 12, 128, 0.08);
	font-size: 0.92rem;
}

.hm-ficha-tech__table dt {
	margin: 0;
	font-weight: 400;
	color: var(--hm-muted, #5c5c6a);
}

.hm-ficha-tech__table dd {
	margin: 0;
	font-weight: 500;
	text-align: right;
	color: var(--hm-ink, #14141c);
}

.hm-ficha-docs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.65rem;
}

.hm-ficha-docs li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	border-radius: 0;
	border: 1px solid rgba(32, 12, 128, 0.1);
	background: #fff;
}

.hm-ficha-docs__ico {
	color: var(--hm-brand, #200c80);
	flex-shrink: 0;
}

.hm-ficha-docs__meta {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.hm-ficha-docs__meta strong {
	font-size: 0.9rem;
	font-weight: 500;
}

.hm-ficha-docs__meta span {
	font-size: 0.8rem;
	font-weight: 300;
	color: var(--hm-muted, #5c5c6a);
}

.hm-ficha-docs__link {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 0;
	color: var(--hm-brand, #200c80);
	background: rgba(32, 12, 128, 0.06);
	transition: background 160ms ease;
}

.hm-ficha-docs__link:hover {
	background: rgba(32, 12, 128, 0.12);
}

.hm-ficha-docs--plain {
	max-width: 36rem;
}

/* —— Tabs —— */
.hm-ficha-tabs {
	padding: 0.5rem 0 clamp(2rem, 4vw, 2.75rem);
}

.hm-ficha-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem 0.35rem;
	border-bottom: 1px solid rgba(32, 12, 128, 0.12);
	margin-bottom: 1.35rem;
}

.hm-ficha-tabs__btn {
	appearance: none;
	border: 0;
	background: transparent;
	padding: 0.75rem 0.9rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--hm-muted, #5c5c6a);
	cursor: pointer;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition:
		color 160ms ease,
		border-color 160ms ease;
}

.hm-ficha-tabs__btn:hover {
	color: var(--hm-brand, #200c80);
}

.hm-ficha-tabs__btn.is-active {
	color: var(--hm-brand, #200c80);
	border-bottom-color: var(--hm-brand, #200c80);
}

.hm-ficha-tabs__panel {
	display: none;
	animation: hmFichaFade 240ms ease;
}

.hm-ficha-tabs__panel.is-active {
	display: block;
}

@keyframes hmFichaFade {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: none; }
}

.hm-ficha-prose {
	max-width: none;
	font-weight: 300;
	line-height: 1.65;
	color: var(--hm-ink, #14141c);
}

.hm-ficha-prose p {
	margin: 0 0 1rem;
}

.hm-ficha .hm-ficha-prose ul,
.hm-ficha-prose ul {
	list-style: disc outside;
	margin: 0 0 1.15em;
	padding-left: 1.5em;
}

.hm-ficha .hm-ficha-prose ol,
.hm-ficha-prose ol {
	list-style: decimal outside;
	margin: 0 0 1.15em;
	padding-left: 1.5em;
}

.hm-ficha .hm-ficha-prose li,
.hm-ficha-prose li {
	margin: 0 0 0.45em;
	line-height: 1.55;
}

.hm-ficha-benefits {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
	max-width: 40rem;
}

.hm-ficha-benefits li {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.hm-ficha-benefits__ico {
	color: var(--hm-brand, #200c80);
	margin-top: 0.15rem;
}

.hm-ficha-benefits strong {
	display: block;
	font-weight: 500;
	margin-bottom: 0.15rem;
}

.hm-ficha-benefits span {
	font-weight: 300;
	font-size: 0.92rem;
	color: var(--hm-muted, #5c5c6a);
}

.hm-ficha-tabs__solo-title {
	margin: 0 0 1rem;
	font-size: clamp(1.15rem, 2vw, 1.35rem);
	font-weight: 600;
	color: var(--hm-brand, #200c80);
	text-transform: none;
}

.hm-ficha-video {
	margin-top: 1rem;
}

/* —— Related —— */
.hm-ficha-related {
	padding: clamp(1.5rem, 3vw, 2.25rem) 0;
}

.hm-ficha-related__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.15rem;
}

.hm-ficha-related__head h2 {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--hm-ink, #14141c);
	text-transform: none;
	letter-spacing: -0.015em;
}

.hm-ficha-related__carousel {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas:
		"prev viewport next"
		"dots dots dots";
	align-items: center;
	gap: 0.65rem 0.5rem;
}

.hm-ficha-related__viewport {
	grid-area: viewport;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	overscroll-behavior-x: contain;
}

.hm-ficha-related__viewport::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}

.hm-ficha-related__track {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(200px, 240px);
	gap: 1rem;
	width: max-content;
}

.hm-ficha-related__track > li {
	scroll-snap-align: start;
}

.hm-ficha-related__nav {
	grid-area: next;
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1.5px solid var(--hm-brand, #200c80);
	background: #fff;
	color: var(--hm-brand, #200c80);
	border-radius: 0;
	cursor: pointer;
	transition:
		background 160ms ease,
		color 160ms ease,
		opacity 160ms ease;
}

.hm-ficha-related__nav--prev {
	grid-area: prev;
}

.hm-ficha-related__nav:hover:not(:disabled) {
	background: var(--hm-brand, #200c80);
	color: #fff;
}

.hm-ficha-related__nav:focus-visible {
	outline: 2px solid var(--hm-brand, #200c80);
	outline-offset: 2px;
}

.hm-ficha-related__nav:disabled,
.hm-ficha-related__nav[aria-disabled="true"] {
	opacity: 0.35;
	cursor: not-allowed;
}

.hm-ficha-related__dots {
	grid-area: dots;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.45rem;
	margin: 0.35rem 0 0;
	min-height: 1rem;
}

.hm-ficha-related__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: rgba(32, 12, 128, 0.28);
	cursor: pointer;
	transition:
		background 160ms ease,
		transform 160ms ease;
}

.hm-ficha-related__dot.is-active {
	background: var(--hm-brand, #200c80);
	transform: scaleX(1.65);
}

.hm-ficha-related__dot:focus-visible {
	outline: 2px solid var(--hm-brand, #200c80);
	outline-offset: 3px;
}

.hm-ficha-related__carousel.is-static .hm-ficha-related__nav,
.hm-ficha-related__carousel.is-static .hm-ficha-related__dots {
	display: none;
}

.hm-ficha-related__carousel.is-static {
	grid-template-columns: minmax(0, 1fr);
	grid-template-areas: "viewport";
}

.hm-ficha-related__card {
	height: 100%;
	background: #fff;
	border: 1px solid rgba(32, 12, 128, 0.1);
	border-radius: 0;
	overflow: hidden;
	transition:
		transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 220ms ease,
		border-color 220ms ease;
}

.hm-ficha-related__card:hover {
	transform: translateY(-3px);
	border-color: rgba(32, 12, 128, 0.2);
	box-shadow: 0 12px 28px rgba(20, 20, 28, 0.08);
}

.hm-ficha-related__card a {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none !important;
}

.hm-ficha-related__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: #ececf2;
	overflow: hidden;
}

.hm-ficha-related__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hm-ficha-related__card:hover .hm-ficha-related__media img {
	transform: scale(1.03);
}

.hm-ficha-related__ph {
	display: block;
	width: 100%;
	height: 100%;
	background: #ececf2;
}

.hm-ficha-related__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 0.85rem 1rem 1.1rem;
	flex: 1;
}

.hm-ficha-related__cat {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--hm-brand, #200c80);
}

.hm-ficha-related__body h3 {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--hm-ink, #14141c);
	text-transform: none;
}

.hm-ficha-related__cta {
	margin-top: auto;
	padding-top: 0.55rem;
	font-size: 0.86rem;
	font-weight: 500;
	color: var(--hm-brand, #200c80);
}

/* —— Bottom CTA —— */
.hm-ficha-cta {
	padding: 0.5rem 0 1rem;
}

.hm-ficha-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	padding: 1.6rem 1.75rem;
	border-radius: 0;
	background: var(--hm-brand, #200c80);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.hm-ficha-cta__inner::after {
	content: "";
	position: absolute;
	right: -48px;
	top: -48px;
	width: 160px;
	height: 160px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0;
	pointer-events: none;
}

.hm-ficha-cta__copy {
	display: flex;
	align-items: flex-start;
	gap: 0.9rem;
	max-width: 44rem;
	position: relative;
	z-index: 1;
}

.hm-ficha-cta__ico {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
}

.hm-ficha-cta h2 {
	margin: 0 0 0.35rem;
	font-size: 1.2rem;
	font-weight: 600;
	color: #fff;
	text-transform: none;
	letter-spacing: -0.01em;
}

.hm-ficha-cta p {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 300;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
}

.hm-ficha-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	position: relative;
	z-index: 1;
}

.hm-ficha-cta .hm-btn--whatsapp {
	box-shadow: none;
}

.hm-ficha-cta .hm-btn--ghost {
	border-width: 1.5px;
}

/* Reveals — fail-safe (ficha never blank; craft CSS also forces visible). */
body.hm-site .hm-ficha [data-hm-reveal],
body.hm-site .hm-ficha .hm-reveal,
.hm-ficha [data-hm-reveal],
.hm-ficha .hm-reveal {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.hm-ficha [data-hm-reveal],
	.hm-ficha-tabs__panel {
		opacity: 1;
		transform: none;
		animation: none;
		transition: none;
	}

	.hm-ficha__thumb:hover,
	.hm-ficha-related__card:hover,
	.hm-ficha-related__card:hover .hm-ficha-related__media img {
		transform: none;
	}

	.hm-ficha-related__nav,
	.hm-ficha-related__dot {
		transition: none;
	}

	.hm-ficha-related__viewport {
		scroll-behavior: auto;
	}
}

@media (scripting: none) {
	.hm-ficha [data-hm-reveal] {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 980px) {
	.hm-ficha__hero {
		grid-template-columns: 1fr;
	}

	.hm-ficha__gallery {
		position: static;
	}

	.hm-ficha-ribbon__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hm-ficha-tech {
		grid-template-columns: 1fr;
	}

	.hm-ficha-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.hm-ficha-related__carousel {
		grid-template-columns: auto auto;
		grid-template-areas:
			"viewport viewport"
			"prev next"
			"dots dots";
		justify-content: center;
	}

	.hm-ficha-related__track {
		grid-auto-columns: minmax(180px, 70vw);
	}
}

@media (max-width: 560px) {
	.hm-ficha-ribbon__list {
		grid-template-columns: 1fr;
	}

	.hm-ficha__actions .hm-btn {
		width: 100%;
		justify-content: center;
	}

	.hm-ficha__thumb {
		width: 64px;
		height: 64px;
	}
}

/* —— Ficha elevation v5 (mockup producto) —— */
.hm-ficha {
	background: #f7f7f9;
}
.hm-ficha__crumbs {
	padding-top: 1.35rem;
}
.hm-ficha__hero {
	gap: clamp(1.75rem, 4vw, 3rem);
	padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
}
.hm-ficha__figure {
	background: #ececf2;
	border-color: rgba(32, 12, 128, 0.1);
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.hm-ficha__figure img,
.hm-ficha__main-img {
	object-fit: cover;
	object-position: center;
	padding: 0;
}
.hm-ficha__thumb {
	width: 76px;
	height: 76px;
	background: #fff;
}
.hm-ficha__eyebrow {
	font-weight: 500;
	letter-spacing: 0.12em;
	font-size: 0.72rem;
}
.hm-ficha__title {
	font-weight: 600;
	letter-spacing: -0.028em;
}
.hm-ficha__lead {
	font-size: 1.02rem;
	line-height: 1.65;
}
.hm-ficha__specs {
	gap: 0.75rem;
	padding: 1.15rem 0 0.25rem;
	border-top: 1px solid rgba(32, 12, 128, 0.08);
}
.hm-ficha__spec-ico {
	width: 40px;
	height: 40px;
}
.hm-ficha__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.35rem;
}
.hm-ficha__actions .hm-btn {
	min-height: 50px;
	flex: 1 1 200px;
}
.hm-ficha-ribbon {
	margin: 0 0 clamp(2rem, 4vw, 3rem);
	padding: 1.5rem 0;
	background: #fff;
	border-block: 1px solid rgba(32, 12, 128, 0.1);
}
.hm-ficha-ribbon__list {
	gap: 1.25rem;
}
.hm-ficha-tech {
	gap: clamp(1.5rem, 3vw, 2.5rem);
	padding: clamp(1.75rem, 3.5vw, 2.5rem);
	background: #fff;
	border: 1px solid rgba(32, 12, 128, 0.1);
}
.hm-ficha-tabs {
	margin-top: clamp(2rem, 4vw, 2.75rem);
	background: #fff;
	border: 1px solid rgba(32, 12, 128, 0.1);
	padding: 0 0 1.5rem;
}
.hm-ficha-related__card {
	border: 1px solid rgba(32, 12, 128, 0.1);
	background: #fff;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.hm-ficha-related__card:hover {
	transform: translateY(-3px);
	border-color: rgba(32, 12, 128, 0.24);
	box-shadow: 0 14px 32px rgba(20, 20, 28, 0.08);
}
.hm-ficha-cta {
	margin-top: clamp(2.5rem, 5vw, 3.5rem);
	padding: clamp(2.5rem, 5vw, 3.5rem) 0;
	background: var(--hm-brand-dark, #16085c);
	color: #fff;
}
.hm-ficha-cta h2 {
	font-weight: 500;
	letter-spacing: -0.02em;
}
.hm-ficha-cta .hm-btn--whatsapp,
.hm-ficha-cta .hm-btn--wa {
	background: var(--hm-wa, #25d366);
	border-color: rgba(255, 255, 255, 0.95);
	color: #fff !important;
	box-shadow: none;
}
.hm-ficha-cta .hm-btn--whatsapp:hover,
.hm-ficha-cta .hm-btn--wa:hover {
	background: var(--hm-wa-dark, #1ebe57);
	border-color: #fff;
	color: #fff !important;
	box-shadow: none;
}
