/* assets/css/ValuePropositions.css */

/* Contêiner principal */
.value-prop-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem;
  max-width: 1920px;
  margin: 0 auto;
}

/* Cada item */
.value-prop-item {
  flex: 0 0 20%;
  max-width: 250px;
  text-align: center;
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ícone */
.value-prop-icon {
  font-size: 3rem;
  color: #BB0606;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Título */
.value-prop-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Se o título for muito grande, vira lista */
@media (max-width: 500px) {
  .value-prop-title {
    white-space: normal;
    text-align: left;
    list-style-type: disc;
    padding-left: 1rem;
  }
}

/* Descrição */
.value-prop-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsividade */
@media (max-width: 768px) {
  .value-prop-container {
    flex-direction: column;
    align-items: center;
  }

  .value-prop-item {
    flex: 0 0 auto;
    max-width: 80%;
    margin: 1rem 0;
  }

  .value-prop-icon {
    font-size: 2.5rem;
  }

  .value-prop-title {
    font-size: 1.2rem;
  }

  .value-prop-desc {
    font-size: 0.9rem;
  }
}