/* SECCIÓN 6: How it works */

#seccion6 {
  background: linear-gradient(390deg, #000000 50%, #ff3d00 100%);
  padding: 20px 20px 100px;
  color: #fff;
  font-family: 'Arial', sans-serif;
  position: relative;
}


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

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

.section-title {
  font-size: 36px;
  color: #fbfafa;
  font-weight: 700;
  margin-bottom: 40px;
}

.steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.step {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 30px 20px;
  width: 100%;
  max-width: 320px;
  position: relative;
  text-align: left;
  flex: 1;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 87, 34, 0.2);
}

.step-icon {
  background: #ff5722;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: #ccc;
}

.step-number {
  position: absolute;
  bottom: 90px;
  right: 20px;
  background: #ff5722;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
}

.offer-text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}

.download-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  background-color: #ff5722;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  font-size: 14px;
}

.btn:hover {
  background-color: #e64a19;
}

.phone-preview {
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  max-width: 90%;
}

.phone-preview img {
  width: 100%;
  display: block;
}
