#wap-chat-launcher {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  border-radius: 36px;
  padding: 4px 10px 4px 14px;
  transition: box-shadow 0.2s;
}
#wap-chat-launcher:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.19);
}

#wap-chat-label {
  color: #222;
  font-size: 1rem;
  margin-right: 14px;
  font-weight: 500;
  white-space: nowrap;
  font-family: inherit;
}
#wap-chat-label strong {
  font-weight: 700;
}

.wap-whatsapp-btn {
  background: #25D366;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.wap-whatsapp-btn img {
  width: 28px;
  height: 28px;
}

#wap-chat-modal {
  display: none;
  position: fixed;
  right: 30px;
  bottom: 100px;
  width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 42px rgba(0,0,0,0.25);
  z-index: 10000;
  padding: 26px 24px 24px 24px;
  animation: fadeInUp 0.23s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px);}
  to   { opacity:1;  transform: none;}
}

#wap-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  font-weight: bold;
  background: none;
  border: none;
  outline: none;
  transition: color 0.2s;
}
#wap-modal-close:hover {
  color: #25D366;
}
.wap-step {
  display: none;
}
.wap-step.active {
  display: block;
}
#wap-chat-modal h3 {
  margin-top: 0;
  color: #25D366;
  font-size: 1.21em;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 10px;
}
#wap-chat-modal label {
  font-weight: 500;
  margin-bottom: 7px;
  margin-top:12px;
  display: block;
  font-size: 1rem;
  color: #1d2b36;
}
#wap-chat-modal input[type="text"],
#wap-chat-modal input[type="email"],
#wap-chat-modal input[type="tel"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 16px;
  border: 1.2px solid #e4e4e4;
  border-radius: 7px;
  font-size: 1em;
  background: #f8f9fa;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}
#wap-chat-modal input:focus {
  border-color: #25D366;
  background: #fff;
}
#wap-chat-modal button {
  display: block;
  width: 100%;
  color: #fff;
  background: #25D366;
  border: none;
  padding: 12px 0;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1.01em;
  box-shadow: 0 2px 8px rgba(37,211,102,0.05);
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
#wap-chat-modal button:hover {
  background: #128C7E;
}

#wap-message {
  text-align: center;
  margin-top: 10px;
  color: #ff2424;
  font-size: 0.98em;
  display: none;
}

@media (max-width: 600px) {
  #wap-chat-label {
    display: none !important;
  }
  #wap-chat-modal {
    right: 8px;
    bottom: 8px;
    width: 95vw;
    min-width: 0;
    padding: 18px 5vw 18px 5vw;
  }
  #wap-chat-launcher {
    right: 8px;
    bottom: 10px;
    padding-right: 5px;
    padding-left: 12px;
	background: #ffffff00;
        box-shadow: 0 4px 18px rgb(0 0 0 / 0%);
  }
}
