.social-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
        transition: all 0.3s ease;
    }

    .social-link-large {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: #fff;
        border: 1px solid #e0e0e0;
    }

    .social-link-large:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }

    /* Se quiser ainda menor */
    .social-icon-small {
        width: 20px;
        height: 20px;
    }

    /* Se quiser médio */
    .social-icon-medium {
        width: 28px;
        height: 28px;
    }