/* ==========================================================================
   SectionRentingIncludes.css
   Shortcode: [SectionRentingIncludes]
   Clases encapsuladas: srINC__
   ✅ Fondo 100vw REAL
   ✅ Sin margin-left negativos
   ✅ Sin font-family
   ========================================================================== */

.srINC {
  position: relative;
  padding: 70px 0 90px;

  /* ✅ Fondo gris real */
  background: #f8fafc;

  /* ✅ Esto hace el section FULL WIDTH en cualquier theme/page builder */
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);

  /* ✅ Evita scroll horizontal por 100vw + scrollbar */
  overflow-x: hidden;
  max-width: unset;
}

/* ✅ Container centrado dentro del 100vw */
.srINC__container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================
   TITLE
   ========================= */
.srINC__head {
  margin-bottom: 38px;
}

.srINC__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

.srINC__titleHighlight {
  color: var(--color2);
}

/* =========================
   GRID
   ========================= */
.srINC__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

/* =========================
   CARD
   ========================= */
.srINC__card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px 18px 18px;
  text-align: center;

  box-shadow:
    0 18px 34px rgba(15, 23, 42, 0.08),
    0 2px 4px rgba(15, 23, 42, 0.06);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.srINC__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 26px 48px rgba(15, 23, 42, 0.10),
    0 4px 8px rgba(15, 23, 42, 0.07);
}

/* =========================
   ICON
   ========================= */
.srINC__iconWrap {
  width: 74px;
  height: 74px;
  margin: 0 auto 14px;
  border-radius: 18px;
  background: var(--color3);

  display: flex;
  align-items: center;
  justify-content: center;
}

.srINC__icon {
  object-fit: contain;
  display: block;
}

/* =========================
   TEXT
   ========================= */
.srINC__text {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.2;
  color: #6b7280;
}

/* =========================
   RESPONSIVE
   ========================= */

/* 6 -> 3 */
@media (max-width: 1200px) {
  .srINC__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* 3 -> 2 */
@media (max-width: 760px) {
  .srINC__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

/* 2 -> 1 */
@media (max-width: 520px) {
  .srINC__grid {
    grid-template-columns: 1fr;
  }

  .srINC__card {
    padding: 22px 18px 20px;
  }
}
