body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  margin: 0;
  padding: 0;
}

/* =========================
   PRODUCTS
========================= */

.products {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px;
}

.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-badge {
  display: inline-block;
  background: #22c55e15;
  color: #16a34a;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 18px;
  border: 1px solid #bbf7d0;
}

.products-title {
  font-size: 48px;
  margin-bottom: 14px;
  color: #111111;
}

.products-subtitle {
  color: #666666;
  max-width: 700px;
  margin: auto;
  line-height: 1.7;
  font-size: 17px;
}

/* =========================
   GRID
========================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

/* =========================
   CARD
========================= */

.product-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #22c55e;
  box-shadow: 0 14px 35px rgba(34, 197, 94, 0.12);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #22c55e;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

/* =========================
   IMAGE
========================= */

.card-image {
  background: #ffffff;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 260px;
  border-bottom: 1px solid #ffffff;
}

.card-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================
   CONTENT
========================= */

.card-content {
  padding: 28px;
}

.card-category {
  color: #16a34a;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.3px;
}

.card-title {
  font-size: 28px;
  margin: 14px 0 20px;
  color: #111111;
}

/* =========================
   FEATURES
========================= */

.card-features {
  list-style: none;
  margin-bottom: 28px;
  padding: 0;
}

.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #555555;
  font-size: 15px;
}

/* CHECK SVG */

.icon-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================
   BUTTONS
========================= */

.card-actions {
  display: flex;
  gap: 12px;
}

.btn {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-align: center;

  padding: 13px;

  border-radius: 14px;

  text-decoration: none;
  font-weight: bold;
  font-size: 14px;

  transition: 0.3s ease;
}

/* ICONOS BOTONES */

.btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* WHATSAPP */

.btn-whatsapp {
  background: #22c55e;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background: #16a34a;
}

/* MERCADO LIBRE */

.btn-ml {
  border: 1px solid #dddddd;
  color: #111111;
  background: #ffffff;
}

.btn-ml:hover {
  border-color: #22c55e;
  color: #16a34a;
}

/* LOGO ML */

.btn-ml img {
  filter: none;
}

/* =========================
   FOOTER
========================= */

.products-footer {
  text-align: center;
  margin-top: 60px;
}

.btn-more {
  display: inline-block;
  padding: 15px 30px;
  border: 1px solid #22c55e;
  color: #16a34a;
  border-radius: 14px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-more:hover {
  background: #22c55e;
  color: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .products {
    padding: 60px 16px;
  }

  .products-title {
    font-size: 34px;
  }

  .products-subtitle {
    font-size: 15px;
  }

  .card-title {
    font-size: 24px;
  }

  .card-actions {
    flex-direction: column;
  }
}
