/* =====================================================
   TIPOS DE TRANSPORTE – TARJETAS CLARAS
===================================================== */

#am-transporte-tipos {
	padding: 5rem 0;
	background: #eeeeee;
}

/* ===============================
   HEADER
=============================== */

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

.am-transporte-header h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
	color: #111;
}

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

/* ===============================
   TARJETA
=============================== */

.am-transporte-card {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 10px 26px rgba(0,0,0,0.10);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	display: flex;
	flex-direction: column;
}

.am-transporte-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0,0,0,0.14);
}

/* ===============================
   IMAGEN (ARRIBA)
=============================== */

.am-transporte-img {
	background: #f7f7f7;
	padding: 16px;
}

.am-transporte-img img {
	width: 100%;
	height: 220px;
	object-fit: contain; /* no cortar camiones */
	display: block;
}

/* ===============================
   CONTENIDO
=============================== */

.am-transporte-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 1.2rem 1.6rem 0.6rem;
	color: #111;
	position: relative;
}

.am-transporte-card h3::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: #e10600;
	margin-top: 0.6rem;
}

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

/* ===============================
   MOBILE
=============================== */

@media (max-width: 768px) {

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

	.am-transporte-img img {
		height: 180px;
	}

	.am-transporte-header {
		text-align: left;
	}
}
