/* ═══ SECCIÓN 5 — Regalos Ecológicos ═══ */
.eco-promo-5,
.eco-promo-5 * { box-sizing: border-box !important; margin: 0; padding: 0; }

.eco-promo-5 {
  font-family: system-ui, -apple-system, sans-serif !important;
  background: #F8FAF5 !important;
  padding: 60px 20px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.eco-promo-5 .ep5-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex !important;
  align-items: center !important;
  gap: 48px;
}

/* ── Imagen ── */
.eco-promo-5 .ep5-image-col {
  flex: 0 0 360px;
  width: 360px;
}

.eco-promo-5 .ep5-img-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 6px 20px rgba(0,0,0,.06) !important;
  transition: transform .35s ease, box-shadow .35s ease !important;
}

.eco-promo-5 .ep5-img-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,.12) !important;
}

.eco-promo-5 .ep5-img-frame img {
  width: 100% !important;
  height: auto;
  display: block;
  object-fit: cover !important;
  transition: transform .4s ease !important;
}

.eco-promo-5 .ep5-img-frame:hover img {
  transform: scale(1.03);
}

/* ── Contenido ── */
.eco-promo-5 .ep5-content-col {
  flex: 1;
  max-width: 620px;
}

/* Badge */
.eco-promo-5 .ep5-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px;
  border: 1px solid #FFD700 !important;
  background: #F9FAFB !important;
  color: #1e293b !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.eco-promo-5 .ep5-dot {
  width: 8px;
  height: 8px;
  background: #E8B923 !important;
  border-radius: 50%;
  display: inline-block;
  animation: ep5Pulse 2s infinite;
}

@keyframes ep5Pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.75); }
}

/* Título */
.eco-promo-5 .ep5-title {
  font-size: clamp(24px, 3.5vw, 30px) !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.2;
  margin-bottom: 14px;
}

/* Separador */
.eco-promo-5 .ep5-separator {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, #FFD700, #E8B923) !important;
  border-radius: 2px;
  margin-bottom: 18px;
}

/* Descripción */
.eco-promo-5 .ep5-desc {
  font-size: 15px !important;
  color: #64748b !important;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 400 !important;
}

.eco-promo-5 .ep5-desc strong {
  color: #1e293b !important;
  font-weight: 700 !important;
}

/* Benefits */
.eco-promo-5 .ep5-benefits {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px;
  margin-bottom: 28px;
}

.eco-promo-5 .ep5-benefit {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
}

.eco-promo-5 .ep5-check {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px;
  height: 32px;
  background: rgba(232,185,35,.1) !important;
  border-radius: 50%;
  flex-shrink: 0;
}

.eco-promo-5 .ep5-check svg {
  width: 16px;
  height: 16px;
  color: #E8B923 !important;
}

.eco-promo-5 .ep5-benefit span:last-child {
  font-size: 14px !important;
  color: #475569 !important;
  font-weight: 400 !important;
  line-height: 1.4;
}

/* Botón */
.eco-promo-5 .ep5-btn {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  border: 1px solid #e2e8f0 !important;
  background: #fff !important;
  color: #0f172a !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: all .3s ease !important;
}

.eco-promo-5 .ep5-btn:hover {
  background: #0f172a !important;
  color: #fff !important;
  border-color: #0f172a !important;
  transform: translateY(-2px);
}

.eco-promo-5 .ep5-btn svg {
  transition: transform .3s ease;
}

.eco-promo-5 .ep5-btn:hover svg {
  transform: translateX(4px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .eco-promo-5 .ep5-image-col {
    flex: 0 0 280px;
    width: 280px;
  }

  .eco-promo-5 .ep5-wrapper {
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .eco-promo-5 .ep5-wrapper {
    flex-direction: column !important;
    gap: 32px;
  }

  .eco-promo-5 .ep5-image-col {
    flex: 1 !important;
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
    order: -1 !important;
  }

  .eco-promo-5 .ep5-content-col {
    text-align: center !important;
    max-width: 100%;
  }

  .eco-promo-5 .ep5-separator {
    margin: 0 auto 18px;
  }

  .eco-promo-5 .ep5-benefits {
    align-items: flex-start;
    max-width: 360px;
    margin: 0 auto 28px;
  }

  .eco-promo-5 .ep5-btn {
    width: 100% !important;
  }
}