.social-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 10px;
    height: 200px;
    width: fit-content;
    margin: 0 auto;
  }
  
  .social-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--freeze-color);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .social-menu i {
    font-size: 35px;
  }
  
  .social-menu i.fa-whatsapp {
    color: #25D366;
  }
  
  .social-menu i.fa-instagram {
    color: #f51f71;
  }
  
  .social-menu i.fa-youtube {
    color: #FF0000;
  }
  
  .social-menu a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  }