/* =====================================================
   TIENDA – TARJETAS PRODUCTOS
===================================================== */

#am-tienda-transporte {
	padding: 5rem 0;
	background: #f4f4f4;
}

.am-tienda-header {
	text-align: center;
	margin-bottom: 3rem;
}

.am-tienda-header h2 {
	font-size: 2.3rem;
	font-weight: 800;
	color: #111;
	margin-bottom: 0.4rem;
}

.am-tienda-header p {
	color: #555;
	font-size: 1rem;
}

/* Tarjeta */
.am-producto-card {
	background: #fff;
	border-radius: 12px;
	padding: 1.8rem 1.6rem 2rem;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-shadow: 0 10px 28px rgba(0,0,0,0.10);
	transition: transform .25s ease, box-shadow .25s ease;
}

.am-producto-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 42px rgba(0,0,0,0.15);
}

/* Imagen */
.am-producto-card img {
	width: 100%;
	max-height: 180px;
	object-fit: contain;
	margin-bottom: 1.2rem;
}

/* Título */
.am-producto-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #111;
	margin-bottom: 0.6rem;
}

/* Descripción */
.am-producto-card p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
	margin-bottom: 1.4rem;
}

/* Botón */
.am-btn-consultar {
	margin-top: auto;
	background: #e10600;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 0.6rem 1.8rem;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.am-btn-consultar:hover {
	background: #111;
	transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {

	#am-tienda-transporte {
		padding: 3rem 1rem;
	}

	.am-producto-card img {
		max-height: 150px;
	}
}
