.text-animado {
    opacity: 0;
    animation: fadeIn 4s forwards;
  }
  
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}

.text-animado2 {
    font-size: 48px;
    transform: translateX(-100%);
    animation: slideIn 4s forwards;
  }
  
@keyframes slideIn {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
}

.text-animado3 {
    font-size: 2rem;
    overflow: hidden;
    white-space: nowrap;
    animation: buildText 3s forwards;
  }
  
  @keyframes buildText {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
  }

  #btnWhatsapp {
    width: 55px;
    height: 55px;
    background-color: #25d366;
  }
  
