 /* SECCIÓN 4: Estilos generales */
#seccion4 {
  background-color: #f9f7f2;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  margin-top: -180px;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-text .label {
  color: #ff7b5c;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.features-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.features-text .description {
  color: #555;
  font-size: 16px;
  margin-bottom: 40px;
}

.features-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.features-content.reverse {
  flex-direction: row-reverse;
}

/* INFO DE TEXTO */
.features-info {
  max-width: 500px;
  text-align: left;
}

.features-info .tag {
  background-color: #ffe5dc;
  color: #ff5722;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 20px;
  text-transform: uppercase;
}

.features-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0;
}

.features-info .info-description {
  color: #555;
  font-size: 15px;
  margin-bottom: 20px;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.feature-points li {
  margin-bottom: 20px;
  font-size: 15px;
}

.feature-points li span {
  font-size: 16px;
  color: #ff5722;
  margin-right: 10px;
}

.feature-points small {
  display: block;
  color: #666;
  margin-top: 5px;
}

/* 📱 Phone Wrapper */
.phone-wrapper {
  width: 300px;
  height: 460px;
  background: linear-gradient(135deg, #000000, #ff5722);
  border-radius: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative; 
  align-items: top;
  box-sizing: border-box;
  padding: 0;
}

/* 📷 Imagen del teléfono */
.phone-image {
  width: 250px;
  height: 400px;
  margin-top: 20px;
  border-radius: 15px;
  z-index: 1;
}

/* 🔔 Badges de orden recibida */
.order-received {
  position: absolute;
  background: #fff;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  color: #2c2c2c;
  width: auto;
  z-index: 2;
}

.order-received.top {
  top: 20px;
  right: -70px;
}

.order-received.bottom {
  padding-top: 20px;
  top: 130px;
  right: -70px;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .features-content,
  .features-content.reverse {
    flex-direction: column;
  }

  .features-info {
    text-align: center;
  }

  .phone-wrapper {
    width: 100%;
    height: auto;
  }

  .phone-image {
    width: 100%;
    height: auto;
  }

  .order-received.top,
  .order-received.bottom {
    right: 50px;
  }
} 