#whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

#whatsapp-float:hover {
    transform: scale(1.1);
    cursor: pointer;
}


.lead, 
.qs {
  text-align: left;
  line-height: 1.6;
}


.br-pc {
  display: inline;
}

@media (min-width: 769px) {
  .br-pc {
    display: block;
  }
}


@media (max-width: 768px) {
  .lead {
    font-size: 17px !important;
    max-width: 95%;
    margin: 0 auto;
    line-height: 1.6;
  }
}

.nowrap {
  white-space: nowrap;
}