/* ValuePropositions.css — 4 pilares, sem cards, com linha conectora */

.value-prop-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  position: relative;
}

/* Linha decorativa fina, percorre o centro vertical dos itens */
.value-prop-rail {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    #ececec 12%,
    #BB0606 50%,
    #ececec 88%,
    transparent 100%);
  transform: translateY(-22px);
  pointer-events: none;
  z-index: 0;
}

.value-prop-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.value-prop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 0.5rem;
}

/* ── Ícone em círculo "ghost" — sem fundo de card, só anel ── */
.value-prop-iconwrap {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #BB0606;
  color: #BB0606;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 14px rgba(187, 6, 6, 0.12);
}

.value-prop-item:hover .value-prop-iconwrap {
  background: #BB0606;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(187, 6, 6, 0.28);
}

/* ── Destaque verde no card de sustentabilidade ── */
.value-prop-item--eco .value-prop-iconwrap {
  border-color: #16a34a;
  color: #16a34a;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.18);
  background:
    radial-gradient(circle at 50% 50%, #fff 60%, #ecfdf5 100%);
}
.value-prop-item--eco:hover .value-prop-iconwrap {
  background: #16a34a;
  color: #fff;
  box-shadow: 0 10px 22px rgba(22, 163, 74, 0.28);
}

/* Selo "Eco" sobre o ícone */
.value-prop-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #16a34a;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  border: 2px solid #fff;
  line-height: 1;
}

/* ── Título e descrição ── */
.value-prop-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.4rem;
  letter-spacing: -0.2px;
}

.value-prop-item--eco .value-prop-title {
  color: #166534;
}

.value-prop-desc {
  font-size: 0.88rem;
  color: #6b6b6b;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
}

/* ── Responsividade ── */
@media (max-width: 900px) {
  .value-prop-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .value-prop-rail { display: none; }
}

@media (max-width: 480px) {
  .value-prop-section { padding: 2rem 1.25rem; }
  .value-prop-list { grid-template-columns: 1fr; gap: 1.75rem; }
  .value-prop-iconwrap { width: 56px; height: 56px; font-size: 1.3rem; }
  .value-prop-title { font-size: 1rem; }
  .value-prop-desc { font-size: 0.85rem; }
}
