.wa-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  animation: slideIn 0.5s ease-out;
}

.wa-bubble {
  display: flex;
  align-items: center;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  font-family: sans-serif;
}

.wa-bubble:hover {
  background-color: #1ebd5b;
  transform: scale(1.05);
}

.wa-bubble img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.wa-text {
  font-size: 14px;
  white-space: nowrap;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.logo-text img{
    max-width: 150px;
    max-height: 75px;
}

.logo-text b{
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 200px;
}

@media ((max-width: 768px)) {
  #header #logo img {
        max-height: 48px;
    }
    
  .logo-text img{
      max-width: 100px;
        max-height: 48px;
      margin-left: 2px;
  }
  .logo-text b{
      font-size: 18px;
  }
}