/* seccion3.css */

#seccion3 {
  background-color: #f9f7f2;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
}

.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;
}

.phone-mockup {
  position: relative;
  max-width: 350px;
}

.phone-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.order-received {
  position: absolute;
  top: 20%;
  right: -20px;
  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;
}

.pizza-card {
  position: absolute;
  bottom: -30px;
  left: 20px;
  width: 220px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

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

.pizza-details {
  padding: 10px;
  text-align: center;
  font-size: 14px;
  color: #2c2c2c;
}

.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;
}

.register-button {
  background-color: #ff5722;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.register-button:hover {
  background-color: #e14a1f;
}
