/* Estilos específicos para Segmento Orquideas */

.step-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
  perspective: 1000px;
}

.step-card .landing-home-hero-mark {
  width: 14rem;
  height: 14rem;
  margin-top: 0;
  transition: transform 0.3s ease;
}

.step-card:hover .landing-home-hero-mark {
  transform: scale(1.05) rotate(0deg);
}

.step-image-rotation-1 { transform: rotate(-3deg); }
.step-image-rotation-2 { transform: rotate(2deg); }
.step-image-rotation-3 { transform: rotate(-1.5deg); }
.step-image-rotation-4 { transform: rotate(3deg); }
.step-image-rotation-5 { transform: rotate(-2.5deg); }

.solution-visual {
  margin: 4rem 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.solution-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.how-it-works {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.step-card {
  flex: 0 1 200px;
}

.feature-grid-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem 2rem;
}

.feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image-container {
  margin-bottom: 2rem;
  perspective: 1000px;
}

.feature-item .landing-home-hero-mark {
  width: 12rem;
  height: 12rem;
  margin-top: 0;
  transition: transform 0.3s ease;
}

.feature-item:hover .landing-home-hero-mark {
  transform: scale(1.05) rotate(0deg) translateY(-10px);
}

.feature-rotation-0 { transform: rotate(-4deg); }
.feature-rotation-1 { transform: rotate(3deg); }
.feature-rotation-2 { transform: rotate(-2deg); }

.feature-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.4rem;
  color: var(--text-strong);
}

.feature-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .step-card .landing-home-hero-mark {
    width: 11rem;
    height: 11rem;
  }
  
  .step-image-container {
    margin-bottom: 1.5rem;
  }
}
