/* Estilização dos botões sociais */
.social-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 25px 0;
    margin-top: 110px;
  }
  
  .social-button {
    display: inline-block;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .social-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Efeito ao clicar */
  .social-button:active {
    transform: scale(0.95);
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .social-buttons {
      gap: 10px;
    }
    
    .social-button {
      width: 40px;
      height: 40px;
      padding: 8px;
    }
  }

 