/* Botón flotante de WhatsApp */
.whatsapp-float-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Chat emergente */
.whatsapp-chat {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  overflow: hidden;
  display: none; /* inicialmente oculto */
  z-index: 1000;
  font-family: 'Inter', sans-serif;
}

.whatsapp-header {
  background: #25d366;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.whatsapp-body {
  padding: 15px;
  color: #333;
}

.whatsapp-body p {
  margin-bottom: 10px;
}

.chat-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.chat-btn:hover {
  opacity: 0.9;
}
