/* Animación Botón */
.card-casa-interna .btn-primary {
	background: none;
	position: relative;
}

.card-casa-interna .btn-primary::before {
	content: "";
	width: 100%;
	height: 100%;
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(
		120deg,
		#fd5400 20%,
		#ff8700 40%,
		#ff9a10 54%,
		#ffc321 65%,
		#f7e25d 70%
	);
	background-size: 150% 150%;
	border-radius: 100px;
	animation: sc_primary_cta_animate 2s linear infinite;
	-webkit-animation: sc_primary_cta_animate 2s linear infinite;
	-moz-animation: sc_primary_cta_animate 2s linear infinite;
	-o-animation: sc_primary_cta_animate 2s linear infinite;
}

.card-casa-interna .btn-primary:hover {
	background: var(--sc-primary-button-color-background-hover);
	animation: sc_primary_cta_animate 2s linear infinite;
	-webkit-animation: sc_primary_cta_animate 2s linear infinite;
	-moz-animation: sc_primary_cta_animate 2s linear infinite;
	-o-animation: sc_primary_cta_animate 2s linear infinite;
}

@keyframes sc_primary_cta_animate {
	0% {
		background-position: 20% 0%;
	}
	50% {
		background-position: 50% 100%;
	}
	100% {
		background-position: 20% 0%;
	}
}
