.wass_enlace {
	position: fixed;
	z-index: 999;
	width: 100px;
	height: auto;
	cursor: pointer;
	bottom: 20px;
	right: 5px;
	transition: all .9s linear;
}

.wass_enlace:hover {
	transform: translateY(-10px);
	opacity: .8;
}

@media screen and (max-width: 600px) {
	.wass_enlace {
		z-index: 999;
		width: 100px;
		position: fixed;
		height: auto;
		display: flex;
		justify-content: end;
		flex-direction: row;
		cursor: pointer;
		bottom: 10px;
		right: 25px;
		transition: none;
	}

	.wass_enlace img {
		width: 55px;
	}

	.wass_enlace:hover {
		transform: scale(1);
		opacity: 1;
	}

}


/* ////////////HOVER PARA NOMBRES EN EL ASIDE DE SERVICIOS */
.aside_name:hover {
	transition: all .6s linear;
	color: #000022;
	transform: translateX(15px);
	opacity: .8;
}

.aside_name:active {
	color: #000022;
	transform: translateX(10px);
	opacity: .5;
}



/* ////////////////DISEÑO DE CARTILLA DE PRODUCTOS EN SERVICIOS */
.product-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 300px;
	transition: transform 0.3s ease;
}

.product-card:hover {
	transform: translateY(-5px);
}

.product-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.product-info {
	padding: 1rem;
}

.product-title {
	font-size: 1.2rem;
	margin: 0;
}

.product-description {
	font-size: 0.9rem;
	color: #555;
	margin: 0.5rem 0 1rem;
}

.product-price {
	font-weight: bold;
	font-size: 1.1rem;
	color: #2a2b7b;
}

.buy-button {
	display: block;
	width: 100%;
	padding: 0.75rem;
	text-align: center;
	background: #2a2b7b;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	margin-top: 1rem;
	transition: background 0.3s ease;
}

.buy-button:hover {
	background: #2a2b7b;
}

/*////////FIN DE ESTIOS PARA CARTILLA*/
