.feature-visual {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.search-illustration {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ícone Central */
.central-icon {
  position: relative;
  z-index: 10;
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.35);
  }
}

/* Elementos Flutuantes */
.floating-element {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.floating-element span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  white-space: nowrap;
}

.element-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.element-2 {
  top: 10%;
  right: 5%;
  animation-delay: 0.5s;
}

.element-3 {
  bottom: 10%;
  left: 5%;
  animation-delay: 1s;
}

.element-4 {
  bottom: 10%;
  right: 5%;
  animation-delay: 1.5s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Ondas de Busca */
.search-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid;
  border-radius: 50%;
  opacity: 0;
  animation: wave 3s ease-out infinite;
}

.wave-1 {
  border-color: #667eea;
  animation-delay: 0s;
}

.wave-2 {
  border-color: #764ba2;
  animation-delay: 1s;
}

.wave-3 {
  border-color: #e91812;
  animation-delay: 2s;
}

@keyframes wave {
  0% {
    width: 140px;
    height: 140px;
    opacity: 0.8;
  }
  100% {
    width: 400px;
    height: 400px;
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .search-illustration {
    height: 400px;
  }
  
  .central-icon {
    width: 120px;
    height: 120px;
  }
  
  .central-icon svg {
    width: 52px;
    height: 52px;
  }
  
  .floating-element {
    padding: 1rem 1.25rem;
  }
  
  .floating-element svg {
    width: 28px;
    height: 28px;
  }
  
  .floating-element span {
    font-size: 0.8125rem;
  }
}

@media (max-width: 768px) {
  .feature-visual {
    padding: 2rem 1.5rem;
  }
  
  .search-illustration {
    height: 350px;
  }
  
  .central-icon {
    width: 100px;
    height: 100px;
  }
  
  .central-icon svg {
    width: 48px;
    height: 48px;
  }
  
  .floating-element {
    padding: 0.875rem 1rem;
  }
  
  .floating-element svg {
    width: 24px;
    height: 24px;
  }
  
  .floating-element span {
    font-size: 0.75rem;
  }
  
  .element-1 {
    top: 5%;
    left: 2%;
  }
  
  .element-2 {
    top: 5%;
    right: 2%;
  }
  
  .element-3 {
    bottom: 5%;
    left: 2%;
  }
  
  .element-4 {
    bottom: 5%;
    right: 2%;
  }
  
  @keyframes wave {
    0% {
      width: 100px;
      height: 100px;
      opacity: 0.8;
    }
    100% {
      width: 300px;
      height: 300px;
      opacity: 0;
    }
  }
}

@media (max-width: 576px) {
  .feature-visual {
    padding: 1.5rem 1rem;
  }
  
  .search-illustration {
    height: 300px;
  }
  
  .central-icon {
    width: 80px;
    height: 80px;
  }
  
  .central-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .floating-element {
    padding: 0.75rem 0.875rem;
  }
  
  .floating-element svg {
    width: 20px;
    height: 20px;
  }
  
  .floating-element span {
    font-size: 0.7rem;
  }
}