/* =============================================================================
   Soluções para o Seu Negócio — Cards
   Scope: .sm-solucoes-negocio
   ============================================================================= */

/* ---- Shell ---- */
.sm-solucoes-negocio-cards {
  padding: 80px 28px;
  background: #ffffff;
}

.sm-solucoes-negocio-cards__shell {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

/* ---- Card ---- */
.sm-solucoes-negocio-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 340px;
  max-width: 420px;
  background: #f2f3f5;
  border-radius: 16px;
  padding: 48px 40px 40px;
  text-decoration: none !important;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.sm-solucoes-negocio-card:hover,
.sm-solucoes-negocio-card:focus-visible {
  box-shadow: 0 8px 32px rgba(31, 69, 216, 0.14);
  transform: translateY(-4px);
  outline: none;
}

.sm-solucoes-negocio-card:focus-visible {
  outline: 2px solid #1f45d8;
  outline-offset: 4px;
}

/* ---- Icon ---- */
.sm-solucoes-negocio-card__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  margin-bottom: 28px;
}

/* ---- Title ---- */
.sm-solucoes-negocio-card__title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a2c6b !important;
  margin: 0 0 14px !important;
  line-height: 1.3 !important;
}

/* ---- Description ---- */
.sm-solucoes-negocio-card__description {
  font-family: "Montserrat", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #555b6e !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  flex: 1;
}

/* ---- Arrow ---- */
.sm-solucoes-negocio-card__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 32px;
  transition: transform 0.2s ease;
}

.sm-solucoes-negocio-card:hover .sm-solucoes-negocio-card__arrow {
  transform: translateX(6px);
}

/* =============================================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================================= */
@media (max-width: 600px) {
  .sm-solucoes-negocio-cards {
    padding: 56px 20px;
  }

  .sm-solucoes-negocio-cards__shell {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sm-solucoes-negocio-card {
    max-width: 100%;
    padding: 36px 28px 32px;
  }
}
