.contato-whatsapp {
  position: fixed;
  bottom: -500px;
  opacity: 0;
  max-width: 80%;
  right: 30px;
  background: #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 0px 16px 3px rgba(0, 0, 0, 0.55);
  transition: all 250ms cubic-bezier(0.11, 0, 0.5, 0) 0ms;
}

.contato-whatsapp-aberto {
  bottom: 64px;
  opacity: 1;
}

.contato-whatsapp-cabecalho {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #009900;
  border-radius: 6px 6px 0px 0px;
  padding: 16px 24px;
  cursor: pointer;
}

.contato-whatsapp-cabecalho h2{
  color: #ffffff;
  font-size: 16px !important;
  margin: 0px;
  text-transform: uppercase; 
}

.contato-whatsapp-cabecalho svg {
  cursor: pointer;
}

.contato-whatsapp-corpo {
  padding: 24px;
}

.contato-whatsapp-corpo .formulario-whatsapp {
  display: flex;
  flex-direction: column;

  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #eeeeee;
  margin-bottom: 10px;
  justify-content: space-between;
}

.contato-whatsapp .formulario-whatsapp .conteiner-chat {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow-y: auto;
  gap: 24px;
  height: 235px;
  width: 100%;
  padding: 10px;
}

.contato-whatsapp .formulario-whatsapp .conteiner-campo {
  padding: 0px 10px 10px 10px;
}

.contato-whatsapp .formulario-whatsapp .conteiner-chat .botao-chat {
  transition: all 1.25s ease 0s;
}

.contato-whatsapp.formulario-whatsapp input {
  transition: all 1s ease 0s;
}

.campoDesativado {
  display: none !important;
}

.contato-whatsapp-corpo .formulario-whatsapp .mensagem-whatsapp {
  background: #ffffff;
  padding: 8px 24px;
  width: fit-content;
  max-width: 70%;
  border-radius: 0px 20px 20px;
  transition: all 0.8s ease 0s;
}

.contato-whatsapp-corpo .formulario-whatsapp .mensagem-whatsapp-enviada {
  align-self: flex-end;
  border-radius: 20px 0px 20px 20px;
}

.contato-whatsapp-corpo .formulario-whatsapp .botao-input-whatsapp {
  width: 56px;
  height: 100%;
  background: #009900;
  font-size: 20px;
  color: #ffffff;
  border: none;
  border-radius: 0px 8px 7px 0px;
}

.contato-whatsapp-corpo .formulario-whatsapp .botao-input-whatsapp:hover {
  opacity: 0.7;
}

.contato-whatsapp-corpo .formulario-whatsapp .campoMensagem {
  border: 1px solid #333333 !important;
}

.campoErro {
  border: 2px solid rgba(218, 59, 1, 1) !important;
}

.contato-whatsapp-corpo .formulario-whatsapp .envio-whatsapp {
  display: flex;
  justify-content: center;
}

.contato-whatsapp-corpo .formulario-whatsapp a {
  align-self: center;
  cursor: pointer;
}

.campo-whatsapp-desabilitado {
  background-color: gray !important;
  border: none !important;
  cursor: not-allowed !important;
}

.sucesso-whatsapp {
  color: rgba(var(--bs-link-color-rgb));
  align-self: center;
  display: none;
}

.sucesso-whatsapp-habilitado {
  display: flex;
}