/* =========================================================
   GRID PRINCIPAL
========================================================= */

.am-it-grid {
	display: grid;
	grid-template-columns: 50% 50%;
	min-height: 360px;
    color: #fff;
}

/* =========================================================
   TESTIMONIOS – IZQUIERDA
========================================================= */

.am-it-testimonios {
	background: linear-gradient(135deg, #e60023, #c7001f);
	display: flex;
	align-items: center;
	padding: 70px 80px;
	position: relative;
}

.am-it-testimonios::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: rgba(255,255,255,0.25);
}

.am-it-testimonios h2 {
	font-size: 2rem; /* reducido */
	font-weight: 800;
	margin-bottom: 34px;
}

.am-testimonio {
	background: rgba(0,0,0,0.18);
	border-left: 4px solid #ffffff;
	padding: 20px 24px;
	margin-bottom: 24px;
	max-width: 460px;
	position: relative;
}

.am-testimonio::before {
	content: "“";
	position: absolute;
	top: -20px;
	left: 14px;
	font-size: 3.8rem; /* reducido */
	color: rgba(255,255,255,0.25);
}

.am-testimonio p {
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 8px;
}

.am-testimonio span {
	font-size: 0.8rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	opacity: 0.85;
}

/* =========================================================
   TRANSPORTE – DERECHA
========================================================= */

.am-it-indicadores {
	background: #000;
	display: flex;
	align-items: center;
	padding: 60px 70px; /* menos alto */
}

.am-it-indicadores-inner {
	max-width: 460px;
	width: 100%;
}

.am-it-titulo {
	font-size: 1.6rem; /* más pequeño */
	font-weight: 800;
	margin-bottom: 28px;
}

.am-it-titulo::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	margin-top: 12px;
	background: #e60023;
}

/* Transporte contenido */
.am-it-transporte {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.am-it-transporte-img {
	width: 90px;
	height: auto;
}

.am-it-transporte p {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.85;
}

/* Lista */
.am-it-transporte-lista {
	list-style: none;
	padding: 0;
	margin: 0;
}

.am-it-transporte-lista li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.85rem;
	margin-bottom: 6px;
}

.am-it-transporte-lista i {
	color: #e60023;
}

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

@media (max-width: 991px) {

	.am-it-grid {
		grid-template-columns: 1fr;
	}

	.am-it-testimonios,
	.am-it-indicadores {
		padding: 50px 30px;
	}

	.am-it-indicadores-inner {
		max-width: 100%;
	}
}
