/* Chat Widget - Visual decorativo */
.chatWidget {
   position: fixed;
   bottom: 20px;
   left: 20px;
   z-index: 9999;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 10px;
}

.chatWidget__bubble {
   display: flex;
   align-items: center;
   gap: 10px;
   background: #ffffff;
   border-radius: 20px;
   padding: 10px 16px;
   box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
   max-width: 280px;
}

.chatWidget__bubble-close {
   width: 24px;
   height: 24px;
   border: none;
   background: transparent;
   color: #666;
   font-size: 18px;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 0;
   line-height: 1;
}

.chatWidget__bubble-close:hover {
   color: #333;
}

.chatWidget__bubble-text {
   color: #333;
   font-size: 14px;
   line-height: 1.4;
   margin: 0;
}

.chatWidget__btn {
   width: 56px;
   height: 56px;
   border-radius: 50%;
   background: #203d5c;
   border: none;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
   transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatWidget__btn:hover {
   transform: scale(1.05);
   box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

