/* ===============================
   ANDAMIOS USADOS
================================ */

#am-andamios-usados {
	position: relative;
	background: #e60023;
	overflow: hidden;
	color: #fff;
}

/* Grid principal */
.am-usados-grid {
	display: grid;
	grid-template-columns: 50% 50%;
	min-height: 520px;
}

/* Imagen izquierda full */
.am-usados-imagen-principal {
	background-image: url("/andamiox2/imagen/reitelchile/usados-arriendo.png");
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: flex-end;
}

/* Overlay texto */
.am-usados-overlay {
	width: 100%;
	padding: 60px;
	background: linear-gradient(
		to top,
		rgba(0,0,0,0.75) 0%,
		rgba(0,0,0,0.45) 40%,
		rgba(0,0,0,0.15) 70%,
		rgba(0,0,0,0.05) 100%
	);
}

/* Título principal */
.am-usados-overlay h2 {
	font-size: 2.8rem;
	font-weight: 800;
	letter-spacing: -0.3px;
	margin-bottom: 14px;
	text-shadow:
		0 6px 18px rgba(0,0,0,0.45),
		0 2px 6px rgba(0,0,0,0.35);
}

/* Bajada */
.am-usados-overlay p {
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 480px;
	color: rgba(255,255,255,0.95);
	text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}

/* Botón */
.am-usados-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	color: #e60023;
	padding: 14px 26px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	box-shadow: 0 10px 24px rgba(0,0,0,0.35);
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.am-usados-btn:hover {
	transform: translateY(-2px);
	background: #111;
	color: #fff;
	box-shadow: 0 16px 32px rgba(0,0,0,0.45);
}

/* Lado derecho */
.am-usados-contenido-wrapper {
	display: flex;
	align-items: center;
	padding: 60px 60px;
}

/* Cards */
.am-usados-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.am-usados-card {
	display: flex;
	gap: 20px;
	background: rgba(255,255,255,0.12);
	border-radius: 18px;
	padding: 26px;
	backdrop-filter: blur(6px);
}

/* CONTENEDOR IMAGEN / VIDEO */
.am-usados-card-img {
	flex: 0 0 90px;
	width: 100px;
	height: 90px;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;

	/* CLAVE DEL ARREGLO */
	display: flex;
	align-items: center;
	justify-content: center;

	position: relative;
}

/* Imagen */
.am-usados-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Video */
.am-usados-card-img video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Texto */
.am-usados-card-texto h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.am-usados-card-texto p {
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
}

/* Decoración */
.am-usados-decor {
	position: absolute;
	top: -60px;
	right: -80px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background:
		repeating-linear-gradient(
			45deg,
			rgba(255,255,255,0.18),
			rgba(255,255,255,0.18) 14px,
			transparent 14px,
			transparent 28px
		);
}

/* Overlay suave para video */
.am-usados-card-video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(0,0,0,0.15),
		rgba(0,0,0,0.35)
	);
	pointer-events: none;
	border-radius: 14px;
}

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

@media (max-width: 991px) {
	.am-usados-grid {
		grid-template-columns: 1fr;
	}

	.am-usados-imagen-principal {
		min-height: 380px;
	}

	.am-usados-overlay {
		padding: 40px;
	}

	.am-usados-contenido-wrapper {
		padding: 40px 0;
	}
}

@media (max-width: 575px) {
	.am-usados-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.am-usados-card-img {
		margin-bottom: 12px;
	}
}
