.miau-productos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
}

.miau-productos__card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.miau-productos__card,
.miau-productos__card:hover,
.miau-productos__card:focus,
.miau-productos__card:visited {
	text-decoration: none;
}

.miau-productos__media {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 20px;
	background: #f2f2f2;
}

.miau-productos__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.miau-productos__card:hover .miau-productos__media img {
	transform: scale(1.03);
}

.miau-productos__buttons {
	position: relative;
	display: flex;
	align-items: stretch;
	margin-top: 12px;
	height: 72px;
	width: 100%;
	overflow: visible;
}

.miau-productos__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	border-radius: 50px;
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	font-size: 25px;
	letter-spacing: -0.8px;
	line-height: 1.2;
	padding: 0 16px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	min-width: 0;
	transition: background-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
}

.miau-productos__btn-label {
	display: block;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
	font-size: 18px;
}

.miau-productos__btn--category {
	flex: 0 0 80%;
	margin-right: -20%;
	background-color: rgba(0, 60, 165, 0.14);
	color: rgba(0, 0, 0, 0.74);
	z-index: 1;
	justify-content: flex-start;
	padding-left: 24px;
}

.miau-productos__btn--cta {
	flex: 0 0 40%;
	background-color: #003ca5;
	color: #fff;
	z-index: 2;
	position: relative;
}

.miau-productos__card:hover .miau-productos__btn--category {
	background-color: rgba(231, 0, 42, 0.14);
}

.miau-productos__card:hover .miau-productos__btn--cta {
	background-color: #e7002a;
}

.miau-productos-wrapper {
	width: 100%;
}

@media (max-width: 1024px) {
	.miau-productos {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.miau-productos {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.miau-productos__buttons {
		height: 72px;
	}

	.miau-productos__btn {
		font-size: 20px;
		padding: 0 14px;
	}

	.miau-productos__btn--category {
		flex: 0 0 80.28%; /* 277/345 */
		margin-right: -19.7%; /* overlap con CTA */
	}

	.miau-productos__btn--cta {
		flex: 0 0 39.42%; /* 136/345 */
	}

}
