/* Estilos do Chat */
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    transform: translateY(0);
    font-family: 'Poppins', sans-serif;
    display: none; /* Inicia com o chat oculto */
  }
  
  .chat-header {
    background: #ffcc00;
    color: #333;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .chat-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  .chat-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
  }
  
  .chat-button {
    display: block;
    background: #ffcc00;
    color: #333;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
  }
  
  .chat-button:hover {
    background: #e6b800;
  }
  
/* Ícone Minimizado */
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ffcc00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999; 
  }
  

  .chat-icon i {
    font-size: 24px;
    color: #fff;
  }
  
  .chat-icon i.fas {
    line-height: 1;  
  }
  
  .notification-badge {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
  }
  
  #notification-chat.active {
    display: block; /* Torna o chat visível quando ativo */
  }
  
  /* Exibição do Ícone de Notificação */
  #chat-icon.active {
    display: flex; /* Torna o ícone visível quando ativo */
  }
  