/* =============================================
   DIVISIÓN CSI - Product Grid Section Styles
   ============================================= */

.csi-section {
  padding: 40px 32px;
  background-color: #f5f5f5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.csi-section__title {
  font-size: 18px;
  font-weight: 400;
  color: #555;
  margin: 0 0 28px 0;
  letter-spacing: 0.01em;
}

/* Grid */
.csi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.csi-card {
  cursor: pointer;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.csi-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Image */
.csi-card__image-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.csi-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.csi-card:hover .csi-card__image {
  transform: scale(1.04);
}

/* Body */
.csi-card__body {
  padding: 16px 18px 18px;
}

.csi-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.csi-card__desc {
  font-size: 13px;
  color: #9a9a9a;
  margin: 0;
}

.csi-card__divider {
  border: none;
  border-top: 1px solid #ebebeb;
  margin: 14px 0 12px;
}

.csi-card__badge {
  font-size: 13px;
  font-weight: 600;
  color: #3aaa5c;
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 1024px) {
  .csi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .csi-section {
    padding: 24px 16px;
  }

  .csi-grid {
    grid-template-columns: 1fr;
  }
}