/** Shopify CDN: Minification failed

Line 24:10 Unexpected "{"
Line 24:19 Expected ":"
Line 25:14 Expected identifier but found whitespace
Line 25:16 Unexpected "{"
Line 25:25 Expected ":"
Line 25:65 Expected ":"
Line 26:17 Expected identifier but found whitespace
Line 26:19 Unexpected "{"
Line 26:28 Expected ":"
Line 26:71 Expected ":"

**/
/* ===============================================
   BENEFICIOS MERCADO LIBRE
   =============================================== */

.benefits-ml {
  background: #FFC107;
  color: #000;
}

.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | default: 24 }}px;
  padding-bottom: {{ section.settings.padding_bottom | default: 24 }}px;
}

.benefits-ml__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  align-items: start;
}

.benefits-ml__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefits-ml__icon {
  flex-shrink: 0;
  color: #000;
}

.benefits-ml__icon svg {
  display: block;
}

.benefits-ml__content {
  flex: 1;
}

.benefits-ml__title {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.benefits-ml__text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  margin: 0;
  line-height: 1.4;
}

/* ===============================================
   RESPONSIVE - TABLET
   =============================================== */
@media screen and (max-width: 989px) {
  .benefits-ml__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
  }
}

/* ===============================================
   RESPONSIVE - M�VIL
   =============================================== */
@media screen and (max-width: 749px) {
  .benefits-ml__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefits-ml__icon svg {
    width: 32px;
    height: 32px;
  }

  .benefits-ml__title {
    font-size: 15px;
  }

  .benefits-ml__text {
    font-size: 13px;
  }
}
