/* ===== LIMPIEZA PRE-ENTREGA (layout similar a Conserjería) ===== */

.pre-section {
  background: #ffffff;
  padding: 120px 20px 100px;
  font-family: "Poppins", sans-serif;
  color: #0f172a;
}

.pre-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ----- Columna izquierda ----- */

.pre-left {
  flex: 1;
}

.pre-eyebrow {
  font-size: 14px;
  color: #004aad;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pre-title {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.pre-title .highlight {
  color: #004aad;
}

.pre-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 12px;
}

/* Checklist principal */

.pre-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pre-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.8;
}

.pre-checklist i {
  color: #004aad;
  background: rgba(0, 74, 173, 0.08);
  border-radius: 50%;
  padding: 6px;
  font-size: 13px;
  margin-top: 3px;
}

.pre-btn {
  display: inline-block;
  background: #004aad;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.pre-btn:hover {
  background: #1e1d4a;
  transform: translateY(-3px);
}

/* ----- Columna derecha (collage) ----- */

.pre-right {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.pre-collage {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 460px;
}

.collage-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Imagen principal (fondo) */
.img-main {
  position: relative;
  z-index: 1;
  height: 100%;
}

/* Imagen superpuesta */
.img-overlay {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 70%;
  height: auto;
  z-index: 2;
  border: 6px solid #fff;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18);
}

.pre-collage:hover .collage-img {
  transform: scale(1.03);
}

/* ===== BLOQUES ABAJO (Pre-entrega y Postventa) ===== */

.pre-blocks-section {
  background: #ffffff;
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
}

.pre-blocks-container {
  max-width: 1180px;
  margin: 0 auto;
}

.pre-blocks-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  text-align: center;
  color: #111;
  margin-bottom: 50px;
}

.pre-grid {
      display: flex;
  flex-direction: column;   /* 🔹 apila las cards verticalmente */
  gap: 22px;    
}

/* Card */

.pre-card {
  background: #fff;
  border: 1px solid #e6eaf0;
  border-radius: 16px;
  padding: 32px 28px 26px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pre-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
}

/* Icono */

.pre-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 16px;
  color: #004aad;
  background: rgba(0, 74, 173, 0.10);
  transition: background 0.3s ease;
}

.pre-card:hover .pre-icon {
  background: rgba(0, 74, 173, 0.18);
}

/* Textos */

.pre-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 10px;
}

.pre-card-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 14px;
}

.pre-card-subtitle {
  font-size: 14px;
  color: #004aad;
  margin-bottom: 10px;
  font-weight: 300;
}

/* Lista interna */

.pre-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pre-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.7;
}

.pre-list i {
  color: #004aad;
  margin-top: 4px;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .pre-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .pre-right {
    margin-top: 40px;
  }

  .pre-collage {
    max-width: 360px;
    min-height: 360px;
  }

  .img-overlay {
    bottom: -25px;
    right: -25px;
    width: 70%;
  }

  .pre-checklist li {
    text-align: left;
  }
}

@media (max-width: 992px) {
  .pre-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .pre-section {
    padding: 100px 16px 70px;
  }

  .pre-blocks-section {
    padding: 80px 16px;
  }

  .pre-card {
    padding: 26px 20px 22px;
  }
}

