.productosGrid {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas: "uno" "dos";
}

.griditem1 {
	grid-area: uno;
}

.griditem2 {
	grid-area: dos;
}

.producto {
	padding: 0px;
	width: 100%;
	margin: 0 auto;
}

.imageGrid,
.imageFinGrid {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.imageFinIndustrias {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
		url("img/ImagenVIMOB.jpg");
	width: 100%;
	height: 50vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 0%;
}

@media (min-width: 850px) {
	.productosGrid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas: "uno dos";
		gap: 5rem;
	}

	.imageGrid {
		object-fit: none;
		width: auto;
		height: auto;
	}
	.imageFinGrid {
		object-fit: cover;
		width: 100%;
		height: 50vh;
		object-position: 50% 80%;
	}

	.imageFinIndustrias {
		background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)),
			url("img/ImagenVIDESK.jpg");
		width: 100%;
		height: 110vh;
		background-size: cover;
		background-repeat: no-repeat;
		background-position: 35% 0%;
	}
}

@media (min-width: 1550px) {
	.producto {
		width: 80%;
	}
}
