.whatsapp {
	position: fixed;
    bottom: 76px;
    right: 20px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: none;
}

.whatsapp-btn {
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    background: rgb(0 0 0/0) url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 24 24\'%3E%3Cpath fill=\'%23fff\' d=\'M3.516 3.516c4.686-4.686 12.284-4.686 16.97 0 4.686 4.686 4.686 12.283 0 16.97a12.004 12.004 0 0 1-13.754 2.299l-5.814.735a.392.392 0 0 1-.438-.44l.748-5.788A12.002 12.002 0 0 1 3.517 3.517zm3.61 17.043.3.158a9.846 9.846 0 0 0 11.534-1.758c3.843-3.843 3.843-10.074 0-13.918-3.843-3.843-10.075-3.843-13.918 0a9.846 9.846 0 0 0-1.747 11.554l.16.303-.51 3.942a.196.196 0 0 0 .219.22l3.961-.501zm6.534-7.003-.933 1.164a9.843 9.843 0 0 1-3.497-3.495l1.166-.933a.792.792 0 0 0 .23-.94L9.561 6.96a.793.793 0 0 0-.924-.445 1291.6 1291.6 0 0 0-2.023.524.797.797 0 0 0-.588.88 11.754 11.754 0 0 0 10.005 10.005.797.797 0 0 0 .88-.587l.525-2.023a.793.793 0 0 0-.445-.923L14.6 13.327a.792.792 0 0 0-.94.23z\'/%3E%3C/svg%3E') center/40% no-repeat;;
    display: block;
    margin: 0 auto;
    padding: 0;
    background-size: 60%;
}

/**/
.video-container {
  position: fixed;
  left: 0;
  top: 82%;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
}

.video-container iframe {
  width: 300px;
  height: 200px;
  border: none;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}

.close-btn:hover {
  background-color: #f0f0f0;
}

/* Estilo do bloco flutuante */
#whatsapp-chat {
    position: fixed;
    bottom: 135px; /* Dist창ncia do bloco ao footer */
    right: 20px;
    background-color: #25d366; /* Cor de fundo do bloco */
    color: #fff; /* Cor do texto */
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    z-index: 999;
}
#div-whatsapp-chat{
    display: none;
}

#whatsapp-chat img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}