/* ===== SHARED FEATURES SECTION ===== */

.shared-features-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}

.shared-features-title {
  margin: 0 0 24px 0;
  text-align: left;
}

/* ===== CARD CONTAINER ===== */
.features-card-container {
  background-color: #fafcfc;
  border: 1px solid #e3e3fc;
  border-radius: 12px;
  display: grid;
  grid-auto-rows: 1fr;
  gap: 32px;
  padding: 32px;
  transition: all 0.3s ease;
}

.features-card-container:hover {
  transform: scale(1);
}

/* ===== INDIVIDUAL FEATURE ITEM ===== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: scale(1.05);
}

/* ===== ICON STYLES ===== */
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #02b692;
  flex-shrink: 0;
}

.feature-icon i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}

/* ===== TEXT CONTENT ===== */
.feature-text {
  font-size: 20px;
  line-height: 1.4;
  color: #1a1a1a;
  font-weight: 500;
  margin: 0;
  max-width: 200px;
}

/* ===== UNDERLINE ===== */
.feature-underline {
  width: 77px;
  height: 2px;
  background-color: #02b692;
  margin-top: 8px;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 900px) {
  .features-card-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
  }

  .feature-item {
    padding: 20px;
  }

  .shared-features-title {
    text-align: left;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .features-card-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-item {
    padding: 16px;
  }

  .shared-features-title {
    text-align: center;
  }

  .feature-item {
    align-items: center;
    text-align: center;
  }

  .feature-text {
    max-width: 100%;
  }
}
