/* ---------------- CÓMO FUNCIONA ---------------- */

.howitworks {
  background: #f5f7fa;
  padding: 80px 20px;
}

.howitworks-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.howitworks-title {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.howitworks-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.howitworks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.howitworks-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.04);
  text-align: left;
  border: 1px solid #eee;
}

.howitworks-card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #222;
}

.howitworks-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

.hiw-icon {
  font-size: 28px;
  margin-bottom: 10px;
}