/* ── Puntos Ya: Service icons (entrega / soporte / garantía) ─────────────── */

.py-services {
	max-width: var(--container-max, 1200px);
	margin: 0 auto;
}

.py-services__grid {
	display: grid;
	grid-template-columns: repeat(var(--py-services-cols, 3), 1fr);
	gap: 24px;
}

.py-service {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 20px;
	padding: 36px 24px;
	background: var(--py-bg, #fff);
	border: 1px solid var(--py-border, #e5e5e5);
	border-radius: var(--py-radius, 14px);
	transition: transform 0.25s var(--py-ease, ease), box-shadow 0.25s var(--py-ease, ease);
}

.py-service:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.py-service__badge {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	background: #f4f4f4;
	color: #1a1a1a; /* icono en negro */
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.035);
	transition: background 0.25s var(--py-ease, ease), color 0.25s var(--py-ease, ease), box-shadow 0.25s var(--py-ease, ease), transform 0.25s var(--py-ease, ease);
}

.py-service:hover .py-service__badge {
	background: var(--py-orange, #E85D04);
	color: #fff; /* sobre naranja el icono pasa a blanco */
	box-shadow: 0 0 0 8px var(--py-orange-soft, #fff3ec);
	transform: scale(1.05);
}

/* Works for both Elementor icon fonts (<i>) and inline SVG icons. */
.py-service__badge i {
	font-size: 34px;
	line-height: 1;
	color: inherit;
}
.py-service__badge svg {
	width: 38px;
	height: 38px;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.py-service__title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--py-text, #1a1a1a);
	text-transform: uppercase;
}

.py-service__desc {
	margin: 0;
	font-size: 14px;
	color: var(--py-text-muted, #6b6b6b);
	line-height: 1.5;
}

@media (max-width: 900px) {
	.py-services__grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin: 0 auto;
	}
	.py-service {
		flex-direction: row;
		text-align: left;
		gap: 18px;
		padding: 20px 22px;
	}
	.py-service__badge {
		width: 60px;
		height: 60px;
		flex-shrink: 0;
		box-shadow: 0 0 0 6px rgba(13, 13, 13, 0.06);
	}
	.py-service__badge svg {
		width: 30px;
		height: 30px;
	}
	.py-service__badge i {
		font-size: 28px;
	}
	.py-service__body {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
}
