
.section__steps-image {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.section__steps-image_left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section__steps-image_right {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  aspect-ratio: 9/16;
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-before {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
  z-index: 10;
}

.thumbnail-before:hover {
  transform: scale(1.05);
}

.thumbnail-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.label-video-before {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.steps-header {
  margin-bottom: 24px;
}

.steps-label {
  display: inline-block;
  color: #ff6b35;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.steps-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #1a1a1a;
  margin: 0;
}

.steps-title-highlight {
  color: #6b6b6b;
  font-weight: 400;
}

.steps-description {
  font-size: 18px;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 32px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5cf6;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px 0;
}

.feature-text p {
  font-size: 15px;
  color: #6b6b6b;
  margin: 0;
  line-height: 1.5;
}

.btn-transform {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(335deg, #8b5cf6 0%, #d946ef 50%, #f59e0b 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-transform:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 0, 251, 0.6);
}

.btn-transform::after {
  content: '→';
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-transform:hover::after {
  transform: translateX(5px);
}

/* Responsivo - Tablets */
@media (max-width: 991px) {
  .section__steps-image {
    padding: 40px 0;
    min-height: auto;
  }
  
  .section__steps-image_left,
  .section__steps-image_right {
    padding: 20px 15px;
  }
  
  .video-container {
    max-width: 350px;
  }
  
  .steps-title {
    font-size: 48px;
  }
  
  .steps-description {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .features-list {
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .feature-icon {
    width: 42px;
    height: 42px;
  }
  
  .feature-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .feature-text h4 {
    font-size: 17px;
  }
  
  .feature-text p {
    font-size: 14px;
  }
  
  .btn-transform {
    width: 100%;
    justify-content: center;
  }
  
  .thumbnail-before {
    top: 15px;
    left: 15px;
    width: 80px;
    height: 120px;
  }
  
  .label-video-before {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* Mobile extra small */
@media (max-width: 576px) {
  .section__steps-image {
    padding: 30px 0;
  }
  
  .section__steps-image_left,
  .section__steps-image_right {
    padding: 15px 10px;
  }
  
  .video-container {
    max-width: 100%;
    border-radius: 16px;
  }
  
  .steps-label {
    font-size: 12px;
    letter-spacing: 1px;
  }
  
  .steps-title {
    font-size: 36px;
  }
  
  .steps-header {
    margin-bottom: 16px;
  }
  
  .steps-description {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .features-list {
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .feature-item {
    gap: 15px;
  }
  
  .feature-icon {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .feature-text h4 {
    font-size: 16px;
  }
  
  .feature-text p {
    font-size: 13px;
  }
  
  .btn-transform {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .thumbnail-before {
    top: 12px;
    left: 12px;
    width: 70px;
    height: 105px;
    border-radius: 8px;
  }
  
  .label-video-before {
    font-size: 9px;
    padding: 2px 5px;
    bottom: 6px;
  }
}