/* SOLUCOES — "Sete soluções, uma jornada completa" */
.solucoes {
  background-color: #344c6a;
  background-image: url(../img/solu_bg.png);
  background-repeat: repeat-x;
  background-position: left top;
  padding: 100px 0;
}
.solucoes__topo { text-align: center; }
.solucoes .eyebrow { color: #fd5f54; margin-bottom: 20px; }
.solucoes .titpadrao { color: #fff; }
.solucoes__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
  margin-top: 50px;
}
.solucoes__col {
  display: grid;
  gap: 20px;
  align-content: start;
}
.solucoes__card {
	position: relative;
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 32px 70px 32px 22px;
	border-radius: 25px;
	background: linear-gradient(90deg, #fffffff7 0%, #f0f2f6e8 100%);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
	color: inherit;
	text-decoration: none;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
a.solucoes__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.22);
  color: inherit;
}
a.solucoes__card:hover .solucoes__icone { transform: translateX(4px); filter: brightness(1.1); }
a.solucoes__card:hover .solucoes__num { transform: scale(1.08); }
.solucoes__num {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f4665c;
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.solucoes__card h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  color: #08173e;
  margin-bottom: 6px;
  text-wrap: pretty;
}
.solucoes__card p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  color: #677a93;
  text-wrap: pretty;
}
.solucoes__icone {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 29px;
  height: 29px;
  transition: transform 0.35s ease, filter 0.35s ease;
}
.solucoes__card--final {
  display: block;
  background: #ed6c63;
  padding: 34px 32px;
  cursor: default;
}
.solucoes__card--final h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.solucoes__card--final p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 900px) {
  .solucoes__cols { grid-template-columns: minmax(0, 1fr); margin-top: 40px; }
  .solucoes__card { padding: 22px 60px 22px 18px; gap: 18px; }
  .solucoes__card h3 { font-size: 22px; }
  .solucoes__card p { font-size: 16px; }
}
@media (max-width: 450px) {
  .solucoes__num { flex-basis: 50px; width: 50px; height: 50px; font-size: 24px; }
  .solucoes__card h3 { font-size: 20px; }
  .solucoes__card--final { padding: 28px 22px; }
  .solucoes__card--final h3 { font-size: 20px; }
  .solucoes__card--final p { font-size: 18px; }
}
