/* LISTA SEGURADORAS */
.listaSeguradoras {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 1fr;
	gap: 18px;
}

.listaSeguradoras::before {
	content: '';
	width: 0;
	padding-bottom: 100%;
	grid-row: 1 / 1;
	grid-column: 1 / 1;
}

.listaSeguradoras .itemLista {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	background: #e5e4e5;
	border-radius: 6px;
}

.listaSeguradoras .itemLista:first-of-type {
	grid-row: 1 / 1;
	grid-column: 1 / 1;
}





/* ########## */
/* RESPONSIVE */
/* ########## */


/* 1199px */
@media screen and (max-width: 1199px) {

}


/* 991px */
@media screen and (max-width: 991px) {
	
}


/* 767px */
@media screen and (max-width: 767px) {

}


/* 575px */
@media screen and (max-width: 575px) {
	/* LISTA SEGURADORAS */
	.listaSeguradoras {
		grid-template-columns: repeat(3, 1fr);
		gap: 3.2vw;
	}
}