#wa-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

#wa-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#wa-form {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 520px;
  background: white;
  border: 2px solid #25d366;
  border-radius: 16px;
  padding: 20px;
  display: none;
  flex-direction: column;
}

.wa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#wa-button svg,
#wa-button svg path {
    fill: white;
}

#wa-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#wa-form input,
#wa-form textarea,
#wa-form select {
  padding: 10px;
  border: 1px solid #25d366;
  border-radius: 8px;
}

#wa-form button {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}

.wa-phone {
  display: flex;
  gap: 5px;
}