#am-andamio-tarjetas {
	padding: 70px 0;
	background: #f4f4f4;
}

/* Tarjeta */
.am-andamio-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	transition: transform .3s ease, box-shadow .3s ease;
}

.am-andamio-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Imagen */
.am-andamio-card-img {
	height: 200px;
	overflow: hidden;
}

.am-andamio-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Contenido */
.am-andamio-card-body {
	padding: 24px 22px 28px;
}

.am-andamio-card-body h3 {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: #111;
}

.am-andamio-card-body p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
	margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.am-andamio-card-img {
		height: 180px;
	}
	#am-andamio-tarjetas {
	padding: 70px 1rem;
	
}
}
