/* Botão flutuante - wpp*/
.botao-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
  }
  
  .botao-flutuante button {
    background-color: #ffffff00;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .botao-flutuante button img {
    width: 60px;
    height: 60px;
  }
  
  /* Modal */
  .modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    bottom: 90px; /* Posição acima do botão */
    right: 20px;
    z-index: 1050;
    background-color: #EBE5DE;
    border: 1px solid #ddd;
    width: 350px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    border-radius: 5px;
    
  }
  
  
  .modal-header {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    background-color: #265C54;
    border-radius: 5px;

  }
  
  .modal-header h3 {
    font-size: 14px;
    margin: 0;
    color: white;
    padding: 15px;

  }
  
  .fechar {
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    color: white;
    margin-right: 20px;
  }
  
  /* Inputs e Botão */
  form label {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
    margin-left: 15px;
  }
 
  form input,
  form select {
    width: 92%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  .telefone-container {
    display: flex;
    gap: 5px;
  }
  
  .telefone-container select {
    width: 25%;
  }
  
  .telefone-container input {
    width: 65%;
  }
  
  form button {
    width: 100%;
    padding: 10px;
    background-color: #53A451;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
  }
  
  form button:hover {
    background-color: #1da851;
  }
  