.contato {
    text-align: center;
    padding: 60px 20px;
  }
  
  .contato p {
    margin: 20px 0;
    font-size: 1.1rem;
  }
  
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: #000000;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
  }
  
  .btn-whatsapp:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
  }
  
  .btn-whatsapp img {
    width: 24px;
  }
  