/* botão success */ 
.share-success {
    display: inline-block;
    background: linear-gradient(135deg, var(--success) 0%, #2ecc71 100%);
    color: var(--freeze-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .share-success::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: skewX(-20deg);
    transition: left 0.5s ease;
  }
  
  .share-success:hover::after {
    left: 100%;
  }
  
  .share-success:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  
  .share-success:active {
    transform: scale(0.97);
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  }

  