/* CSS PERSONALIZADO PARA FONTE QUICKSAND */
/*h2, h3 {
  font-family: 'Quicksand', sans-serif !important;
}*/
h2 {
  font-family: 'DM Sans', sans-serif !important;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 96px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 75px;
    right: 15px;
  }
  
  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}
