/* LISTA SEGUROS HOME */
.listaSegurosHome {
  margin: 0 0 35px 0;
  padding: 0 0 20px 0;
  border-bottom: 2px solid #97110d;
}

.listaSegurosHome .seguro {
	display: flex;
	flex-wrap: nowrap;
	width: calc(20% - 16px);
	margin: 0 16px 16px 0;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	background: rgba(151, 17, 13, 0.85);
	border-radius: 8px;
	transition: background 200ms ease;
}

.listaSegurosHome .seguro::before {
	content: "";
	float: left;
	padding-top: 100%;
}

.listaSegurosHome .seguro:hover {
	background: #95110d;
}

.listaSegurosHome .seguro .nomeSeguro {
	display: block;
	padding: 0 12px;
	font-size: 26px;
	font-weight: 600;
	line-height: 1.4em;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 3px 4px #3b0202;
}






/* ########## */
/* RESPONSIVE */
/* ########## */


/* 1199px */
@media screen and (max-width: 1199px) {
	.listaSegurosHome .seguro .nomeSeguro {
		font-size: 22px;
		line-height: 1.4em;
	}
}


/* 991px */
@media screen and (max-width: 991px) {
	.listaSegurosHome .seguro {
		width: calc(25% - 10px);
		margin: 0 10px 10px 0;
		order: 1;
	}

	.listaSegurosHome .seguro:nth-of-type(8) {
		order: 0;
	}
}


/* 768px */
@media screen and (max-width: 768px) {
	.listaSegurosHome .seguro {
		width: calc(33.3333% - 10px);
	}
}


/* 576px */
@media screen and (max-width: 576px) {
	.listaSegurosHome .seguro {
		width: calc(50% - 10px);
	}

	.listaSegurosHome .seguro .nomeSeguro {
    font-size: calc(8px + 2.5vw);
    line-height: 1.4em;
	}
}