.steps-section .step-icon {
  transition: transform 0.3s ease;
}
.steps-section .step-icon:hover {
  transform: scale(1.15);
}
.steps-section h3 {
  font-family: var(--font-title);
  font-weight: 700;
}
/* Estilos para el botón de WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* Para hacerlo circular */
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); /* Sutil sombra */
}

/* Opcional: Animación al pasar el ratón */
.whatsapp-float:hover img {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}
