/* “Conoce y Cotiza” */
.productos-bateria {
	background: #fff;
}

.productos-bateria .container {
	margin: auto;
}

.productos-bateria .underline {
	width: 4rem;
	height: 0.4rem;
	background: #ed720f;
	margin: 0.5rem auto 2rem;
}

.productos-bateria .cards {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.productos-bateria .card {
	border: 1px solid #c5c5c5;
	border-radius: 10px;
	padding: 1.5em;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all ease 0.3s;
}

.productos-bateria .card:hover {
	transform: scale(1.1);
	z-index: 1;
}

.productos-bateria .card img {
	max-width: 100%;
	height: auto;
	margin-bottom: 1em;
}

.productos-bateria .card h3 {
	font-family: 'ContrafaceText-bold';
	font-size: 2.4em;
	margin-bottom: 0.5em;
	color:#000;
	text-transform: uppercase;
}

.productos-bateria .card p {
	font-family: 'ContrafaceText';
	font-size: 1.6em;
	color: #555;
	margin-bottom: 1em;
}