/* ===============================
   ANDAMIO ESTÁNDAR – LÍNEA HORIZONTAL
================================ */

#am-andamio-estructura {
	width: 100%;
	background: #000;
}

/* 4 BLOQUES EN UNA LÍNEA */
.am-estructura-linea {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	min-height: 420px;
}

/* IMÁGENES */
.am-estructura-img {
	position: relative;
	overflow: hidden;
}

.am-estructura-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* TEXTOS */
.am-estructura-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 50px 40px;
	color: #fff;
}

.am-estructura-text h2 {
	font-size: 1.6rem;
	font-weight: 800;
	margin-bottom: 22px;
	position: relative;
}

/* Subrayado técnico */
.am-estructura-text h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 4px;
	margin-top: 10px;
	background: rgba(255,255,255,0.8);
}

/* LISTA */
.am-estructura-text ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.am-estructura-text ul li {
	position: relative;
	padding-left: 18px;
	margin-bottom: 12px;
	font-size: 0.9rem;
	line-height: 1.6;
}

.am-estructura-text ul li::before {
	content: "▸";
	position: absolute;
	left: 0;
	color: #fff;
	font-weight: 700;
}

/* FONDOS */
.bg-rojo {
	background: #e60023;
}

.bg-negro {
	background: #000;
}

/* MEDIDAS */
.am-medidas {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.am-medida {
	border-left: 4px solid #e60023;
	padding-left: 12px;
}

.am-medida .label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: 0.75;
}

.am-medida .valor {
	font-size: 1.1rem;
	font-weight: 700;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
	.am-estructura-linea {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.am-estructura-linea {
		grid-template-columns: 1fr;
	}

	.am-estructura-text {
		padding: 40px 25px;
		text-align: left;
	}
}
