.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;
}
/* CTA Section */
.bg-olive-dark {
  background-color: #4a5500; /* verde oscuro más profundo */
}

.cta-bg {
  background: rgba(
    255,
    255,
    255,
    0.1
  ); /* ligera transparencia para resaltar texto */
  border-radius: 1rem;
  padding: 3rem;
}

.text-dark-soft {
  color: #3a3a3a; /* texto oscuro */
}
